name
stringlengths
7
62
content
stringlengths
200
6.79M
minecraft-trim-pattern.json
{ "$id": "https://json.schemastore.org/minecraft-trim-pattern.json", "$schema": "http://json-schema.org/draft-07/schema#", "description": "A trim pattern for a Minecraft data pack config schema", "properties": { "asset_id": { "type": "string" }, "description": { "type": "object", "properties": { "color": { "type": "string" }, "translate": { "type": "string" } }, "required": ["translate"] }, "template_item": { "type": "string" } }, "required": ["asset_id", "description", "template_item"], "title": "Minecraft Data Pack Trim Pattern", "type": "object" }
filespec-schema.json
{ "$schema": "http://json-schema.org/draft-07/schema", "title": "JFrog File Spec", "description": "JFrog File Spec schema definition.", "additionalProperties": false, "properties": { "files": { "type": "array", "items": { "$ref": "#/$file" }, "description": "Details of files to be uploaded or downloaded from Artifactory.", "minItems": 1, "uniqueItems": true, "default": [ { "pattern": "" } ] } }, "$file": { "additionalProperties": false, "properties": { "ant": { "type": "string", "enum": ["true", "false"], "description": "If true, the command will interpret the patterns which describes the local file-system paths, as ANT patterns.", "default": "false" }, "aql": { "description": "An AQL query that specified artifacts in Artifactory.", "additionalProperties": false, "properties": { "items.find": {} }, "default": { "items.find": { "repo": "my-local-repo", "path": "my-path", "file": "my-file" } } }, "archive": { "type": "string", "enum": ["zip"], "description": "Set to \"zip\" to pack and deploy the files to Artifactory inside a ZIP archive. Currently, the only packaging format supported is zip." }, "archiveEntries": { "type": "string", "description": "If specified, only archive artifacts containing entries matching this pattern are matched. You can use wildcards to specify multiple artifacts." }, "build": { "type": "string", "description": "If specified, only artifacts of the specified build are matched. The property format is build-name/build-number. If you do not specify the build number, the artifacts are filtered by the latest build number.", "examples": ["buildName", "buildName/buildNumber"] }, "bundle": { "type": "string", "description": "If specified, only artifacts of the specified bundle are matched. The value format is bundle-name/bundle-version.", "examples": ["buildName/bundleVersion"] }, "excludeArtifacts": { "type": "string", "enum": ["true", "false"], "description": "If specified, build artifacts are not matched.", "default": "false" }, "excludeProps": { "type": "string", "description": "List of \"key=value\" pairs separated by a semi-colon. Only artifacts without all of the specified properties names and values will be affected.", "examples": ["key1=value1;key2=value2;key3=value3"] }, "exclusions": { "type": "array", "description": "An array (enclosed with square brackets) of patterns to be excluded from uploading/downloading.", "examples": [["*.sha1", "*.md5"]] }, "explode": { "type": "string", "enum": ["true", "false"], "description": "If true, archive file is extracted after the operation. The archived file itself is deleted. The supported archive types are: zip, tar; tar.gz; and tgz.", "default": "false" }, "bypass-archive-inspection": { "type": "string", "enum": ["true", "false"], "description": "If true, bypass the security inspection the archive go through before it is unarchived.", "default": "false" }, "flat": { "type": "string", "enum": ["true", "false"], "description": "If true, artifacts are uploaded/downloaded to the exact target path specified and their hierarchy in the source file system is ignored.", "default": "true" }, "includeDeps": { "type": "string", "enum": ["true", "false"], "description": "If specified, also dependencies of the specified build are matched.", "default": "true" }, "includeDirs": { "type": "string", "enum": ["true", "false"], "description": "If true, the source path applies to bottom-chain directories and not only to files. Bottom-chain directories are either empty or do not include other directories that match the source path.", "default": "false" }, "limit": { "type": "integer", "description": "The maximum number of items to fetch. Usually used with the sortBy option." }, "offset": { "type": "integer", "description": "The offset from which to fetch items (i.e. how many items should be skipped). Usually used with the 'sort-by' option." }, "pattern": { "type": "string", "description": "Specifies a local file system path or a path in Artifactory." }, "props": { "type": "string", "description": "List of \"key=value\" pairs separated by a semi-colon. Only artifacts with all of the specified properties names and values will be affected.", "examples": ["key1=value1;key2=value2;key3=value3"] }, "recursive": { "type": "string", "enum": ["true", "false"], "description": "If true, files are also collected from sub-folders of the source directory.", "default": "true" }, "regexp": { "type": "string", "description": "If true, the command will interpret the patterns which describes the local file-system paths, as regular expressions.", "default": "false" }, "sortBy": { "type": "array", "items": { "type": "string" }, "description": "A list of fields to sort by. The fields must be part of the 'items' AQL domain.", "examples": [ "repo", "path", "name", "created", "modified", "updated", "created_by", "modified_by", "type", "depth", "original_md5", "actual_md5", "original_sha1", "actual_sha1", "sha256", "size", "virtual_repos" ] }, "sortOrder": { "type": "string", "enum": ["asc", "desc"], "description": "The order by which fields in the sortBy option should be sorted.", "default": "asc" }, "symlinks": { "type": "string", "description": "If true, the command will preserve the soft links structure in Artifactory. The symlink file representation will contain the symbolic link and checksum properties.", "default": "false" }, "target": { "type": "string", "description": "Specifies a local file system path or a path in Artifactory.", "default": "./" }, "targetProps": { "type": "string", "description": "List of \"key=value\" pairs separated by a semi-colon. The specified properties will be attached to the affected artifacts.", "examples": ["key1=value1;key2=value2;key3=value3"] }, "validateSymlinks": { "type": "string", "description": "If true, the command will validate that symlinks are pointing to existing and unchanged files, by comparing their sha1. Applicable to files and not directories.", "default": "false" }, "include-dirs": { "type": "string", "enum": ["true", "false"], "description": "Set to true if you'd like to also apply the source path pattern for directories and not just for files.", "default": "false" }, "from-rt": { "type": "string", "enum": ["true", "false"], "description": "If true, search the files in Artifactory, rather than on the local file system. The --regexp option is not supported when --from-rt is set to true.", "default": "false" }, "gpg-key": { "type": "string", "description": "Path to the public GPG key file located on the file system, used to validate downloaded release bundles." } }, "anyOf": [ { "required": ["pattern"] }, { "required": ["aql"] }, { "required": ["build"] }, { "required": ["bundle"] } ], "dependencies": { "pattern": { "not": { "required": ["aql"] } }, "aql": { "not": { "required": [ "pattern", "exclusions", "props", "targetProps", "excludeProps", "recursive", "regexp", "archiveEntries" ] } }, "build": { "not": { "required": ["bundle", "limit", "offset"] } }, "bundle": { "not": { "required": ["build", "limit", "offset"] } }, "excludeArtifacts": { "required": ["build"] }, "includeDeps": { "required": ["build"] } } } }
drupal-links-menu.json
{ "$id": "https://json.schemastore.org/drupal-links-menu.json", "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": { "type": "object", "properties": { "title": { "title": "The static title for the menu link", "type": "string" }, "title_context": { "title": "The translation context for the title value.", "type": "string" }, "description": { "title": "The description", "type": "string" }, "description_context": { "title": "The translation context for the description value.", "type": "string" }, "route_name": { "title": "The name of the route this links to, unless it's external", "type": "string" }, "route_parameters": { "title": "Parameters for route variables when generating a link", "type": "object" }, "parent": { "title": "The plugin ID of the parent tab", "type": "string" }, "menu_name": { "title": "The name of the menu for this link", "default": "tools", "type": "string" }, "url": { "title": "The external URL if this link has one", "type": "string" }, "weight": { "title": "The weight of the link", "type": "integer" }, "options": { "title": "Array of link options", "type": "object" }, "class": { "title": "Class for task implementations", "type": "string" }, "form_class": { "title": "Class for task implementations", "type": "string" }, "provider": { "title": "The name of the module providing this link", "type": "string" }, "metadata": { "$comment": "@todo Add a title", "type": "array" }, "expanded": { "title": "Show the link as expanded", "oneOf": [ { "type": "boolean" }, { "type": "integer" } ] }, "enabled": { "title": "The status of the link", "oneOf": [ { "type": "boolean" }, { "type": "integer" } ] }, "deriver": { "title": "Deriver class", "type": "string" }, "position": { "$comment": "@todo Add a title and enum if needed", "type": "string" }, "cache_tags": { "title": "Cache tags", "type": "array", "items": { "type": "string" } } }, "additionalProperties": false }, "title": "JSON schema for Drupal menu links file", "type": "object" }
global.json
{ "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": true, "id": "https://json.schemastore.org/global.json", "properties": { "sdk": { "type": "object", "description": "Specify information about the SDK.", "properties": { "version": { "type": "string", "pattern": "^(?<major>0|[1-9]\\d*)\\.(?<minor>0|[1-9]\\d*)\\.(?<patch>0|[1-9]\\d*)(?:-(?<prerelease>(?:0|[1-9]\\d*|\\d*[a-zA-Z-][0-9a-zA-Z-]*)(?:\\.(?:0|[1-9]\\d*|\\d*[a-zA-Z-][0-9a-zA-Z-]*))*))?(?:\\+(?<buildmetadata>[0-9a-zA-Z-]+(?:\\.[0-9a-zA-Z-]+)*))?$", "description": "The version of the SDK to use." }, "allowPrerelease": { "type": "boolean" }, "rollForward": { "type": "string", "enum": [ "patch", "feature", "minor", "major", "latestPatch", "latestFeature", "latestMinor", "latestMajor", "disable" ], "default": "disable", "description": "The roll-forward policy when selecting an SDK version, either as a fallback to accommodate missing a specific SDK version or as a directive to use a later version." } } } }, "title": "JSON schema for the .NET global configuration file", "type": "object" }
prometheus.json
{ "$id": "https://json.schemastore.org/prometheus.json", "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "definitions": { "duration": { "type": ["string", "null"], "pattern": "^[0-9]+(ms|[smhdwy])$" }, "label_name": { "type": "string", "pattern": "^[a-zA-Z_][a-zA-Z0-9_]*$" }, "label_value": { "type": "string" }, "labels": { "type": ["object", "null"], "patternProperties": { "^[a-zA-Z_][a-zA-Z0-9_]*$": { "$ref": "#/definitions/label_value" } }, "additionalProperties": false }, "filepath_glob": { "type": "string" }, "filepath": { "type": ["string", "null"], "format": "uri-reference" }, "basic_auth": { "description": "Sets the `Authorization` header on every remote write request with the configured username and password. password and password_file are mutually exclusive.", "type": ["object", "null"], "properties": { "username": { "type": "string" }, "password": { "type": ["string", "null"] }, "password_file": { "$ref": "#/definitions/filepath" } }, "oneOf": [ { "required": ["password"] }, { "required": ["password_file"] } ], "additionalProperties": false, "required": ["username"] }, "authorization": { "description": "Sets the `Authorization` header on every scrape request with the configured credentials.", "type": ["object", "null"], "properties": { "type": { "description": "Sets the authentication type of the request.", "type": ["string", "null"], "default": "Bearer" }, "credentials": { "description": "Sets the credentials of the request. It is mutually exclusive with `credentials_file`.", "type": ["string", "null"] }, "credentials_file": { "description": "Sets the credentials of the request with the credentials read from the configured file. It is mutually exclusive with `credentials`.", "$ref": "#/definitions/filepath" } }, "oneOf": [ { "required": ["credentials"] }, { "required": ["credentials_file"] } ], "additionalProperties": false }, "sigv4": { "description": "Optionally configures AWS's Signature Verification 4 signing process to sign requests.", "type": ["object", "null"], "properties": { "region": { "description": "The AWS region. If blank, the region from the default credentials chain is used.", "type": ["string", "null"] }, "access_key": { "description": "The AWS API keys. If blank, the environment variables `AWS_ACCESS_KEY_ID` and `AWS_SECRET_ACCESS_KEY` are used.", "type": ["string", "null"] }, "secret_key": { "description": "The AWS API keys. If blank, the environment variables `AWS_ACCESS_KEY_ID` and `AWS_SECRET_ACCESS_KEY` are used.", "type": ["string", "null"] }, "profile": { "description": "Named AWS profile used to authenticate.", "type": ["string", "null"] }, "role_arn": { "description": "AWS Role ARN, an alternative to using AWS API keys.", "type": ["string", "null"] } }, "additionalProperties": false }, "oauth2": { "description": "Optional OAuth 2.0 configuration. Cannot be used at the same time as basic_auth or authorization.", "type": ["object", "null"], "properties": { "client_id": { "type": ["string"] }, "client_secret": { "type": ["string", "null"] }, "client_secret_file": { "description": "Read the client secret from a file. It is mutually exclusive with `client_secret`.", "$ref": "#/definitions/filepath" }, "scopes": { "description": "Scopes for the token request.", "type": ["array", "null"], "items": { "type": ["string", "null"] } }, "token_url": { "description": "The URL to fetch the token from.", "type": ["string"] }, "endpoint_params": { "description": "Optional parameters to append to the token URL.", "type": ["object", "null"], "additionalProperties": { "type": "string" } }, "tls_config": { "description": "Configures the token request's TLS settings.", "$ref": "#/definitions/tls_config" } }, "oneOf": [ { "required": ["client_secret"] }, { "required": ["client_secret_file"] } ], "additionalProperties": false, "required": ["client_id", "token_url"] }, "bearer_token": { "description": "Sets the `Authorization` header on every scrape request with the configured bearer token. It is mutually exclusive with `bearer_token_file`.", "type": ["string", "null"] }, "bearer_token_file": { "description": "Sets the `Authorization` header on every scrape request with the bearer token read from the configured file. It is mutually exclusive with `bearer_token`.", "$ref": "#/definitions/filepath" }, "auth": { "allOf": [ { "if": { "not": { "properties": { "basic_auth": { "const": null } } } }, "then": { "properties": { "authorization": { "const": null }, "sigv4": { "const": null }, "oauth2": { "const": null }, "bearer_token": { "const": null }, "bearer_token_file": { "const": null } } } }, { "if": { "not": { "properties": { "authorization": { "const": null } } } }, "then": { "properties": { "basic_auth": { "const": null }, "sigv4": { "const": null }, "oauth2": { "const": null }, "bearer_token": { "const": null }, "bearer_token_file": { "const": null } } } }, { "if": { "not": { "properties": { "sigv4": { "const": null } } } }, "then": { "properties": { "basic_auth": { "const": null }, "authorization": { "const": null }, "oauth2": { "const": null }, "bearer_token": { "const": null }, "bearer_token_file": { "const": null } } } }, { "if": { "not": { "properties": { "oauth2": { "const": null } } } }, "then": { "properties": { "basic_auth": { "const": null }, "authorization": { "const": null }, "sigv4": { "const": null }, "bearer_token": { "const": null }, "bearer_token_file": { "const": null } } } }, { "if": { "not": { "properties": { "bearer_token": { "const": null } } } }, "then": { "properties": { "basic_auth": { "const": null }, "authorization": { "const": null }, "sigv4": { "const": null }, "oauth2": { "const": null }, "bearer_token_file": { "const": null } } } }, { "if": { "not": { "properties": { "bearer_token_file": { "const": null } } } }, "then": { "properties": { "basic_auth": { "const": null }, "authorization": { "const": null }, "sigv4": { "const": null }, "oauth2": { "const": null }, "bearer_token": { "const": null } } } } ] }, "relabel_configs": { "type": ["array", "null"], "items": { "type": "object", "properties": { "source_labels": { "description": "The source labels select values from existing labels. Their content is concatenated using the configured separator and matched against the configured regular expression for the replace, keep, and drop actions.", "type": "array", "items": { "$ref": "#/definitions/label_name" } }, "separator": { "description": "Separator placed between concatenated source label values.", "type": "string", "default": ";" }, "target_label": { "description": "Label to which the resulting value is written in a replace action. It is mandatory for replace actions. Regex capture groups are available.", "$comment": "https://github.com/prometheus/prometheus/blob/release-2.13/config/testdata/conf.good.yml#L146 has a regex capture group, violating vanilla label_name definition.", "type": "string" }, "regex": { "description": "Regular expression against which the extracted value is matched.", "$comment": "https://github.com/prometheus/prometheus/blob/release-2.13/config/testdata/conf.good.yml#L111 has integer instead of string", "default": "(.*)" }, "modulus": { "description": "Modulus to take of the hash of the source label values.", "type": "integer" }, "replacement": { "description": "Replacement value against which a regex replace is performed if the regular expression matches. Regex capture groups are available.", "type": "string", "default": "$1" }, "action": { "description": "Action to perform based on regex matching.", "type": "string", "enum": [ "replace", "lowercase", "uppercase", "keep", "drop", "keepequal", "dropequal", "hashmod", "labelmap", "labeldrop", "labelkeep" ], "default": "replace" } }, "if": { "properties": { "action": { "const": "replace" } } }, "then": { "required": ["target_label"] } } }, "tls_config": { "type": ["object", "null"], "properties": { "ca_file": { "description": "CA certificate to validate API server certificate with.", "$ref": "#/definitions/filepath" }, "cert_file": { "description": "Certificate file for client cert authentication to the server.", "$ref": "#/definitions/filepath" }, "key_file": { "description": "Key file for client cert authentication to the server.", "$ref": "#/definitions/filepath" }, "server_name": { "description": "ServerName extension to indicate the name of the server.", "type": ["string", "null"] }, "insecure_skip_verify": { "description": "Disable validation of the server certificate.", "type": ["boolean", "null"] } }, "additionalProperties": false }, "scheme": { "type": ["string", "null"], "enum": ["http", "https", null] }, "azure_sd_configs": { "description": "List of Azure service discovery configurations.", "type": ["array", "null"], "items": { "description": "The information to access the Azure API.", "type": "object" } }, "consul_sd_configs": { "description": "List of Consul service discovery configurations.", "type": ["array", "null"], "items": { "description": "The information to access the Consul API. It is to be defined as the Consul documentation requires.", "type": "object" } }, "digitalocean_sd_configs": { "description": "List of DigitalOcean service discovery configurations.", "type": ["array", "null"], "items": { "description": "The information to access the DigitalOcean API.", "type": "object" } }, "docker_sd_configs": { "description": "List of Docker service discovery configurations.", "type": ["array", "null"], "items": { "description": "Docker SD configurations allow retrieving scrape targets from Docker Engine hosts.", "type": "object" } }, "dockerswarm_sd_configs": { "description": "List of Docker Swarm service discovery configurations.", "type": ["array", "null"], "items": { "description": "Docker Swarm SD configurations allow retrieving scrape targets from Docker Swarm engine.", "type": "object" } }, "dns_sd_configs": { "description": "List of DNS service discovery configurations.", "type": ["array", "null"], "items": { "description": "A DNS-based service discovery configuration allows specifying a set of DNS domain names which are periodically queried to discover a list of targets. The DNS servers to be contacted are read from /etc/resolv.conf. This service discovery method only supports basic DNS A, AAAA and SRV record queries, but not the advanced DNS-SD approach specified in RFC6763. During the relabeling phase, the meta label __meta_dns_name is available on each target and is set to the record name that produced the discovered target.", "type": "object", "properties": { "names": { "description": "A list of DNS domain names to be queried.", "type": "array", "items": { "type": "string" }, "minItems": 1 }, "type": { "description": "The type of DNS query to perform. One of SRV, A, or AAAA.", "type": ["string", "null"], "enum": ["SRV", "A", "AAAA"], "default": "SRV" }, "port": { "description": "The port number used if the query type is not SRV.", "type": ["integer", "null"] }, "refresh_interval": { "description": "The time after which the provided names are refreshed.", "$ref": "#/definitions/duration", "default": "30s" } }, "required": ["names"], "additionalProperties": false } }, "ec2_sd_configs": { "description": "List of EC2 service discovery configurations.", "type": ["array", "null"], "items": { "description": "The information to access the EC2 API.", "type": "object" } }, "eureka_sd_configs": { "description": "List of Eureka service discovery configurations.", "type": ["array", "null"], "items": { "description": "The information to access the Eureka API.", "type": "object" } }, "file_sd_configs": { "description": "List of file service discovery configurations.", "type": ["array", "null"], "items": { "type": "object", "properties": { "files": { "description": "Patterns for files from which target groups are extracted. Where the pattern may be a path ending in .json, .yml or .yaml. The last path segment may contain a single * that matches any character sequence, e.g. my/path/tg_*.json.", "type": "array", "items": { "type": "string" }, "minItems": 1 }, "refresh_interval": { "description": "Refresh interval to re-read the files.", "$ref": "#/definitions/duration", "default": "5m" } } } }, "gce_sd_configs": { "description": "List of GCE service discovery configurations.", "type": ["array", "null"], "items": { "description": "The information to access the GCE API.", "type": "object" } }, "hetzner_sd_configs": { "description": "List of Hetzner service discovery configurations.", "type": ["array", "null"], "items": { "description": "The information to access the Hetzner API.", "type": "object" } }, "http_sd_configs": { "description": "List of HTTP service discovery configurations.", "type": ["array", "null"], "items": { "description": "HTTP-based service discovery provides a more generic way to configure static targets and serves as an interface to plug in custom service discovery mechanisms.", "type": "object", "properties": { "url": { "description": "URL from which the targets are fetched.", "type": "string", "format": "uri-reference" }, "refresh_interval": { "description": "Refresh interval to re-query the endpoint.", "$ref": "#/definitions/duration", "default": "60s" }, "basic_auth": { "$ref": "#/definitions/basic_auth" }, "authorization": { "$ref": "#/definitions/authorization" }, "oauth2": { "$ref": "#/definitions/oauth2" }, "bearer_token": { "$ref": "#/definitions/bearer_token" }, "bearer_token_file": { "$ref": "#/definitions/bearer_token_file" }, "proxy_url": { "description": "Optional proxy URL.", "type": ["string", "null"], "format": "uri-reference" }, "follow_redirects": { "description": "Configure whether HTTP requests follow HTTP 3xx redirects.", "type": ["boolean", "null"], "default": true }, "tls_config": { "description": "TLS configuration.", "$ref": "#/definitions/tls_config" } }, "required": ["url"], "allOf": [ { "$ref": "#/definitions/auth" } ], "additionalProperties": false } }, "kubernetes_sd_configs": { "description": "List of Kubernetes service discovery configurations.", "type": ["array", "null"], "items": { "description": "The information to access the Kubernetes API.", "type": "object", "properties": { "api_server": { "description": "The API server addresses. If left empty, Prometheus is assumed to run inside of the cluster and will discover API servers automatically and use the pod's CA certificate and bearer token file at /var/run/secrets/kubernetes.io/serviceaccount/.", "type": ["string", "null"], "format": "uri-reference" }, "role": { "description": "The Kubernetes role of entities that should be discovered. One of endpoints, service, pod, node, or ingress.", "type": "string", "enum": ["endpoints", "service", "pod", "node", "ingress"] }, "kubeconfig_file": { "$ref": "#/definitions/filepath" }, "basic_auth": { "$ref": "#/definitions/basic_auth" }, "authorization": { "$ref": "#/definitions/authorization" }, "oauth2": { "$ref": "#/definitions/oauth2" }, "bearer_token": { "$ref": "#/definitions/bearer_token" }, "bearer_token_file": { "$ref": "#/definitions/bearer_token_file" }, "proxy_url": { "description": "Optional proxy URL.", "type": ["string", "null"], "format": "uri-reference" }, "follow_redirects": { "description": "Configure whether scrape requests follow HTTP 3xx redirects.", "type": ["boolean", "null"], "default": true }, "tls_config": { "description": "TLS configuration.", "$ref": "#/definitions/tls_config" }, "namespaces": { "description": "Optional namespace discovery. If omitted, all namespaces are used.", "type": ["object", "null"], "properties": { "own_namespace": { "type": "boolean" }, "names": { "type": "array", "items": { "type": "string" } } }, "additionalProperties": false }, "selectors": { "description": "Optional label and field selectors to limit the discovery process to a subset of available resources.", "type": ["array", "null"], "items": { "type": "object", "properties": { "role": { "type": "string" }, "label": { "type": ["string", "null"] }, "field": { "type": ["string", "null"] } }, "required": ["role"], "additionalProperties": false } } }, "allOf": [ { "$ref": "#/definitions/auth" } ], "additionalProperties": false } }, "kuma_sd_configs": { "description": "List of Kuma service discovery configurations.", "type": ["array", "null"], "items": { "description": "The information to access the Kuma API.", "type": "object" } }, "lightsail_sd_configs": { "description": "List of Lightsail service discovery configurations.", "type": ["array", "null"], "items": { "description": "The information to access the Lightsail API.", "type": "object" } }, "linode_sd_configs": { "description": "List of Linode service discovery configurations.", "type": ["array", "null"], "items": { "description": "The information to access the Linode API.", "type": "object" } }, "marathon_sd_configs": { "description": "List of Marathon service discovery configurations.", "type": ["array", "null"], "items": { "type": "object" } }, "nerve_sd_configs": { "description": "List of AirBnB's Nerve service discovery configurations.", "type": ["array", "null"], "items": { "type": "object" } }, "openstack_sd_configs": { "description": "List of OpenStack service discovery configurations.", "type": ["array", "null"], "items": { "description": "The information to access the OpenStack API.", "type": "object" } }, "puppetdb_sd_configs": { "description": "List of PuppetDB service discovery configurations.", "type": ["array", "null"], "items": { "description": "The information to access the PuppetDB API.", "type": "object" } }, "scaleway_sd_configs": { "description": "List of Scaleway service discovery configurations.", "type": ["array", "null"], "items": { "description": "The information to access the Scaleway API.", "type": "object" } }, "serverset_sd_configs": { "description": "List of Zookeeper Serverset service discovery configurations.", "type": ["array", "null"], "items": { "type": "object" } }, "triton_sd_configs": { "description": "List of Triton service discovery configurations.", "type": ["array", "null"], "items": { "description": "The information to access the Triton discovery API.", "type": "object" } }, "uyuni_sd_configs": { "description": "List of Uyuni service discovery configurations.", "type": ["array", "null"], "items": { "description": "The information to access the Uyuni API.", "type": "object" } }, "static_configs": { "description": "List of labeled statically configured targets for this job.", "type": ["array", "null"], "items": { "type": "object", "properties": { "targets": { "description": "The targets specified by the static config.", "type": ["array", "null"], "items": { "type": "string" } }, "labels": { "description": "Labels assigned to all metrics scraped from the targets.", "$ref": "#/definitions/labels" } } } } }, "description": "Prometheus configuration file", "properties": { "global": { "description": "The global configuration specifies parameters that are valid in all other configuration contexts. They also serve as defaults for other configuration sections.", "type": ["object", "null"], "properties": { "scrape_interval": { "description": "How frequently to scrape targets by default.", "$ref": "#/definitions/duration", "default": "1m" }, "scrape_timeout": { "description": "How long until a scrape request times out.", "$ref": "#/definitions/duration", "default": "10s" }, "evaluation_interval": { "description": "How frequently to evaluate rules.", "$ref": "#/definitions/duration", "default": "1m" }, "external_labels": { "description": "The labels to add to any time series or alerts when communicating with external systems (federation, remote storage, Alertmanager).", "$ref": "#/definitions/labels" }, "query_log_file": { "description": "File to which PromQL queries are logged. Reloading the configuration will reopen the file.", "$ref": "#/definitions/filepath" } }, "additionalProperties": false }, "rule_files": { "description": "Rule files specifies a list of globs. Rules and alerts are read from all matching files.", "type": ["array", "null"], "items": { "$ref": "#/definitions/filepath_glob" } }, "remote_write": { "description": "Settings related to the remote write feature.", "type": ["array", "null"], "items": { "type": "object", "properties": { "url": { "description": "The URL of the endpoint to send samples to.", "type": "string", "format": "uri-reference" }, "remote_timeout": { "description": "Timeout for requests to the remote write endpoint.", "$ref": "#/definitions/duration", "default": "30s" }, "headers": { "description": "Custom HTTP headers to be sent along with each remote write request. Be aware that headers that are set by Prometheus itself can't be overwritten.", "type": ["object", "null"], "additionalProperties": { "type": "string" } }, "write_relabel_configs": { "description": "List of remote write relabel configurations.", "$ref": "#/definitions/relabel_configs" }, "name": { "description": "Name of the remote write config, which if specified must be unique among remote write configs. The name will be used in metrics and logging in place of a generated value to help users distinguish between remote write configs.", "type": ["string", "null"] }, "send_exemplars": { "description": "Enables sending of exemplars over remote write. Note that exemplar storage itself must be enabled for exemplars to be scraped in the first place.", "type": ["boolean", "null"], "default": false }, "basic_auth": { "$ref": "#/definitions/basic_auth" }, "authorization": { "$ref": "#/definitions/authorization" }, "sigv4": { "$ref": "#/definitions/sigv4" }, "oauth2": { "$ref": "#/definitions/oauth2" }, "bearer_token": { "$ref": "#/definitions/bearer_token" }, "bearer_token_file": { "$ref": "#/definitions/bearer_token_file" }, "tls_config": { "description": "Configures the remote write request's TLS settings.", "$ref": "#/definitions/tls_config" }, "proxy_url": { "description": "Optional proxy URL.", "type": ["string", "null"], "format": "uri-reference" }, "follow_redirects": { "description": "Configure whether HTTP requests follow HTTP 3xx redirects.", "type": ["boolean", "null"], "default": true }, "queue_config": { "description": "Configures the queue used to write to remote storage.", "type": ["object", "null"], "properties": { "capacity": { "description": "Number of samples to buffer per shard before we block reading of more samples from the WAL. It is recommended to have enough capacity in each shard to buffer several requests to keep throughput up while processing occasional slow remote requests.", "type": ["integer", "null"], "default": 2500 }, "max_shards": { "description": "Maximum number of shards, i.e. amount of concurrency.", "type": ["integer", "null"], "default": 200 }, "min_shards": { "description": "Minimum number of shards, i.e. amount of concurrency.", "type": ["integer", "null"], "default": 1 }, "max_samples_per_send": { "description": "Maximum number of samples per send.", "type": ["integer", "null"], "default": 500 }, "batch_send_deadline": { "description": "Maximum time a sample will wait in buffer.", "$ref": "#/definitions/duration", "default": "5s" }, "min_backoff": { "description": "Initial retry delay. Gets doubled for every retry.", "$ref": "#/definitions/duration", "default": "30ms" }, "max_backoff": { "description": "Maximum retry delay.", "$ref": "#/definitions/duration", "default": "5s" }, "retry_on_http_429": { "description": "Retry upon receiving a 429 status code from the remote-write storage.", "type": ["boolean", "null"], "default": false } }, "additionalProperties": false }, "metadata_config": { "description": "Configures the sending of series metadata to remote storage.", "type": ["object", "null"], "properties": { "send": { "description": "Whether metric metadata is sent to remote storage or not.", "type": ["boolean", "null"], "default": true }, "send_interval": { "description": "How frequently metric metadata is sent to remote storage.", "$ref": "#/definitions/duration", "default": "1m" }, "max_samples_per_send": { "description": "Maximum number of samples per send.", "type": ["integer", "null"], "default": 500 } }, "additionalProperties": false } }, "allOf": [ { "$ref": "#/definitions/auth" } ], "additionalProperties": false, "required": ["url"] } }, "remote_read": { "description": "Settings related to the remote read feature.", "type": ["array", "null"], "items": { "type": "object", "properties": { "url": { "description": "The URL of the endpoint to query from.", "type": "string", "format": "uri-reference" }, "name": { "description": "Name of the remote read config, which if specified must be unique among remote read configs. The name will be used in metrics and logging in place of a generated value to help users distinguish between remote read configs.", "type": ["string", "null"] }, "required_matchers": { "description": "An optional list of equality matchers which have to be present in a selector to query the remote read endpoint.", "$ref": "#/definitions/labels" }, "remote_timeout": { "description": "Timeout for requests to the remote read endpoint.", "$ref": "#/definitions/duration", "default": "1m" }, "headers": { "description": "Custom HTTP headers to be sent along with each remote read request. Be aware that headers that are set by Prometheus itself can't be overwritten.", "type": ["object", "null"], "additionalProperties": { "type": "string" } }, "read_recent": { "description": "Whether reads should be made for queries for time ranges that the local storage should have complete data for.", "type": ["boolean", "null"], "default": false }, "basic_auth": { "$ref": "#/definitions/basic_auth" }, "authorization": { "$ref": "#/definitions/authorization" }, "oauth2": { "$ref": "#/definitions/oauth2" }, "bearer_token": { "$ref": "#/definitions/bearer_token" }, "bearer_token_file": { "$ref": "#/definitions/bearer_token_file" }, "tls_config": { "$ref": "#/definitions/tls_config" }, "proxy_url": { "description": "Optional proxy URL.", "type": ["string", "null"], "format": "uri-reference" }, "follow_redirects": { "description": "Configure whether HTTP requests follow HTTP 3xx redirects.", "type": ["boolean", "null"], "default": true } }, "allOf": [ { "$ref": "#/definitions/auth" } ], "additionalProperties": false, "required": ["url"] } }, "scrape_config_files": { "description": "Scrape config files specifies a list of globs. Scrape configs are read from all matching files and appended to the list of scrape configs.", "type": ["array", "null"], "items": { "$ref": "#/definitions/filepath_glob" } }, "scrape_configs": { "description": "A list of scrape configurations.", "type": ["array", "null"], "items": { "type": "object", "properties": { "job_name": { "description": "The job name assigned to scraped metrics by default. Must be unique across all scrape configurations.", "type": "string" }, "scrape_interval": { "description": "How frequently to scrape targets from this job. Defaults to `global.scrape_interval`.", "$ref": "#/definitions/duration" }, "scrape_timeout": { "description": "Per-scrape timeout when scraping this job. Defaults to `global.scrape_timeout`.", "$ref": "#/definitions/duration" }, "metrics_path": { "description": "The HTTP resource path on which to fetch metrics from targets.", "type": ["string", "null"], "default": "/metrics" }, "honor_labels": { "description": "Controls how Prometheus handles conflicts between labels that are already present in scraped data and labels that Prometheus would attach server-side (\"job\" and \"instance\" labels, manually configured target labels, and labels generated by service discovery implementations).", "type": ["boolean", "null"], "default": false }, "honor_timestamps": { "description": "Controls whether Prometheus respects the timestamps present in scraped data.", "type": ["boolean", "null"], "default": true }, "scheme": { "description": "Configures the protocol scheme used for requests.", "$ref": "#/definitions/scheme", "default": "http" }, "params": { "description": "Optional HTTP URL parameters.", "type": ["object", "null"], "additionalProperties": { "type": "array", "items": { "type": "string" } } }, "basic_auth": { "$ref": "#/definitions/basic_auth" }, "authorization": { "$ref": "#/definitions/authorization" }, "oauth2": { "$ref": "#/definitions/oauth2" }, "bearer_token": { "$ref": "#/definitions/bearer_token" }, "bearer_token_file": { "$ref": "#/definitions/bearer_token_file" }, "follow_redirects": { "description": "Configure whether scrape requests follow HTTP 3xx redirects.", "type": ["boolean", "null"], "default": true }, "tls_config": { "description": "Configures the scrape request's TLS settings.", "$ref": "#/definitions/tls_config" }, "proxy_url": { "description": "Optional proxy URL.", "type": ["string", "null"], "format": "uri-reference" }, "azure_sd_configs": { "$ref": "#/definitions/azure_sd_configs" }, "consul_sd_configs": { "$ref": "#/definitions/consul_sd_configs" }, "digitalocean_sd_configs": { "$ref": "#/definitions/digitalocean_sd_configs" }, "docker_sd_configs": { "$ref": "#/definitions/docker_sd_configs" }, "dockerswarm_sd_configs": { "$ref": "#/definitions/dockerswarm_sd_configs" }, "dns_sd_configs": { "$ref": "#/definitions/dns_sd_configs" }, "ec2_sd_configs": { "$ref": "#/definitions/ec2_sd_configs" }, "eureka_sd_configs": { "$ref": "#/definitions/eureka_sd_configs" }, "file_sd_configs": { "$ref": "#/definitions/file_sd_configs" }, "gce_sd_configs": { "$ref": "#/definitions/gce_sd_configs" }, "hetzner_sd_configs": { "$ref": "#/definitions/hetzner_sd_configs" }, "http_sd_configs": { "$ref": "#/definitions/http_sd_configs" }, "kubernetes_sd_configs": { "$ref": "#/definitions/kubernetes_sd_configs" }, "kuma_sd_configs": { "$ref": "#/definitions/kuma_sd_configs" }, "lightsail_sd_configs": { "$ref": "#/definitions/lightsail_sd_configs" }, "linode_sd_configs": { "$ref": "#/definitions/linode_sd_configs" }, "marathon_sd_configs": { "$ref": "#/definitions/marathon_sd_configs" }, "nerve_sd_configs": { "$ref": "#/definitions/nerve_sd_configs" }, "openstack_sd_configs": { "$ref": "#/definitions/openstack_sd_configs" }, "puppetdb_sd_configs": { "$ref": "#/definitions/puppetdb_sd_configs" }, "scaleway_sd_configs": { "$ref": "#/definitions/scaleway_sd_configs" }, "serverset_sd_configs": { "$ref": "#/definitions/serverset_sd_configs" }, "triton_sd_configs": { "$ref": "#/definitions/triton_sd_configs" }, "uyuni_sd_configs": { "$ref": "#/definitions/uyuni_sd_configs" }, "static_configs": { "$ref": "#/definitions/static_configs" }, "relabel_configs": { "description": "List of target relabel configurations.", "$ref": "#/definitions/relabel_configs" }, "metric_relabel_configs": { "description": "List of metric relabel configurations.", "$ref": "#/definitions/relabel_configs" }, "body_size_limit": { "description": "An uncompressed response body larger than this many bytes will cause the scrape to fail. 0 means no limit. Example: 100MB.", "type": ["integer", "null"], "default": 0 }, "sample_limit": { "description": "Per-scrape limit on number of scraped samples that will be accepted. If more than this number of samples are present after metric relabelling the entire scrape will be treated as failed. 0 means no limit.", "type": ["integer", "null"], "default": 0 }, "label_limit": { "description": "Per-scrape limit on number of labels that will be accepted for a sample. If more than this number of labels are present post metric-relabeling, the entire scrape will be treated as failed. 0 means no limit.", "type": ["integer", "null"], "default": 0 }, "label_name_length_limit": { "description": "Per-scrape limit on length of labels name that will be accepted for a sample. If a label name is longer than this number post metric-relabeling, the entire scrape will be treated as failed. 0 means no limit.", "type": ["integer", "null"], "default": 0 }, "label_value_length_limit": { "description": "Per-scrape limit on length of labels value that will be accepted for a sample. If a label value is longer than this number post metric-relabeling, the entire scrape will be treated as failed. 0 means no limit.", "type": ["integer", "null"], "default": 0 }, "target_limit": { "description": "Per-scrape config limit on number of unique targets that will be accepted. If more than this number of targets are present after target relabeling, Prometheus will mark the targets as failed without scraping them. 0 means no limit.", "type": ["integer", "null"], "default": 0 } }, "allOf": [ { "$ref": "#/definitions/auth" } ], "additionalProperties": false, "required": ["job_name"] } }, "alerting": { "description": "Alerting specifies settings related to the Alertmanager.", "type": ["object", "null"], "properties": { "alert_relabel_configs": { "$ref": "#/definitions/relabel_configs" }, "alertmanagers": { "type": ["array", "null"], "items": { "type": "object", "properties": { "timeout": { "description": "Per-target Alertmanager timeout when pushing alerts.", "$ref": "#/definitions/duration", "default": "10s" }, "api_version": { "description": "The api version of Alertmanager.", "type": ["string", "null"], "default": "v2" }, "path_prefix": { "description": "Prefix for the HTTP path alerts are pushed to.", "type": ["string", "null"], "default": "/" }, "scheme": { "description": "Configures the protocol scheme used for requests.", "$ref": "#/definitions/scheme", "default": "http" }, "basic_auth": { "$ref": "#/definitions/basic_auth" }, "authorization": { "$ref": "#/definitions/authorization" }, "oauth2": { "$ref": "#/definitions/oauth2" }, "bearer_token": { "$ref": "#/definitions/bearer_token" }, "bearer_token_file": { "$ref": "#/definitions/bearer_token_file" }, "tls_config": { "description": "Configures the scrape request's TLS settings.", "$ref": "#/definitions/tls_config" }, "proxy_url": { "description": "Optional proxy URL.", "type": ["string", "null"], "format": "uri-reference" }, "follow_redirects": { "description": "Configure whether HTTP requests follow HTTP 3xx redirects.", "type": ["boolean", "null"], "default": true }, "azure_sd_configs": { "$ref": "#/definitions/azure_sd_configs" }, "consul_sd_configs": { "$ref": "#/definitions/consul_sd_configs" }, "digitalocean_sd_configs": { "$ref": "#/definitions/digitalocean_sd_configs" }, "docker_sd_configs": { "$ref": "#/definitions/docker_sd_configs" }, "dockerswarm_sd_configs": { "$ref": "#/definitions/dockerswarm_sd_configs" }, "dns_sd_configs": { "$ref": "#/definitions/dns_sd_configs" }, "ec2_sd_configs": { "$ref": "#/definitions/ec2_sd_configs" }, "eureka_sd_configs": { "$ref": "#/definitions/eureka_sd_configs" }, "file_sd_configs": { "$ref": "#/definitions/file_sd_configs" }, "gce_sd_configs": { "$ref": "#/definitions/gce_sd_configs" }, "hetzner_sd_configs": { "$ref": "#/definitions/hetzner_sd_configs" }, "http_sd_configs": { "$ref": "#/definitions/http_sd_configs" }, "kubernetes_sd_configs": { "$ref": "#/definitions/kubernetes_sd_configs" }, "kuma_sd_configs": { "$ref": "#/definitions/kuma_sd_configs" }, "lightsail_sd_configs": { "$ref": "#/definitions/lightsail_sd_configs" }, "linode_sd_configs": { "$ref": "#/definitions/linode_sd_configs" }, "marathon_sd_configs": { "$ref": "#/definitions/marathon_sd_configs" }, "nerve_sd_configs": { "$ref": "#/definitions/nerve_sd_configs" }, "openstack_sd_configs": { "$ref": "#/definitions/openstack_sd_configs" }, "puppetdb_sd_configs": { "$ref": "#/definitions/puppetdb_sd_configs" }, "scaleway_sd_configs": { "$ref": "#/definitions/scaleway_sd_configs" }, "serverset_sd_configs": { "$ref": "#/definitions/serverset_sd_configs" }, "triton_sd_configs": { "$ref": "#/definitions/triton_sd_configs" }, "uyuni_sd_configs": { "$ref": "#/definitions/uyuni_sd_configs" }, "static_configs": { "description": "List of labeled statically configured Alertmanagers.", "$ref": "#/definitions/static_configs" }, "relabel_configs": { "description": "List of Alertmanager relabel configurations.", "$ref": "#/definitions/relabel_configs" } }, "allOf": [ { "$ref": "#/definitions/auth" } ] } } } }, "storage": { "description": "Storage related settings that are runtime reloadable.", "type": ["array", "null"], "items": { "type": "object", "properties": { "max_exemplars": { "type": ["integer", "null"], "default": 100000 } }, "additionalProperties": false } } }, "title": "Prometheus", "type": ["object", "null"] }
foxx-manifest.json
{ "$schema": "http://json-schema.org/draft-04/schema#", "description": "Schema for ArangoDB Foxx service manifests", "id": "https://json.schemastore.org/foxx-manifest.json", "properties": { "configuration": { "type": "object", "description": "An object defining the configuration options this service requires.", "additionalProperties": { "type": "object", "properties": { "description": { "type": "string", "description": "A human-readable description of the option." }, "type": { "type": "string", "description": "The type of value expected for this option.", "enum": [ "integer", "boolean", "number", "string", "json", "password", "int", "bool" ], "default": "string" }, "default": { "description": "The default value for this option in plain JSON. Can be omitted to provide no default value." }, "required": { "type": "boolean", "description": "Whether the service can not function without this option. Defaults to true unless a default value is provided.", "default": true } }, "required": ["type"] } }, "defaultDocument": { "type": "string", "description": "If specified, the / (root) route of the service will automatically redirect to the given relative path, e.g. \"index.html\"." }, "dependencies": { "type": "object", "description": "The dependencies this service uses, i.e. which APIs its dependencies need to be compatible with.", "additionalProperties": { "oneOf": [ { "type": "string", "description": "The semantic version ranges of the API the service expects.", "default": "*" }, { "type": "object", "properties": { "name": { "type": "string", "description": "Name of the API the service expects.", "default": "*" }, "version": { "type": "string", "description": "The semantic version ranges of the API the service expects.", "default": "*" }, "description": { "type": "string", "description": "A description of how the API is used or why it is needed." }, "required": { "type": "boolean", "description": "Whether the service can not function without this dependency.", "default": true }, "multiple": { "type": "boolean", "description": "Whether the dependency can be specified more than once.", "default": false } } } ] } }, "provides": { "type": "object", "description": "The dependencies this provides, i.e. which APIs it claims to be compatible with.", "additionalProperties": { "type": "string", "description": "The semantic version ranges of the API the service implements.", "default": "*" } }, "engines": { "type": "object", "description": "An object indicating the semantic version ranges of ArangoDB (or compatible environments) the service will be compatible with.", "properties": { "arangodb": { "type": "string", "default": "^3.0.0" } }, "additionalProperties": { "type": "string" } }, "files": { "type": "object", "description": "An object defining file assets served by this service.", "additionalProperties": { "oneOf": [ { "type": "string", "description": "Relative path of the file or folder within the service." }, { "type": "object", "properties": { "path": { "type": "string", "description": "Relative path of the file or folder within the service." }, "gzip": { "type": "boolean", "description": "If set to true the file will be served with gzip-encoding if supported by the client. This can be useful when serving text files like client-side JavaScript, CSS or HTML.", "default": false }, "type": { "type": "string", "description": "The MIME content type of the file. Defaults to an intelligent guess based on the filename's extension." } }, "required": ["path"] } ] } }, "lib": { "type": "string", "description": "The relative path to the Foxx JavaScript files in the service, e.g. \"lib\". Defaults to the folder containing this manifest.", "default": "." }, "main": { "type": "string", "description": "The relative path to the main entry point of this service (relative to lib), e.g. \"index.js\".", "default": "index.js" }, "scripts": { "type": "object", "description": "An object defining named scripts provided by this service, which can either be used directly or as queued jobs by other services.", "additionalProperties": { "type": "string", "description": "Path of the script (relative to lib), e.g. \"scripts/setup.js\"." } }, "tests": { "description": "A path/pattern or list of paths/patterns of JavaScript tests provided for this service.", "oneOf": [ { "type": "string" }, { "type": "array", "items": { "type": "string", "description": "A single path/pattern of JavaScript tests provided for this service." } } ], "default": "test/**/*.js" }, "author": { "type": "string", "description": "The full name of the author of the service (i.e. you). This will be shown in the web interface." }, "contributors": { "type": "array", "description": "A list of names of people that have contributed to the development of the service in some way. This will be shown in the web interface.", "items": { "type": "string", "description": "Human-readable representation of the contributor, e.g. their name." } }, "description": { "type": "string", "description": "A human-readable description of the service. This will be shown in the web interface." }, "keywords": { "type": "array", "description": "A list of keywords that help categorize this service. This is used by the Foxx Store installers to organize services.", "items": { "type": "string", "description": "A keyword relevant to the service." } }, "license": { "type": "string", "description": "A string identifying the license under which the service is published, ideally in the form of an SPDX license identifier. This will be shown in the web interface." }, "name": { "type": "string", "description": "The name of the Foxx service. This will be shown in the web interface." }, "thumbnail": { "type": "string", "description": "The filename of a thumbnail that will be used alongside the service in the web interface. This should be a JPEG or PNG image that looks good at sizes 50x50 and 160x160." }, "version": { "type": "string", "description": "The version number of the Foxx service. The version number must follow the semantic versioning format. This will be shown in the web interface." } }, "type": "object" }
cargo.json
{ "$id": "https://json.schemastore.org/cargo.json", "$schema": "http://json-schema.org/draft-07/schema#", "definitions": { "Build": { "title": "Build", "description": "The `build` field specifies a file in the package root which is a [build script](https://doc.rust-lang.org/cargo/reference/build-scripts.html) for building native code. More information can be found in the [build script guide](https://doc.rust-lang.org/cargo/reference/build-scripts.html).\n\n\n```toml\n[package]\n# ...\nbuild = \"build.rs\"\n```\n\nThe default is `\"build.rs\"`, which loads the script from a file named\n`build.rs` in the root of the package. Use `build = \"custom_build_name.rs\"` to\nspecify a path to a different file or `build = false` to disable automatic\ndetection of the build script.\n", "anyOf": [ { "description": "Path to the build file.", "type": "string" }, { "type": "boolean", "enum": [true, false], "x-taplo": { "docs": { "enumValues": [ "Automatically detect the build file (`build.rs`).", "Disable automatic detection of the build file." ] } } } ], "x-taplo": { "links": { "key": "https://doc.rust-lang.org/cargo/reference/manifest.html#the-build-field" } } }, "DebugLevel": { "title": "Debug Level", "description": "The `debug` setting controls the [`-C debuginfo` flag](https://doc.rust-lang.org/rustc/codegen-options/index.html#debuginfo) which controls the\namount of debug information included in the compiled binary.", "enum": [ 0, 1, 2, true, false, "none", "line-directives-only", "line-tables-only", "limited", "full" ], "x-taplo": { "docs": { "enumValues": [ "No debug info at all, default for `release` profile", "Debug info without type or variable-level information. Generates more detailed module-level info than `line-tables-only`.", "Full debug info, default for `dev` profile", "Full debug info, default for `dev` profile", "No debug info at all, default for `release` profile", "No debug info at all, default for `release` profile", "Line info directives only. For the nvptx* targets this enables [profiling](https://reviews.llvm.org/D46061). For other use cases, `line-tables-only` is the better, more compatible choice.", "Line tables only. Generates the minimal amount of debug info for backtraces with filename/line number info, but not anything else, i.e. no variable or function parameter info.", "Debug info without type or variable-level information. Generates more detailed module-level info than `line-tables-only`.", "Full debug info, default for `dev` profile" ] }, "links": { "key": "https://doc.rust-lang.org/cargo/reference/profiles.html#debug" } } }, "Dependency": { "title": "Dependency", "anyOf": [ { "$ref": "#/definitions/SemVerRequirement" }, { "$ref": "#/definitions/DetailedDependency" } ] }, "DetailedDependency": { "title": "Detailed Dependency", "type": "object", "properties": { "branch": { "description": "Specify the Git branch to use in case of a [Git dependency](https://doc.rust-lang.org/cargo/reference/specifying-dependencies.html#specifying-dependencies-from-git-repositories).", "type": "string", "x-taplo": { "links": { "key": "https://doc.rust-lang.org/cargo/reference/specifying-dependencies.html#specifying-dependencies-from-git-repositories" } } }, "default-features": { "description": "Use the default features of the dependency.", "type": "boolean", "x-taplo": { "links": { "key": "https://doc.rust-lang.org/cargo/reference/specifying-dependencies.html#choosing-features" } } }, "default_features": { "type": "boolean", "x-taplo": { "hidden": true } }, "features": { "description": "List of features to activate in the dependency.", "type": "array", "items": { "description": "List of features to activate in the dependency.", "type": "string", "x-taplo": { "links": { "key": "https://doc.rust-lang.org/cargo/reference/specifying-dependencies.html#choosing-features" }, "plugins": ["crates"], "crates": { "schemas": "feature" } } }, "x-taplo": { "links": { "key": "https://doc.rust-lang.org/cargo/reference/specifying-dependencies.html#choosing-features" } } }, "git": { "description": "To depend on a library located in a `git` repository, the minimum information\nyou need to specify is the location of the repository with the `git` key:\n\n```toml\n[dependencies]\nrand = { git = \"https://github.com/rust-lang-nursery/rand\" }\n```\n\nCargo will fetch the `git` repository at this location then look for a\n`Cargo.toml` for the requested crate anywhere inside the `git` repository\n(not necessarily at the root - for example, specifying a member crate name\nof a workspace and setting `git` to the repository containing the workspace).\n\nSince we haven't specified any other information, Cargo assumes that\nwe intend to use the latest commit on the main branch to build our package.\nYou can combine the `git` key with the `rev`, `tag`, or `branch` keys to\nspecify something else. Here's an example of specifying that you want to use\nthe latest commit on a branch named `next`:\n\n```toml\n[dependencies]\nrand = { git = \"https://github.com/rust-lang-nursery/rand\", branch = \"next\" }\n```\n\nSee [Git Authentication](https://doc.rust-lang.org/cargo/appendix/git-authentication.html) for help with git authentication for private repos.\n\n> **Note**: [crates.io](https://crates.io/) does not allow packages to be published with `git`\n> dependencies (`git` [dev-dependencies](https://doc.rust-lang.org/cargo/reference/specifying-dependencies.html#development-dependencies) are ignored). See the [Multiple\n> locations](https://doc.rust-lang.org/cargo/reference/specifying-dependencies.html#multiple-locations) section for a fallback alternative.\n", "type": "string", "x-taplo": { "links": { "key": "https://doc.rust-lang.org/cargo/reference/specifying-dependencies.html#specifying-dependencies-from-git-repositories" } } }, "optional": { "description": "Mark the dependency as optional.\n\nOptional dependencies can be activated through features.", "type": "boolean", "x-taplo": { "links": { "key": "https://doc.rust-lang.org/cargo/reference/specifying-dependencies.html#choosing-features" } } }, "package": { "description": "Specify the name of the package.\n\nWhen writing a `[dependencies]` section in `Cargo.toml` the key you write for a\ndependency typically matches up to the name of the crate you import from in the\ncode. For some projects, though, you may wish to reference the crate with a\ndifferent name in the code regardless of how it's published on crates.io. For\nexample you may wish to:\n\n* Avoid the need to `use foo as bar` in Rust source.\n* Depend on multiple versions of a crate.\n* Depend on crates with the same name from different registries.\n\nTo support this Cargo supports a `package` key in the `[dependencies]` section\nof which package should be depended on:\n\n```toml\n[package]\nname = \"mypackage\"\nversion = \"0.0.1\"\n\n[dependencies]\nfoo = \"0.1\"\nbar = { git = \"https://github.com/example/project\", package = \"foo\" }\nbaz = { version = \"0.1\", registry = \"custom\", package = \"foo\" }\n```\n\nIn this example, three crates are now available in your Rust code:\n\n```rust\nextern crate foo; // crates.io\nextern crate bar; // git repository\nextern crate baz; // registry `custom`\n```\n\nAll three of these crates have the package name of `foo` in their own\n`Cargo.toml`, so we're explicitly using the `package` key to inform Cargo that\nwe want the `foo` package even though we're calling it something else locally.\nThe `package` key, if not specified, defaults to the name of the dependency\nbeing requested.\n", "type": "string", "x-taplo": { "links": { "key": "https://doc.rust-lang.org/cargo/reference/specifying-dependencies.html#renaming-dependencies-in-cargotoml" } } }, "path": { "description": "Cargo supports **path dependencies** which are typically sub-crates that live within one repository.\nLet's start off by making a new crate inside of our `hello_world` package:\n\n```console\n# inside of hello_world/\n$ cargo new hello_utils\n```\n\nThis will create a new folder `hello_utils` inside of which a `Cargo.toml` and\n`src` folder are ready to be configured. In order to tell Cargo about this, open\nup `hello_world/Cargo.toml` and add `hello_utils` to your dependencies:\n\n```toml\n[dependencies]\nhello_utils = { path = \"hello_utils\" }\n```\n\nThis tells Cargo that we depend on a crate called `hello_utils` which is found\nin the `hello_utils` folder (relative to the `Cargo.toml` it's written in).", "type": "string", "x-taplo": { "links": { "key": "https://doc.rust-lang.org/cargo/reference/specifying-dependencies.html#specifying-path-dependencies" } } }, "public": { "type": "boolean", "x-taplo": { "hidden": true } }, "registry": { "description": "To specify a dependency from a registry other than [crates.io](https://crates.io), first the\nregistry must be configured in a `.cargo/config.toml` file. See the [registries\ndocumentation](https://doc.rust-lang.org/cargo/reference/registries.html) for more information. In the dependency, set the `registry` key\nto the name of the registry to use.\n\n```toml\n[dependencies]\nsome-crate = { version = \"1.0\", registry = \"my-registry\" }\n```\n\n> **Note**: [crates.io](https://crates.io) does not allow packages to be published with\n> dependencies on other registries.\n", "type": "string", "x-taplo": { "links": { "key": "https://doc.rust-lang.org/cargo/reference/specifying-dependencies.html#specifying-dependencies-from-other-registries" } } }, "registry-index": { "type": "string", "x-taplo": { "hidden": true } }, "rev": { "description": "Specify the Git revision to use in case of a [Git dependency](https://doc.rust-lang.org/cargo/reference/specifying-dependencies.html#specifying-dependencies-from-git-repositories).", "type": "string", "x-taplo": { "links": { "key": "https://doc.rust-lang.org/cargo/reference/specifying-dependencies.html#specifying-dependencies-from-git-repositories" } } }, "tag": { "description": "Specify the Git tag to use in case of a [Git dependency](https://doc.rust-lang.org/cargo/reference/specifying-dependencies.html#specifying-dependencies-from-git-repositories).", "type": "string", "x-taplo": { "links": { "key": "https://doc.rust-lang.org/cargo/reference/specifying-dependencies.html#specifying-dependencies-from-git-repositories" } } }, "version": { "$ref": "#/definitions/SemVerRequirement" } }, "x-taplo": { "initFields": ["version"] } }, "Edition": { "title": "Edition", "description": "The `edition` key affects which edition your package is compiled with. Cargo\nwill always generate packages via [`cargo new`](https://doc.rust-lang.org/cargo/commands/cargo-new.html) with the `edition` key set to the\nlatest edition. Setting the `edition` key in `[package]` will affect all\ntargets/crates in the package, including test suites, benchmarks, binaries,\nexamples, etc.", "type": "string", "enum": ["2015", "2018", "2021"], "x-taplo": { "links": { "key": "https://doc.rust-lang.org/stable/edition-guide/introduction.html" } } }, "Lto": { "title": "Lto", "description": "The `lto` setting controls the [`-C lto` flag](https://doc.rust-lang.org/rustc/codegen-options/index.html#lto) which controls LLVM's [link time optimizations](https://llvm.org/docs/LinkTimeOptimization.html). LTO can produce better optimized code, using\nwhole-program analysis, at the cost of longer linking time.\n \nSee also the [`-C linker-plugin-lto`](https://doc.rust-lang.org/rustc/codegen-options/index.html#linker-plugin-lto) `rustc` flag for cross-language LTO.", "enum": ["fat", "thin", "off", true, false], "x-taplo": { "docs": { "enumValues": [ "Performs \"fat\" LTO which attempts to perform optimizations across all crates within the dependency graph.", "Performs [\"thin\" LTO](http://blog.llvm.org/2016/06/thinlto-scalable-and-incremental-lto.html). This is similar to \"fat\", but takes\nsubstantially less time to run while still achieving performance gains\nsimilar to \"fat\".", "Disables LTO.", "Performs \"fat\" LTO which attempts to perform optimizations across all crates within the dependency graph.", "Performs \"thin local LTO\" which performs \"thin\" LTO on the local\ncrate only across its [codegen units](https://doc.rust-lang.org/cargo/reference/profiles.html#codegen-units). No LTO is performed\nif codegen units is 1 or [opt-level](https://doc.rust-lang.org/cargo/reference/profiles.html#opt-level) is 0." ] }, "links": { "key": "https://doc.rust-lang.org/cargo/reference/profiles.html#lto" } } }, "MetaBuild": { "title": "Meta Build", "type": "array", "items": { "type": "string" } }, "Resolver": { "title": "Resolver", "description": "A different feature resolver algorithm can be used by specifying the resolver version in Cargo.toml like this:\n\n[package]\nname = \"my-package\"\nversion = \"1.0.0\"\nresolver = \"2\"\n\nThe version \"1\" resolver is the original resolver that shipped with Cargo up to version 1.50. The default is \"2\" if the root package specifies edition = \"2021\" or a newer edition. Otherwise the default is \"1\".\n\nThe version \"2\" resolver introduces changes in feature unification. See the features chapter for more details.\n\nThe resolver is a global option that affects the entire workspace. The resolver version in dependencies is ignored, only the value in the top-level package will be used. If using a virtual workspace, the version should be specified in the [workspace] table, for example:\n\n[workspace]\nmembers = [\"member1\", \"member2\"]\nresolver = \"2\"", "type": "string", "enum": ["1", "2"], "x-taplo": { "links": { "key": "https://doc.rust-lang.org/cargo/reference/resolver.html#resolver-versions" } } }, "OptLevel": { "title": "Optimization Level", "description": "The `opt-level` setting controls the [`-C opt-level` flag](https://doc.rust-lang.org/rustc/codegen-options/index.html#opt-level) which controls the level\nof optimization. Higher optimization levels may produce faster runtime code at\nthe expense of longer compiler times. Higher levels may also change and\nrearrange the compiled code which may make it harder to use with a debugger.\n\nIt is recommended to experiment with different levels to find the right\nbalance for your project. There may be surprising results, such as level `3`\nbeing slower than `2`, or the `\"s\"` and `\"z\"` levels not being necessarily\nsmaller. You may also want to reevaluate your settings over time as newer\nversions of `rustc` changes optimization behavior.\n\nSee also [Profile Guided Optimization](https://doc.rust-lang.org/rustc/profile-guided-optimization.html) for more advanced optimization\ntechniques.", "enum": [0, 1, 2, 3, "s", "z"], "x-taplo": { "docs": { "enumValues": [ "No optimizations, also turns on [`cfg(debug_assertions)`](https://doc.rust-lang.org/cargo/reference/profiles.html#debug-assertions).", "Basic optimizations.", "Some optimizations.", "All optimizations.", "Optimize for binary size.", "Optimize for binary size, but also turn off loop vectorization." ] }, "links": { "key": "https://doc.rust-lang.org/cargo/reference/profiles.html#opt-level" } } }, "Package": { "title": "Package", "description": "The only fields required by Cargo are [`name`](https://doc.rust-lang.org/cargo/reference/manifest.html#the-name-field) and\n[`version`](https://doc.rust-lang.org/cargo/reference/manifest.html#the-version-field). If publishing to a registry, the registry may\nrequire additional fields. See the notes below and [the publishing chapter](https://doc.rust-lang.org/cargo/reference/publishing.html) for requirements for publishing to [crates.io](https://crates.io/).", "type": "object", "required": ["name", "version"], "properties": { "authors": { "anyOf": [ { "$ref": "#/definitions/Authors" }, { "$ref": "#/definitions/WorkspaceInheritance" } ] }, "autobenches": { "description": "Disable automatic discovery of `bench` targets.\n\nDisabling automatic discovery should only be needed for specialized\nsituations. For example, if you have a library where you want a *module* named\n`bin`, this would present a problem because Cargo would usually attempt to\ncompile anything in the `bin` directory as an executable. Here is a sample\nlayout of this scenario:\n\n```\n├── Cargo.toml\n└── src\n ├── lib.rs\n └── bin\n └── mod.rs\n```\n", "type": "boolean", "x-taplo": { "links": { "key": "https://doc.rust-lang.org/cargo/reference/cargo-targets.html#target-auto-discovery" } } }, "autobins": { "description": "Disable automatic discovery of `bin` targets.\n\nDisabling automatic discovery should only be needed for specialized\nsituations. For example, if you have a library where you want a *module* named\n`bin`, this would present a problem because Cargo would usually attempt to\ncompile anything in the `bin` directory as an executable. Here is a sample\nlayout of this scenario:\n\n```\n├── Cargo.toml\n└── src\n ├── lib.rs\n └── bin\n └── mod.rs\n```\n\nTo prevent Cargo from inferring `src/bin/mod.rs` as an executable, set\nthis to `false` to disable auto-discovery.", "type": "boolean", "x-taplo": { "links": { "key": "https://doc.rust-lang.org/cargo/reference/cargo-targets.html#target-auto-discovery" } } }, "autoexamples": { "description": "Disable automatic discovery of `example` targets.\n\nDisabling automatic discovery should only be needed for specialized\nsituations. For example, if you have a library where you want a *module* named\n`bin`, this would present a problem because Cargo would usually attempt to\ncompile anything in the `bin` directory as an executable. Here is a sample\nlayout of this scenario:\n\n```\n├── Cargo.toml\n└── src\n ├── lib.rs\n └── bin\n └── mod.rs\n```\n", "type": "boolean", "x-taplo": { "links": { "key": "https://doc.rust-lang.org/cargo/reference/cargo-targets.html#target-auto-discovery" } } }, "autotests": { "description": "Disable automatic discovery of `test` targets.\n\nDisabling automatic discovery should only be needed for specialized\nsituations. For example, if you have a library where you want a *module* named\n`bin`, this would present a problem because Cargo would usually attempt to\ncompile anything in the `bin` directory as an executable. Here is a sample\nlayout of this scenario:\n\n```\n├── Cargo.toml\n└── src\n ├── lib.rs\n └── bin\n └── mod.rs\n```\n", "type": "boolean", "x-taplo": { "links": { "key": "https://doc.rust-lang.org/cargo/reference/cargo-targets.html#target-auto-discovery" } } }, "build": { "$ref": "#/definitions/Build" }, "categories": { "anyOf": [ { "$ref": "#/definitions/Categories" }, { "$ref": "#/definitions/WorkspaceInheritance" } ] }, "default-run": { "description": "The `default-run` field in the `[package]` section of the manifest can be used\nto specify a default binary picked by [`cargo run`](https://doc.rust-lang.org/cargo/commands/cargo-run.html). For example, when there is\nboth `src/bin/a.rs` and `src/bin/b.rs`:\n\n```toml\n[package]\ndefault-run = \"a\"\n```", "type": "string", "x-taplo": { "links": { "key": "https://doc.rust-lang.org/cargo/reference/manifest.html#the-default-run-field" } } }, "description": { "anyOf": [ { "$ref": "#/definitions/Description" }, { "$ref": "#/definitions/WorkspaceInheritance" } ] }, "documentation": { "anyOf": [ { "$ref": "#/definitions/Documentation" }, { "$ref": "#/definitions/WorkspaceInheritance" } ] }, "edition": { "anyOf": [ { "$ref": "#/definitions/Edition" }, { "$ref": "#/definitions/WorkspaceInheritance" } ] }, "exclude": { "anyOf": [ { "$ref": "#/definitions/Exclude" }, { "$ref": "#/definitions/WorkspaceInheritance" } ] }, "homepage": { "anyOf": [ { "$ref": "#/definitions/Homepage" }, { "$ref": "#/definitions/WorkspaceInheritance" } ] }, "im-a-teapot": { "description": "Sets whether the current package is a teapot or something else that is not capable of brewing tea.", "type": "boolean", "x-taplo": { "hidden": true } }, "include": { "anyOf": [ { "$ref": "#/definitions/Include" }, { "$ref": "#/definitions/WorkspaceInheritance" } ] }, "keywords": { "anyOf": [ { "$ref": "#/definitions/Keywords" }, { "$ref": "#/definitions/WorkspaceInheritance" } ] }, "license": { "anyOf": [ { "$ref": "#/definitions/License" }, { "$ref": "#/definitions/WorkspaceInheritance" } ] }, "license-file": { "anyOf": [ { "$ref": "#/definitions/LicenseFile" }, { "$ref": "#/definitions/WorkspaceInheritance" } ] }, "links": { "description": "The `links` field specifies the name of a native library that is being linked\nto. More information can be found in the [`links`](https://doc.rust-lang.org/cargo/reference/build-scripts.html#the-links-manifest-key) section of the build\nscript guide.\n\n```toml\n[package]\n# ...\nlinks = \"foo\"\n```", "type": "string", "x-taplo": { "links": { "key": "https://doc.rust-lang.org/cargo/reference/manifest.html#the-links-field" } } }, "metabuild": { "$ref": "#/definitions/MetaBuild", "x-taplo": { "hidden": true } }, "metadata": { "description": "Cargo by default will warn about unused keys in `Cargo.toml` to assist in\ndetecting typos and such. The `package.metadata` table, however, is completely\nignored by Cargo and will not be warned about. This section can be used for\ntools which would like to store package configuration in `Cargo.toml`. For\nexample:\n\n```toml\n[package]\nname = \"...\"\n# ...\n\n# Metadata used when generating an Android APK, for example.\n[package.metadata.android]\npackage-name = \"my-awesome-android-app\"\nassets = \"path/to/static\"\n```\n", "type": "object", "additionalProperties": true, "x-taplo": { "links": { "key": "https://doc.rust-lang.org/cargo/reference/manifest.html#the-metadata-table" } } }, "name": { "description": "The package name is an identifier used to refer to the package. It is used\nwhen listed as a dependency in another package, and as the default name of\ninferred lib and bin targets.\n\nThe name must use only [alphanumeric](https://doc.rust-lang.org/std/primitive.char.html#method.is_alphanumeric) characters or `-` or `_`, and cannot be empty.\nNote that [`cargo new`](https://doc.rust-lang.org/cargo/commands/cargo-new.html) and [`cargo init`](https://doc.rust-lang.org/cargo/commands/cargo-init.html) impose some additional restrictions on\nthe package name, such as enforcing that it is a valid Rust identifier and not\na keyword. [crates.io](https://crates.io) imposes even more restrictions, such as\nenforcing only ASCII characters, not a reserved name, not a special Windows\nname such as \"nul\", is not too long, etc.", "type": "string", "x-taplo": { "links": { "key": "https://doc.rust-lang.org/cargo/reference/manifest.html#the-name-field" } } }, "namespaced-features": { "type": "boolean", "x-taplo": { "hidden": true } }, "publish": { "anyOf": [ { "$ref": "#/definitions/Publish" }, { "$ref": "#/definitions/WorkspaceInheritance" } ] }, "publish-lockfile": { "type": "boolean", "x-taplo": { "hidden": true } }, "readme": { "anyOf": [ { "$ref": "#/definitions/Readme" }, { "$ref": "#/definitions/WorkspaceInheritance" } ] }, "repository": { "anyOf": [ { "$ref": "#/definitions/Repository" }, { "$ref": "#/definitions/WorkspaceInheritance" } ] }, "resolver": { "$ref": "#/definitions/Resolver" }, "rust-version": { "anyOf": [ { "$ref": "#/definitions/RustVersion" }, { "$ref": "#/definitions/WorkspaceInheritance" } ] }, "version": { "anyOf": [ { "$ref": "#/definitions/SemVer" }, { "$ref": "#/definitions/WorkspaceInheritance" } ] }, "workspace": { "description": "The `workspace` field can be used to configure the workspace that this package\nwill be a member of. If not specified this will be inferred as the first\nCargo.toml with `[workspace]` upwards in the filesystem. Setting this is\nuseful if the member is not inside a subdirectory of the workspace root.\n\n```toml\n[package]\n# ...\nworkspace = \"path/to/workspace/root\"\n```\n\nThis field cannot be specified if the manifest already has a `[workspace]`\ntable defined. That is, a crate cannot both be a root crate in a workspace\n(contain `[workspace]`) and also be a member crate of another workspace\n(contain `package.workspace`).\n\nFor more information, see the [workspaces chapter](https://doc.rust-lang.org/cargo/reference/workspaces.html).", "type": "string", "x-taplo": { "links": { "key": "https://doc.rust-lang.org/cargo/reference/manifest.html#the-workspace-field" } } } }, "x-taplo": { "links": { "key": "https://doc.rust-lang.org/cargo/reference/manifest.html#the-package-section" } } }, "Panic": { "title": "Panic", "description": "The `panic` setting controls the [`-C panic` flag](https://doc.rust-lang.org/rustc/codegen-options/index.html#panic) which controls which panic\nstrategy to use.\n\nWhen set to `\"unwind\"`, the actual value depends on the default of the target\nplatform. For example, the NVPTX platform does not support unwinding, so it\nalways uses `\"abort\"`.\n\nTests, benchmarks, build scripts, and proc macros ignore the `panic` setting.\nThe `rustc` test harness currently requires `unwind` behavior. See the\n[`panic-abort-tests`](https://doc.rust-lang.org/cargo/reference/unstable.html#panic-abort-tests) unstable flag which enables `abort` behavior.\n\nAdditionally, when using the `abort` strategy and building a test, all of the\ndependencies will also be forced to built with the `unwind` strategy.", "type": "string", "enum": ["unwind", "abort"], "x-taplo": { "docs": { "enumValues": [ "Unwind the stack upon panic.", "Terminate the process upon panic." ] }, "links": { "key": "https://doc.rust-lang.org/cargo/reference/profiles.html#panic" } } }, "Platform": { "title": "Platform", "type": "object", "properties": { "build-dependencies": { "description": "You can depend on other Cargo-based crates for use in your build scripts.\nDependencies are declared through the `build-dependencies` section of the\nmanifest:\n\n```toml\n[build-dependencies]\ncc = \"1.0.3\"\n```\n\nThe build script **does not** have access to the dependencies listed\nin the `dependencies` or `dev-dependencies` section. Build\ndependencies will likewise not be available to the package itself\nunless listed under the `dependencies` section as well. A package\nitself and its build script are built separately, so their\ndependencies need not coincide. Cargo is kept simpler and cleaner by\nusing independent dependencies for independent purposes.", "type": "object", "additionalProperties": { "$ref": "#/definitions/Dependency" }, "x-taplo": { "links": { "key": "https://doc.rust-lang.org/cargo/reference/specifying-dependencies.html#build-dependencies" }, "plugins": ["crates"], "crates": { "schemas": "dependencies" } } }, "build_dependencies": { "type": "object", "additionalProperties": { "$ref": "#/definitions/Dependency" }, "x-taplo": { "hidden": true } }, "dependencies": { "description": "Cargo is configured to look for dependencies on [crates.io](https://crates.io) by default. Only\nthe name and a version string are required in this case. In [the cargo\nguide](https://doc.rust-lang.org/cargo/guide/index.html), we specified a dependency on the `time` crate:\n\n```toml\n[dependencies]\ntime = \"0.1.12\"\n```\n\nThe string `\"0.1.12\"` is a [semver](https://github.com/steveklabnik/semver#requirements) version requirement. Since this\nstring does not have any operators in it, it is interpreted the same way as\nif we had specified `\"^0.1.12\"`, which is called a caret requirement.\n\nA dependency can also be defined by a table with additional options:\n\n```toml\n[dependencies]\ntime = { path = \"../time\", version = \"0.1.12\" }\n```", "type": "object", "additionalProperties": { "$ref": "#/definitions/Dependency" }, "x-taplo": { "links": { "key": "https://doc.rust-lang.org/cargo/reference/specifying-dependencies.html" } } }, "dev-dependencies": { "description": "The format of `[dev-dependencies]` is equivalent to `[dependencies]`:\n\n```toml\n[dev-dependencies]\ntempdir = \"0.3\"\n```\n\nDev-dependencies are not used when compiling\na package for building, but are used for compiling tests, examples, and\nbenchmarks.\n\nThese dependencies are *not* propagated to other packages which depend on this\npackage.\n\nYou can also have target-specific development dependencies by using\n`dev-dependencies` in the target section header instead of `dependencies`. For\nexample:\n\n```toml\n[target.'cfg(unix)'.dev-dependencies]\nmio = \"0.0.1\"\n```\n\n> **Note**: When a package is published, only dev-dependencies that specify a\n> `version` will be included in the published crate. For most use cases,\n> dev-dependencies are not needed when published, though some users (like OS\n> packagers) may want to run tests within a crate, so providing a `version` if\n> possible can still be beneficial.\n", "type": "object", "additionalProperties": { "$ref": "#/definitions/Dependency" }, "x-taplo": { "links": { "key": "https://doc.rust-lang.org/cargo/reference/specifying-dependencies.html#development-dependencies" }, "plugins": ["crates"], "crates": { "schemas": "dependencies" } } }, "dev_dependencies": { "type": "object", "additionalProperties": { "$ref": "#/definitions/Dependency" }, "x-taplo": { "hidden": true } } } }, "BuildOverride": { "title": "Build Override", "type": "object", "description": "Profile settings can be overridden for specific packages and build-time\ncrates. To override the settings for a specific package, use the `package`\ntable to change the settings for the named package:\n\n```toml\n# The `foo` package will use the -Copt-level=3 flag.\n[profile.dev.package.foo]\nopt-level = 3\n```\n\nThe package name is actually a [Package ID Spec](https://doc.rust-lang.org/cargo/reference/pkgid-spec.html), so you can\ntarget individual versions of a package with syntax such as\n`[profile.dev.package.\"foo:2.1.0\"]`.\n\nTo override the settings for all dependencies (but not any workspace member),\nuse the `\"*\"` package name:\n\n```toml\n# Set the default for dependencies.\n[profile.dev.package.\"*\"]\nopt-level = 2\n```\n\nTo override the settings for build scripts, proc macros, and their\ndependencies, use the `build-override` table:\n\n```toml\n# Set the settings for build scripts and proc-macros.\n[profile.dev.build-override]\nopt-level = 3\n```\n\n> Note: When a dependency is both a normal dependency and a build dependency,\n> Cargo will try to only build it once when `--target` is not specified. When\n> using `build-override`, the dependency may need to be built twice, once as a\n> normal dependency and once with the overridden build settings. This may\n> increase initial build times.\n", "allOf": [ { "$ref": "#/definitions/Profile" } ], "x-taplo": { "docs": { "main": "Profile settings can be overridden for specific packages and build-time\ncrates. To override the settings for a specific package, use the `package`\ntable to change the settings for the named package:\n\n```toml\n# The `foo` package will use the -Copt-level=3 flag.\n[profile.dev.package.foo]\nopt-level = 3\n```\n\nThe package name is actually a [Package ID Spec](https://doc.rust-lang.org/cargo/reference/pkgid-spec.html), so you can\ntarget individual versions of a package with syntax such as\n`[profile.dev.package.\"foo:2.1.0\"]`.\n\nTo override the settings for all dependencies (but not any workspace member),\nuse the `\"*\"` package name:\n\n```toml\n# Set the default for dependencies.\n[profile.dev.package.\"*\"]\nopt-level = 2\n```\n\nTo override the settings for build scripts, proc macros, and their\ndependencies, use the `build-override` table:\n\n```toml\n# Set the settings for build scripts and proc-macros.\n[profile.dev.build-override]\nopt-level = 3\n```\n\n> Note: When a dependency is both a normal dependency and a build dependency,\n> Cargo will try to only build it once when `--target` is not specified. When\n> using `build-override`, the dependency may need to be built twice, once as a\n> normal dependency and once with the overridden build settings. This may\n> increase initial build times.\n" }, "links": { "key": "https://doc.rust-lang.org/cargo/reference/profiles.html#overrides" } } }, "ProfileWithBuildOverride": { "allOf": [ { "$ref": "#/definitions/Profile" }, { "type": "object", "properties": { "build-override": { "$ref": "#/definitions/Profile" } } } ] }, "Profile": { "title": "Profile", "type": "object", "properties": { "codegen-units": { "description": "The `codegen-units` setting controls the [`-C codegen-units` flag](https://doc.rust-lang.org/rustc/codegen-options/index.html#codegen-units) which\ncontrols how many \"code generation units\" a crate will be split into. More\ncode generation units allows more of a crate to be processed in parallel\npossibly reducing compile time, but may produce slower code.\n\nThis option takes an integer greater than 0.\n\nThe default is 256 for [incremental](https://doc.rust-lang.org/cargo/reference/profiles.html#incremental) builds, and 16 for\nnon-incremental builds.", "type": "integer", "format": "uint32", "minimum": 0, "x-taplo": { "links": { "key": "https://doc.rust-lang.org/cargo/reference/profiles.html#codegen-units" } } }, "debug": { "$ref": "#/definitions/DebugLevel" }, "debug-assertions": { "description": "The `debug-assertions` setting controls the [`-C debug-assertions` flag](https://doc.rust-lang.org/rustc/codegen-options/index.html#debug-assertions) which\nturns `cfg(debug_assertions)` [conditional compilation](https://doc.rust-lang.org/reference/conditional-compilation.html#debug_assertions) on or off. Debug\nassertions are intended to include runtime validation which is only available\nin debug/development builds. These may be things that are too expensive or\notherwise undesirable in a release build. Debug assertions enables the\n[`debug_assert!` macro](https://doc.rust-lang.org/std/macro.debug_assert.html) in the standard library.", "type": "boolean", "x-taplo": { "links": { "key": "https://doc.rust-lang.org/cargo/reference/profiles.html#debug-assertions" } } }, "dir-name": { "type": "string", "x-taplo": { "hidden": true } }, "incremental": { "description": "The `incremental` setting controls the [`-C incremental` flag](https://doc.rust-lang.org/rustc/codegen-options/index.html#incremental) which controls\nwhether or not incremental compilation is enabled. Incremental compilation\ncauses `rustc` to to save additional information to disk which will be reused\nwhen recompiling the crate, improving re-compile times. The additional\ninformation is stored in the `target` directory.\n\nThe valid options are:\n\n* `true`: enabled\n* `false`: disabled\n\nIncremental compilation is only used for workspace members and \"path\"\ndependencies.\n\nThe incremental value can be overridden globally with the `CARGO_INCREMENTAL`\n[environment variable](https://doc.rust-lang.org/cargo/reference/environment-variables.html) or the [`build.incremental`](https://doc.rust-lang.org/cargo/reference/config.html#buildincremental) config variable.", "type": "boolean", "x-taplo": { "links": { "key": "https://doc.rust-lang.org/cargo/reference/profiles.html#incremental" } } }, "inherits": { "type": "string", "x-taplo": { "hidden": true } }, "lto": { "$ref": "#/definitions/Lto" }, "opt-level": { "$ref": "#/definitions/OptLevel" }, "overflow-checks": { "description": "The `overflow-checks` setting controls the [`-C overflow-checks` flag](https://doc.rust-lang.org/rustc/codegen-options/index.html#overflow-checks) which\ncontrols the behavior of [runtime integer overflow](https://doc.rust-lang.org/reference/expressions/operator-expr.html#overflow). When overflow-checks are\nenabled, a panic will occur on overflow.", "type": "boolean", "x-taplo": { "links": { "key": "https://doc.rust-lang.org/cargo/reference/profiles.html#overflow-checks" } } }, "package": { "description": "Package-specific overrides.\n\nThe package name is a [Package ID Spec](https://doc.rust-lang.org/cargo/reference/pkgid-spec.html), so you can\ntarget individual versions of a package with syntax such as `[profile.dev.package.\"foo:2.1.0\"]`.", "type": "object", "additionalProperties": { "$ref": "#/definitions/Profile" }, "x-taplo": { "links": { "key": "https://doc.rust-lang.org/cargo/reference/profiles.html#overrides" } } }, "panic": { "$ref": "#/definitions/Panic" }, "rpath": { "description": "The `rpath` setting controls the [`-C rpath` flag](https://doc.rust-lang.org/rustc/codegen-options/index.html#rpath) which controls\nwhether or not [`rpath`](https://en.wikipedia.org/wiki/Rpath) is enabled.", "type": "boolean", "x-taplo": { "links": { "key": "https://doc.rust-lang.org/cargo/reference/profiles.html#rpath" } } } } }, "Profiles": { "title": "Profiles", "description": "Profiles provide a way to alter the compiler settings, influencing things like optimizations and debugging symbols.\n\nCargo has 4 built-in profiles: dev, release, test, and bench. It automatically chooses the profile based on which command is being run, the package and target that is being built, and command-line flags like --release.", "type": "object", "properties": { "bench": { "$ref": "#/definitions/ProfileWithBuildOverride" }, "dev": { "$ref": "#/definitions/ProfileWithBuildOverride" }, "release": { "$ref": "#/definitions/ProfileWithBuildOverride" }, "test": { "$ref": "#/definitions/ProfileWithBuildOverride" } }, "additionalProperties": { "$ref": "#/definitions/ProfileWithBuildOverride" }, "x-taplo": { "links": { "key": "https://doc.rust-lang.org/cargo/reference/profiles.html" } } }, "Publish": { "title": "Publish", "description": "The `publish` field can be used to prevent a package from being published to a package registry (like *crates.io*) by mistake, for instance to keep a package\nprivate in a company.\n\n```toml\n[package]\n# ...\npublish = false\n```\n\nThe value may also be an array of strings which are registry names that are\nallowed to be published to.\n\n```toml\n[package]\n# ...\npublish = [\"some-registry-name\"]\n```", "anyOf": [ { "description": "A boolean indicating whether the package can be published.", "type": "boolean", "enum": [true, false], "default": true, "x-taplo": { "docs": { "enumValues": [ "The package can be published.", "The package cannot be published." ] } } }, { "type": "array", "description": "An array of registry names.", "items": { "type": "string" } } ], "x-taplo": { "links": { "key": "https://doc.rust-lang.org/cargo/reference/manifest.html#the-publish-field" } } }, "Readme": { "title": "Readme", "description": "The `readme` field should be the path to a file in the package root (relative\nto this `Cargo.toml`) that contains general information about the package.\nThis file will be transferred to the registry when you publish. [crates.io](https://crates.io)\nwill interpret it as Markdown and render it on the crate's page.\n\n```toml\n[package]\n# ...\nreadme = \"README.md\"\n```\n\nIf no value is specified for this field, and a file named `README.md`,\n`README.txt` or `README` exists in the package root, then the name of that\nfile will be used. You can suppress this behavior by setting this field to\n`false`. If the field is set to `true`, a default value of `README.md` will\nbe assumed.\n", "anyOf": [ { "description": "The `readme` field should be the path to a file in the package root (relative\nto this `Cargo.toml`) that contains general information about the package.", "type": "string" }, { "type": "boolean", "enum": [true, false], "x-taplo": { "docs": { "enumValues": [ "Use the `README.md` file.", "Do not use the default `README.md` file" ] } } } ], "x-taplo": { "links": { "key": "https://doc.rust-lang.org/cargo/reference/manifest.html#the-readme-field" } } }, "SemVer": { "title": "Semantic Version", "description": "Cargo bakes in the concept of [Semantic Versioning](https://semver.org/), so make sure you follow some basic rules:\n\n* Before you reach 1.0.0, anything goes, but if you make breaking changes,\n increment the minor version. In Rust, breaking changes include adding fields to\n structs or variants to enums.\n* After 1.0.0, only make breaking changes when you increment the major version.\n Don't break the build.\n* After 1.0.0, don't add any new public API (no new `pub` anything) in patch-level\n versions. Always increment the minor version if you add any new `pub` structs,\n traits, fields, types, functions, methods or anything else.\n* Use version numbers with three numeric parts such as 1.0.0 rather than 1.0.", "default": "0.1.0", "type": "string", "format": "semver", "x-taplo": { "links": { "key": "https://doc.rust-lang.org/cargo/reference/manifest.html#the-version-field" } } }, "SemVerRequirement": { "title": "Semantic Version Requirement", "description": "The [version requirement](https://doc.rust-lang.org/cargo/reference/specifying-dependencies.html) of the target dependency.", "default": "*", "type": "string", "format": "semver-requirement", "x-taplo": { "links": { "key": "https://doc.rust-lang.org/cargo/reference/specifying-dependencies.html" }, "plugins": ["crates"], "crates": { "schemas": "version" } } }, "Target": { "title": "Target", "type": "object", "properties": { "bench": { "description": "The `bench` field indicates whether or not the target is benchmarked by\ndefault by [`cargo bench`](https://doc.rust-lang.org/cargo/commands/cargo-bench.html). The default is `true` for lib, bins, and\nbenchmarks.", "type": "boolean", "x-taplo": { "links": { "key": "https://doc.rust-lang.org/cargo/reference/cargo-targets.html#the-bench-field" } } }, "crate-type": { "description": "The `crate-type` field defines the [crate types](https://doc.rust-lang.org/reference/linkage.html) that will be generated by the\ntarget. It is an array of strings, allowing you to specify multiple crate\ntypes for a single target. This can only be specified for libraries and\nexamples. Binaries, tests, and benchmarks are always the \"bin\" crate type.\n\nThe available options are `bin`, `lib`, `rlib`, `dylib`, `cdylib`,\n`staticlib`, and `proc-macro`. You can read more about the different crate\ntypes in the [Rust Reference Manual](https://doc.rust-lang.org/reference/linkage.html).", "type": "array", "items": { "description": "The `crate-type` field defines the [crate types](https://doc.rust-lang.org/reference/linkage.html) that will be generated by the\ntarget. It is an array of strings, allowing you to specify multiple crate\ntypes for a single target. This can only be specified for libraries and\nexamples. Binaries, tests, and benchmarks are always the \"bin\" crate type.\n\nThe available options are `bin`, `lib`, `rlib`, `dylib`, `cdylib`,\n`staticlib`, and `proc-macro`. You can read more about the different crate\ntypes in the [Rust Reference Manual](https://doc.rust-lang.org/reference/linkage.html).", "type": "string", "x-taplo": { "docs": { "enumValues": [ "A runnable executable will be produced. This requires that there is a `main` function in the crate which\nwill be run when the program begins executing. This will link in all Rust and\nnative dependencies, producing a distributable binary.", "A Rust library will be produced.\nThis is an ambiguous concept as to what exactly is produced because a library\ncan manifest itself in several forms. The purpose of this generic `lib` option\nis to generate the \"compiler recommended\" style of library. The output library\nwill always be usable by rustc, but the actual type of library may change from\ntime-to-time. The remaining output types are all different flavors of\nlibraries, and the `lib` type can be seen as an alias for one of them (but the\nactual one is compiler-defined).", "A \"Rust library\" file will be produced. This is used as an intermediate artifact and can be thought of as a\n\"static Rust library\". These `rlib` files, unlike `staticlib` files, are\ninterpreted by the compiler in future linkage. This essentially means\nthat `rustc` will look for metadata in `rlib` files like it looks for metadata\nin dynamic libraries. This form of output is used to produce statically linked\nexecutables as well as `staticlib` outputs.", "A dynamic Rust library will be produced. This is different from the `lib` output type in that this forces\ndynamic library generation. The resulting dynamic library can be used as a\ndependency for other libraries and/or executables. This output type will\ncreate `*.so` files on linux, `*.dylib` files on osx, and `*.dll` files on\nwindows.", "A dynamic system library will be produced. This is used when compiling\na dynamic library to be loaded from another language. This output type will\ncreate `*.so` files on Linux, `*.dylib` files on macOS, and `*.dll` files on\nWindows.", "A static system library will be produced. This is different from other library outputs in that\nthe compiler will never attempt to link to `staticlib` outputs. The\npurpose of this output type is to create a static library containing all of\nthe local crate's code along with all upstream dependencies. The static\nlibrary is actually a `*.a` archive on linux and osx and a `*.lib` file on\nwindows. This format is recommended for use in situations such as linking\nRust code into an existing non-Rust application because it will not have\ndynamic dependencies on other Rust code.", "The output produced is not specified, but if a `-L` path is provided to it then the\ncompiler will recognize the output artifacts as a macro and it can be loaded\nfor a program. Crates compiled with this crate type must only export\n[procedural macros](https://doc.rust-lang.org/reference/procedural-macros.html). The compiler will automatically set the `proc_macro`\n[configuration option](https://doc.rust-lang.org/reference/conditional-compilation.html). The crates are always compiled with the same target\nthat the compiler itself was built with. For example, if you are executing\nthe compiler from Linux with an `x86_64` CPU, the target will be\n`x86_64-unknown-linux-gnu` even if the crate is a dependency of another crate\nbeing built for a different target." ] }, "links": { "key": "https://doc.rust-lang.org/cargo/reference/cargo-targets.html#the-crate-type-field" } } }, "x-taplo": { "docs": { "enumValues": [ "A runnable executable will be produced. This requires that there is a `main` function in the crate which\nwill be run when the program begins executing. This will link in all Rust and\nnative dependencies, producing a distributable binary.", "A Rust library will be produced.\nThis is an ambiguous concept as to what exactly is produced because a library\ncan manifest itself in several forms. The purpose of this generic `lib` option\nis to generate the \"compiler recommended\" style of library. The output library\nwill always be usable by rustc, but the actual type of library may change from\ntime-to-time. The remaining output types are all different flavors of\nlibraries, and the `lib` type can be seen as an alias for one of them (but the\nactual one is compiler-defined).", "A \"Rust library\" file will be produced. This is used as an intermediate artifact and can be thought of as a\n\"static Rust library\". These `rlib` files, unlike `staticlib` files, are\ninterpreted by the compiler in future linkage. This essentially means\nthat `rustc` will look for metadata in `rlib` files like it looks for metadata\nin dynamic libraries. This form of output is used to produce statically linked\nexecutables as well as `staticlib` outputs.", "A dynamic Rust library will be produced. This is different from the `lib` output type in that this forces\ndynamic library generation. The resulting dynamic library can be used as a\ndependency for other libraries and/or executables. This output type will\ncreate `*.so` files on linux, `*.dylib` files on osx, and `*.dll` files on\nwindows.", "A dynamic system library will be produced. This is used when compiling\na dynamic library to be loaded from another language. This output type will\ncreate `*.so` files on Linux, `*.dylib` files on macOS, and `*.dll` files on\nWindows.", "A static system library will be produced. This is different from other library outputs in that\nthe compiler will never attempt to link to `staticlib` outputs. The\npurpose of this output type is to create a static library containing all of\nthe local crate's code along with all upstream dependencies. The static\nlibrary is actually a `*.a` archive on linux and osx and a `*.lib` file on\nwindows. This format is recommended for use in situations such as linking\nRust code into an existing non-Rust application because it will not have\ndynamic dependencies on other Rust code.", "The output produced is not specified, but if a `-L` path is provided to it then the\ncompiler will recognize the output artifacts as a macro and it can be loaded\nfor a program. Crates compiled with this crate type must only export\n[procedural macros](https://doc.rust-lang.org/reference/procedural-macros.html). The compiler will automatically set the `proc_macro`\n[configuration option](https://doc.rust-lang.org/reference/conditional-compilation.html). The crates are always compiled with the same target\nthat the compiler itself was built with. For example, if you are executing\nthe compiler from Linux with an `x86_64` CPU, the target will be\n`x86_64-unknown-linux-gnu` even if the crate is a dependency of another crate\nbeing built for a different target." ] }, "links": { "key": "https://doc.rust-lang.org/cargo/reference/cargo-targets.html#the-crate-type-field" } } }, "crate_type": { "type": "array", "items": { "type": "string", "x-taplo": { "hidden": true } }, "x-taplo": { "hidden": true } }, "doc": { "description": "The `doc` field indicates whether or not the target is included in the\ndocumentation generated by [`cargo doc`](https://doc.rust-lang.org/cargo/commands/cargo-doc.html) by default. The default is `true` for\nlibraries and binaries.\n\n> **Note**: The binary will be skipped if its name is the same as the lib\n> target.", "type": "boolean", "x-taplo": { "links": { "key": "https://doc.rust-lang.org/cargo/reference/cargo-targets.html#the-doc-field" } } }, "doctest": { "description": "The `doctest` field indicates whether or not [documentation examples](https://doc.rust-lang.org/rustdoc/documentation-tests.html) are\ntested by default by [`cargo test`](https://doc.rust-lang.org/cargo/commands/cargo-test.html). This is only relevant for libraries, it\nhas no effect on other sections. The default is `true` for the library.\n", "type": "boolean", "x-taplo": { "links": { "key": "https://doc.rust-lang.org/cargo/reference/cargo-targets.html#the-doctest-field" } } }, "edition": { "$ref": "#/definitions/Edition" }, "harness": { "description": "The `harness` field indicates that the [`--test` flag](https://doc.rust-lang.org/rustc/command-line-arguments.html#option-test) will be passed to\n`rustc` which will automatically include the libtest library which is the\ndriver for collecting and running tests marked with the [`#[test]` attribute](https://doc.rust-lang.org/reference/attributes/testing.html#the-test-attribute) or benchmarks with the `#[bench]` attribute. The\ndefault is `true` for all targets.\n\nIf set to `false`, then you are responsible for defining a `main()` function\nto run tests and benchmarks.\n\nTests have the [`cfg(test)` conditional expression](https://doc.rust-lang.org/reference/conditional-compilation.html#test) enabled whether\nor not the harness is enabled.", "type": "boolean", "x-taplo": { "links": { "key": "https://doc.rust-lang.org/cargo/reference/cargo-targets.html#the-harness-field" } } }, "name": { "description": "The `name` field specifies the name of the target, which corresponds to the\nfilename of the artifact that will be generated. For a library, this is the\ncrate name that dependencies will use to reference it.\n\nFor the `[lib]` and the default binary (`src/main.rs`), this defaults to the\nname of the package, with any dashes replaced with underscores. For other\n[auto discovered](https://doc.rust-lang.org/cargo/reference/cargo-targets.html#target-auto-discovery) targets, it defaults to the\ndirectory or file name.\n\nThis is required for all targets except `[lib]`.", "type": "string", "x-taplo": { "links": { "key": "https://doc.rust-lang.org/cargo/reference/cargo-targets.html#the-name-field" } } }, "path": { "description": "The `path` field specifies where the source for the crate is located, relative\nto the `Cargo.toml` file.\n\nIf not specified, the [inferred path](https://doc.rust-lang.org/cargo/reference/cargo-targets.html#target-auto-discovery) is used based on\nthe target name.", "type": "string", "x-taplo": { "links": { "key": "https://doc.rust-lang.org/cargo/reference/cargo-targets.html#the-path-field" } } }, "plugin": { "type": "boolean", "x-taplo": { "hidden": true } }, "proc-macro": { "description": "The `proc-macro` field indicates that the library is a [procedural macro](https://doc.rust-lang.org/book/ch19-06-macros.html)\n([reference](https://doc.rust-lang.org/reference/procedural-macros.html)). This is only valid for the `[lib]`\ntarget.", "type": "boolean", "x-taplo": { "links": { "key": "https://doc.rust-lang.org/cargo/reference/cargo-targets.html#the-proc-macro-field" } } }, "proc_macro": { "type": "boolean", "x-taplo": { "hidden": true } }, "required-features": { "description": "The `required-features` field specifies which [features](https://doc.rust-lang.org/cargo/reference/features.html) the target needs in\norder to be built. If any of the required features are not enabled, the\ntarget will be skipped. This is only relevant for the `[[bin]]`, `[[bench]]`,\n`[[test]]`, and `[[example]]` sections, it has no effect on `[lib]`.\n\n```toml\n[features]\n# ...\npostgres = []\nsqlite = []\ntools = []\n\n[[bin]]\nname = \"my-pg-tool\"\nrequired-features = [\"postgres\", \"tools\"]\n```\n", "type": "array", "items": { "description": "The `required-features` field specifies which [features](https://doc.rust-lang.org/cargo/reference/features.html) the target needs in\norder to be built. If any of the required features are not enabled, the\ntarget will be skipped. This is only relevant for the `[[bin]]`, `[[bench]]`,\n`[[test]]`, and `[[example]]` sections, it has no effect on `[lib]`.\n\n```toml\n[features]\n# ...\npostgres = []\nsqlite = []\ntools = []\n\n[[bin]]\nname = \"my-pg-tool\"\nrequired-features = [\"postgres\", \"tools\"]\n```\n", "type": "string", "x-taplo": { "links": { "key": "https://doc.rust-lang.org/cargo/reference/cargo-targets.html#the-required-features-field" } } }, "x-taplo": { "links": { "key": "https://doc.rust-lang.org/cargo/reference/cargo-targets.html#the-required-features-field" } } }, "test": { "description": "The `test` field indicates whether or not the target is tested by default by\n[`cargo test`](https://doc.rust-lang.org/cargo/commands/cargo-test.html). The default is `true` for lib, bins, and tests.\n\n> **Note**: Examples are built by [`cargo test`](https://doc.rust-lang.org/cargo/commands/cargo-test.html) by default to ensure they\n> continue to compile, but they are not *tested* by default. Setting `test =\n> true` for an example will also build it as a test and run any\n> [`#[test]`](https://doc.rust-lang.org/reference/attributes/testing.html#the-test-attribute) functions defined in the example.", "type": "boolean", "x-taplo": { "links": { "key": "https://doc.rust-lang.org/cargo/reference/cargo-targets.html#the-test-field" } } } } }, "Workspace": { "title": "Workspace", "description": "The `[workspace]` table in `Cargo.toml` defines which packages are members of\nthe workspace:\n\n```toml\n[workspace]\nmembers = [\"member1\", \"path/to/member2\", \"crates/*\"]\nexclude = [\"crates/foo\", \"path/to/other\"]\n```\n\nAn empty `[workspace]` table can be used with a `[package]` to conveniently\ncreate a workspace with the package and all of its path dependencies.\n\nAll [`path` dependencies](https://doc.rust-lang.org/cargo/reference/specifying-dependencies.html#specifying-path-dependencies) residing in the workspace directory automatically\nbecome members. Additional members can be listed with the `members` key, which\nshould be an array of strings containing directories with `Cargo.toml` files.\n\nThe `members` list also supports [globs](https://docs.rs/glob/0.3.0/glob/struct.Pattern.html) to match multiple paths, using\ntypical filename glob patterns like `*` and `?`.\n\nThe `exclude` key can be used to prevent paths from being included in a\nworkspace. This can be useful if some path dependencies aren't desired to be\nin the workspace at all, or using a glob pattern and you want to remove a\ndirectory.\n\nAn empty `[workspace]` table can be used with a `[package]` to conveniently\ncreate a workspace with the package and all of its path dependencies.", "type": "object", "properties": { "default-members": { "description": "The optional `default-members` key can be specified to set the members to\noperate on when in the workspace root and the package selection flags are not\nused:\n\n```toml\n[workspace]\nmembers = [\"path/to/member1\", \"path/to/member2\", \"path/to/member3/*\"]\ndefault-members = [\"path/to/member2\", \"path/to/member3/foo\"]\n```\n\nWhen specified, `default-members` must expand to a subset of `members`.", "type": "array", "items": { "description": "The optional `default-members` key can be specified to set the members to\noperate on when in the workspace root and the package selection flags are not\nused:\n\n```toml\n[workspace]\nmembers = [\"path/to/member1\", \"path/to/member2\", \"path/to/member3/*\"]\ndefault-members = [\"path/to/member2\", \"path/to/member3/foo\"]\n```\n\nWhen specified, `default-members` must expand to a subset of `members`.", "type": "string", "x-taplo": { "links": { "key": "https://doc.rust-lang.org/cargo/reference/workspaces.html#the-workspace-section" } } }, "x-taplo": { "links": { "key": "https://doc.rust-lang.org/cargo/reference/workspaces.html#the-workspace-section" } } }, "dependencies": { "description": "The `workspace.dependencies` table is where you define dependencies to be\ninherited by members of a workspace.\n\nSpecifying a workspace dependency is similar to [package dependencies](https://doc.rust-lang.org/cargo/reference/specifying-dependencies.html) except:\n- Dependencies from this table cannot be declared as `optional`\n- [`features`][features] declared in this table are additive with the `features` from `[dependencies]`\n\nYou can then [inherit the workspace dependency as a package dependency](https://doc.rust-lang.org/cargo/reference/specifying-dependencies.html#inheriting-a-dependency-from-a-workspace)\n\nExample:\n```toml\n# [PROJECT_DIR]/Cargo.toml\n[workspace]\nmembers = [\"bar\"]\n\n[workspace.dependencies]\ncc = \"1.0.73\"\nrand = \"0.8.5\"\nregex = { version = \"1.6.0\", default-features = false, features = [\"std\"] }\n```\n\n```toml\n# [PROJECT_DIR]/bar/Cargo.toml\n[package]\nname = \"bar\"\nversion = \"0.2.0\"\n\n[dependencies]\nregex = { workspace = true, features = [\"unicode\"] }\n\n[build-dependencies]\ncc.workspace = true\n\n[dev-dependencies]\nrand.workspace = true\n```", "type": "object", "additionalProperties": { "$ref": "#/definitions/Dependency" }, "x-taplo": { "links": { "key": "https://doc.rust-lang.org/cargo/reference/workspaces.html#the-workspace-section" } } }, "exclude": { "description": "The `exclude` key can be used to prevent paths from being included in a\nworkspace. This can be useful if some path dependencies aren't desired to be\nin the workspace at all, or using a glob pattern and you want to remove a\ndirectory.", "type": "array", "items": { "description": "The `exclude` key can be used to prevent paths from being included in a\nworkspace. This can be useful if some path dependencies aren't desired to be\nin the workspace at all, or using a glob pattern and you want to remove a\ndirectory.", "type": "string", "x-taplo": { "links": { "key": "https://doc.rust-lang.org/cargo/reference/workspaces.html#the-workspace-section" } } }, "x-taplo": { "links": { "key": "https://doc.rust-lang.org/cargo/reference/workspaces.html#the-workspace-section" } } }, "members": { "description": "All [`path` dependencies] residing in the workspace directory automatically\nbecome members. Additional members can be listed with the `members` key, which\nshould be an array of strings containing directories with `Cargo.toml` files.\n\nThe `members` list also supports [globs] to match multiple paths, using\ntypical filename glob patterns like `*` and `?`.", "type": "array", "items": { "description": "All [`path` dependencies] residing in the workspace directory automatically\nbecome members. Additional members can be listed with the `members` key, which\nshould be an array of strings containing directories with `Cargo.toml` files.\n\nThe `members` list also supports [globs] to match multiple paths, using\ntypical filename glob patterns like `*` and `?`.", "type": "string", "x-taplo": { "links": { "key": "https://doc.rust-lang.org/cargo/reference/workspaces.html#the-workspace-section" } } }, "x-taplo": { "links": { "key": "https://doc.rust-lang.org/cargo/reference/workspaces.html#the-workspace-section" } } }, "metadata": { "description": "The `workspace.metadata` table is ignored by Cargo and will not be warned\nabout. This section can be used for tools that would like to store workspace\nconfiguration in `Cargo.toml`. For example:\n\n```toml\n[workspace]\nmembers = [\"member1\", \"member2\"]\n\n[workspace.metadata.webcontents]\nroot = \"path/to/webproject\"\ntool = [\"npm\", \"run\", \"build\"]\n# ...\n```\n\nThere is a similar set of tables at the package level at\n`package.metadata`. While cargo does not specify a\nformat for the content of either of these tables, it is suggested that\nexternal tools may wish to use them in a consistent fashion, such as referring\nto the data in `workspace.metadata` if data is missing from `package.metadata`,\nif that makes sense for the tool in question.\n", "type": "object", "additionalProperties": true, "x-taplo": { "links": { "key": "https://doc.rust-lang.org/cargo/reference/workspaces.html#the-workspace-section" } } }, "resolver": { "$ref": "#/definitions/Resolver" }, "package": { "description": "The `workspace.package` table is where you define keys that can be\ninherited by members of a workspace. These keys can be inherited by\ndefining them in the member package with `{key}.workspace = true`.\n\nKeys that are supported:\n\n| | |\n|----------------|-----------------|\n| `authors` | `categories` |\n| `description` | `documentation` |\n| `edition` | `exclude` |\n| `homepage` | `include` |\n| `keywords` | `license` |\n| `license-file` | `publish` |\n| `readme` | `repository` |\n| `rust-version` | `version` |\n\n- `license-file` and `readme` are relative to the workspace root\n- `include` and `exclude` are relative to your package root\n\nExample:\n```toml\n# [PROJECT_DIR]/Cargo.toml\n[workspace]\nmembers = [\"bar\"]\n\n[workspace.package]\nversion = \"1.2.3\"\nauthors = [\"Nice Folks\"]\ndescription = \"A short description of my package\"\ndocumentation = \"https://example.com/bar\"\n```\n\n```toml\n# [PROJECT_DIR]/bar/Cargo.toml\n[package]\nname = \"bar\"\nversion.workspace = true\nauthors.workspace = true\ndescription.workspace = true\ndocumentation.workspace = true\n```", "type": "object", "properties": { "authors": { "$ref": "#/definitions/Authors" }, "categories": { "$ref": "#/definitions/Categories" }, "description": { "$ref": "#/definitions/Description" }, "documentation": { "$ref": "#/definitions/Documentation" }, "edition": { "$ref": "#/definitions/Edition" }, "exclude": { "$ref": "#/definitions/Exclude" }, "homepage": { "$ref": "#/definitions/Homepage" }, "include": { "$ref": "#/definitions/Include" }, "keywords": { "$ref": "#/definitions/Keywords" }, "license": { "$ref": "#/definitions/License" }, "license-file": { "$ref": "#/definitions/LicenseFile" }, "publish": { "$ref": "#/definitions/Publish" }, "readme": { "$ref": "#/definitions/Readme" }, "repository": { "$ref": "#/definitions/Repository" }, "rust-version": { "$ref": "#/definitions/RustVersion" }, "version": { "$ref": "#/definitions/SemVer" } }, "x-taplo": { "links": { "key": "https://doc.rust-lang.org/cargo/reference/workspaces.html#the-package-table" } } } }, "x-taplo": { "links": { "key": "https://doc.rust-lang.org/cargo/reference/workspaces.html" } } }, "Authors": { "title": "Authors", "description": "The `authors` field lists people or organizations that are considered the\n\"authors\" of the package. The exact meaning is open to interpretation — it may\nlist the original or primary authors, current maintainers, or owners of the\npackage. These names will be listed on the crate's page on\n[crates.io](https://crates.io). An optional email address may be included within angled\nbrackets at the end of each author.\n\n> **Note**: [crates.io](https://crates.io) requires at least one author to be listed.", "type": "array", "items": { "description": "The `authors` field lists people or organizations that are considered the\n\"authors\" of the package. The exact meaning is open to interpretation — it may\nlist the original or primary authors, current maintainers, or owners of the\npackage. These names will be listed on the crate's page on\n[crates.io](https://crates.io). An optional email address may be included within angled\nbrackets at the end of each author.\n\n> **Note**: [crates.io](https://crates.io) requires at least one author to be listed.", "type": "string", "x-taplo": { "links": { "key": "https://doc.rust-lang.org/cargo/reference/manifest.html#the-authors-field" } } }, "x-taplo": { "links": { "key": "https://doc.rust-lang.org/cargo/reference/manifest.html#the-authors-field" } } }, "Categories": { "title": "Categories", "description": "The `categories` field is an array of strings of the categories this package\nbelongs to.\n\n```toml\ncategories = [\"command-line-utilities\", \"development-tools::cargo-plugins\"]\n```\n\n> **Note**: [crates.io](https://crates.io) has a maximum of 5 categories. Each category should\n> match one of the strings available at https://crates.io/category_slugs, and\n> must match exactly.", "type": "array", "items": { "description": "The `categories` field is an array of strings of the categories this package\nbelongs to.\n\n```toml\ncategories = [\"command-line-utilities\", \"development-tools::cargo-plugins\"]\n```\n\n> **Note**: [crates.io](https://crates.io) has a maximum of 5 categories. Each category should\n> match one of the strings available at https://crates.io/category_slugs, and\n> must match exactly.", "type": "string", "x-taplo": { "links": { "key": "https://doc.rust-lang.org/cargo/reference/manifest.html#the-categories-field" } } }, "x-taplo": { "links": { "key": "https://doc.rust-lang.org/cargo/reference/manifest.html#the-categories-field" } } }, "Description": { "title": "Description", "description": "The description is a short blurb about the package. [crates.io](https://crates.io) will display\nthis with your package. This should be plain text (not Markdown).\n\n```toml\n[package]\n# ...\ndescription = \"A short description of my package\"\n```\n\n> **Note**: [crates.io](https://crates.io) requires the `description` to be set.", "type": "string", "x-taplo": { "links": { "key": "https://doc.rust-lang.org/cargo/reference/manifest.html#the-description-field" } } }, "Documentation": { "title": "Documentation", "description": "\nThe `documentation` field specifies a URL to a website hosting the crate's\ndocumentation. If no URL is specified in the manifest file, [crates.io](https://crates.io) will\nautomatically link your crate to the corresponding [docs.rs](https://docs.rs) page.\n\n```toml\n[package]\n# ...\ndocumentation = \"https://docs.rs/bitflags\"\n```\n", "type": "string", "x-taplo": { "links": { "key": "https://doc.rust-lang.org/cargo/reference/manifest.html#the-documentation-field" } } }, "Exclude": { "title": "Exclude", "description": "You can explicitly specify that a set of file patterns should be ignored or\nincluded for the purposes of packaging. The patterns specified in the\n`exclude` field identify a set of files that are not included, and the\npatterns in `include` specify files that are explicitly included.\n\nThe patterns should be [gitignore](https://git-scm.com/docs/gitignore)-style patterns. Briefly:\n\n- `foo` matches any file or directory with the name `foo` anywhere in the\n package. This is equivalent to the pattern `**/foo`.\n- `/foo` matches any file or directory with the name `foo` only in the root of\n the package.\n- `foo/` matches any *directory* with the name `foo` anywhere in the package.\n- Common glob patterns like `*`, `?`, and `[]` are supported:\n - `*` matches zero or more characters except `/`. For example, `*.html`\n matches any file or directory with the `.html` extension anywhere in the\n package.\n - `?` matches any character except `/`. For example, `foo?` matches `food`,\n but not `foo`.\n - `[]` allows for matching a range of characters. For example, `[ab]`\n matches either `a` or `b`. `[a-z]` matches letters a through z.\n- `**/` prefix matches in any directory. For example, `**/foo/bar` matches the\n file or directory `bar` anywhere that is directly under directory `foo`.\n- `/**` suffix matches everything inside. For example, `foo/**` matches all\n files inside directory `foo`, including all files in subdirectories below\n `foo`.\n- `/**/` matches zero or more directories. For example, `a/**/b` matches\n `a/b`, `a/x/b`, `a/x/y/b`, and so on.\n- `!` prefix negates a pattern. For example, a pattern of `src/**.rs` and\n `!foo.rs` would match all files with the `.rs` extension inside the `src`\n directory, except for any file named `foo.rs`.\n\nIf git is being used for a package, the `exclude` field will be seeded with\nthe `gitignore` settings from the repository.\n\n```toml\n[package]\n# ...\nexclude = [\"build/**/*.o\", \"doc/**/*.html\"]\n```\n\n```toml\n[package]\n# ...\ninclude = [\"src/**/*\", \"Cargo.toml\"]\n```\n\nThe options are mutually exclusive: setting `include` will override an\n`exclude`. Note that `include` must be an exhaustive list of files as otherwise\nnecessary source files may not be included. The package's `Cargo.toml` is\nautomatically included.\n\nThe include/exclude list is also used for change tracking in some situations.\nFor targets built with `rustdoc`, it is used to determine the list of files to\ntrack to determine if the target should be rebuilt. If the package has a\n[build script](https://doc.rust-lang.org/cargo/reference/build-scripts.html) that does not emit any `rerun-if-*` directives, then the\ninclude/exclude list is used for tracking if the build script should be re-run\nif any of those files change.", "type": "array", "items": { "description": "You can explicitly specify that a set of file patterns should be ignored or\nincluded for the purposes of packaging. The patterns specified in the\n`exclude` field identify a set of files that are not included, and the\npatterns in `include` specify files that are explicitly included.\n\nThe patterns should be [gitignore](https://git-scm.com/docs/gitignore)-style patterns. Briefly:\n\n- `foo` matches any file or directory with the name `foo` anywhere in the\n package. This is equivalent to the pattern `**/foo`.\n- `/foo` matches any file or directory with the name `foo` only in the root of\n the package.\n- `foo/` matches any *directory* with the name `foo` anywhere in the package.\n- Common glob patterns like `*`, `?`, and `[]` are supported:\n - `*` matches zero or more characters except `/`. For example, `*.html`\n matches any file or directory with the `.html` extension anywhere in the\n package.\n - `?` matches any character except `/`. For example, `foo?` matches `food`,\n but not `foo`.\n - `[]` allows for matching a range of characters. For example, `[ab]`\n matches either `a` or `b`. `[a-z]` matches letters a through z.\n- `**/` prefix matches in any directory. For example, `**/foo/bar` matches the\n file or directory `bar` anywhere that is directly under directory `foo`.\n- `/**` suffix matches everything inside. For example, `foo/**` matches all\n files inside directory `foo`, including all files in subdirectories below\n `foo`.\n- `/**/` matches zero or more directories. For example, `a/**/b` matches\n `a/b`, `a/x/b`, `a/x/y/b`, and so on.\n- `!` prefix negates a pattern. For example, a pattern of `src/**.rs` and\n `!foo.rs` would match all files with the `.rs` extension inside the `src`\n directory, except for any file named `foo.rs`.\n\nIf git is being used for a package, the `exclude` field will be seeded with\nthe `gitignore` settings from the repository.\n\n```toml\n[package]\n# ...\nexclude = [\"build/**/*.o\", \"doc/**/*.html\"]\n```\n\n```toml\n[package]\n# ...\ninclude = [\"src/**/*\", \"Cargo.toml\"]\n```\n\nThe options are mutually exclusive: setting `include` will override an\n`exclude`. Note that `include` must be an exhaustive list of files as otherwise\nnecessary source files may not be included. The package's `Cargo.toml` is\nautomatically included.\n\nThe include/exclude list is also used for change tracking in some situations.\nFor targets built with `rustdoc`, it is used to determine the list of files to\ntrack to determine if the target should be rebuilt. If the package has a\n[build script](https://doc.rust-lang.org/cargo/reference/build-scripts.html) that does not emit any `rerun-if-*` directives, then the\ninclude/exclude list is used for tracking if the build script should be re-run\nif any of those files change.", "type": "string", "x-taplo": { "links": { "key": "https://doc.rust-lang.org/cargo/reference/manifest.html#the-exclude-and-include-fields" } } }, "x-taplo": { "links": { "key": "https://doc.rust-lang.org/cargo/reference/manifest.html#the-exclude-and-include-fields" } } }, "Homepage": { "title": "Homepage", "description": "The `homepage` field should be a URL to a site that is the home page for your\npackage.\n\n```toml\n[package]\n# ...\nhomepage = \"https://serde.rs/\"\n```", "type": "string", "x-taplo": { "links": { "key": "https://doc.rust-lang.org/cargo/reference/manifest.html#the-homepage-field" } } }, "Include": { "description": "You can explicitly specify that a set of file patterns should be ignored or\nincluded for the purposes of packaging. The patterns specified in the\n`exclude` field identify a set of files that are not included, and the\npatterns in `include` specify files that are explicitly included.\n\nThe patterns should be [gitignore](https://git-scm.com/docs/gitignore)-style patterns. Briefly:\n\n- `foo` matches any file or directory with the name `foo` anywhere in the\n package. This is equivalent to the pattern `**/foo`.\n- `/foo` matches any file or directory with the name `foo` only in the root of\n the package.\n- `foo/` matches any *directory* with the name `foo` anywhere in the package.\n- Common glob patterns like `*`, `?`, and `[]` are supported:\n - `*` matches zero or more characters except `/`. For example, `*.html`\n matches any file or directory with the `.html` extension anywhere in the\n package.\n - `?` matches any character except `/`. For example, `foo?` matches `food`,\n but not `foo`.\n - `[]` allows for matching a range of characters. For example, `[ab]`\n matches either `a` or `b`. `[a-z]` matches letters a through z.\n- `**/` prefix matches in any directory. For example, `**/foo/bar` matches the\n file or directory `bar` anywhere that is directly under directory `foo`.\n- `/**` suffix matches everything inside. For example, `foo/**` matches all\n files inside directory `foo`, including all files in subdirectories below\n `foo`.\n- `/**/` matches zero or more directories. For example, `a/**/b` matches\n `a/b`, `a/x/b`, `a/x/y/b`, and so on.\n- `!` prefix negates a pattern. For example, a pattern of `src/**.rs` and\n `!foo.rs` would match all files with the `.rs` extension inside the `src`\n directory, except for any file named `foo.rs`.\n\nIf git is being used for a package, the `exclude` field will be seeded with\nthe `gitignore` settings from the repository.\n\n```toml\n[package]\n# ...\nexclude = [\"build/**/*.o\", \"doc/**/*.html\"]\n```\n\n```toml\n[package]\n# ...\ninclude = [\"src/**/*\", \"Cargo.toml\"]\n```\n\nThe options are mutually exclusive: setting `include` will override an\n`exclude`. Note that `include` must be an exhaustive list of files as otherwise\nnecessary source files may not be included. The package's `Cargo.toml` is\nautomatically included.\n\nThe include/exclude list is also used for change tracking in some situations.\nFor targets built with `rustdoc`, it is used to determine the list of files to\ntrack to determine if the target should be rebuilt. If the package has a\n[build script](https://doc.rust-lang.org/cargo/reference/build-scripts.html) that does not emit any `rerun-if-*` directives, then the\ninclude/exclude list is used for tracking if the build script should be re-run\nif any of those files change.", "type": "array", "items": { "description": "You can explicitly specify that a set of file patterns should be ignored or\nincluded for the purposes of packaging. The patterns specified in the\n`exclude` field identify a set of files that are not included, and the\npatterns in `include` specify files that are explicitly included.\n\nThe patterns should be [gitignore](https://git-scm.com/docs/gitignore)-style patterns. Briefly:\n\n- `foo` matches any file or directory with the name `foo` anywhere in the\n package. This is equivalent to the pattern `**/foo`.\n- `/foo` matches any file or directory with the name `foo` only in the root of\n the package.\n- `foo/` matches any *directory* with the name `foo` anywhere in the package.\n- Common glob patterns like `*`, `?`, and `[]` are supported:\n - `*` matches zero or more characters except `/`. For example, `*.html`\n matches any file or directory with the `.html` extension anywhere in the\n package.\n - `?` matches any character except `/`. For example, `foo?` matches `food`,\n but not `foo`.\n - `[]` allows for matching a range of characters. For example, `[ab]`\n matches either `a` or `b`. `[a-z]` matches letters a through z.\n- `**/` prefix matches in any directory. For example, `**/foo/bar` matches the\n file or directory `bar` anywhere that is directly under directory `foo`.\n- `/**` suffix matches everything inside. For example, `foo/**` matches all\n files inside directory `foo`, including all files in subdirectories below\n `foo`.\n- `/**/` matches zero or more directories. For example, `a/**/b` matches\n `a/b`, `a/x/b`, `a/x/y/b`, and so on.\n- `!` prefix negates a pattern. For example, a pattern of `src/**.rs` and\n `!foo.rs` would match all files with the `.rs` extension inside the `src`\n directory, except for any file named `foo.rs`.\n\nIf git is being used for a package, the `exclude` field will be seeded with\nthe `gitignore` settings from the repository.\n\n```toml\n[package]\n# ...\nexclude = [\"build/**/*.o\", \"doc/**/*.html\"]\n```\n\n```toml\n[package]\n# ...\ninclude = [\"src/**/*\", \"Cargo.toml\"]\n```\n\nThe options are mutually exclusive: setting `include` will override an\n`exclude`. Note that `include` must be an exhaustive list of files as otherwise\nnecessary source files may not be included. The package's `Cargo.toml` is\nautomatically included.\n\nThe include/exclude list is also used for change tracking in some situations.\nFor targets built with `rustdoc`, it is used to determine the list of files to\ntrack to determine if the target should be rebuilt. If the package has a\n[build script](https://doc.rust-lang.org/cargo/reference/build-scripts.html) that does not emit any `rerun-if-*` directives, then the\ninclude/exclude list is used for tracking if the build script should be re-run\nif any of those files change.", "type": "string", "x-taplo": { "links": { "key": "https://doc.rust-lang.org/cargo/reference/manifest.html#the-exclude-and-include-fields" } } }, "x-taplo": { "links": { "key": "https://doc.rust-lang.org/cargo/reference/manifest.html#the-exclude-and-include-fields" } } }, "Keywords": { "title": "Keywords", "description": "The `keywords` field is an array of strings that describe this package. This\ncan help when searching for the package on a registry, and you may choose any\nwords that would help someone find this crate.\n\n```toml\n[package]\n# ...\nkeywords = [\"gamedev\", \"graphics\"]\n```\n\n> **Note**: [crates.io](https://crates.io) has a maximum of 5 keywords. Each keyword must be\n> ASCII text, start with a letter, and only contain letters, numbers, `_` or\n> `-`, and have at most 20 characters.", "type": "array", "items": { "description": "The `keywords` field is an array of strings that describe this package. This\ncan help when searching for the package on a registry, and you may choose any\nwords that would help someone find this crate.\n\n```toml\n[package]\n# ...\nkeywords = [\"gamedev\", \"graphics\"]\n```\n\n> **Note**: [crates.io](https://crates.io) has a maximum of 5 keywords. Each keyword must be\n> ASCII text, start with a letter, and only contain letters, numbers, `_` or\n> `-`, and have at most 20 characters.", "type": "string", "x-taplo": { "links": { "key": "https://doc.rust-lang.org/cargo/reference/manifest.html#the-keywords-field" } } }, "x-taplo": { "links": { "key": "https://doc.rust-lang.org/cargo/reference/manifest.html#the-keywords-field" } } }, "License": { "title": "License", "description": "The `license` field contains the name of the software license that the package\nis released under.\n\n[crates.io](https://crates.io/) interprets the `license` field as an [SPDX 2.1 license\nexpression](https://spdx.org/spdx-specification-21-web-version#h.jxpfx0ykyb60). The name must be a known license\nfrom the [SPDX license list 3.6](https://github.com/spdx/license-list-data/tree/v3.6). Parentheses are not\ncurrently supported. See the [SPDX site](https://spdx.org/license-list) for more information.\n\nSPDX license expressions support AND and OR operators to combine multiple\nlicenses.\n\n```toml\n[package]\n# ...\nlicense = \"MIT OR Apache-2.0\"\n```\n\nUsing `OR` indicates the user may choose either license. Using `AND` indicates\nthe user must comply with both licenses simultaneously. The `WITH` operator\nindicates a license with a special exception. Some examples:\n\n* `MIT OR Apache-2.0`\n* `LGPL-2.1 AND MIT AND BSD-2-Clause`\n* `GPL-2.0+ WITH Bison-exception-2.2`\n\nIf a package is using a nonstandard license, then the `license-file` field may\nbe specified in lieu of the `license` field.", "type": "string", "x-taplo": { "links": { "key": "https://doc.rust-lang.org/cargo/reference/manifest.html#the-license-and-license-file-fields" } } }, "LicenseFile": { "title": "LicenseFile", "description": "The `license-file` field contains the path to a file\ncontaining the text of the license (relative to this `Cargo.toml`).\n\n```toml\n[package]\n# ...\nlicense-file = \"LICENSE.txt\"\n```\n\n> **Note**: [crates.io](https://crates.io) requires either `license` or `license-file` to be set.", "type": "string", "x-taplo": { "links": { "key": "https://doc.rust-lang.org/cargo/reference/manifest.html#the-license-and-license-file-fields" } } }, "Repository": { "title": "Repository", "description": "The `repository` field should be a URL to the source repository for your\npackage.\n\n```toml\n[package]\n# ...\nrepository = \"https://github.com/rust-lang/cargo/\"\n```", "type": "string", "x-taplo": { "links": { "key": "https://doc.rust-lang.org/cargo/reference/manifest.html#the-repository-field" } } }, "RustVersion": { "title": "RustVersion", "description": "The `rust-version` field is an optional key that tells cargo what version of the\nRust language and compiler your package can be compiled with. If the currently\nselected version of the Rust compiler is older than the stated version, cargo\nwill exit with an error, telling the user what version is required.\n\nThe first version of Cargo that supports this field was released with Rust 1.56.0.\nIn older releases, the field will be ignored, and Cargo will display a warning.\n\n```toml\n[package]\n# ...\nrust-version = \"1.56\"\n```\n\nThe Rust version must be a bare version number with two or three components; it\ncannot include semver operators or pre-release identifiers. Compiler pre-release\nidentifiers such as -nightly will be ignored while checking the Rust version.\nThe `rust-version` must be equal to or newer than the version that first\nintroduced the configured `edition`.\n\nThe `rust-version` may be ignored using the `--ignore-rust-version` option.\n\nSetting the `rust-version` key in `[package]` will affect all targets/crates in\nthe package, including test suites, benchmarks, binaries, examples, etc.", "type": "string", "x-taplo": { "links": { "key": "https://doc.rust-lang.org/cargo/reference/manifest.html#the-rust-version-field" } } }, "WorkspaceInheritance": { "title": "Workspace", "description": "The `workspace` field allow keys to be inherited by defining them in the member package with `{key}.workspace = true`", "type": "object", "properties": { "workspace": { "type": "boolean", "enum": [true] } } } }, "description": "A schema for Cargo.toml.", "properties": { "badges": { "description": "[crates.io](https://crates.io) can display various badges for build status, test coverage, etc. for\neach crate. All badges are optional.\n\n- The badges pertaining to build status that are currently available are\n Appveyor, CircleCI, Cirrus CI, GitLab, Azure DevOps, Travis CI and Bitbucket\n Pipelines.\n- Available badges pertaining to code test coverage are Codecov and Coveralls.\n- There are also maintenance-related badges based on isitmaintained.com\n which state the issue resolution time, percent of open issues, and future\n maintenance intentions.\n\nMost badge specifications require a `repository` key. It is expected to be in\n`user/repo` format.\n\n```toml\n[badges]\n\n# Appveyor: `repository` is required. `branch` is optional; default is `master`\n# `service` is optional; valid values are `github` (default), `bitbucket`, and\n# `gitlab`; `id` is optional; you can specify the appveyor project id if you\n# want to use that instead. `project_name` is optional; use when the repository\n# name differs from the appveyor project name.\nappveyor = { repository = \"...\", branch = \"master\", service = \"github\" }\n\n# Circle CI: `repository` is required. `branch` is optional; default is `master`\ncircle-ci = { repository = \"...\", branch = \"master\" }\n\n# Cirrus CI: `repository` is required. `branch` is optional; default is `master`\ncirrus-ci = { repository = \"...\", branch = \"master\" }\n\n# GitLab: `repository` is required. `branch` is optional; default is `master`\ngitlab = { repository = \"...\", branch = \"master\" }\n\n# Azure DevOps: `project` is required. `pipeline` is required. `build` is optional; default is `1`\n# Note: project = `organization/project`, pipeline = `name_of_pipeline`, build = `definitionId`\nazure-devops = { project = \"...\", pipeline = \"...\", build=\"2\" }\n\n# Travis CI: `repository` in format \"<user>/<project>\" is required.\n# `branch` is optional; default is `master`\ntravis-ci = { repository = \"...\", branch = \"master\" }\n\n# Bitbucket Pipelines: `repository` is required. `branch` is required\nbitbucket-pipelines = { repository = \"...\", branch = \"master\" }\n\n# Codecov: `repository` is required. `branch` is optional; default is `master`\n# `service` is optional; valid values are `github` (default), `bitbucket`, and\n# `gitlab`.\ncodecov = { repository = \"...\", branch = \"master\", service = \"github\" }\n\n# Coveralls: `repository` is required. `branch` is optional; default is `master`\n# `service` is optional; valid values are `github` (default) and `bitbucket`.\ncoveralls = { repository = \"...\", branch = \"master\", service = \"github\" }\n\n# Is it maintained resolution time: `repository` is required.\nis-it-maintained-issue-resolution = { repository = \"...\" }\n\n# Is it maintained percentage of open issues: `repository` is required.\nis-it-maintained-open-issues = { repository = \"...\" }\n\n# Maintenance: `status` is required. Available options are:\n# - `actively-developed`: New features are being added and bugs are being fixed.\n# - `passively-maintained`: There are no plans for new features, but the maintainer intends to\n# respond to issues that get filed.\n# - `as-is`: The crate is feature complete, the maintainer does not intend to continue working on\n# it or providing support, but it works for the purposes it was designed for.\n# - `experimental`: The author wants to share it with the community but is not intending to meet\n# anyone's particular use case.\n# - `looking-for-maintainer`: The current maintainer would like to transfer the crate to someone\n# else.\n# - `deprecated`: The maintainer does not recommend using this crate (the description of the crate\n# can describe why, there could be a better solution available or there could be problems with\n# the crate that the author does not want to fix).\n# - `none`: Displays no badge on crates.io, since the maintainer has not chosen to specify\n# their intentions, potential crate users will need to investigate on their own.\nmaintenance = { status = \"...\" }\n```", "type": "object", "additionalProperties": { "type": "object", "additionalProperties": { "type": "string" } }, "x-taplo": { "links": { "key": "https://doc.rust-lang.org/cargo/reference/manifest.html#the-badges-section" } } }, "bench": { "description": "Benchmarks provide a way to test the performance of your code using the\n[`cargo bench`](https://doc.rust-lang.org/cargo/commands/cargo-bench.html) command. They follow the same structure as [tests](https://doc.rust-lang.org/cargo/reference/cargo-targets.html#tests),\nwith each benchmark function annotated with the `#[bench]` attribute.\nSimilarly to tests:\n\n* Benchmarks are placed in the [`benches` directory](https://doc.rust-lang.org/cargo/guide/project-layout.html).\n* Benchmark functions defined in libraries and binaries have access to the\n *private* API within the target they are defined in. Benchmarks in the\n `benches` directory may use the *public* API.\n* [The `bench` field](https://doc.rust-lang.org/cargo/reference/cargo-targets.html#the-bench-field) can be used to define which targets\n are benchmarked by default.\n* [The `harness` field](https://doc.rust-lang.org/cargo/reference/cargo-targets.html#the-harness-field) can be used to disable the\n built-in harness.\n\n> **Note**: The [`#[bench]`\n> attribute](https://doc.rust-lang.org/unstable-book/library-features/test.html) is currently\n> unstable and only available on the [nightly channel](https://doc.rust-lang.org/book/appendix-07-nightly-rust.html). There are some\n> packages available on [crates.io](https://crates.io/keywords/benchmark) that\n> may help with running benchmarks on the stable channel, such as\n> [Criterion](https://crates.io/crates/criterion).", "type": "array", "items": { "description": "Benchmarks provide a way to test the performance of your code using the\n[`cargo bench`](https://doc.rust-lang.org/cargo/commands/cargo-bench.html) command. They follow the same structure as [tests](https://doc.rust-lang.org/cargo/reference/cargo-targets.html#tests),\nwith each benchmark function annotated with the `#[bench]` attribute.\nSimilarly to tests:\n\n* Benchmarks are placed in the [`benches` directory](https://doc.rust-lang.org/cargo/guide/project-layout.html).\n* Benchmark functions defined in libraries and binaries have access to the\n *private* API within the target they are defined in. Benchmarks in the\n `benches` directory may use the *public* API.\n* [The `bench` field](https://doc.rust-lang.org/cargo/reference/cargo-targets.html#the-bench-field) can be used to define which targets\n are benchmarked by default.\n* [The `harness` field](https://doc.rust-lang.org/cargo/reference/cargo-targets.html#the-harness-field) can be used to disable the\n built-in harness.\n\n> **Note**: The [`#[bench]`\n> attribute](https://doc.rust-lang.org/unstable-book/library-features/test.html) is currently\n> unstable and only available on the [nightly channel](https://doc.rust-lang.org/book/appendix-07-nightly-rust.html). There are some\n> packages available on [crates.io](https://crates.io/keywords/benchmark) that\n> may help with running benchmarks on the stable channel, such as\n> [Criterion](https://crates.io/crates/criterion).", "$ref": "#/definitions/Target", "x-taplo": { "links": { "key": "https://doc.rust-lang.org/cargo/reference/cargo-targets.html#benchmarks" } } }, "x-taplo": { "links": { "key": "https://doc.rust-lang.org/cargo/reference/cargo-targets.html#benchmarks" } } }, "bin": { "description": "Binary targets are executable programs that can be run after being compiled.\nThe default binary filename is `src/main.rs`, which defaults to the name of\nthe package. Additional binaries are stored in the [`src/bin/`\ndirectory](https://doc.rust-lang.org/cargo/guide/project-layout.html). The settings for each binary can be [customized](https://doc.rust-lang.org/cargo/reference/cargo-targets.html#configuring-a-target) in the `[[bin]]` tables in `Cargo.toml`.\n\nBinaries can use the public API of the package's library. They are also linked\nwith the [`[dependencies]`](https://doc.rust-lang.org/cargo/reference/specifying-dependencies.html) defined in `Cargo.toml`.\n\nYou can run individual binaries with the [`cargo run`](https://doc.rust-lang.org/cargo/commands/cargo-run.html) command with the `--bin\n<bin-name>` option. [`cargo install`](https://doc.rust-lang.org/cargo/commands/cargo-install.html) can be used to copy the executable to a\ncommon location.\n\n```toml\n# Example of customizing binaries in Cargo.toml.\n[[bin]]\nname = \"cool-tool\"\ntest = false\nbench = false\n\n[[bin]]\nname = \"frobnicator\"\nrequired-features = [\"frobnicate\"]\n```", "type": "array", "items": { "description": "Binary targets are executable programs that can be run after being compiled.\nThe default binary filename is `src/main.rs`, which defaults to the name of\nthe package. Additional binaries are stored in the [`src/bin/`\ndirectory](https://doc.rust-lang.org/cargo/guide/project-layout.html). The settings for each binary can be [customized](https://doc.rust-lang.org/cargo/reference/cargo-targets.html#configuring-a-target) in the `[[bin]]` tables in `Cargo.toml`.\n\nBinaries can use the public API of the package's library. They are also linked\nwith the [`[dependencies]`](https://doc.rust-lang.org/cargo/reference/specifying-dependencies.html) defined in `Cargo.toml`.\n\nYou can run individual binaries with the [`cargo run`](https://doc.rust-lang.org/cargo/commands/cargo-run.html) command with the `--bin\n<bin-name>` option. [`cargo install`](https://doc.rust-lang.org/cargo/commands/cargo-install.html) can be used to copy the executable to a\ncommon location.\n\n```toml\n# Example of customizing binaries in Cargo.toml.\n[[bin]]\nname = \"cool-tool\"\ntest = false\nbench = false\n\n[[bin]]\nname = \"frobnicator\"\nrequired-features = [\"frobnicate\"]\n```", "$ref": "#/definitions/Target", "x-taplo": { "links": { "key": "https://doc.rust-lang.org/cargo/reference/cargo-targets.html#binaries" } } }, "x-taplo": { "links": { "key": "https://doc.rust-lang.org/cargo/reference/cargo-targets.html#binaries" } } }, "build-dependencies": { "description": "You can depend on other Cargo-based crates for use in your build scripts.\nDependencies are declared through the `build-dependencies` section of the\nmanifest:\n\n```toml\n[build-dependencies]\ncc = \"1.0.3\"\n```\n\nThe build script **does not** have access to the dependencies listed\nin the `dependencies` or `dev-dependencies` section. Build\ndependencies will likewise not be available to the package itself\nunless listed under the `dependencies` section as well. A package\nitself and its build script are built separately, so their\ndependencies need not coincide. Cargo is kept simpler and cleaner by\nusing independent dependencies for independent purposes.", "type": "object", "additionalProperties": { "$ref": "#/definitions/Dependency" }, "x-taplo": { "links": { "key": "https://doc.rust-lang.org/cargo/reference/specifying-dependencies.html#build-dependencies" }, "plugins": ["crates"], "crates": { "schemas": "dependencies" } } }, "build_dependencies": { "type": "object", "additionalProperties": { "$ref": "#/definitions/Dependency" }, "x-taplo": { "hidden": true } }, "cargo-features": { "type": "array", "items": { "type": "string" } }, "dependencies": { "description": "Cargo is configured to look for dependencies on [crates.io](https://crates.io) by default. Only\nthe name and a version string are required in this case. In [the cargo\nguide](https://doc.rust-lang.org/cargo/guide/index.html), we specified a dependency on the `time` crate:\n\n```toml\n[dependencies]\ntime = \"0.1.12\"\n```\n\nThe string `\"0.1.12\"` is a [semver](https://github.com/steveklabnik/semver#requirements) version requirement. Since this\nstring does not have any operators in it, it is interpreted the same way as\nif we had specified `\"^0.1.12\"`, which is called a caret requirement.\n\nA dependency can also be defined by a table with additional options:\n\n```toml\n[dependencies]\ntime = { path = \"../time\", version = \"0.1.12\" }\n```", "type": "object", "additionalProperties": { "$ref": "#/definitions/Dependency" }, "x-taplo": { "links": { "key": "https://doc.rust-lang.org/cargo/reference/specifying-dependencies.html" } } }, "dev-dependencies": { "description": "The format of `[dev-dependencies]` is equivalent to `[dependencies]`:\n\n```toml\n[dev-dependencies]\ntempdir = \"0.3\"\n```\n\nDev-dependencies are not used when compiling\na package for building, but are used for compiling tests, examples, and\nbenchmarks.\n\nThese dependencies are *not* propagated to other packages which depend on this\npackage.\n\nYou can also have target-specific development dependencies by using\n`dev-dependencies` in the target section header instead of `dependencies`. For\nexample:\n\n```toml\n[target.'cfg(unix)'.dev-dependencies]\nmio = \"0.0.1\"\n```\n\n> **Note**: When a package is published, only dev-dependencies that specify a\n> `version` will be included in the published crate. For most use cases,\n> dev-dependencies are not needed when published, though some users (like OS\n> packagers) may want to run tests within a crate, so providing a `version` if\n> possible can still be beneficial.\n", "type": "object", "additionalProperties": { "$ref": "#/definitions/Dependency" }, "x-taplo": { "links": { "key": "https://doc.rust-lang.org/cargo/reference/specifying-dependencies.html#development-dependencies" }, "plugins": ["crates"], "crates": { "schemas": "dependencies" } } }, "dev_dependencies": { "type": "object", "additionalProperties": { "$ref": "#/definitions/Dependency" }, "x-taplo": { "hidden": true } }, "example": { "description": "Files located under the [examples directory](https://doc.rust-lang.org/cargo/guide/project-layout.html) are example uses of the functionality provided by the library. When compiled, they are placed in the[ target/debug/examples directory](https://doc.rust-lang.org/cargo/guide/build-cache.html).\n\nExamples can use the public API of the package's library. They are also linked with the [dependencies](https://doc.rust-lang.org/cargo/reference/specifying-dependencies.html) and [dev-dependencies](https://doc.rust-lang.org/cargo/reference/specifying-dependencies.html#development-dependencies) defined in Cargo.toml.\n\nBy default, examples are executable binaries (with a `main()` function). You\ncan specify the [`crate-type` field](https://doc.rust-lang.org/cargo/reference/cargo-targets.html#the-crate-type-field) to make an example\nbe compiled as a library:\n\n```toml\n[[example]]\nname = \"foo\"\ncrate-type = [\"staticlib\"]\n```\n\nYou can run individual executable examples with the [`cargo run`](https://doc.rust-lang.org/cargo/commands/cargo-run.html) command with\nthe `--example <example-name>` option. Library examples can be built with\n[`cargo build`](https://doc.rust-lang.org/cargo/commands/cargo-build.html) with the `--example <example-name>` option. [`cargo install`](https://doc.rust-lang.org/cargo/commands/cargo-install.html)\nwith the `--example <example-name>` option can be used to copy executable\nbinaries to a common location. Examples are compiled by [`cargo test`](https://doc.rust-lang.org/cargo/commands/cargo-test.html) by\ndefault to protect them from bit-rotting. Set [the `test`\nfield](https://doc.rust-lang.org/cargo/reference/cargo-targets.html#the-test-field) to `true` if you have `#[test]` functions in the\nexample that you want to run with [`cargo test`](https://doc.rust-lang.org/cargo/commands/cargo-test.html).\n", "type": "array", "items": { "description": "Files located under the [examples directory](https://doc.rust-lang.org/cargo/guide/project-layout.html) are example uses of the functionality provided by the library. When compiled, they are placed in the[ target/debug/examples directory](https://doc.rust-lang.org/cargo/guide/build-cache.html).\n\nExamples can use the public API of the package's library. They are also linked with the [dependencies](https://doc.rust-lang.org/cargo/reference/specifying-dependencies.html) and [dev-dependencies](https://doc.rust-lang.org/cargo/reference/specifying-dependencies.html#development-dependencies) defined in Cargo.toml.\n\nBy default, examples are executable binaries (with a `main()` function). You\ncan specify the [`crate-type` field](https://doc.rust-lang.org/cargo/reference/cargo-targets.html#the-crate-type-field) to make an example\nbe compiled as a library:\n\n```toml\n[[example]]\nname = \"foo\"\ncrate-type = [\"staticlib\"]\n```\n\nYou can run individual executable examples with the [`cargo run`](https://doc.rust-lang.org/cargo/commands/cargo-run.html) command with\nthe `--example <example-name>` option. Library examples can be built with\n[`cargo build`](https://doc.rust-lang.org/cargo/commands/cargo-build.html) with the `--example <example-name>` option. [`cargo install`](https://doc.rust-lang.org/cargo/commands/cargo-install.html)\nwith the `--example <example-name>` option can be used to copy executable\nbinaries to a common location. Examples are compiled by [`cargo test`](https://doc.rust-lang.org/cargo/commands/cargo-test.html) by\ndefault to protect them from bit-rotting. Set [the `test`\nfield](https://doc.rust-lang.org/cargo/reference/cargo-targets.html#the-test-field) to `true` if you have `#[test]` functions in the\nexample that you want to run with [`cargo test`](https://doc.rust-lang.org/cargo/commands/cargo-test.html).\n", "$ref": "#/definitions/Target", "x-taplo": { "links": { "key": "https://doc.rust-lang.org/cargo/reference/cargo-targets.html#examples" } } }, "x-taplo": { "links": { "key": "https://doc.rust-lang.org/cargo/reference/cargo-targets.html#examples" } } }, "features": { "description": "Cargo supports features to allow expression of:\n\n* conditional compilation options (usable through `cfg` attributes);\n* optional dependencies, which enhance a package, but are not required; and\n* clusters of optional dependencies, such as `postgres-all`, that would include the\n `postgres` package, the `postgres-macros` package, and possibly other packages\n (such as development-time mocking libraries, debugging tools, etc.).\n\nA feature of a package is either an optional dependency, or a set of other\nfeatures.\n", "type": "object", "additionalProperties": { "type": "array", "items": { "type": "string" } }, "x-taplo": { "links": { "key": "https://doc.rust-lang.org/cargo/reference/features.html" } } }, "lib": { "$ref": "#/definitions/Target", "x-taplo": { "docs": { "main": "The library target defines a \"library\" that can be used and linked by other\nlibraries and executables. The filename defaults to `src/lib.rs`, and the name\nof the library defaults to the name of the package. A package can have only\none library. The settings for the library can be [customized](https://doc.rust-lang.org/cargo/reference/cargo-targets.html#configuring-a-target) in the `[lib]`\ntable in `Cargo.toml`.\n\n```toml\n# Example of customizing the library in Cargo.toml.\n[lib]\ncrate-type = [\"cdylib\"]\nbench = false\n```\n" }, "links": { "key": "https://doc.rust-lang.org/cargo/reference/cargo-targets.html#library" } } }, "package": { "$ref": "#/definitions/Package" }, "patch": { "description": "The `[patch]` section of `Cargo.toml` can be used to override dependencies\nwith other copies. The syntax is similar to the\n[`[dependencies]`](https://doc.rust-lang.org/cargo/reference/specifying-dependencies.html) section.\n\n", "type": "object", "additionalProperties": { "type": "object", "additionalProperties": { "$ref": "#/definitions/Dependency" } }, "x-taplo": { "links": { "key": "https://doc.rust-lang.org/cargo/reference/overriding-dependencies.html#the-patch-section" } } }, "profile": { "$ref": "#/definitions/Profiles" }, "project": { "$ref": "#/definitions/Package", "x-taplo": { "hidden": true } }, "replace": { "type": "object", "additionalProperties": { "$ref": "#/definitions/Dependency" }, "x-taplo": { "hidden": true } }, "target": { "type": "object", "additionalProperties": { "$ref": "#/definitions/Platform" } }, "test": { "description": "Files located under the [`tests` directory](https://doc.rust-lang.org/cargo/guide/project-layout.html) are integration\ntests. When you run [`cargo test`](https://doc.rust-lang.org/cargo/commands/cargo-test.html), Cargo will compile each of these files as\na separate crate, and execute them.\n\nIntegration tests can use the public API of the package's library. They are\nalso linked with the [`[dependencies]`](https://doc.rust-lang.org/cargo/reference/specifying-dependencies.html) and\n[`[dev-dependencies]`](https://doc.rust-lang.org/cargo/reference/specifying-dependencies.html#development-dependencies) defined in `Cargo.toml`.\n\nIf you want to share code among multiple integration tests, you can place it\nin a separate module such as `tests/common/mod.rs` and then put `mod common;`\nin each test to import it.\n\nEach integration test results in a separate executable binary, and [`cargo\ntest`](https://doc.rust-lang.org/cargo/commands/cargo-test.html) will run them serially. In some cases this can be inefficient, as it\ncan take longer to compile, and may not make full use of multiple CPUs when\nrunning the tests. If you have a lot of integration tests, you may want to\nconsider creating a single integration test, and split the tests into multiple\nmodules. The libtest harness will automatically find all of the `#[test]`\nannotated functions and run them in parallel. You can pass module names to\n[`cargo test`](https://doc.rust-lang.org/cargo/commands/cargo-test.html) to only run the tests within that module.\n\nBinary targets are automatically built if there is an integration test. This\nallows an integration test to execute the binary to exercise and test its\nbehavior. The `CARGO_BIN_EXE_<name>` [environment variable](https://doc.rust-lang.org/cargo/reference/environment-variables.html#environment-variables-cargo-sets-for-crates) is set when the\nintegration test is built so that it can use the [`env` macro](https://doc.rust-lang.org/std/macro.env.html) to locate the\nexecutable.", "type": "array", "items": { "description": "Files located under the [`tests` directory](https://doc.rust-lang.org/cargo/guide/project-layout.html) are integration\ntests. When you run [`cargo test`](https://doc.rust-lang.org/cargo/commands/cargo-test.html), Cargo will compile each of these files as\na separate crate, and execute them.\n\nIntegration tests can use the public API of the package's library. They are\nalso linked with the [`[dependencies]`](https://doc.rust-lang.org/cargo/reference/specifying-dependencies.html) and\n[`[dev-dependencies]`](https://doc.rust-lang.org/cargo/reference/specifying-dependencies.html#development-dependencies) defined in `Cargo.toml`.\n\nIf you want to share code among multiple integration tests, you can place it\nin a separate module such as `tests/common/mod.rs` and then put `mod common;`\nin each test to import it.\n\nEach integration test results in a separate executable binary, and [`cargo\ntest`](https://doc.rust-lang.org/cargo/commands/cargo-test.html) will run them serially. In some cases this can be inefficient, as it\ncan take longer to compile, and may not make full use of multiple CPUs when\nrunning the tests. If you have a lot of integration tests, you may want to\nconsider creating a single integration test, and split the tests into multiple\nmodules. The libtest harness will automatically find all of the `#[test]`\nannotated functions and run them in parallel. You can pass module names to\n[`cargo test`](https://doc.rust-lang.org/cargo/commands/cargo-test.html) to only run the tests within that module.\n\nBinary targets are automatically built if there is an integration test. This\nallows an integration test to execute the binary to exercise and test its\nbehavior. The `CARGO_BIN_EXE_<name>` [environment variable](https://doc.rust-lang.org/cargo/reference/environment-variables.html#environment-variables-cargo-sets-for-crates) is set when the\nintegration test is built so that it can use the [`env` macro](https://doc.rust-lang.org/std/macro.env.html) to locate the\nexecutable.", "$ref": "#/definitions/Target", "x-taplo": { "links": { "key": "https://doc.rust-lang.org/cargo/reference/cargo-targets.html#integration-tests" } } }, "x-taplo": { "links": { "key": "https://doc.rust-lang.org/cargo/reference/cargo-targets.html#integration-tests" } } }, "workspace": { "$ref": "#/definitions/Workspace" } }, "title": "Cargo.toml", "type": "object", "x-taplo-info": { "authors": ["tamasfe (https://github.com/tamasfe)"], "patterns": ["^(.*(/|\\\\)Cargo\\.toml|Cargo\\.toml)$"] } }
datalogic-scan2deploy-android.json
{ "$id": "http://example.com/root.json", "$schema": "http://json-schema.org/draft-07/schema#", "definitions": {}, "description": "Schema to validate Android JSON files given as input to DL-Config to generate Scan2Deploy barcodes", "properties": { "layout": { "$id": "#/properties/layout", "type": "object", "title": "Layout Schema", "properties": { "description": { "$id": "#/properties/layout/properties/description", "type": "string", "title": "Description Schema", "default": "none", "examples": ["This is for our Android devices"], "maxLength": 350 }, "enroll": { "$id": "#/properties/layout/properties/enroll", "type": "boolean", "title": "Enroll Schema", "default": false, "examples": [true] } } }, "padlock": { "$id": "#/properties/padlock", "type": "object", "title": "Padlock Schema", "description": "Section used to configure the staging locking feature", "properties": { "valid-until": { "$id": "#/properties/padlock/properties/valid-until", "type": "string", "title": "Valid-Until Schema", "description": "Specifies the expiration date of the barcode sequence. Device date must be synchronized/configured for expiration date to work properly.", "default": "20991231235959", "examples": ["20991231235959"] }, "key": { "$id": "#/properties/padlock/properties/key", "type": "string", "title": "Key Schema", "description": "Padlock key to be used. If value doesn't match the device, the barcode is rejected. Empty string means no key.", "default": "", "examples": ["ihavenomouthandimustscream"] }, "state": { "$id": "#/properties/padlock/properties/state", "type": "string", "enum": ["locked", "unlocked"], "title": "State Schema", "description": "Configures the padlock state", "default": "undefined", "examples": ["locked"] }, "hide-from-launcher": { "$id": "#/properties/padlock/properties/hide-from-launcher", "type": "boolean", "title": "Hide-From-Launcher Schema", "description": "Indicates if Scan2Deploy should be disabled after staging is complete. Once disabled, factory reset required to reenable.", "default": false, "examples": [false] } } }, "global": { "$id": "#/properties/global", "type": "object", "title": "Global Schema", "description": "Section used to configure application scoped settings", "properties": { "target-path": { "$id": "#/properties/global/properties/target-path", "type": "string", "title": "Target-Path Schema", "description": "Base destination folder where any archive/fill will be inflated/written. Default is device internal SD-card root", "examples": ["/mnt/sdcard/airwatch"] }, "install-path": { "$id": "#/properties/global/properties/install-path", "type": "string", "title": "Install-Path Schema", "description": "Folder where the application expects auto-installed/auto-updated APKs to be found. Default is value specified in 'target path'.", "examples": ["/mnt/sdcard/airwatch"] }, "update-path": { "$id": "#/properties/global/properties/update-path", "type": "string", "title": "Update-Path Schema", "description": "Folder where the application expects auto-updated OTA packages to be found. Default is value specified in 'target path'.", "examples": ["/mnt/sdcard/airwatch"] }, "purge-target-path": { "$id": "#/properties/global/properties/purge-target-path", "type": "boolean", "title": "Purge-Target-Path Schema", "description": "Indicates if target specified in 'target-path' needs to be purged (deleted) prior to inflation of the deployment archive", "default": true, "examples": [true] }, "auto-scan": { "$id": "#/properties/global/properties/auto-scan", "type": "boolean", "title": "Auto-Scan Schema", "description": "Enables/Disables the auto-update of APKs and OTA packages", "default": false, "examples": [true] }, "download-preinstalled": { "$id": "#/properties/global/properties/download-preinstalled", "type": "boolean", "title": "Download-Preinstalled Schema", "description": "Used to force the downgrade of pre-installed application (even System app), if required", "default": false, "examples": [false] }, "script": { "$id": "#/properties/global/properties/script", "type": ["string", "array"], "title": "Script Schema", "description": "A string specifying the absolute/relative path of a file, or a JSON array of strings describing the file content line-by-line. The script file will be interpreted last in staging process.", "items": { "$id": "#/properties/global/properties/script/items", "type": "string", "title": "Items Schema", "default": "", "examples": [ "[Install]", "INSTALL /sdcard/Download/fa.apk", "[Post-Install]", "SHELL am start -a android.intent.action.MAIN -n com.example.mchew.fakeapp/.MainActivity" ] }, "default": "", "examples": ["setup.s"] }, "action": { "$id": "#/properties/global/properties/action", "type": "string", "enum": [ "none", "close", "enterprise-reset", "factory-reset", "reset" ], "title": "Action Schema", "description": "Specifies the final action performed by the application at the end of the staging process.", "default": "none", "examples": ["close"] }, "backup-to-enterprise": { "$id": "#/properties/global/properties/backup-to-enterprise", "type": "boolean", "title": "Backup-To-Enterprise Schema", "description": "Activates the enterprise backup persistence for the staging data, resulting in both the staging script and archive being copied to the enterprise partition", "default": false, "examples": [true] } } }, "settings": { "$id": "#/properties/settings", "type": "object", "title": "Settings Schema", "description": "Section used to control inner device settings that typically need to be changed from the Android defaults", "properties": { "date-time": { "$id": "#/properties/settings/properties/date-time", "type": "string", "title": "Date-Time Schema", "description": "String representation in RFC-1123 format of the date to be set", "default": "null", "examples": ["Thu, 19 Apr 2018 07:51:37 GMT"] }, "auto-time": { "$id": "#/properties/settings/properties/auto-time", "type": "boolean", "title": "Auto-Time Schema", "description": "Controls the 'Date & Time' automatic date-time adjustment setting", "default": true, "examples": [false] }, "auto-time-zone": { "$id": "#/properties/settings/properties/auto-time-zone", "type": "boolean", "title": "Auto-Time-Zone Schema", "description": "Controls the 'Date & Time' automatic time-zone adjustment setting", "default": true, "examples": [false] }, "auto-time-server": { "$id": "#/properties/settings/properties/auto-time-server", "type": "string", "title": "Auto-Time-Server Schema", "description": "Address of the NTP server to be used for date-time synchronization", "default": "null", "examples": ["pool.ntp.org"] }, "debug-bridge": { "$id": "#/properties/settings/properties/debug-bridge", "type": "boolean", "title": "Debug-Bridge Schema", "description": "Controls the state of 'Android Debug Bridge'", "default": true, "examples": [false] }, "lock-screen": { "$id": "#/properties/settings/properties/lock-screen", "type": "boolean", "title": " Lock-Screen Schema", "description": "Controls the state of Android's lock-screen, requiring the user to swipe the display to unlock the device", "default": true, "examples": [false] }, "status-bar": { "$id": "#/properties/settings/properties/status-bar", "type": "boolean", "title": "Status-Bar Schema", "description": "Controls the display of the top status-bar. Note: hiding the status-bar will make notification disappear.", "default": true, "examples": [false] }, "navigation-bar": { "$id": "#/properties/settings/properties/navigation-bar", "type": "boolean", "title": "Navigation-Bar Schema", "description": "Controls the display of the bottom navigation-bar", "default": true, "examples": [true] }, "charge-threshold": { "$id": "#/properties/settings/properties/charge-threshold", "type": "integer", "title": "Charge-Threshold Schema", "description": "Indicates the charge threshold a battery exhausted device needs to reach to automatically boot when recharging", "default": 5, "examples": [0], "minimum": 0, "maximum": 100 }, "usb-profile": { "$id": "#/properties/settings/properties/usb-profile", "type": "string", "enum": ["NONE", "BOTH", "DATA", "CHARGE"], "title": "Usb-Profile Schema", "description": "USB communication profile in use", "default": "BOTH", "examples": ["NONE"] }, "usb-function": { "$id": "#/properties/settings/properties/usb-function", "type": "string", "enum": ["MTP", "PTP", "CHARGING"], "title": "Usb-Function Schema", "description": "USB communication function in use", "default": "CHARGING", "examples": ["CHARGING"] } } }, "network": { "$id": "#/properties/network", "type": "object", "title": "Network Schema", "description": "Section used to configure the device Wi-Fi network", "properties": { "essid": { "$id": "#/properties/network/properties/essid", "type": "string", "title": "Essid Schema", "description": "Wireless network ESSID", "default": "tsunami", "examples": ["TESTTKIP"] }, "hidden": { "$id": "#/properties/network/properties/hidden", "type": "boolean", "title": "Hidden Schema", "description": "Indicates if the wireless network is using a hidden ESSID", "default": false, "examples": [false] }, "mode": { "$id": "#/properties/network/properties/mode", "type": "string", "enum": [ "open", "wep-40", "wep-104", "wpa-psk", "wpa2-psk", "wpa-eap", "wpa2-eap" ], "title": "Mode Schema", "description": "Wireless connection mode", "default": "open", "examples": ["wpa-psk"] }, "mode-key": { "$id": "#/properties/network/properties/mode-key", "type": "string", "title": "Mode-Key Schema", "description": "Wireless network key, if needed", "default": "", "examples": ["datalogic"] }, "mode-key-encrypted": { "$id": "#/properties/network/properties/mode-key-encrypted", "type": "boolean", "title": "Mode-Key-Encrypted Schema", "description": "Indicates if 'mode-key' is written in plain-text or encrypted with a custom encryption algorithm", "default": false, "examples": [false] }, "eap-method": { "$id": "#/properties/network/properties/eap-method", "type": "string", "enum": [ "none", "peap", "tls", "ttls", "pwd", "sim", "aka", "aka-prime" ], "title": "Eap-Method Schema", "description": "Configures the EAP authentication method", "default": "none", "examples": ["none"] }, "eap-phase2": { "$id": "#/properties/network/properties/eap-phase2", "type": "string", "enum": ["none", "pap", "mschap", "mschapv2", "gtc"], "title": "Eap-Phase2 Schema", "description": "Configures the EAP phase 2 authentication method", "default": "none", "examples": ["none"] }, "eap-identity": { "$id": "#/properties/network/properties/eap-identity", "type": "string", "title": "Eap-Identity Schema", "description": "Indicates the EAP identity", "default": "", "examples": [""] }, "eap-anonymous-identity": { "$id": "#/properties/network/properties/eap-anonymous-identity", "type": "string", "title": "Eap-Anonymous-Identity Schema", "description": "Indicates the EAP anonymous identity, used as the unencrypted identity with certain EAP types", "default": "", "examples": [""] }, "eap-password": { "$id": "#/properties/network/properties/eap-password", "type": "string", "title": "Eap-Password Schema", "description": "EAP password, if needed", "default": "", "examples": [""] }, "eap-password-encrypted": { "$id": "#/properties/network/properties/eap-password-encrypted", "type": "boolean", "title": "Eap-Password-Encrypted Schema", "description": "Indicates if the 'eap-password' is encrypted with a custom encryption algorithm", "default": false, "examples": [false] }, "eap-certificate": { "$id": "#/properties/network/properties/eap-certificate", "type": "string", "title": "Eap-Certificate Schema", "description": "Base64 representation of the EAP certificate to use", "default": "", "examples": [""] }, "proxy-host": { "$id": "#/properties/network/properties/proxy-host", "type": "string", "title": "Proxy-Host Schema", "description": "Server name or IP address of the proxy to be used for HTTP/HTTPS communications", "default": "", "examples": [""] }, "proxy-port": { "$id": "#/properties/network/properties/proxy-port", "type": "integer", "title": "Proxy-Port Schema", "description": "Server IP port of the proxy for HTTP/HTTPS communications", "default": 0, "examples": [0], "minimum": 0, "maximum": 65535 }, "purge": { "$id": "#/properties/network/properties/purge", "type": "boolean", "title": "Purge Schema", "description": "Indicates if any currently configured wireless network needs to be removed. Can be useful to avoid profile roaming.", "default": true, "examples": [true] }, "reconfigure": { "$id": "#/properties/network/properties/reconfigure", "type": "boolean", "title": "Reconfigure Schema", "description": "If true, will reconfigure any existing and matching network. If false, will leave existing network untouched. Setting used when 'purge' is set to false.", "default": true, "examples": [false] }, "sleep-policy": { "$id": "#/properties/network/properties/sleep-policy", "type": "integer", "title": "Sleep-Policy Schema", "description": "Wireless sleep policy for Android's Settings.Global parameter (0-WIFI_SLEEP_POLICY_DEFAULT, 1-WIFI_SLEEP_POLICY_NEVER_WHILE_PLUGGED, 2-WIFI_SLEEP_POLICY_NEVER)", "default": 2, "examples": [2], "minimum": 0, "maximum": 2 }, "frequency-band": { "$id": "#/properties/network/properties/frequency-band", "type": "string", "enum": ["auto", "5ghz", "2ghz"], "title": "Frequency-Band Schema", "description": "Controls the frequency bands supported by the device", "default": "auto", "examples": ["auto"] }, "save-to-file": { "$id": "#/properties/network/properties/save-to-file", "type": "string", "title": "Save-To-File Schema", "description": "Absolute path to the file where the current network configuration will be saved, empty string indicates network configuration won't be serialized to a file", "default": "", "examples": [""] }, "ephemeral": { "$id": "#/properties/network/properties/ephemeral", "type": "boolean", "title": "Ephemeral Schema", "description": "If true, wireless connection profile will be used during staging process, then deleted after staging. If false, wireless connection profile will still be present after staging process.", "default": true, "examples": [false] }, "wait-for-connection": { "$id": "#/properties/network/properties/wait-for-connection", "type": "boolean", "title": "Wait-For-Connection Schema", "description": "Indicates whether a valid Wi-Fi connection has to be waited once the network configuration is complete. Can be useful when device needs to be configured but a valid Wi-Fi connection is not ready yet.", "default": true, "examples": [true] } }, "if": { "properties": { "mode": { "enum": ["wpa-psk", "wpa2-psk", "wep-40", "wep-104"] } } }, "then": { "required": ["mode-key"] } }, "deployment": { "$id": "#/properties/deployment", "type": "object", "title": "Deployment Schema", "description": "Section can be used to download a ZIP archive from a server and inflate it to the 'target-path' folder", "properties": { "scheme": { "$id": "#/properties/deployment/properties/scheme", "type": "string", "enum": ["http", "https"], "title": "Scheme Schema", "description": "Deployment download scheme to use", "default": "http", "examples": ["http"] }, "host": { "$id": "#/properties/deployment/properties/host", "type": "string", "title": "Host Schema", "description": "Host-name or internet-protocol address of the server from which the resource is to be fetched", "examples": ["172.19.0.77"] }, "port": { "$id": "#/properties/deployment/properties/port", "type": "integer", "title": "Port Schema", "description": "TCP/IP port to be used to contact the server", "default": 80, "examples": [8080], "minimum": 0, "maximum": 65535 }, "path": { "$id": "#/properties/deployment/properties/path", "type": "string", "title": "Path Schema", "description": "Path to the server resource to download, complete with query string if needed", "default": "", "examples": ["/airwatch.zip"] }, "fetch-timeout": { "$id": "#/properties/deployment/properties/fetch-timeout", "type": "integer", "title": "Fetch-Timeout Schema", "description": "The timeout value used when fetching resource from host", "default": 60000, "examples": [60000] }, "check-timeout": { "$id": "#/properties/deployment/properties/check-timeout", "type": "integer", "title": "Check-Timeout Schema", "description": "The timeout value used when attempting to reach the host server", "default": 1000, "examples": [1000] }, "working-archive": { "$id": "#/properties/deployment/properties/working-archive", "type": "string", "title": "Working-Archive Schema", "description": "String representation of the archive path-file name, once downloaded", "default": "/mnt/sdcard/scan2deploy.archive", "examples": ["/mnt/sdcard/target.zip"] }, "skip-inflation": { "$id": "#/properties/deployment/properties/skip-inflation", "type": "boolean", "title": "Skip-Inflation Schema", "description": "Instructs the application not to inflate the deployment archive once downloaded, can be useful to speed the OTA update process up", "default": false, "examples": [true] } }, "required": ["host"] }, "blobs": { "$id": "#/properties/blobs", "type": "array", "title": "Blobs Schema", "description": "Section used to transfer binary data to newly created file on device", "items": { "$id": "#/properties/blobs/items", "type": "object", "title": "Items Schema", "required": ["file", "content"], "properties": { "file": { "$id": "#/properties/blobs/items/properties/file", "type": "string", "title": "File Schema", "description": "Path to the file to be created. Can be either absolute or relative to the global/target-path parameter value. During file de-serialization, any required (parent) path is automatically created.", "examples": ["/mnt/sdcard/airwatch/credentials.bin"] }, "content": { "$id": "#/properties/blobs/items/properties/content", "type": "string", "title": "Content Schema", "description": "Base64 representation of the actual file content", "examples": [ "fd09B1iL/k4jRWrjrP0/sO44teY+B3UafBLsMsCEqd1KOv6b6JYBXLVv70FmHdZhIVoEOQvHu7O4PUJStpZQ+4PYjPqCO+NQr81M7GOF421Ke8L2u4EYyqDE5qXfLy2shEgaRwRpr2f35/38WZkh6edyiWZQJjyLeZcuI7WiaJPpw7Jcw7ye7mb7Rl+ePNFmfvUrpeRFtN+5kUsx/SbB1v0gDyOOuoep" ] } } } } }, "title": "Android-Scan2Deploy Schema", "type": "object" }
vs-nesting.json
{ "$schema": "http://json-schema.org/draft-04/schema#", "definitions": { "fileExtension": { "pattern": "^\\.[^/\\\\]+$" }, "fileName": { "pattern": "^[^/\\\\|:><\"?\\*]+$" }, "ext-ext": { "type": "object", "additionalProperties": false, "patternProperties": { "^(\\.[^/\\\\]+|\\*)$": { "type": "array", "uniqueItems": true, "items": { "$ref": "#/definitions/fileExtension" } } } }, "file-file": { "type": "object", "additionalProperties": false, "patternProperties": { "^[^/\\\\|:><\"?\\*]+$": { "type": "array", "uniqueItems": true, "items": { "$ref": "#/definitions/fileName" } } } }, "file-ext": { "type": "object", "additionalProperties": false, "patternProperties": { "^([^/\\\\|:><\"?\\*]+|\\*)$": { "type": "array", "uniqueItems": true, "items": { "$ref": "#/definitions/fileExtension" } } } }, "providers": { "type": "object", "properties": { "addedExtension": { "description": "If this exist, files with an additional extension should nest under file without additional extension. Example: file.html.css nest under file.html", "type": "object", "maxProperties": 0 }, "pathSegment": { "description": "If this exists, files with \"extra\" extension part in the file name should nest under files without it, but having same name and last extension. Example: file.min.js nest under file.js.", "type": "object", "additionalProperties": false, "properties": { "add": { "description": "Add nesting rules in the order to be applied by corresponding provider, where each rule entry has a form 'child: collection of potential parents'.", "properties": { ".*": { "type": "array", "uniqueItems": true, "items": { "$ref": "#/definitions/fileExtension" } } } }, "remove": { "description": "Remove specified nesting rules if they are merged from higher level nesting settings.", "oneOf": [ { "type": "object", "additionalProperties": { "type": "array", "uniqueItems": true, "items": { "$ref": "#/definitions/fileExtension" } } }, { "enum": ["*"] } ] } } }, "extensionToExtension": { "description": "Nest files with specific extensions under other specific extensions", "additionalProperties": false, "properties": { "add": { "description": "Add nesting rules in the order to be applied by corresponding provider, where each rule entry has a form 'child: collection of potential parents'.", "allOf": [ { "$ref": "#/definitions/ext-ext" } ] }, "remove": { "description": "Remove specified nesting rules if they are merged from higher level nesting settings.", "oneOf": [ { "$ref": "#/definitions/ext-ext" }, { "enum": ["*"] } ] } } }, "fileToFile": { "description": "Nest specific file names under other specific file names", "additionalProperties": false, "properties": { "add": { "description": "Add nesting rules in the order to be applied by corresponding provider, where each rule entry has a form 'child: collection of potential parents'.", "allOf": [ { "$ref": "#/definitions/file-file" } ] }, "remove": { "description": "Remove specified nesting rules if they are merged from higher level nesting settings.", "oneOf": [ { "$ref": "#/definitions/file-file" }, { "enum": ["*"] } ] } } }, "fileSuffixToExtension": { "description": "Nest files with specified suffixes under files with specified extensions.", "additionalProperties": false, "properties": { "add": { "description": "Add nesting rules in the order to be applied by corresponding provider, where each rule entry has a form 'child: collection of potential parents'.", "allOf": [ { "$ref": "#/definitions/file-ext" } ] }, "remove": { "description": "Remove specified nesting rules if they are merged from higher level nesting settings.", "oneOf": [ { "$ref": "#/definitions/file-ext" }, { "enum": ["*"] } ] } } }, "allExtensions": { "description": "A greedy version of 'extensionToExtension' and has * as the only child key", "type": "object", "additionalProperties": false, "properties": { "add": { "description": "Add nesting rules in the order to be applied by corresponding provider, where each rule entry has a form 'child: collection of potential parents'.", "properties": { ".*": { "type": "array", "uniqueItems": true, "items": { "$ref": "#/definitions/fileExtension" } } } }, "remove": { "description": "Remove specified nesting rules if they are merged from higher level nesting settings.", "oneOf": [ { "type": "object", "properties": { ".*": { "type": "array", "items": { "$ref": "#/definitions/fileExtension" } } } }, { "type": "string", "enum": ["*"] } ] } } } } } }, "id": "https://json.schemastore.org/vs-nesting.json", "properties": { "root": { "description": "Determines if this is the root nesting config file and no further inheritance is required.", "type": "boolean", "default": false }, "dependentFileProviders": { "description": "Contains a collection of nesting rule providers specified in the order to be applied.", "type": "object", "properties": { "add": { "description": "Add nesting rules in the order to be applied by corresponding provider, where each rule entry has a form 'child: collection of potential parents'.", "allOf": [ { "$ref": "#/definitions/providers" } ] }, "remove": { "description": "Remove specified nesting rules if they are merged from higher level nesting settings.", "oneOf": [ { "$ref": "#/definitions/providers" }, { "enum": ["*"] } ] } } } }, "title": "JSON schema for Visual Studio's file nesting feature", "type": "object" }
minecraft-biome.json
{ "$comment": "https://minecraft.fandom.com/wiki/Biome/JSON_format", "$id": "https://json.schemastore.org/minecraft-biome.json", "$schema": "http://json-schema.org/draft-07/schema#", "definitions": { "spawner-options": { "description": "Spawner options for the current biome\nhttps://minecraft.fandom.com/wiki/Custom_biome", "type": "array", "uniqueItems": true, "items": { "title": "swawner options", "description": "A spawner for the current biome\nhttps://minecraft.fandom.com/wiki/Custom_biome", "type": "object", "properties": { "type": { "description": "A mob namespaced entity for the current biome\nhttps://minecraft.fandom.com/wiki/Custom_biome", "type": "string" }, "weight": { "description": "A mod spawn factor for the current biome\nhttps://minecraft.fandom.com/wiki/Custom_biome", "type": "integer", "minimum": 0 }, "minCount": { "description": "A minimum mob spawn in a pack for the current biome\nhttps://minecraft.fandom.com/wiki/Custom_biome", "type": "integer", "minimum": 0 }, "maxCount": { "description": "A maximum mob spawn in a pack for the current biome\nhttps://minecraft.fandom.com/wiki/Custom_biome", "type": "integer", "minimum": 0 } }, "additionalProperties": false } } }, "description": "Configuration file defining a biome for a data pack for Minecraft", "properties": { "depth": { "description": "Used for terrain noise generation. Biomes with positive depth are considered land, biomes with negative depth are oceans\nhttps://minecraft.fandom.com/wiki/Custom_biome", "type": "number" }, "scale": { "description": "Used for terrain noise generation. Vertically stretches the terrain. Lower values produce flatter terrain\nhttps://minecraft.fandom.com/wiki/Custom_biome", "type": "number" }, "has_precipitation": { "description": "Controls if the current biome has precipitation", "type": "boolean" }, "category": { "type": "string", "enum": [ "none", "taiga", "extreme_hills", "jungle", "mesa", "plains", "savanna", "icy", "the_end", "beach", "forest", "ocean", "desert", "river", "swamp", "mushroom", "nether" ] }, "temperature": { "description": "A temperature for the current biome\nhttps://minecraft.fandom.com/wiki/Custom_biome", "type": "number" }, "temperature_modifier": { "description": "A temperature modifier for the current biome\nhttps://minecraft.fandom.com/wiki/Custom_biome", "type": "string", "enum": ["none", "frozen"], "default": "none" }, "downfall": { "description": "A grass and foliage color for the current biome\nhttps://minecraft.fandom.com/wiki/Custom_biome", "type": "number", "minimum": 0, "maximum": 1 }, "player_spawn_friendly": { "type": "boolean" }, "creature_spawn_friendly": { "description": "Spawns passive mobs as long as random value is less than this\nhttps://minecraft.fandom.com/wiki/Custom_biome", "type": "number", "minimum": 0, "maximum": 1 }, "effects": { "title": "effect options", "description": "Effect options for the current biome\nhttps://minecraft.fandom.com/wiki/Custom_biome", "type": "object", "properties": { "fog_color": { "description": "A fog color\nhttps://minecraft.fandom.com/wiki/Custom_biome", "type": "integer" }, "foliage_color": { "description": "Decimal value converted from Hex color to use for tree leaves and vines. If not present, the value depends on humidity and temperature\nhttps://minecraft.fandom.com/wiki/Custom_biome", "type": "integer" }, "grass_color": { "description": "A grass color\nhttps://minecraft.fandom.com/wiki/Custom_biome", "type": "integer" }, "sky_color": { "description": "A sky color\nhttps://minecraft.fandom.com/wiki/Custom_biome", "type": "integer" }, "water_color": { "description": "A water color\nhttps://minecraft.fandom.com/wiki/Custom_biome", "type": "integer" }, "water_fog_color": { "description": "Decimal value converted from Hex color to use for fog\nhttps://minecraft.fandom.com/wiki/Custom_biome", "type": "integer" }, "grass_color_modifier": { "description": "A grass color modifier\nhttps://minecraft.fandom.com/wiki/Custom_biome", "type": "string", "enum": ["none", "dark_forest", "swamp"], "default": "none" }, "particle": { "title": "particle options", "description": "Particle options for the current biome\nhttps://minecraft.fandom.com/wiki/Custom_biome", "type": "object", "properties": { "probability": { "description": "A particle spawning frequency for the current biome\nhttps://minecraft.fandom.com/wiki/Custom_biome", "type": "number", "minimum": 0, "maximum": 1 }, "options": { "title": "particle options", "description": "A particle type for the current biome\nhttps://minecraft.fandom.com/wiki/Custom_biome", "type": "object", "properties": { "type": { "description": "A particle type for the current biome\nhttps://minecraft.fandom.com/wiki/Custom_biome", "type": "string" }, "value": { "description": "A particle state for the current biome\nhttps://minecraft.fandom.com/wiki/Custom_biome", "type": "object", "properties": { "Name": { "description": "A particle identifier for the current biome\nhttps://minecraft.fandom.com/wiki/Custom_biome", "type": "string", "minLength": 1 } }, "additionalProperties": { "description": "Particle properties for the current biome\nhttps://minecraft.fandom.com/wiki/Custom_biome" } } }, "allOf": [ { "if": { "properties": { "type": { "const": "item" } } }, "then": { "properties": { "type": { "description": "A particle type for the current biome\nhttps://minecraft.fandom.com/wiki/Custom_biome", "type": "string" }, "value": { "description": "A particle state for the current biome\nhttps://minecraft.fandom.com/wiki/Custom_biome", "type": "object", "properties": { "Name": { "description": "A particle identifier for the current biome\nhttps://minecraft.fandom.com/wiki/Custom_biome", "type": "string", "minLength": 1 } }, "additionalProperties": { "description": "Particle properties for the current biome\nhttps://minecraft.fandom.com/wiki/Custom_biome" } }, "id": { "description": "A particle namespaced identifier for the current biome\nhttps://minecraft.fandom.com/wiki/Custom_biome", "type": "string", "minLength": 1 }, "Count": { "description": "A particle amount for the current biome\nhttps://minecraft.fandom.com/wiki/Custom_biome", "type": "integer", "minimum": 0 }, "tag": { "description": "A particle NBT data for the current biome\nhttps://minecraft.fandom.com/wiki/Custom_biome", "type": "string", "minLength": 1 } }, "additionalProperties": false } }, { "if": { "properties": { "type": { "const": "dust" } } }, "then": { "properties": { "type": { "description": "A particle type for the current biome\nhttps://minecraft.fandom.com/wiki/Custom_biome", "type": "string" }, "value": { "description": "A particle state for the current biome\nhttps://minecraft.fandom.com/wiki/Custom_biome", "type": "object", "properties": { "Name": { "description": "A particle identifier for the current biome\nhttps://minecraft.fandom.com/wiki/Custom_biome", "type": "string", "minLength": 1 } }, "additionalProperties": { "description": "Particle properties for the current biome\nhttps://minecraft.fandom.com/wiki/Custom_biome" } }, "color": { "description": "A dust color for the current biome\nhttps://minecraft.fandom.com/wiki/Custom_biome", "type": "array", "items": { "description": "A dust color component for the current biome\nhttps://minecraft.fandom.com/wiki/Custom_biome", "type": "number", "minimum": 0, "maximum": 1 }, "minItems": 3, "maxItems": 3 }, "scale": { "description": "A paricle size for the current biome\nhttps://minecraft.fandom.com/wiki/Custom_biome", "type": "number" } }, "additionalProperties": false } }, { "if": { "properties": { "type": { "const": "dust_color_transition" } } }, "then": { "properties": { "type": { "description": "A particle type for the current biome\nhttps://minecraft.fandom.com/wiki/Custom_biome", "type": "string" }, "value": { "description": "A particle state for the current biome\nhttps://minecraft.fandom.com/wiki/Custom_biome", "type": "object", "properties": { "Name": { "description": "A particle identifier for the current biome\nhttps://minecraft.fandom.com/wiki/Custom_biome", "type": "string", "minLength": 1 } }, "additionalProperties": { "description": "Particle properties for the current biome\nhttps://minecraft.fandom.com/wiki/Custom_biome" } }, "fromColor": { "description": "A start dust color for the current biome\nhttps://minecraft.fandom.com/wiki/Custom_biome", "type": "array", "items": { "description": "A dust color component for the current biome\nhttps://minecraft.fandom.com/wiki/Custom_biome", "type": "number", "minimum": 0, "maximum": 1 }, "minItems": 3, "maxItems": 3 }, "toColor": { "description": "An end dust color for the current biome\nhttps://minecraft.fandom.com/wiki/Custom_biome", "type": "array", "items": { "description": "A dust color component for the current biome\nhttps://minecraft.fandom.com/wiki/Custom_biome", "type": "number", "minimum": 0, "maximum": 1 }, "minItems": 3, "maxItems": 3 }, "scale": { "description": "A paricle size for the current biome\nhttps://minecraft.fandom.com/wiki/Custom_biome", "type": "number" } }, "additionalProperties": false } }, { "if": { "properties": { "type": { "const": "sculk_charge" } } }, "then": { "properties": { "type": { "description": "A particle type for the current biome\nhttps://minecraft.fandom.com/wiki/Custom_biome", "type": "string" }, "value": { "description": "A particle state for the current biome\nhttps://minecraft.fandom.com/wiki/Custom_biome", "type": "object", "properties": { "Name": { "description": "A particle identifier for the current biome\nhttps://minecraft.fandom.com/wiki/Custom_biome", "type": "string", "minLength": 1 } }, "additionalProperties": { "description": "Particle properties for the current biome\nhttps://minecraft.fandom.com/wiki/Custom_biome" } }, "roll": { "description": "A particle angle in radians for the current biome\nhttps://minecraft.fandom.com/wiki/Custom_biome", "type": "number" } }, "additionalProperties": false } }, { "if": { "properties": { "type": { "const": "vibration" } } }, "then": { "properties": { "type": { "description": "A particle type for the current biome\nhttps://minecraft.fandom.com/wiki/Custom_biome", "type": "string" }, "value": { "description": "A particle state for the current biome\nhttps://minecraft.fandom.com/wiki/Custom_biome", "type": "object", "properties": { "Name": { "description": "A particle identifier for the current biome\nhttps://minecraft.fandom.com/wiki/Custom_biome", "type": "string", "minLength": 1 } }, "additionalProperties": { "description": "Particle properties for the current biome\nhttps://minecraft.fandom.com/wiki/Custom_biome" } }, "destination": { "description": "A particle angle in radians for the current biome\nhttps://minecraft.fandom.com/wiki/Custom_biome", "properties": { "type": { "description": "A namespaced identifier of the position source type for the current biome\nhttps://minecraft.fandom.com/wiki/Custom_biome" }, "y_offset": { "description": "An offset from entity's feet for the current biome\nhttps://minecraft.fandom.com/wiki/Custom_biome", "type": "number", "default": 0 } }, "allOf": [ { "if": { "properties": { "type": { "const": "block" } } }, "then": { "properties": { "type": { "description": "A namespaced identifier of the position source type for the current biome\nhttps://minecraft.fandom.com/wiki/Custom_biome" }, "y_offset": { "description": "An offset from entity's feet for the current biome\nhttps://minecraft.fandom.com/wiki/Custom_biome", "type": "number", "default": 0 }, "pos": { "description": "A block position for the current biome\nhttps://minecraft.fandom.com/wiki/Custom_biome", "type": "array", "items": { "description": "A position component for the current biome\nhttps://minecraft.fandom.com/wiki/Custom_biome", "type": "integer" }, "minItems": 3, "maxItems": 3 } }, "additionalProperties": false } }, { "if": { "properties": { "type": { "const": "entity" } } }, "then": { "properties": { "type": { "description": "A namespaced identifier of the position source type for the current biome\nhttps://minecraft.fandom.com/wiki/Custom_biome" }, "y_offset": { "description": "An offset from entity's feet for the current biome\nhttps://minecraft.fandom.com/wiki/Custom_biome", "type": "number", "default": 0 }, "source_entity": { "description": "A block position for the current biome\nhttps://minecraft.fandom.com/wiki/Custom_biome", "type": "array", "items": { "description": "A position component for the current biome\nhttps://minecraft.fandom.com/wiki/Custom_biome", "type": "integer" }, "minItems": 4, "maxItems": 4 } }, "additionalProperties": false } } ] }, "arrival_in_ticks": { "description": "A particle move duration for the current biome\nhttps://minecraft.fandom.com/wiki/Custom_biome", "type": "integer", "minimum": 0 } }, "additionalProperties": false } }, { "if": { "properties": { "type": { "const": "shriek" } } }, "then": { "properties": { "type": { "description": "A particle type for the current biome\nhttps://minecraft.fandom.com/wiki/Custom_biome", "type": "string" }, "value": { "description": "A particle state for the current biome\nhttps://minecraft.fandom.com/wiki/Custom_biome", "type": "object", "properties": { "Name": { "description": "A particle identifier for the current biome\nhttps://minecraft.fandom.com/wiki/Custom_biome", "type": "string", "minLength": 1 } }, "additionalProperties": { "description": "Particle properties for the current biome\nhttps://minecraft.fandom.com/wiki/Custom_biome" } }, "delay": { "description": "A particle delay in ticks for the current biome\nhttps://minecraft.fandom.com/wiki/Custom_biome", "type": "integer" } }, "additionalProperties": false } } ] } }, "additionalProperties": false }, "ambient_sound": { "description": "Sound event to use for ambient sound\nhttps://minecraft.fandom.com/wiki/Custom_biome", "type": "string" }, "mood_sound": { "title": "Mood Sound", "description": "Settings for mood sound\nhttps://minecraft.fandom.com/wiki/Custom_biome", "type": "object", "properties": { "sound": { "description": "Sound event to use\nhttps://minecraft.fandom.com/wiki/Custom_biome", "type": "string" }, "tick_delay": { "type": "integer" }, "block_search_context": { "description": "Determines the cubic range of possible positions to play the mood sound. The player is at the center of the cubic range, and the edge length is 2 * block_search_extent + 1\nhttps://minecraft.fandom.com/wiki/Custom_biome", "type": "integer" }, "offset": { "type": "integer" } } }, "additions_sound": { "title": "Additions Sound", "description": "Settings for additions sound\nhttps://minecraft.fandom.com/wiki/Custom_biome", "type": "object", "properties": { "sound": { "description": "Sound event to use\nhttps://minecraft.fandom.com/wiki/Custom_biome", "type": "string" }, "tick_chance": { "title": "Tick Chance", "type": "integer" } } }, "music": { "title": "Music", "description": "Specific music that should be played in the biome\nhttps://minecraft.fandom.com/wiki/Custom_biome", "type": "object", "properties": { "sound": { "description": "Sound event to use\nhttps://minecraft.fandom.com/wiki/Custom_biome", "type": "string" }, "min_delay": { "type": "integer" }, "max_delay": { "type": "integer" }, "replace_current_music": { "description": "Whether or not to replace music which is already playing\nhttps://minecraft.fandom.com/wiki/Custom_biome", "type": "boolean" } } } }, "additionalProperties": false }, "surface_builder": { "description": "The namespaced id of the configured surface builder to use\nhttps://minecraft.fandom.com/wiki/Custom_biome", "type": "string" }, "carvers": { "title": "carvers", "description": "Carvers to use for the current biome\nhttps://minecraft.fandom.com/wiki/Custom_biome", "type": "object", "properties": { "air": { "description": "Carvers used during air generation step for the current biome\nhttps://minecraft.fandom.com/wiki/Custom_biome", "type": "array", "uniqueItems": true, "items": { "description": "A namespaced id of a configured carver for the current biome\nhttps://minecraft.fandom.com/wiki/Custom_biome", "type": "string", "minLength": 1 } }, "liquid": { "description": "Carvers used during liquid generation step for the current biome\nhttps://minecraft.fandom.com/wiki/Custom_biome", "type": "array", "uniqueItems": true, "items": { "description": "A namespaced id of a configured carver for the current biome\nhttps://minecraft.fandom.com/wiki/Custom_biome", "type": "string", "minLength": 1 } } }, "additionalProperties": false }, "features": { "description": "Features for the current biome\nhttps://minecraft.fandom.com/wiki/Custom_biome", "type": "array", "uniqueItems": true, "items": { "description": "A feature for the current biome\nhttps://minecraft.fandom.com/wiki/Custom_biome", "type": ["string", "array"] } }, "creature_spawn_probability": { "description": "A creature spawn probability for the current biome\nhttps://minecraft.fandom.com/wiki/Custom_biome", "type": "number", "minimum": 0, "exclusiveMaximum": 1 }, "starts": { "description": "The structures to generate in this biome\nhttps://minecraft.fandom.com/wiki/Custom_biome", "type": "array", "items": { "description": "The namespaced ID of a configured structure feature\nhttps://minecraft.fandom.com/wiki/Custom_biome", "type": "string" } }, "spawners": { "title": "spawners", "description": "Entity spawning options for the current biome\nhttps://minecraft.fandom.com/wiki/Custom_biome", "type": "object", "properties": { "monster": { "$ref": "#/definitions/spawner-options" }, "creature": { "$ref": "#/definitions/spawner-options" }, "ambient": { "$ref": "#/definitions/spawner-options" }, "water_creature": { "$ref": "#/definitions/spawner-options" }, "underground_water_creature": { "$ref": "#/definitions/spawner-options" }, "water_ambient": { "$ref": "#/definitions/spawner-options" }, "misc": { "$ref": "#/definitions/spawner-options" }, "axolotls": { "$ref": "#/definitions/spawner-options" } }, "additionalProperties": false }, "spawn_costs": { "title": "spawn costs", "description": "Entity identifiers for the current biome\nhttps://minecraft.fandom.com/wiki/Custom_biome", "type": "object", "additionalProperties": { "title": "entity identifier", "description": "A namespaced entity identifier for the current biome\nhttps://minecraft.fandom.com/wiki/Custom_biome", "type": "object", "properties": { "energy_budget": { "description": "A new mob maximum potential for the current biome\nhttps://minecraft.fandom.com/wiki/Custom_biome", "type": "number", "minimum": 0 }, "charge": { "description": "A new mob charge for the current biome\nhttps://minecraft.fandom.com/wiki/Custom_biome", "type": "number", "minimum": 0 } }, "additionalProperties": false } } }, "title": "Minecraft Data Pack Biome", "type": "object" }
flow.schema.json
{ "$schema": "https://json-schema.org/draft/2019-09/schema", "title": "Catalog", "description": "Each catalog source defines a portion of a Flow Catalog, by defining collections, derivations, tests, and materializations of the Catalog. Catalog sources may reference and import other sources, in order to collections and other entities that source defines.", "type": "object", "properties": { "$schema": { "title": "JSON-Schema against which the Catalog is validated.", "type": "string" }, "captures": { "title": "Captures of this Catalog.", "examples": [ { "acmeCo/capture": { "autoDiscover": { "addNewBindings": true, "evolveIncompatibleCollections": true }, "bindings": [ { "resource": { "stream": "a_stream" }, "target": "target/collection" } ], "endpoint": { "connector": { "config": "connector-config.yaml", "image": "connector/image:tag" } } } } ], "type": "object", "patternProperties": { "^[\\p{Letter}\\p{Number}\\-_\\.]+(/[\\p{Letter}\\p{Number}\\-_\\.]+)*$": { "$ref": "#/definitions/CaptureDef" } }, "additionalProperties": false }, "collections": { "title": "Collections of this Catalog.", "examples": [ { "acmeCo/collection": { "key": [ "/json/ptr" ], "schema": { "properties": { "bar": { "const": 42 }, "foo": { "type": "integer" } }, "type": "object" } } } ], "type": "object", "patternProperties": { "^[\\p{Letter}\\p{Number}\\-_\\.]+(/[\\p{Letter}\\p{Number}\\-_\\.]+)*$": { "$ref": "#/definitions/CollectionDef" } }, "additionalProperties": false }, "import": { "title": "Import other Flow catalog sources.", "description": "By importing another Flow catalog source, its collections, schemas, and derivations are bundled into the publication context of this specification. Imports are relative or absolute URLs, relative to this specification's location.", "type": "array", "items": { "$ref": "#/definitions/RelativeUrl" } }, "materializations": { "title": "Materializations of this Catalog.", "examples": [ { "acmeCo/materialization": { "bindings": [ { "fields": { "recommended": true }, "resource": { "table": "a_table" }, "source": "source/collection" } ], "endpoint": { "connector": { "config": "connector-config.yaml", "image": "connector/image:tag" } } } } ], "type": "object", "patternProperties": { "^[\\p{Letter}\\p{Number}\\-_\\.]+(/[\\p{Letter}\\p{Number}\\-_\\.]+)*$": { "$ref": "#/definitions/MaterializationDef" } }, "additionalProperties": false }, "tests": { "title": "Tests of this Catalog.", "examples": [ { "acmeCo/conversions/test": [ { "ingest": { "collection": "acmeCo/collection", "description": "Description of the ingestion.", "documents": [ { "a": "document" }, { "another": "document" } ] } }, { "verify": { "collection": "acmeCo/collection", "description": "Description of the verification.", "documents": [ { "a": "document" }, { "another": "document" } ] } } ] } ], "type": "object", "patternProperties": { "^[\\p{Letter}\\p{Number}\\-_\\.]+(/[\\p{Letter}\\p{Number}\\-_\\.]+)*$": { "type": "array", "items": { "$ref": "#/definitions/TestStep" } } }, "additionalProperties": false } }, "additionalProperties": false, "definitions": { "AutoDiscover": { "description": "Settings to determine how Flow should stay abreast of ongoing changes to collections and schemas.", "type": "object", "properties": { "addNewBindings": { "description": "Automatically add new bindings discovered from the source.", "default": false, "type": "boolean" }, "evolveIncompatibleCollections": { "description": "Whether to automatically evolve collections and/or materialization bindings to handle changes to collections that would otherwise be incompatible with the existing catalog.", "default": false, "type": "boolean" } }, "additionalProperties": false }, "Capture": { "description": "Capture names are paths of Unicode letters, numbers, '-', '_', or '.'. Each path component is separated by a slash '/', and a name may not begin or end in a '/'.", "examples": [ "acmeCo/capture" ], "type": "string", "pattern": "^[\\p{Letter}\\p{Number}\\-_\\.]+(/[\\p{Letter}\\p{Number}\\-_\\.]+)*$" }, "CaptureBinding": { "examples": [ { "resource": { "stream": "a_stream" }, "target": "target/collection" } ], "type": "object", "required": [ "resource", "target" ], "properties": { "disable": { "title": "Whether to disable the binding", "description": "Disabled bindings are inactive, and not validated. They can be used to represent discovered resources that are intentionally not being captured.", "type": "boolean" }, "resource": { "title": "Endpoint resource to capture from." }, "target": { "title": "Name of the collection to capture into.", "$ref": "#/definitions/Collection" } }, "additionalProperties": false }, "CaptureDef": { "description": "A Capture binds an external system and target (e.x., a SQL table or cloud storage bucket) from which data should be continuously captured, with a Flow collection into that captured data is ingested. Multiple Captures may be bound to a single collection, but only one capture may exist for a given endpoint and target.", "type": "object", "required": [ "bindings", "endpoint" ], "properties": { "autoDiscover": { "title": "Continuously keep the collection spec and schema up-to-date", "$ref": "#/definitions/AutoDiscover" }, "bindings": { "title": "Bound collections to capture from the endpoint.", "type": "array", "items": { "$ref": "#/definitions/CaptureBinding" } }, "endpoint": { "title": "Endpoint to capture from.", "$ref": "#/definitions/CaptureEndpoint" }, "interval": { "title": "Interval of time between invocations of the capture.", "description": "Configured intervals are applicable only to connectors which are unable to continuously tail their source, and which instead produce a current quantity of output and then exit. Flow will start the connector again after the given interval of time has passed.\n\nIntervals are relative to the start of an invocation and not its completion. For example, if the interval is five minutes, and an invocation of the capture finishes after two minutes, then the next invocation will be started after three additional minutes.", "type": [ "string", "null" ], "pattern": "^\\d+(s|m|h)$" }, "shards": { "title": "Template for shards of this capture task.", "$ref": "#/definitions/ShardTemplate" } }, "additionalProperties": false }, "CaptureEndpoint": { "description": "An endpoint from which Flow will capture.", "oneOf": [ { "title": "A Connector.", "type": "object", "required": [ "connector" ], "properties": { "connector": { "$ref": "#/definitions/ConnectorConfig" } }, "additionalProperties": false } ] }, "Collection": { "description": "Collection names are paths of Unicode letters, numbers, '-', '_', or '.'. Each path component is separated by a slash '/', and a name may not begin or end in a '/'.", "examples": [ "acmeCo/collection" ], "type": "string", "pattern": "^[\\p{Letter}\\p{Number}\\-_\\.]+(/[\\p{Letter}\\p{Number}\\-_\\.]+)*$" }, "CollectionDef": { "description": "Collection describes a set of related documents, where each adheres to a common schema and grouping key. Collections are append-only: once a document is added to a collection, it is never removed. However, it may be replaced or updated (either in whole, or in part) by a future document sharing its key. Each new document of a given key is \"reduced\" into existing documents of the key. By default, this reduction is achieved by completely replacing the previous document, but much richer reduction behaviors can be specified through the use of annotated reduction strategies of the collection schema.", "examples": [ { "key": [ "/json/ptr" ], "schema": { "properties": { "bar": { "const": 42 }, "foo": { "type": "integer" } }, "type": "object" } } ], "type": "object", "oneOf": [ { "required": [ "schema" ], "properties": { "readSchema": false, "writeSchema": false } }, { "required": [ "readSchema", "writeSchema" ], "properties": { "schema": false } } ], "required": [ "key" ], "properties": { "derive": { "$ref": "#/definitions/Derivation" }, "journals": { "title": "Template for journals of this collection.", "$ref": "#/definitions/JournalTemplate" }, "key": { "title": "Composite key of this collection.", "$ref": "#/definitions/CompositeKey" }, "projections": { "title": "Projections and logical partitions of this collection.", "examples": [ { "a_field": "/json/ptr", "a_partition": { "location": "/json/ptr", "partition": true } } ], "type": "object", "patternProperties": { "^([^/~]|(~[01]))+(/([^/~]|(~[01]))+)*$": { "$ref": "#/definitions/Projection" } }, "additionalProperties": false }, "readSchema": { "title": "Schema against which collection documents are validated and reduced on read.", "$ref": "#/definitions/Schema" }, "schema": { "title": "Schema against which collection documents are validated and reduced on write and read.", "examples": [ "../path/to/schema#/$defs/subPath" ], "$ref": "#/definitions/Schema" }, "writeSchema": { "title": "Schema against which collection documents are validated and reduced on write.", "$ref": "#/definitions/Schema" } }, "additionalProperties": false }, "CompositeKey": { "description": "Ordered JSON-Pointers which define how a composite key may be extracted from a collection document.", "examples": [ [ "/json/ptr" ] ], "type": "array", "items": { "$ref": "#/definitions/JsonPointer" } }, "CompressionCodec": { "description": "A CompressionCodec may be applied to compress journal fragments before they're persisted to cloud stoage. The compression applied to a journal fragment is included in its filename, such as \".gz\" for GZIP. A collection's compression may be changed at any time, and will affect newly-written journal fragments.", "examples": [ "GZIP_OFFLOAD_DECOMPRESSION" ], "type": "string", "enum": [ "NONE", "GZIP", "ZSTANDARD", "SNAPPY", "GZIP_OFFLOAD_DECOMPRESSION" ] }, "ConnectorConfig": { "description": "Connector image and configuration specification.", "type": "object", "required": [ "config", "image" ], "properties": { "config": { "title": "Configuration of the connector." }, "image": { "title": "Image of the connector.", "type": "string" } } }, "Derivation": { "description": "Derive specifies how a collection is derived from other collections.", "type": "object", "required": [ "transforms", "using" ], "properties": { "shards": { "title": "Template for shards of this derivation task.", "$ref": "#/definitions/ShardTemplate" }, "shuffleKeyTypes": { "title": "Key component types of the shuffle keys used by derivation lambdas.", "description": "Typically you omit this and Flow infers it from your transform shuffle keys. In some circumstances, Flow may require that you explicitly tell it of your shuffled key types.", "type": "array", "items": { "$ref": "#/definitions/ShuffleType" } }, "transforms": { "title": "Transforms which make up this derivation.", "type": "array", "items": { "$ref": "#/definitions/TransformDef" } }, "using": { "title": "The selected runtime for this derivation.", "$ref": "#/definitions/DeriveUsing" } }, "additionalProperties": false }, "DeriveUsing": { "description": "A derivation runtime implementation.", "oneOf": [ { "title": "A Connector.", "type": "object", "required": [ "connector" ], "properties": { "connector": { "$ref": "#/definitions/ConnectorConfig" } }, "additionalProperties": false }, { "title": "A SQLite derivation.", "type": "object", "required": [ "sqlite" ], "properties": { "sqlite": { "$ref": "#/definitions/DeriveUsingSqlite" } }, "additionalProperties": false }, { "title": "A TypeScript derivation.", "type": "object", "required": [ "typescript" ], "properties": { "typescript": { "$ref": "#/definitions/DeriveUsingTypescript" } }, "additionalProperties": false } ] }, "DeriveUsingSqlite": { "type": "object", "properties": { "migrations": { "title": "Ordered migrations which are used to initialize the database.", "description": "Migrations may be provided as an inline string, or as a relative URL to a file containing the migration SQL.", "type": "array", "items": { "oneOf": [ { "description": "A URL identifying a resource, which may be a relative local path with respect to the current resource (i.e, ../path/to/flow.yaml), or may be an external absolute URL (i.e., http://example/flow.yaml).", "examples": [ "https://example/resource" ], "type": "string", "pattern": "^[^ ]+$" }, { "type": "string", "contentMediaType": "text/x.sql" } ] } } }, "additionalProperties": false }, "DeriveUsingTypescript": { "type": "object", "required": [ "module" ], "properties": { "module": { "title": "TypeScript module implementing this derivation.", "description": "Module is either a relative URL of a TypeScript module file, or is an inline representation of a Typescript module. The module must have a exported Derivation variable which is an instance implementing the corresponding Derivation interface.", "oneOf": [ { "description": "A URL identifying a resource, which may be a relative local path with respect to the current resource (i.e, ../path/to/flow.yaml), or may be an external absolute URL (i.e., http://example/flow.yaml).", "examples": [ "https://example/resource" ], "type": "string", "pattern": "^[^ ]+$" }, { "type": "string", "contentMediaType": "text/x.typescript" } ] } }, "additionalProperties": false }, "Field": { "description": "Field names a projection of a document location. They may include '/', but cannot begin or end with one. Many Fields are automatically inferred by Flow from a collection JSON Schema, and are the JSON Pointer of the document location with the leading '/' removed. User-provided Fields which act as a logical partitions are restricted to Unicode letters, numbers, '-', '_', or '.'", "examples": [ "my_field" ], "type": "string", "pattern": "^([^/~]|(~[01]))+(/([^/~]|(~[01]))+)*$" }, "FragmentTemplate": { "description": "A FragmentTemplate configures how journal fragment files are produced as part of a collection.", "examples": [ { "compressionCodec": "ZSTANDARD", "flushInterval": "1h" } ], "type": "object", "properties": { "compressionCodec": { "title": "Codec used to compress Journal Fragments.", "$ref": "#/definitions/CompressionCodec" }, "flushInterval": { "title": "Maximum flush delay before in-progress fragments are closed and persisted", "description": "into cloud storage. Intervals are converted into uniform time segments: 24h will \"roll\" all fragments at midnight UTC every day, 1h at the top of every hour, 15m a :00, :15, :30, :45 past the hour, and so on. If not set, then fragments are not flushed on time-based intervals.", "type": [ "string", "null" ], "pattern": "^\\d+(s|m|h)$" }, "length": { "title": "Desired content length of each fragment, in megabytes before compression.", "description": "When a collection journal fragment reaches this threshold, it will be closed off and pushed to cloud storage. If not set, a default of 512MB is used.", "type": "integer", "format": "uint32", "maximum": 4096.0, "minimum": 32.0 }, "retention": { "title": "Duration for which historical fragments of a collection should be kept.", "description": "If not set, then fragments are retained indefinitely.", "type": [ "string", "null" ], "pattern": "^\\d+(s|m|h)$" } }, "additionalProperties": false }, "FullSource": { "description": "A source collection and details of how it's read.", "examples": [ { "name": "source/collection" } ], "type": "object", "required": [ "name" ], "properties": { "name": { "title": "Name of the collection to be read.", "$ref": "#/definitions/Collection" }, "notAfter": { "title": "Upper bound date-time for documents which should be processed.", "description": "Source collection documents published after this date-time are filtered. `notAfter` is *only* a filter. Updating its value will not cause Flow to re-process documents that have already been read. Optional. Default is to process all documents.", "type": [ "string", "null" ], "format": "date-time" }, "notBefore": { "title": "Lower bound date-time for documents which should be processed.", "description": "Source collection documents published before this date-time are filtered. `notBefore` is *only* a filter. Updating its value will not cause Flow to re-process documents that have already been read. Optional. Default is to process all documents.", "type": [ "string", "null" ], "format": "date-time" }, "partitions": { "title": "Selector over partition of the source collection to read.", "examples": [ { "exclude": { "other_partition": [ 32, 64 ] }, "include": { "a_partition": [ "A", "B" ] } } ], "$ref": "#/definitions/PartitionSelector" } }, "additionalProperties": false }, "JournalTemplate": { "description": "A JournalTemplate configures the journals which make up the physical partitions of a collection.", "examples": [ { "fragments": { "compressionCodec": "ZSTANDARD", "flushInterval": "1h" } } ], "type": "object", "required": [ "fragments" ], "properties": { "fragments": { "title": "Fragment configuration of collection journals.", "$ref": "#/definitions/FragmentTemplate" } }, "additionalProperties": false }, "JsonPointer": { "description": "JSON Pointer which identifies a location in a document.", "examples": [ "/json/ptr" ], "type": "string", "pattern": "^(/([^/~]|(~[01]))+)*$" }, "Materialization": { "description": "Materialization names are paths of Unicode letters, numbers, '-', '_', or '.'. Each path component is separated by a slash '/', and a name may not begin or end in a '/'.", "examples": [ "acmeCo/materialization" ], "type": "string", "pattern": "^[\\p{Letter}\\p{Number}\\-_\\.]+(/[\\p{Letter}\\p{Number}\\-_\\.]+)*$" }, "MaterializationBinding": { "examples": [ { "fields": { "recommended": true }, "resource": { "table": "a_table" }, "source": "source/collection" } ], "type": "object", "required": [ "resource", "source" ], "properties": { "disable": { "title": "Whether to disable the binding", "description": "Disabled bindings are inactive, and not validated.", "type": "boolean" }, "fields": { "title": "Selected projections for this materialization.", "default": { "recommended": true }, "$ref": "#/definitions/MaterializationFields" }, "priority": { "title": "Priority applied to documents processed by this binding.", "description": "When all bindings are of equal priority, Flow processes documents according to their associated publishing time, as encoded in the document UUID.\n\nHowever, when one binding has a higher priority than others, then *all* ready documents are processed through the binding before *any* documents of other bindings are processed.", "type": "integer", "format": "uint32", "minimum": 0.0 }, "resource": { "title": "Endpoint resource to materialize into." }, "source": { "title": "The collection to be materialized.", "$ref": "#/definitions/Source" } }, "additionalProperties": false }, "MaterializationDef": { "description": "A Materialization binds a Flow collection with an external system & target (e.x, a SQL table) into which the collection is to be continuously materialized.", "type": "object", "required": [ "bindings", "endpoint" ], "properties": { "bindings": { "title": "Bound collections to materialize into the endpoint.", "type": "array", "items": { "$ref": "#/definitions/MaterializationBinding" } }, "endpoint": { "title": "Endpoint to materialize into.", "$ref": "#/definitions/MaterializationEndpoint" }, "shards": { "title": "Template for shards of this materialization task.", "$ref": "#/definitions/ShardTemplate" }, "sourceCapture": { "title": "Automatically materialize new bindings from a named capture", "$ref": "#/definitions/Capture" } }, "additionalProperties": false }, "MaterializationEndpoint": { "description": "An Endpoint connector used for Flow materializations.", "oneOf": [ { "title": "A Connector.", "type": "object", "required": [ "connector" ], "properties": { "connector": { "$ref": "#/definitions/ConnectorConfig" } }, "additionalProperties": false } ] }, "MaterializationFields": { "description": "MaterializationFields defines a selection of projections to materialize, as well as optional per-projection, driver-specific configuration.", "examples": [ { "exclude": [ "removed" ], "include": { "added": {} }, "recommended": true } ], "type": "object", "required": [ "recommended" ], "properties": { "exclude": { "title": "Fields to exclude.", "description": "This removes from recommended projections, where enabled.", "type": "array", "items": { "$ref": "#/definitions/Field" } }, "include": { "title": "Fields to include.", "description": "This supplements any recommended fields, where enabled. Values are passed through to the driver, e.x. for customization of the driver's schema generation or runtime behavior with respect to the field.", "type": "object", "additionalProperties": true }, "recommended": { "title": "Should recommended projections for the endpoint be used?", "type": "boolean" } }, "additionalProperties": false }, "PartitionSelector": { "description": "Partition selectors identify a desired subset of the available logical partitions of a collection.", "examples": [ { "exclude": { "other_partition": [ 32, 64 ] }, "include": { "a_partition": [ "A", "B" ] } } ], "type": "object", "properties": { "exclude": { "description": "Partition field names and values which are excluded from the source collection. Any documents matching *any one* of the partition values will be excluded.", "default": {}, "type": "object", "additionalProperties": { "type": "array", "items": true } }, "include": { "description": "Partition field names and corresponding values which must be matched from the Source collection. Only documents having one of the specified values across all specified partition names will be matched. For example, source: [App, Web] region: [APAC] would mean only documents of 'App' or 'Web' source and also occurring in the 'APAC' region will be processed.", "default": {}, "type": "object", "additionalProperties": { "type": "array", "items": true } } }, "additionalProperties": false }, "Projection": { "description": "Projections are named locations within a collection document which may be used for logical partitioning or directly exposed to databases into which collections are materialized.", "anyOf": [ { "$ref": "#/definitions/JsonPointer" }, { "type": "object", "required": [ "location" ], "properties": { "location": { "title": "Location of this projection.", "$ref": "#/definitions/JsonPointer" }, "partition": { "title": "Is this projection a logical partition?", "default": false, "type": "boolean" } }, "additionalProperties": false } ] }, "RelativeUrl": { "description": "A URL identifying a resource, which may be a relative local path with respect to the current resource (i.e, ../path/to/flow.yaml), or may be an external absolute URL (i.e., http://example/flow.yaml).", "examples": [ "https://example/resource" ], "type": "string", "pattern": "^[^ ]+$" }, "Schema": { "description": "A schema is a draft 2020-12 JSON Schema which validates Flow documents. Schemas also provide annotations at document locations, such as reduction strategies for combining one document into another.\n\nSchemas may be defined inline to the catalog, or given as a relative or absolute URI. URIs may optionally include a JSON fragment pointer that locates a specific sub-schema therein.\n\nFor example, \"schemas/marketing.yaml#/$defs/campaign\" would reference the schema at location {\"$defs\": {\"campaign\": ...}} within ./schemas/marketing.yaml.", "examples": [ "http://example/schema#/$defs/subPath", "../path/to/schema#/$defs/subPath", { "properties": { "bar": { "const": 42 }, "foo": { "type": "integer" } }, "type": "object" } ] }, "ShardTemplate": { "description": "A ShardTemplate configures how shards process a catalog task.", "examples": [ { "hotStandbys": 1, "maxTxnDuration": "30s" } ], "type": "object", "properties": { "disable": { "title": "Disable processing of the task's shards.", "type": "boolean" }, "hotStandbys": { "title": "Number of hot standbys to keep for each task shard.", "description": "Hot standbys of a shard actively replicate the shard's state to another machine, and are able to be quickly promoted to take over processing for the shard should its current primary fail. If not set, then no hot standbys are maintained. EXPERIMENTAL: this field MAY be removed.", "type": "integer", "format": "uint32", "minimum": 0.0 }, "logLevel": { "title": "Log level of this tasks's shards.", "description": "Log levels may currently be \"error\", \"warn\", \"info\", \"debug\", or \"trace\". If not set, the effective log level is \"info\".", "type": "string" }, "maxTxnDuration": { "title": "Maximum duration of task transactions.", "description": "This duration upper-bounds the amount of time during which a transaction may process documents before it must flush and commit. It may run for less time if there aren't additional ready documents for it to process. If not set, the maximum duration defaults to five minutes for materializations, and one second for captures and derivations. EXPERIMENTAL: this field MAY be removed.", "type": [ "string", "null" ], "pattern": "^\\d+(s|m|h)$" }, "minTxnDuration": { "title": "Minimum duration of task transactions.", "description": "This duration lower-bounds the amount of time during which a transaction must process documents before it must flush and commit. It may run for more time if additional documents are available. The default value is zero seconds. Larger values may result in more data reduction, at the cost of more latency. EXPERIMENTAL: this field MAY be removed.", "type": [ "string", "null" ], "pattern": "^\\d+(s|m|h)$" }, "readChannelSize": { "title": "Size of the reader channel used for decoded documents.", "description": "Larger values are recommended for tasks having more than one shard split and long, bursty transaction durations. If not set, a reasonable default (currently 4,096) is used. EXPERIMENTAL: this field is LIKELY to be removed.", "type": "integer", "format": "uint32", "minimum": 0.0 }, "ringBufferSize": { "title": "Size of the ring buffer used to sequence documents for exactly-once semantics.", "description": "The ring buffer is a performance optimization only: catalog tasks will replay portions of journals as needed when messages aren't available in the buffer. It can remain small if upstream task transactions are small, but larger transactions will achieve better performance with a larger ring. If not set, a reasonable default (currently 65,536) is used. EXPERIMENTAL: this field is LIKELY to be removed.", "type": "integer", "format": "uint32", "minimum": 0.0 } }, "additionalProperties": false }, "Shuffle": { "description": "A Shuffle specifies how a shuffling key is to be extracted from collection documents.", "examples": [ { "key": [ "/json/ptr" ] } ], "oneOf": [ { "title": "A Document may be shuffled to any task shard.", "description": "Use 'any' if your transformation does not rely on internal task state, or if your derivation is not intended to scale beyond a single shard.", "type": "string", "enum": [ "any" ] }, { "title": "Key which identifies fields of sourced documents to extract and shuffle upon.", "type": "object", "required": [ "key" ], "properties": { "key": { "$ref": "#/definitions/CompositeKey" } }, "additionalProperties": false }, { "title": "Lambda which extracts a shuffle key from the sourced documents of this transform.", "description": "Lambdas may be provided inline, or as a relative URL to a file containing the lambda.", "type": "object", "required": [ "lambda" ], "properties": { "lambda": true }, "additionalProperties": false } ] }, "ShuffleType": { "description": "Type of a shuffled key component.", "type": "string", "enum": [ "boolean", "integer", "string" ] }, "Source": { "description": "A source collection and details of how it's read.", "examples": [ "source/collection" ], "anyOf": [ { "$ref": "#/definitions/FullSource" }, { "$ref": "#/definitions/Collection" } ] }, "Test": { "description": "Test names are paths of Unicode letters, numbers, '-', '_', or '.'. Each path component is separated by a slash '/', and a name may not begin or end in a '/'.", "examples": [ "acmeCo/conversions/test" ], "type": "string", "pattern": "^[\\p{Letter}\\p{Number}\\-_\\.]+(/[\\p{Letter}\\p{Number}\\-_\\.]+)*$" }, "TestDocuments": { "description": "A test step describes either an \"ingest\" of document fixtures into a collection, or a \"verify\" of expected document fixtures from a collection.", "examples": [ "../path/to/test-documents.json", [ { "a": "document" }, { "another": "document" } ] ] }, "TestStep": { "description": "A test step describes either an \"ingest\" of document fixtures into a collection, or a \"verify\" of expected document fixtures from a collection.", "examples": [ { "ingest": { "collection": "acmeCo/collection", "description": "Description of the ingestion.", "documents": [ { "a": "document" }, { "another": "document" } ] } }, { "verify": { "collection": "acmeCo/collection", "description": "Description of the verification.", "documents": [ { "a": "document" }, { "another": "document" } ] } } ], "oneOf": [ { "description": "Ingest document fixtures into a collection.", "type": "object", "required": [ "ingest" ], "properties": { "ingest": { "$ref": "#/definitions/TestStepIngest" } }, "additionalProperties": false }, { "description": "Verify the contents of a collection match a set of document fixtures.", "type": "object", "required": [ "verify" ], "properties": { "verify": { "$ref": "#/definitions/TestStepVerify" } }, "additionalProperties": false } ] }, "TestStepIngest": { "description": "An ingestion test step ingests document fixtures into the named collection.", "examples": [ { "collection": "acmeCo/collection", "description": "Description of the ingestion.", "documents": [ { "a": "document" }, { "another": "document" } ] } ], "type": "object", "required": [ "collection", "documents" ], "properties": { "collection": { "title": "Name of the collection into which the test will ingest.", "$ref": "#/definitions/Collection" }, "description": { "title": "Description of this test ingestion.", "type": "string" }, "documents": { "title": "Documents to ingest.", "description": "Each document must conform to the collection's schema.", "$ref": "#/definitions/TestDocuments" } }, "additionalProperties": false }, "TestStepVerify": { "description": "A verification test step verifies that the contents of the named collection match the expected fixtures, after fully processing all preceding ingestion test steps.", "examples": [ { "collection": "acmeCo/collection", "description": "Description of the verification.", "documents": [ { "a": "document" }, { "another": "document" } ] } ], "type": "object", "required": [ "collection", "documents" ], "properties": { "collection": { "title": "Collection from which the test will verify.", "$ref": "#/definitions/Source" }, "description": { "title": "Description of this test verification.", "type": "string" }, "documents": { "title": "Documents to verify.", "description": "Each document may contain only a portion of the matched document's properties, and any properties present in the actual document but not in this document fixture are ignored. All other values must match or the test will fail.", "$ref": "#/definitions/TestDocuments" } }, "additionalProperties": false }, "Transform": { "description": "Transform names are Unicode letters, numbers, '-', '_', or '.'.", "examples": [ "myTransform" ], "type": "string", "pattern": "^[\\p{Letter}\\p{Number}\\-_\\.]+$" }, "TransformDef": { "description": "A Transform reads and shuffles documents of a source collection, and processes each document through either one or both of a register \"update\" lambda and a derived document \"publish\" lambda.", "examples": [ { "name": "my-transform", "shuffle": "any", "source": "some/source/collection" } ], "type": "object", "required": [ "name", "shuffle", "source" ], "properties": { "disable": { "title": "Whether to disable this transform.", "description": "Disabled transforms are completely ignored at runtime and are not validated.", "type": "boolean" }, "lambda": { "title": "Lambda applied to the sourced documents of this transform.", "description": "Lambdas may be provided inline, or as a relative URL to a file containing the lambda." }, "name": { "title": "Name of this transformation.", "description": "The names of transforms within a derivation must be unique and stable.", "$ref": "#/definitions/Transform" }, "priority": { "title": "Priority applied to documents processed by this transform.", "description": "When all transforms are of equal priority, Flow processes documents according to their associated publishing time, as encoded in the document UUID.\n\nHowever, when one transform has a higher priority than others, then *all* ready documents are processed through the transform before *any* documents of other transforms are processed.", "type": "integer", "format": "uint32", "minimum": 0.0 }, "readDelay": { "title": "Delay applied to documents processed by this transform.", "description": "Delays are applied as an adjustment to the UUID clock encoded within each document, which is then used to impose a relative ordering of all documents read by this derivation. This means that read delays are applied in a consistent way, even when back-filling over historical documents. When caught up and tailing the source collection, delays also \"gate\" documents such that they aren't processed until the current wall-time reflects the delay.", "type": [ "string", "null" ], "pattern": "^\\d+(s|m|h)$" }, "shuffle": { "title": "Shuffle by which source documents are mapped to processing shards.", "$ref": "#/definitions/Shuffle" }, "source": { "title": "Source collection read by this transform.", "$ref": "#/definitions/Source" } }, "additionalProperties": false } } }
bukkit-plugin.json
{ "$id": "https://json.schemastore.org/bukkit-plugin", "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": true, "definitions": { "plugin-name": { "type": "string", "pattern": "^[A-Za-z0-9_\\.-]+$" }, "command": { "description": "Optional command attributes.", "type": "object", "properties": { "description": { "description": "A user-friendly description for a command.", "type": "string" }, "aliases": { "description": "Alternate command names a user may use instead.", "type": ["string", "array"] }, "permission": { "description": "The permission required to use the command.", "type": "string" }, "permission-message": { "description": "A no-permission message.", "type": "string", "examples": ["You do not have <permission>"] }, "usage": { "description": "A short description of how to use this command.", "type": "string" } } }, "permission": { "description": "Optional permission attributes.", "properties": { "description": { "description": "A short description of what this permission allows.", "type": "string" }, "default": { "description": "The default state for the permission.", "$ref": "#/definitions/default-permission" }, "children": { "description": "Allows other permissions to be set as a relation to the parent permission.", "type": ["array", "object"], "items": { "type": "string" }, "additionalProperties": { "type": ["boolean", "object"], "items": { "type": "boolean" }, "$ref": "#/definitions/permission" } } } }, "default-permission": { "type": ["string", "boolean"], "enum": [true, false, "op", "not op"], "default": "op" } }, "properties": { "name": { "description": "The unique name of plugin.", "$ref": "#/definitions/plugin-name" }, "main": { "description": "The plugin's initial class file.", "type": "string", "pattern": "^(?!org\\.bukkit\\.)([a-zA-Z_$][a-zA-Z\\d_$]*\\.)*[a-zA-Z_$][a-zA-Z\\d_$]*$" }, "version": { "description": "A plugin revision identifier.", "type": ["string", "number"] }, "description": { "description": "Human readable plugin summary.", "type": "string" }, "author": { "description": "The plugin author.", "type": "string" }, "authors": { "description": "The plugin contributors.", "type": "array", "items": { "type": "string" } }, "website": { "title": "Website", "description": "The URL to the plugin's site", "type": "string", "format": "uri" }, "prefix": { "description": "The token to prefix plugin log entries.", "type": "string" }, "database": { "description": "Set to true if this plugin uses a database.", "type": "boolean", "default": false }, "load": { "description": "The phase of server-startup this plugin will load during.", "type": "string", "enum": ["STARTUP", "POSTWORLD"], "default": "POSTWORLD" }, "depend": { "description": "Other required plugins.", "type": "array", "items": { "$ref": "#/definitions/plugin-name" } }, "softdepend": { "description": "Other plugins that add functionality.", "type": "array", "items": { "$ref": "#/definitions/plugin-name" } }, "loadbefore": { "description": "A list of plugins should be loaded after this plugin.", "type": "array", "items": { "$ref": "#/definitions/plugin-name" } }, "commands": { "description": "The commands the plugin will register", "type": "object", "additionalProperties": { "$ref": "#/definitions/command" } }, "permissions": { "description": "The permissions the plugin will register", "type": "object", "additionalProperties": { "type": "object", "$ref": "#/definitions/permission" } }, "default-permission": { "description": "Gives the default default state of permissions registered for the plugin.", "$ref": "#/definitions/default-permission" }, "awareness": { "description": "The concepts that the plugin acknowledges.", "type": "array", "items": { "type": "string", "pattern": "^!@.+$", "examples": ["!@UTF-8"] } }, "api-version": { "description": "Gives the API version which this plugin is designed to support.", "type": ["string", "number"], "examples": ["1.13", "1.14", "1.15", "1.16"] }, "libraries": { "description": "A list of libraries the server should download and supply to the plugin when loading it.", "type": "array", "items": { "type": "string", "description": "A single server provided library. This library can be used during runtime without being shaded into the plugin jar.", "pattern": "([^: ]+):([^: ]+)(:([^: ]*)(:([^: ]+))?)?:([^: ]+)", "examples": [ "org.xerial:sqlite-jdbc:3.34.0", "com.google.dagger:dagger:2.36" ] } } }, "required": ["name", "main", "version"], "title": "JSON schema for Bukkit Plugin YAML", "type": "object" }
winget-pkgs-installer-1.0.0.json
{ "$id": "https://aka.ms/winget-manifest.installer.1.0.0.schema.json", "$schema": "http://json-schema.org/draft-07/schema#", "definitions": { "PackageIdentifier": { "type": "string", "pattern": "^[^\\.\\s\\\\/:\\*\\?\"<>\\|\\x01-\\x1f]{1,32}(\\.[^\\.\\s\\\\/:\\*\\?\"<>\\|\\x01-\\x1f]{1,32}){1,3}$", "maxLength": 128, "description": "The package unique identifier" }, "PackageVersion": { "type": "string", "pattern": "^[^\\\\/:\\*\\?\"<>\\|\\x01-\\x1f]+$", "maxLength": 128, "description": "The package version" }, "Locale": { "type": ["string", "null"], "minLength": 1, "maxLength": 20, "description": "The package meta-data locale" }, "Channel": { "type": ["string", "null"], "minLength": 1, "maxLength": 16, "description": "The distribution channel" }, "Platform": { "type": ["array", "null"], "items": { "title": "Platform", "type": "string", "enum": ["Windows.Desktop", "Windows.Universal"] }, "maxItems": 2, "uniqueItems": true, "description": "The installer supported operating system" }, "MinimumOSVersion": { "type": ["string", "null"], "pattern": "^(0|[1-9][0-9]{0,3}|[1-5][0-9]{4}|6[0-4][0-9]{3}|65[0-4][0-9]{2}|655[0-2][0-9]|6553[0-5])(\\.(0|[1-9][0-9]{0,3}|[1-5][0-9]{4}|6[0-4][0-9]{3}|65[0-4][0-9]{2}|655[0-2][0-9]|6553[0-5])){0,3}$", "description": "The installer minimum operating system version" }, "InstallerType": { "type": ["string", "null"], "enum": [ "msix", "msi", "appx", "exe", "zip", "inno", "nullsoft", "wix", "burn", "pwa" ], "description": "Enumeration of supported installer types" }, "Scope": { "type": ["string", "null"], "enum": ["user", "machine"], "description": "Scope indicates if the installer is per user or per machine" }, "InstallModes": { "type": ["array", "null"], "items": { "title": "InstallModes", "type": "string", "enum": ["interactive", "silent", "silentWithProgress"] }, "maxItems": 3, "uniqueItems": true, "description": "List of supported installer modes" }, "InstallerSwitches": { "type": "object", "properties": { "Silent": { "type": ["string", "null"], "minLength": 1, "maxLength": 512, "description": "Silent is the value that should be passed to the installer when user chooses a silent or quiet install" }, "SilentWithProgress": { "type": ["string", "null"], "minLength": 1, "maxLength": 512, "description": "SilentWithProgress is the value that should be passed to the installer when user chooses a non-interactive install" }, "Interactive": { "type": ["string", "null"], "minLength": 1, "maxLength": 512, "description": "Interactive is the value that should be passed to the installer when user chooses an interactive install" }, "InstallLocation": { "type": ["string", "null"], "minLength": 1, "maxLength": 512, "description": "InstallLocation is the value passed to the installer for custom install location. <INSTALLPATH> token can be included in the switch value so that winget will replace the token with user provided path" }, "Log": { "type": ["string", "null"], "minLength": 1, "maxLength": 512, "description": "Log is the value passed to the installer for custom log file path. <LOGPATH> token can be included in the switch value so that winget will replace the token with user provided path" }, "Upgrade": { "type": ["string", "null"], "minLength": 1, "maxLength": 512, "description": "Upgrade is the value that should be passed to the installer when user chooses an upgrade" }, "Custom": { "type": ["string", "null"], "minLength": 1, "maxLength": 2048, "description": "Custom switches will be passed directly to the installer by winget" } } }, "InstallerSuccessCodes": { "type": ["array", "null"], "items": { "type": "integer", "not": { "enum": [0] } }, "maxItems": 16, "uniqueItems": true, "description": "List of additional non-zero installer success exit codes other than known default values by winget" }, "UpgradeBehavior": { "type": ["string", "null"], "enum": ["install", "uninstallPrevious"], "description": "The upgrade method" }, "Commands": { "type": ["array", "null"], "items": { "type": "string", "minLength": 1, "maxLength": 40 }, "maxItems": 16, "uniqueItems": true, "description": "List of commands or aliases to run the package" }, "Protocols": { "type": ["array", "null"], "items": { "type": "string", "pattern": "^[a-z][-a-z0-9\\.\\+]*$", "maxLength": 2048 }, "maxItems": 16, "uniqueItems": true, "description": "List of protocols the package provides a handler for" }, "FileExtensions": { "type": ["array", "null"], "items": { "type": "string", "pattern": "^[^\\\\/:\\*\\?\"<>\\|\\x01-\\x1f]+$", "maxLength": 40 }, "maxItems": 256, "uniqueItems": true, "description": "List of file extensions the package could support" }, "Dependencies": { "type": ["object", "null"], "properties": { "WindowsFeatures": { "type": ["array", "null"], "items": { "type": "string", "minLength": 1, "maxLength": 128 }, "maxItems": 16, "uniqueItems": true, "description": "List of Windows feature dependencies" }, "WindowsLibraries": { "type": ["array", "null"], "items": { "type": "string", "minLength": 1, "maxLength": 128 }, "maxItems": 16, "uniqueItems": true, "description": "List of Windows library dependencies" }, "PackageDependencies": { "type": ["array", "null"], "items": { "type": "object", "properties": { "PackageIdentifier": { "$ref": "#/definitions/PackageIdentifier" }, "MinimumVersion": { "$ref": "#/definitions/PackageVersion" } }, "required": ["PackageIdentifier"] }, "maxItems": 16, "uniqueItems": true, "description": "List of package dependencies from current source" }, "ExternalDependencies": { "type": ["array", "null"], "items": { "type": "string", "minLength": 1, "maxLength": 128 }, "maxItems": 16, "uniqueItems": true, "description": "List of external package dependencies" } } }, "PackageFamilyName": { "type": ["string", "null"], "pattern": "^[A-Za-z0-9][-\\.A-Za-z0-9]+_[A-Za-z0-9]{13}$", "maxLength": 255, "description": "PackageFamilyName for appx or msix installer. Could be used for correlation of packages across sources" }, "ProductCode": { "type": ["string", "null"], "minLength": 1, "maxLength": 255, "description": "ProductCode could be used for correlation of packages across sources" }, "Capabilities": { "type": ["array", "null"], "items": { "type": "string", "minLength": 1, "maxLength": 40 }, "maxItems": 1000, "uniqueItems": true, "description": "List of appx or msix installer capabilities" }, "RestrictedCapabilities": { "type": ["array", "null"], "items": { "type": "string", "minLength": 1, "maxLength": 40 }, "maxItems": 1000, "uniqueItems": true, "description": "List of appx or msix installer restricted capabilities" }, "Installer": { "type": "object", "properties": { "InstallerLocale": { "$ref": "#/definitions/Locale" }, "Platform": { "$ref": "#/definitions/Platform" }, "MinimumOSVersion": { "$ref": "#/definitions/MinimumOSVersion" }, "Architecture": { "type": "string", "enum": ["x86", "x64", "arm", "arm64", "neutral"], "description": "The installer target architecture" }, "InstallerType": { "$ref": "#/definitions/InstallerType" }, "Scope": { "$ref": "#/definitions/Scope" }, "InstallerUrl": { "type": "string", "pattern": "^([Hh][Tt][Tt][Pp][Ss]?)://.+$", "description": "The installer Url" }, "InstallerSha256": { "type": "string", "pattern": "^[A-Fa-f0-9]{64}$", "description": "Sha256 is required. Sha256 of the installer" }, "SignatureSha256": { "type": ["string", "null"], "pattern": "^[A-Fa-f0-9]{64}$", "description": "SignatureSha256 is recommended for appx or msix. It is the sha256 of signature file inside appx or msix. Could be used during streaming install if applicable" }, "InstallModes": { "$ref": "#/definitions/InstallModes" }, "InstallerSwitches": { "$ref": "#/definitions/InstallerSwitches" }, "InstallerSuccessCodes": { "$ref": "#/definitions/InstallerSuccessCodes" }, "UpgradeBehavior": { "$ref": "#/definitions/UpgradeBehavior" }, "Commands": { "$ref": "#/definitions/Commands" }, "Protocols": { "$ref": "#/definitions/Protocols" }, "FileExtensions": { "$ref": "#/definitions/FileExtensions" }, "Dependencies": { "$ref": "#/definitions/Dependencies" }, "PackageFamilyName": { "$ref": "#/definitions/PackageFamilyName" }, "ProductCode": { "$ref": "#/definitions/ProductCode" }, "Capabilities": { "$ref": "#/definitions/Capabilities" }, "RestrictedCapabilities": { "$ref": "#/definitions/RestrictedCapabilities" } }, "required": ["Architecture", "InstallerUrl", "InstallerSha256"] } }, "description": "A representation of a single-file manifest representing an app installers in the OWC. v1.0.0", "properties": { "PackageIdentifier": { "$ref": "#/definitions/PackageIdentifier" }, "PackageVersion": { "$ref": "#/definitions/PackageVersion" }, "Channel": { "$ref": "#/definitions/Channel" }, "InstallerLocale": { "$ref": "#/definitions/Locale" }, "Platform": { "$ref": "#/definitions/Platform" }, "MinimumOSVersion": { "$ref": "#/definitions/MinimumOSVersion" }, "InstallerType": { "$ref": "#/definitions/InstallerType" }, "Scope": { "$ref": "#/definitions/Scope" }, "InstallModes": { "$ref": "#/definitions/InstallModes" }, "InstallerSwitches": { "$ref": "#/definitions/InstallerSwitches" }, "InstallerSuccessCodes": { "$ref": "#/definitions/InstallerSuccessCodes" }, "UpgradeBehavior": { "$ref": "#/definitions/UpgradeBehavior" }, "Commands": { "$ref": "#/definitions/Commands" }, "Protocols": { "$ref": "#/definitions/Protocols" }, "FileExtensions": { "$ref": "#/definitions/FileExtensions" }, "Dependencies": { "$ref": "#/definitions/Dependencies" }, "PackageFamilyName": { "$ref": "#/definitions/PackageFamilyName" }, "ProductCode": { "$ref": "#/definitions/ProductCode" }, "Capabilities": { "$ref": "#/definitions/Capabilities" }, "RestrictedCapabilities": { "$ref": "#/definitions/RestrictedCapabilities" }, "Installers": { "type": "array", "items": { "$ref": "#/definitions/Installer" }, "minItems": 1, "maxItems": 128 }, "ManifestType": { "type": "string", "default": "installer", "const": "installer", "description": "The manifest type" }, "ManifestVersion": { "type": "string", "default": "1.0.0", "pattern": "^(0|[1-9][0-9]{0,3}|[1-5][0-9]{4}|6[0-4][0-9]{3}|65[0-4][0-9]{2}|655[0-2][0-9]|6553[0-5])(\\.(0|[1-9][0-9]{0,3}|[1-5][0-9]{4}|6[0-4][0-9]{3}|65[0-4][0-9]{2}|655[0-2][0-9]|6553[0-5])){2}$", "description": "The manifest syntax version" } }, "required": [ "PackageIdentifier", "PackageVersion", "Installers", "ManifestType", "ManifestVersion" ], "type": "object" }
config-file.v1.json
{ "$id": "https://deno.land/x/deno/cli/schemas/config-file.v1.json", "$schema": "http://json-schema.org/draft-07/schema", "description": "A JSON representation of a Deno configuration file.", "required": [], "title": "Deno configuration file Schema", "type": "object", "properties": { "compilerOptions": { "type": "object", "description": "Instructs the TypeScript compiler how to compile .ts files.", "properties": { "allowJs": { "description": "Allow JavaScript files to be a part of your program. Use the `checkJS` option to get errors from these files.", "type": "boolean", "default": true, "markdownDescription": "Allow JavaScript files to be a part of your program. Use the `checkJS` option to get errors from these files.\n\nSee more: https://www.typescriptlang.org/tsconfig#allowJs" }, "allowUnreachableCode": { "description": "Disable error reporting for unreachable code.", "type": "boolean", "default": false, "markdownDescription": "Disable error reporting for unreachable code.\n\nSee more: https://www.typescriptlang.org/tsconfig#allowUnreachableCode" }, "allowUnusedLabels": { "description": "Disable error reporting for unused labels.", "type": "boolean", "default": false, "markdownDescription": "Disable error reporting for unused labels.\n\nSee more: https://www.typescriptlang.org/tsconfig#allowUnusedLabels" }, "checkJs": { "description": "Enable error reporting in type-checked JavaScript files.", "type": "boolean", "default": false, "markdownDescription": "Enable error reporting in type-checked JavaScript files.\n\nSee more: https://www.typescriptlang.org/tsconfig#checkJs" }, "exactOptionalPropertyTypes": { "description": "Differentiate between undefined and not present when type checking", "type": "boolean", "default": false, "markdownDescription": "Differentiate between undefined and not present when type checking\n\nSee more: https://www.typescriptlang.org/tsconfig#exactOptionalPropertyTypes" }, "experimentalDecorators": { "description": "Enable experimental support for TC39 stage 2 draft decorators.", "type": "boolean", "default": true, "markdownDescription": "Enable experimental support for TC39 stage 2 draft decorators.\n\nSee more: https://www.typescriptlang.org/tsconfig#experimentalDecorators" }, "jsx": { "description": "Specify what JSX code is generated.", "default": "react", "enum": [ "preserve", "react", "react-jsx", "react-jsxdev", "react-native" ] }, "jsxFactory": { "description": "Specify the JSX factory function used when targeting React JSX emit, e.g. 'React.createElement' or 'h'", "type": "string", "default": "React.createElement", "markdownDescription": "Specify the JSX factory function used when targeting React JSX emit, e.g. 'React.createElement' or 'h'\n\nSee more: https://www.typescriptlang.org/tsconfig#jsxFactory" }, "jsxFragmentFactory": { "description": "Specify the JSX Fragment reference used for fragments when targeting React JSX emit e.g. 'React.Fragment' or 'Fragment'.", "type": "string", "default": "React.Fragment", "markdownDescription": "Specify the JSX Fragment reference used for fragments when targeting React JSX emit e.g. 'React.Fragment' or 'Fragment'.\n\nSee more: https://www.typescriptlang.org/tsconfig#jsxFragmentFactory" }, "jsxImportSource": { "description": "Specify module specifier used to import the JSX factory functions when using jsx: 'react-jsx*'.", "type": "string", "default": "react", "markdownDescription": "Specify module specifier used to import the JSX factory functions when using jsx: `react-jsx*`.\n\nSee more: https://www.typescriptlang.org/tsconfig/#jsxImportSource" }, "keyofStringsOnly": { "description": "Make keyof only return strings instead of string, numbers or symbols. Legacy option.", "type": "boolean", "default": false, "markdownDescription": "Make keyof only return strings instead of string, numbers or symbols. Legacy option.\n\nSee more: https://www.typescriptlang.org/tsconfig#keyofStringsOnly" }, "lib": { "description": "Specify a set of bundled library declaration files that describe the target runtime environment.", "type": "array", "uniqueItems": true, "default": [ "deno.window" ], "items": { "type": "string" }, "markdownDescription": "Specify a set of bundled library declaration files that describe the target runtime environment.\n\nSee more: https://www.typescriptlang.org/tsconfig#lib" }, "noErrorTruncation": { "description": "Do not truncate error messages.", "type": "boolean", "default": false, "markdownDescription": "Do not truncate error messages.\n\nSee more: https://www.typescriptlang.org/tsconfig#noErrorTruncation" }, "noFallthroughCasesInSwitch": { "description": "Enable error reporting for fallthrough cases in switch statements.", "type": "boolean", "default": false, "markdownDescription": "Enable error reporting for fallthrough cases in switch statements.\n\nSee more: https://www.typescriptlang.org/tsconfig#noFallthroughCasesInSwitch" }, "noImplicitAny": { "description": "Enable error reporting for expressions and declarations with an implied `any` type..", "type": "boolean", "default": true, "markdownDescription": "Enable error reporting for expressions and declarations with an implied `any` type..\n\nSee more: https://www.typescriptlang.org/tsconfig#noImplicitAny" }, "noImplicitOverride": { "description": "Ensure overriding members in derived classes are marked with an override modifier.", "type": "boolean", "default": false, "markdownDescription": "Ensure overriding members in derived classes are marked with an override modifier.\n\nSee more: https://www.typescriptlang.org/tsconfig#noImplicitOverride" }, "noImplicitReturns": { "description": "Enable error reporting for codepaths that do not explicitly return in a function.", "type": "boolean", "default": false, "markdownDescription": "Enable error reporting for codepaths that do not explicitly return in a function.\n\nSee more: https://www.typescriptlang.org/tsconfig#noImplicitReturns" }, "noImplicitThis": { "description": "Enable error reporting when `this` is given the type `any`.", "type": "boolean", "default": true, "markdownDescription": "Enable error reporting when `this` is given the type `any`.\n\nSee more: https://www.typescriptlang.org/tsconfig#noImplicitThis" }, "noImplicitUseStrict": { "description": "Disable adding 'use strict' directives in emitted JavaScript files.", "type": "boolean", "default": true, "markdownDescription": "Disable adding 'use strict' directives in emitted JavaScript files.\n\nSee more: https://www.typescriptlang.org/tsconfig#noImplicitUseStrict" }, "noStrictGenericChecks": { "description": "Disable strict checking of generic signatures in function types.", "type": "boolean", "default": false, "markdownDescription": "Disable strict checking of generic signatures in function types.\n\nSee more: https://www.typescriptlang.org/tsconfig#noStrictGenericChecks" }, "noUnusedLocals": { "description": "Enable error reporting when a local variables aren't read.", "type": "boolean", "default": false, "markdownDescription": "Enable error reporting when a local variables aren't read.\n\nSee more: https://www.typescriptlang.org/tsconfig#noUnusedLocals" }, "noUnusedParameters": { "description": "Raise an error when a function parameter isn't read", "type": "boolean", "default": false, "markdownDescription": "Raise an error when a function parameter isn't read\n\nSee more: https://www.typescriptlang.org/tsconfig#noUnusedParameters" }, "noUncheckedIndexedAccess": { "description": "Add `undefined` to a type when accessed using an index.", "type": "boolean", "default": false, "markdownDescription": "Add `undefined` to a type when accessed using an index.\n\nSee more: https://www.typescriptlang.org/tsconfig#noUncheckedIndexedAccess" }, "strict": { "description": "Enable all strict type checking options.", "type": "boolean", "default": true, "markdownDescription": "Enable all strict type checking options.\n\nSee more: https://www.typescriptlang.org/tsconfig#strict" }, "strictBindCallApply": { "description": "Check that the arguments for `bind`, `call`, and `apply` methods match the original function.", "type": "boolean", "default": true, "markdownDescription": "Check that the arguments for `bind`, `call`, and `apply` methods match the original function.\n\nSee more: https://www.typescriptlang.org/tsconfig#strictBindCallApply" }, "strictFunctionTypes": { "description": "When assigning functions, check to ensure parameters and the return values are subtype-compatible.", "type": "boolean", "default": true, "markdownDescription": "When assigning functions, check to ensure parameters and the return values are subtype-compatible.\n\nSee more: https://www.typescriptlang.org/tsconfig#strictFunctionTypes" }, "strictPropertyInitialization": { "description": "Check for class properties that are declared but not set in the constructor.", "type": "boolean", "default": true, "markdownDescription": "Check for class properties that are declared but not set in the constructor.\n\nSee more: https://www.typescriptlang.org/tsconfig#strictPropertyInitialization" }, "strictNullChecks": { "description": "When type checking, take into account `null` and `undefined`.", "type": "boolean", "default": true, "markdownDescription": "When type checking, take into account `null` and `undefined`.\n\nSee more: https://www.typescriptlang.org/tsconfig#strictNullChecks" }, "suppressExcessPropertyErrors": { "description": "Disable reporting of excess property errors during the creation of object literals.", "type": "boolean", "default": false, "markdownDescription": "Disable reporting of excess property errors during the creation of object literals.\n\nSee more: https://www.typescriptlang.org/tsconfig#suppressExcessPropertyErrors" }, "suppressImplicitAnyIndexErrors": { "description": "Suppress `noImplicitAny` errors when indexing objects that lack index signatures.", "type": "boolean", "default": false, "markdownDescription": "Suppress `noImplicitAny` errors when indexing objects that lack index signatures.\n\nSee more: https://www.typescriptlang.org/tsconfig#suppressImplicitAnyIndexErrors" } } }, "importMap": { "description": "The location of an import map to be used when resolving modules. If an import map is specified as an `--importmap` flag or using \"imports\" and \"scopes\" properties, they will override this value.", "type": "string" }, "imports": { "description": "A map of specifiers to their remapped specifiers.", "type": "object", "additionalProperties": { "description": "The key is the specifier or partial specifier to match, with a value that represents the target specifier.", "type": "string" } }, "scopes": { "default": {}, "description": "Define a scope which remaps a specifier in only a specified scope", "type": "object", "properties": {}, "additionalProperties": { "description": "A definition of a scoped remapping.", "type": "object", "additionalProperties": { "description": "The key is the specifier or partial specifier to match within the referring scope, with a value that represents the target specifier.", "type": "string" } } }, "exclude": { "type": "array", "description": "List of files, directories or globs that will be ignored by all other configurations. Requires Deno 1.34 or later.", "items": { "type": "string" } }, "lint": { "description": "Configuration for linter", "type": "object", "properties": { "include": { "type": "array", "description": "List of files, directories or globs that will be linted.", "items": { "type": "string" } }, "exclude": { "type": "array", "description": "List of files, directories or globs that will not be linted.", "items": { "type": "string" } }, "files": { "type": "object", "properties": { "include": { "type": "array", "description": "List of files, directories or globs that will be linted.", "items": { "type": "string" } }, "exclude": { "type": "array", "description": "List of files, directories or globs that will not be linted.", "items": { "type": "string" } } } }, "rules": { "type": "object", "properties": { "tags": { "type": "array", "description": "List of tag names that will be run. Empty list disables all tags and will only use rules from `include`.", "items": { "type": "string" }, "minItems": 0, "uniqueItems": true }, "exclude": { "type": "array", "description": "List of rule names that will be excluded from configured tag sets. If the same rule is in `include` it will be run.", "items": { "type": "string" }, "minItems": 0, "uniqueItems": true }, "include": { "type": "array", "description": "List of rule names that will be run. Even if the same rule is in `exclude` it will be run.", "items": { "type": "string" }, "minItems": 0, "uniqueItems": true } } }, "report": { "default": "pretty", "enum": [ "pretty", "json", "compact" ], "description": "The default report format to use when linting" } } }, "fmt": { "description": "Configuration for formatter", "type": "object", "properties": { "include": { "type": "array", "description": "List of files, directories or globs that will be formatted.", "items": { "type": "string" } }, "exclude": { "type": "array", "description": "List of files, directories or globs that will not be formatted.", "items": { "type": "string" } }, "files": { "type": "object", "properties": { "include": { "type": "array", "description": "List of files, directories or globs that will be formatted.", "items": { "type": "string" } }, "exclude": { "type": "array", "description": "List of files, directories or globs that will not be formatted.", "items": { "type": "string" } } } }, "useTabs": { "description": "Whether to use tabs (true) or spaces (false) for indentation.", "type": "boolean", "default": false }, "lineWidth": { "description": "The width of a line the printer will try to stay under. Note that the printer may exceed this width in certain cases.", "type": "number", "default": 80 }, "indentWidth": { "description": "The number of characters for an indent.", "type": "number", "default": 2 }, "singleQuote": { "type": "boolean", "description": "Whether to use single quote (true) or double quote (false) for quotation.", "default": false }, "proseWrap": { "description": "Define how prose should be wrapped in Markdown files.", "default": "always", "enum": [ "always", "never", "preserve" ] }, "semiColons": { "description": "Whether to prefer using semicolons.", "type": "boolean", "default": true }, "options": { "type": "object", "properties": { "useTabs": { "description": "Whether to use tabs (true) or spaces (false) for indentation.", "type": "boolean", "default": false }, "lineWidth": { "description": "The width of a line the printer will try to stay under. Note that the printer may exceed this width in certain cases.", "type": "number", "default": 80 }, "indentWidth": { "description": "The number of characters for an indent.", "type": "number", "default": 2 }, "singleQuote": { "type": "boolean", "description": "Whether to use single quote (true) or double quote (false) for quotation.", "default": false }, "proseWrap": { "description": "Define how prose should be wrapped in Markdown files.", "default": "always", "enum": [ "always", "never", "preserve" ] }, "semiColons": { "description": "Whether to prefer using semicolons.", "type": "boolean", "default": true } } } } }, "nodeModulesDir": { "description": "Enables or disables the use of a local node_modules folder for npm packages. Alternatively, use the `--node-modules-dir` flag or override the config via `--node-modules-dir=false`. Requires Deno 1.34 or later.", "type": "boolean" }, "vendor": { "description": "UNSTABLE: Enables or disables the use of a local vendor folder as a local cache for remote modules and node_modules folder for npm packages. Alternatively, use the `--vendor` flag or override the config via `--vendor=false`. Requires Deno 1.36.1 or later.", "type": "boolean" }, "tasks": { "description": "Configuration for deno task", "type": "object", "patternProperties": { "^[A-Za-z][A-Za-z0-9_\\-:]*$": { "type": "string", "description": "Command to execute for this task name." } }, "additionalProperties": false }, "test": { "description": "Configuration for deno test", "type": "object", "properties": { "include": { "type": "array", "description": "List of files, directories or globs that will be searched for tests.", "items": { "type": "string" } }, "exclude": { "type": "array", "description": "List of files, directories or globs that will not be searched for tests.", "items": { "type": "string" } }, "files": { "type": "object", "properties": { "include": { "type": "array", "description": "List of files, directories or globs that will be searched for tests.", "items": { "type": "string" } }, "exclude": { "type": "array", "description": "List of files, directories or globs that will not be searched for tests.", "items": { "type": "string" } } } } } }, "bench": { "description": "Configuration for deno bench", "type": "object", "properties": { "include": { "type": "array", "description": "List of files, directories or globs that will be searched for benchmarks.", "items": { "type": "string" } }, "exclude": { "type": "array", "description": "List of files, directories or globs that will not be searched for benchmarks.", "items": { "type": "string" } }, "files": { "type": "object", "properties": { "include": { "type": "array", "description": "List of files, directories or globs that will be searched for benchmarks.", "items": { "type": "string" } }, "exclude": { "type": "array", "description": "List of files, directories or globs that will not be searched for benchmarks.", "items": { "type": "string" } } } } } }, "lock": { "description": "Whether to use a lock file or the path to use for the lock file. Can be overridden by CLI arguments.", "type": ["string", "boolean"], "default": true } } }
vsix-manifestinjection.json
{ "$schema": "http://json-schema.org/draft-04/schema#", "definitions": { "fileAssociation": { "required": ["extension", "progId"], "properties": { "contentType": { "description": "Content type of the file with this extension.", "type": "string" }, "defaultProgramRegistrationPath": { "description": "The registry path to where this file association should be registered with default program.", "type": "string" }, "extension": { "description": "The file extension.", "type": "string", "minLength": 1 }, "isIconOnly": { "description": "Indicates whether this file association is used for display icons only.", "type": "boolean" }, "perceivedType": { "description": "Perceived type of the file with this extension.", "type": "string" }, "progId": { "description": "The matching /progId/id that's associated with this file extension.", "type": "string", "minLength": 1 } } }, "urlAssociation": { "required": ["protocol", "progId", "defaultProgramRegistrationPath"], "properties": { "defaultProgramRegistrationPath": { "description": "The registry path to where this url association should be registered with default program.", "type": "string" }, "displayName": { "description": "The name of the association.", "type": "string", "minLength": 1 }, "locId": { "description": "Id for localization purpose only.", "type": "string" }, "progId": { "description": "The matching /progId/id that's associated with this protocol.", "type": "string", "minLength": 1 }, "protocol": { "description": "The URL protocol to associate.", "type": "string", "minLength": 1 } } }, "progIds": { "required": ["id"], "properties": { "allowSilentDefaultTakeOver": { "description": "Indicates whether silent default takeover is allowed.", "type": "boolean" }, "alwaysShowExtension": { "description": "Indicates if extensions should always be shown in Windows Explorer.", "type": "boolean" }, "appUserModelId": { "description": "App user model ID for taskbar and jump list grouping.", "type": "string" }, "arguments": { "description": "Arguments to pass to the executable.", "type": "string", "default": "" }, "clsid": { "description": "CLSID for the progId", "type": "string" }, "dde": { "description": "Indicates whether application needs to support DDE.", "type": "boolean" }, "ddeApplication": { "description": "DDE application name.", "type": "string" }, "ddeTopic": { "description": "DDE topic name.", "type": "string" }, "defaultIconPath": { "description": "Default icon resource DLL path.", "type": "string" }, "defaultIconPosition": { "description": "Default icon position.", "type": "integer" }, "displayName": { "description": "The name of progId.", "type": "string", "minLength": 1 }, "iconHandler": { "description": "Icon handler GUID.", "type": "string" }, "id": { "description": "The unique identifier.", "type": "string", "minLength": 1 }, "locId": { "description": "Id for localization purpose only.", "type": "string" }, "path": { "description": "The path to the executable.", "type": "string" } } } }, "id": "https://json.schemastore.org/vsix-manifestinjection.json", "properties": { "fileAssociations": { "description": "A list of file associations (protocol handlers).", "type": "array", "items": { "$ref": "#/definitions/fileAssociation" } }, "urlAssociations": { "description": "A list of URL associations (protocol handlers).", "type": "array", "items": { "$ref": "#/definitions/urlAssociation" } }, "progIds": { "description": "A list of URL associations (protocol handlers).", "type": "array", "items": { "$ref": "#/definitions/progIds" } } }, "title": "JSON schema for Visual Studio manifest extensions", "type": "object" }
jdt.json
{ "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": { "$ref": "#" }, "definitions": { "@jdt.path": { "type": "string", "description": "Use JSONPath syntax to navigate to the node where the transform should be applied." }, "@jdt.value": { "type": "string", "description": "The transformation value that should be applied." } }, "id": "https://json.schemastore.org/jdt.json", "properties": { "@jdt.rename": { "anyOf": [ { "type": "object", "description": "Renames nodes", "properties": { "@jdt.path": { "$ref": "#/definitions/@jdt.path" }, "@jdt.value": { "$ref": "#/definitions/@jdt.value" } } }, { "type": "array", "description": "Renames nodes", "items": { "properties": { "@jdt.path": { "$ref": "#/definitions/@jdt.path" }, "@jdt.value": { "$ref": "#/definitions/@jdt.value" } } } } ] }, "@jdt.replace": { "type": ["array", "object"], "description": "Replaces the current node with the given value. ", "properties": { "@jdt.path": { "$ref": "#/definitions/@jdt.path" }, "@jdt.value": { "$ref": "#/definitions/@jdt.value" } }, "items": { "properties": { "@jdt.path": { "$ref": "#/definitions/@jdt.path" }, "@jdt.value": { "$ref": "#/definitions/@jdt.value" } } } }, "@jdt.remove": { "type": ["array", "boolean", "object", "string"], "description": "Removes the node with the given name from the current level.", "properties": { "@jdt.path": { "$ref": "#/definitions/@jdt.path" } }, "items": { "type": ["boolean", "integer", "null", "number", "object", "string"] } }, "@jdt.merge": { "description": "Merges the current node value with the given object.", "type": ["object", "array"], "properties": { "@jdt.path": { "$ref": "#/definitions/@jdt.path" }, "@jdt.value": { "$ref": "#/definitions/@jdt.value" } }, "items": { "properties": { "@jdt.path": { "$ref": "#/definitions/@jdt.path" }, "@jdt.value": { "$ref": "#/definitions/@jdt.value" } } } } }, "title": "JSON schema for JSON Document Transforms", "type": "object" }
yarnrc.json
{ "title": "JSON Schema for Yarnrc files", "$schema": "https://json-schema.org/draft/2019-09/schema#", "description": "Yarnrc files (named this way because they must be called `.yarnrc.yml`) are the one place where you'll be able to configure Yarn's internal settings. While Yarn will automatically find them in the parent directories, they should usually be kept at the root of your project (often your repository). **Starting from the v2, they must be written in valid Yaml and have the right extension** (simply calling your file `.yarnrc` won't do).\n\nEnvironment variables can be accessed from setting definitions by using the `${NAME}` syntax when defining the values. By default Yarn will require the variables to be present, but this can be turned off by using either `${NAME-fallback}` (which will return `fallback` if `NAME` isn't set) or `${NAME:-fallback}` (which will return `fallback` if `NAME` isn't set, or is an empty string).\n\nFinally, note that most settings can also be defined through environment variables (at least for the simpler ones; arrays and objects aren't supported yet). To do this, just prefix the names and write them in snake case: `YARN_CACHE_FOLDER` will set the cache folder (such values will overwrite any that might have been defined in the RC files - use them sparingly).", "__info": [ "This file contains the JSON Schema for Yarnrc files and is:", "1) Hosted on the Yarn Website at http://yarnpkg.com/configuration/yarnrc.json", "2) Registered on the SchemaStore catalog so that editors can offer autocompletion and validation.", "3) Used to generate the documentation page at http://yarnpkg.com/configuration/yarnrc", "Note: Properties prefixed with a single underscore (e.g. _exampleItems, _exampleKeys)", "are unique to our documentation generation interpreter. All others will be picked up", "by most JSON schema interpreters.", "Rules:", "1) Don't set a default if it's null, dynamic, or an object.", "2) Use `examples` for scalars, `_exampleItems` for arrays, and `_exampleKeys` for objects.", "3) Always add a _package property to each configuration setting." ], "type": "object", "properties": { "cacheFolder": { "_package": "@yarnpkg/core", "title": "Path where the downloaded packages are stored on your system.", "description": "They'll be normalized, compressed, and saved under the form of zip archives with standardized names. The cache is deemed to be relatively safe to be shared by multiple projects, even when multiple Yarn instances run at the same time on different projects. For setting a global cache folder, you should use `enableGlobalCache` instead.", "type": "string", "format": "uri-reference", "default": "./.yarn/cache" }, "cacheMigrationMode": { "_package": "@yarnpkg/core", "type": "string", "title": "Behavior that Yarn should follow when it detects that a cache entry is outdated.", "description": "Whether or not a cache entry is outdated depends on whether it has been built and checksumed by an earlier release of Yarn, or under a different compression settings. Possible behaviors are:\n\n- If `required-only`, it'll keep using the file as-is, unless the version that generated it was decidedly too old.\n- If `match-spec`, it'll also rebuild the file if the compression level has changed. If `always`, it'll always regenerate the cache files so they use the current cache version.\n- If `auto` (the default), it'll act as either `required-only` or `always` depending on whether `enableGlobalCache` is enabled (with `always` being selected in that case).", "enum": ["required-only", "match-spec", "always", "auto"], "default": "auto" }, "httpsCaFilePath": { "_package": "@yarnpkg/core", "title": "Path to a file containing one or multiple Certificate Authority signing certificates.", "type": "string", "format": "uri-reference", "examples": ["./exampleCA.pem"] }, "changesetBaseRefs": { "_package": "@yarnpkg/plugin-git", "title": "List of git refs against which Yarn will compare your branch when it needs to detect changes.", "description": "Supports git branches, tags, and commits. The default configuration will compare against master, origin/master, upstream/master, main, origin/main, and upstream/main.", "type": "array", "items": { "type": "string" }, "default": ["master", "origin/master", "upstream/master", "main", "origin/main", "upstream/main"] }, "changesetIgnorePatterns": { "_package": "@yarnpkg/plugin-git", "title": "Array of file glob patterns that will be excluded from change detection.", "description": "Files matching the following patterns (in terms of relative paths compared to the root of the project) will be ignored by every command checking whether files changed compared to the base ref (this include both `yarn version check` and `yarn workspaces foreach --since`).", "type": "array", "items": { "type": "string" }, "default": [], "_exampleItems": ["**/*.test.{js,ts}"] }, "checksumBehavior": { "_package": "@yarnpkg/core", "type": "string", "title": "Behavior that Yarn should follow when it detects that a cache entry has a different checksum than expected.", "description": "Possible behaviors are:\n\n- If `throw` (the default), Yarn will throw an exception.\n- If `update`, the lockfile will be updated to match the cached checksum.\n- If `reset`, the cache entry will be purged and fetched anew.\n- If `ignore`, nothing will happen, Yarn will skip the check.", "enum": ["throw", "update", "ignore", "reset"], "default": "throw" }, "cloneConcurrency": { "_package": "@yarnpkg/plugin-git", "title": "Amount of `git clone` operations that Yarn will run at the same time.", "description": "We by default limit it to 2 concurrent clone operations.", "type": "number", "default": 2 }, "compressionLevel": { "_package": "@yarnpkg/core", "type": ["number", "string"], "title": "Compression level employed for zip archives", "description": "Possible values go from 0 (\"no compression, faster\") to 9 (\"heavy compression, slower\"). The default is 'mixed', which is a variant of 9 where files may be stored uncompressed if the builtin libzip heuristic thinks it will lead to a more sensible result.", "enum": ["mixed", 0, 1, 2, 3, 4, 5, 6, 7, 8, 9], "default": "mixed" }, "constraintsPath": { "_package": "@yarnpkg/plugin-constraints", "title": "Path of the constraints file.", "description": "This only matters for Prolog constraints, which are being deprecated. JavaScript constraints will always be read from the `yarn.config.js` file.", "type": "string", "format": "uri-reference", "default": "./constraints.pro" }, "defaultLanguageName": { "_package": "@yarnpkg/core", "title": "Default language mode that should be used when a package doesn't offer any insight.", "description": "This is an internal configuration setting that shouldn't be touched unless you really know what you're doing.", "type": "string", "default": "node" }, "defaultProtocol": { "_package": "@yarnpkg/core", "title": "Default protocol that should be used when a dependency range is a pure semver range.", "description": "This is an internal configuration setting that shouldn't be touched unless you really know what you're doing.", "type": "string", "default": "npm:" }, "defaultSemverRangePrefix": { "_package": "@yarnpkg/plugin-essentials", "type": "string", "title": "Default prefix used in semver ranges created by `yarn add` and similar commands.", "description": "Possible values are `\"^\"` (the default), `\"~\"` or `\"\"`.", "enum": ["^", "~", ""], "default": "^" }, "deferredVersionFolder": { "_package": "@yarnpkg/plugin-version", "title": "Folder where the versioning files are stored.", "type": "string", "format": "uri-reference", "default": "./.yarn/versions" }, "enableColors": { "_package": "@yarnpkg/core", "title": "Define whether colors are allowed on the standard output.", "description": "The default is to check the terminal capabilities, but you can manually override it to either `true` or `false`.", "type": "boolean", "examples": [true] }, "enableGlobalCache": { "_package": "@yarnpkg/core", "title": "Define whether the cache should be shared between all local projects.", "description": "If true (the default), Yarn will store the cache files into a folder located within `globalFolder` instead of respecting `cacheFolder`.", "type": "boolean", "default": true }, "enableHyperlinks": { "_package": "@yarnpkg/core", "title": "Define whether hyperlinks are allowed on the standard output.", "description": "The default is to check the terminal capabilities, but you can manually override it to either `true` or `false`.", "type": "boolean", "examples": [true] }, "enableImmutableCache": { "_package": "@yarnpkg/core", "title": "Define whether to allow adding/removing files from the cache or not.", "description": "If true, Yarn will refuse to change the cache in any way, whether it would add files or remove them, and will abort installs instead of letting that happen.", "type": "boolean", "default": false }, "enableImmutableInstalls": { "_package": "@yarnpkg/plugin-essentials", "title": "Define whether to allow adding/removing entries from the lockfile or not.", "description": "If true (the default on CI), Yarn will refuse to change the lockfile in any way, whether it would add new entries or remove them. Other files can be added to the checklist via the `immutablePatterns` setting.", "type": "boolean", "default": false }, "enableInlineBuilds": { "_package": "@yarnpkg/core", "title": "Define whether to print the build output directly within the terminal or not.", "description": "If true (the default on CI environments), Yarn will print the build output directly within the terminal instead of buffering it in an external log file. Note that by default Yarn will attempt to use collapsible terminal sequences on supporting CI providers to make the output more legible.", "type": "boolean", "examples": [false] }, "enableInlineHunks": { "_package": "@yarnpkg/plugin-patch", "title": "Define whether to print patch hunks directly within the terminal or not.", "description": "If true, Yarn will print any patch sections (hunks) that could not be applied successfully to the terminal.", "type": "boolean", "examples": [false] }, "enableMessageNames": { "_package": "@yarnpkg/core", "title": "Define whether to prepend a message name before each printed line or not.", "description": "If true, Yarn will prefix most messages with codes suitable for search engines, with hyperlink support if your terminal allows it.", "type": "boolean", "default": true }, "enableMirror": { "_package": "@yarnpkg/core", "title": "Define whether to mirror local cache entries into the global cache or not.", "description": "If true (the default), Yarn will use the global folder as indirection between the network and the actual cache. This is only useful if `enableGlobalCache` is explicitly set to `false`, as otherwise the cache entries are persisted to the global cache no matter what.", "type": "boolean", "default": true }, "enableNetwork": { "_package": "@yarnpkg/core", "title": "Define whether remote network requests are allowed or not.", "description": "If false, Yarn will never make any request to the network by itself, and will throw an exception rather than let it happen. It's a very useful setting for CI, which typically want to make sure they aren't loading their dependencies from the network by mistake.", "type": "boolean", "default": true }, "enableProgressBars": { "_package": "@yarnpkg/core", "title": "Define whether animated progress bars should be shown or not.", "description": "If true (the default outside of CI environments), Yarn will show progress bars for long-running events.", "type": "boolean", "examples": [true] }, "enableScripts": { "_package": "@yarnpkg/core", "titke": "Define whether to run postinstall scripts or not.", "description": "If false, Yarn will not execute the `postinstall` scripts from third-party packages when installing the project (workspaces will still see their postinstall scripts evaluated, as they're assumed to be safe if you're running an install within them).\n\nNote that you also have the ability to disable scripts on a per-package basis using `dependenciesMeta`, or to re-enable a specific script by combining `enableScripts` and `dependenciesMeta`.", "type": "boolean", "default": true }, "enableStrictSsl": { "_package": "@yarnpkg/core", "title": "Define whether SSL errors should fail requests or not.", "description": "If false, SSL certificate errors will be ignored", "type": "boolean", "default": true }, "enableTelemetry": { "_package": "@yarnpkg/core", "title": "Define whether anonymous telemetry data should be sent or not.", "description": "If true (the default outside of CI environments), Yarn will periodically send anonymous data to our servers tracking some usage information such as the number of dependencies in your project, how many installs you ran, etc.\n\nConsult the [Telemetry](/advanced/telemetry) page for more details about this process.", "type": "boolean", "examples": [true] }, "enableTimers": { "_package": "@yarnpkg/core", "title": "Define whether to print the time spent running each sub-step or not.", "description": "If false, Yarn will not print the time spent running each sub-step when running various commands. This is only needed for testing purposes, when you want each execution to have exactly the same output as the previous ones.", "type": "boolean", "default": true }, "enableTransparentWorkspaces": { "_package": "@yarnpkg/core", "title": "Define whether pure semver ranges should allow workspace resolution or not.", "description": "If false, Yarn won't link workspaces just because their versions happen to match a semver range. Disabling this setting will require all workspaces to reference one another using the explicit `workspace:` protocol.\n\nThis setting is usually only needed when your project needs to use the published version in order to build the new one (that's for example what happens with Babel, which depends on the latest stable release to build the future ones).", "type": "boolean", "default": true }, "globalFolder": { "_package": "@yarnpkg/core", "title": "Path where all files global to the system will be stored.", "description": "Various files we be stored there: global cache, metadata cache, ...", "type": "string", "format": "uri-reference", "examples": ["${HOME}/.yarn/berry/global"] }, "httpProxy": { "_package": "@yarnpkg/core", "title": "Proxy to use when making an HTTP request.", "description": "Only HTTP proxies are supported at the moment.", "type": "string", "format": "uri", "examples": ["http://proxy:4040"] }, "httpRetry": { "_package": "@yarnpkg/core", "title": "Amount of time to wait in seconds before retrying a failed HTTP request.", "type": "number", "default": 3 }, "httpTimeout": { "_package": "@yarnpkg/core", "title": "Amount of time to wait in milliseconds before cancelling pending HTTP requests.", "type": "number", "default": 60000 }, "httpsCertFilePath": { "_package": "@yarnpkg/core", "title": "Path to a file containing a certificate chain in PEM format.", "type": "string", "format": "uri-reference", "examples": ["./exampleCert.pem"] }, "httpsKeyFilePath": { "_package": "@yarnpkg/core", "title": "Path to a file containing a private key in PEM format.", "type": "string", "format": "uri-reference", "examples": ["./exampleKey.pem"] }, "httpsProxy": { "_package": "@yarnpkg/core", "title": "Define a proxy to use when making an HTTPS request.", "description": "Only HTTP proxies are supported at the moment.", "type": "string", "format": "uri", "examples": ["http://proxy:4040"] }, "ignorePath": { "_package": "@yarnpkg/core", "title": "Define whether `yarnPath` should be respected or not.", "description": "If true, whatever Yarn version is being executed will keep running rather than looking at the value of `yarnPath` to decide.", "type": "boolean", "default": false }, "immutablePatterns": { "_package": "@yarnpkg/core", "title": "Array of file patterns whose content won't be allowed to change if `enableImmutableInstalls` is set.", "type": "array", "items": { "type": "string" }, "default": [], "_exampleItems": ["**/.pnp.*"] }, "initScope": { "_package": "@yarnpkg/plugin-init", "title": "Scope used when creating packages via the `init` command.", "type": "string", "pattern": "^([^/]+?)$", "default": "yarnpkg" }, "initFields": { "_package": "@yarnpkg/plugin-init", "title": "Additional fields to set when creating packages via the `init` command.", "type": "object", "patternProperties": { "^(.+)$": { "type": ["string", "number", "boolean"], "description": "All properties will be added verbatim to the generated package.json.", "examples": ["https://yarnpkg.com"] } }, "_exampleKeys": ["homepage"] }, "installStatePath": { "_package": "@yarnpkg/core", "title": "Path where the install state will be persisted.", "description": "The install state file contains a bunch of cached information about your project. It's only used for optimization purposes, and will be recreated if missing (you don't need to add it to Git).", "type": "string", "format": "uri-reference", "default": "./.yarn/install-state.gz" }, "logFilters": { "title": "Alter the log levels for emitted messages.", "description": "This can be used to hide specific messages, or instead make them more prominent. Rules defined there accept filtering messages by either name or raw content.", "type": "array", "items": { "type": "object", "properties": { "code": { "type": "string", "title": "Match all messages with the given code.", "examples": ["YN0005"] }, "text": { "type": "string", "title": "Match messages whose content is strictly equal to the given text.", "description": "In case a message matches both `code`-based and `text`-based filters, the `text`-based ones will take precedence over the `code`-based ones.", "examples": ["lorem-ipsum@npm:1.2.3 lists build scripts, but its build has been explicitly disabled through configuration"] }, "pattern": { "type": "string", "title": "Match messages whose content match the given glob pattern.", "description": "In case a message matches both `pattern`-based and `code`-based filters, the `pattern`-based ones will take precedence over the other ones. Patterns can be overridden on a case-by-case basis by using the `text` filter, which has precedence over `pattern`.", "examples": ["lorem-ipsum@* lists build scripts, but its build has been explicitly disabled through configuration"] }, "level": { "type": "string", "title": "New log level to apply to the matching messages. Use `discard` if you wish to hide those messages altogether.", "enum": ["info", "warning", "error", "discard"] } } }, "_exampleItems": [ { "code": "YN0006", "level": "discard" }, { "text": "lorem-ipsum@npm:1.2.3 lists build scripts, but its build has been explicitly disabled through configuration", "level": "error" }, { "pattern": "lorem-ipsum@* lists build scripts, but its build has been explicitly disabled through configuration", "level": "error" } ] }, "networkConcurrency": { "_package": "@yarnpkg/core", "title": "Amount of HTTP requests that are allowed to run at the same time.", "description": "We default to 50 concurrent requests, but it may be required to limit it even more when working behind proxies that can't handle large amounts of traffic.", "type": "number", "default": 50 }, "networkSettings": { "_package": "@yarnpkg/core", "title": "Additional network settings, per hostname", "type": "object", "patternProperties": { "^(.+)$": { "type": "object", "properties": { "httpsCaFilePath": { "$ref": "#/properties/httpsCaFilePath" }, "enableNetwork": { "$ref": "#/properties/enableNetwork" }, "httpProxy": { "$ref": "#/properties/httpProxy" }, "httpsCertFilePath": { "$ref": "#/properties/httpsCertFilePath" }, "httpsKeyFilePath": { "$ref": "#/properties/httpsKeyFilePath" }, "httpsProxy": { "$ref": "#/properties/httpsProxy" } } } }, "_exampleKeys": ["*.example.com"] }, "nmHoistingLimits": { "_package": "@yarnpkg/plugin-nm", "title": "Highest point where packages can be hoisted.", "description": "Replacement of the former `nohoist` setting. Possible values are:\n\n- If `none` (the default), packages are hoisted as per the usual rules.\n- If `workspaces`, packages won't be hoisted past the workspace that depends on them.\n- If `dependencies`, transitive dependencies also won't be hoisted past your direct dependencies.\n\nThis setting can be overridden on a per-workspace basis using the `installConfig.hoistingLimits` field.", "type": "string", "enum": ["workspaces", "dependencies", "none"], "default": "none" }, "nmSelfReferences": { "_package": "@yarnpkg/plugin-nm", "title": "Define whether workspaces are allowed to require themselves.", "description": "If false, Yarn won't create self-referencing symlinks when using `nodeLinker: node-modules`. This setting can be overridden on a per-workspace basis using the `installConfig.selfReferences` field.", "type": "boolean", "default": true }, "nmMode": { "_package": "@yarnpkg/plugin-nm", "title": "Define how to copy files to their target destination.", "description": "Possible values are:\n\n- If `classic`, regular copy or clone operations are performed.\n- If `hardlinks-global`, hardlinks to a global content-addressable store will be used.\n- If `hardlinks-local`, hardlinks will only be created between similar packages from the same project.\n\nFor compatibility with the ecosystem, the default is `classic`.", "type": "string", "enum": ["classic", "hardlinks-local", "hardlinks-global"], "default": "classic" }, "nodeLinker": { "_package": "@yarnpkg/plugin-pnp", "title": "Define how Node packages should be installed.", "description": "Yarn supports three ways to install your project's dependencies, based on the `nodeLinker` setting. Possible values are:\n\n- If `pnp`, a single Node.js loader file will be generated.\n- If `pnpm`, a `node-modules` will be created using symlinks and hardlinks to a global content-addressable store.\n- If `node-modules`, a regular `node_modules` folder just like in Yarn Classic or npm will be created.", "anyOf": [ { "type": "string" }, { "enum": ["pnp", "pnpm", "node-modules"] } ], "type": "string", "default": "pnp" }, "winLinkType": { "_package": "@yarnpkg/core", "title": "Define whether to use junctions or symlinks when creating links on Windows.", "description": "Possible values are:\n\n- If `junctions`, Yarn will use Windows junctions when linking workspaces into `node_modules` directories, which are always absolute paths.\n- If `symlinks`, Yarn will use symlinks, which will use relative paths, and is consistent with Yarn's behavior on non-Windows platforms.\n\nSymlinks are preferred, but they require the Windows user running Yarn to have the `create symbolic links` privilege. As a result, we default to using junctions instead.", "type": "string", "enum": ["junctions", "symlinks"] }, "npmAlwaysAuth": { "_package": "@yarnpkg/plugin-npm", "title": "Define whether to always send authentication credentials when querying the npm registry.", "description": "If true, authentication credentials will always be sent when sending requests to the registries. This shouldn't be needed unless you configured the registry to reference a private npm mirror.", "type": "boolean", "default": false }, "npmAuditRegistry": { "_package": "@yarnpkg/plugin-npm", "title": "Define the registry to use when auditing dependencies.", "description": "If not explicitly set, the value of `npmRegistryServer` will be used.", "type": "string", "format": "uri", "examples": ["https://registry.npmjs.org"] }, "npmAuthIdent": { "_package": "@yarnpkg/plugin-npm", "title": "Define the authentication credentials to use by default when accessing your registries.", "description": "Replacement of the former `_auth` setting. Because it requires storing unencrypted values in your configuration, `npmAuthToken` should be preferred when possible.", "type": "string", "examples": ["username:password"] }, "npmAuthToken": { "_package": "@yarnpkg/plugin-npm", "title": "Define the authentication token to use by default when accessing your registries.", "description": "Replacement of the former `_authToken` settings. If you're using `npmScopes` to define multiple registries, the `npmRegistries` dictionary allows you to override these credentials on a per-registry basis.", "type": "string", "examples": ["ffffffff-ffff-ffff-ffff-ffffffffffff"] }, "npmPublishAccess": { "_package": "@yarnpkg/plugin-npm-cli", "type": "string", "title": "Define the default access to use when publishing packages to the npm registry.", "description": "Valid values are `public` and `restricted`, but `restricted` usually requires to register for a paid plan (this is up to the registry you use). Can be overridden on a per-package basis using the `publishConfig.access` field.", "enum": ["public", "restricted"] }, "npmAuditExcludePackages": { "_package": "@yarnpkg/plugin-npm-cli", "title": "Array of advisory ID glob patterns of packages to exclude from `yarn npm audit`.", "type": "array", "items": { "type": "string" }, "default": [], "examples": ["known_insecure_package"] }, "npmAuditIgnoreAdvisories": { "_package": "@yarnpkg/plugin-npm-cli", "title": "Array of advisory ID glob patterns to ignore from `yarn npm audit` results.", "type": "array", "items": { "type": "string" }, "default": [], "examples": ["1234567"] }, "npmPublishRegistry": { "_package": "@yarnpkg/plugin-npm", "title": "Define the registry to use when pushing packages.", "description": "If not explicitly set, the value of `npmRegistryServer` will be used. Overridden by `publishConfig.registry`.", "type": "string", "format": "uri", "examples": ["https://npm.pkg.github.com"] }, "npmRegistries": { "_package": "@yarnpkg/plugin-npm", "title": "Per-registry configurations.", "type": "object", "patternProperties": { "^(?:^[a-zA-Z][a-zA-Z0-9+-.]*:)?[^\\s]*$": { "type": "object", "properties": { "npmAlwaysAuth": { "$ref": "#/properties/npmAlwaysAuth" }, "npmAuthIdent": { "$ref": "#/properties/npmAuthIdent" }, "npmAuthToken": { "$ref": "#/properties/npmAuthToken" } } } }, "additionalProperties": false, "_exampleKeys": ["//npm.pkg.github.com"] }, "npmRegistryServer": { "_package": "@yarnpkg/plugin-npm", "title": "Define the registry to use when fetching packages.", "description": "Should you want to define different registries for different scopes, see `npmScopes`. To define the authentication scheme for your servers, see `npmAuthToken`. The url must use HTTPS by default, but this can be changed by adding it to the `unsafeHttpWhitelist`.", "type": "string", "format": "uri", "default": "https://registry.yarnpkg.com" }, "npmScopes": { "_package": "@yarnpkg/plugin-npm", "title": "Per-scope registry configurations.", "type": "object", "patternProperties": { "^\\S+$": { "type": "object", "properties": { "npmPublishRegistry": { "$ref": "#/properties/npmPublishRegistry", "examples": ["https://registry.yarnpkg.com"] }, "npmRegistryServer": { "$ref": "#/properties/npmRegistryServer" }, "npmAlwaysAuth": { "$ref": "#/properties/npmAlwaysAuth" }, "npmAuthIdent": { "$ref": "#/properties/npmAuthIdent" }, "npmAuthToken": { "$ref": "#/properties/npmAuthToken" } } } }, "additionalProperties": false, "_exampleKeys": ["my-company"] }, "packageExtensions": { "_package": "@yarnpkg/core", "title": "Extend the package definitions of your dependencies; useful to fix third-party issues.", "description": "Some packages may have been specified incorrectly with regard to their dependencies - for example with one dependency being missing, causing Yarn to refuse it the access. The `packageExtensions` fields offer a way to extend the existing package definitions with additional information. If you use it, consider sending a PR upstream and contributing your extension to the [`plugin-compat` database](https://github.com/yarnpkg/berry/blob/master/packages/yarnpkg-extensions/sources/index.ts).\n\nNote: This field is made to add dependencies; if you need to rewrite existing ones, prefer the `resolutions` field instead.", "type": "object", "patternProperties": { "^(?:@([^/]+?)/)?([^/]+?)(?:@(.+))$": { "description": "Each key is a descriptor covering a semver range. The extensions will be applied to any package whose version matches the specified range. This is true regardless of where the package comes from, so no distinction on whether they come from git or a registry, for example. Only the version matters.", "type": "object", "properties": { "dependencies": { "type": "object", "patternProperties": { "^(?:@([^/]+?)/)?([^/]+?)$": { "type": "string", "pattern": "^(.+)$", "examples": ["^4.15.0"] } }, "additionalProperties": false, "_exampleKeys": ["lodash"] }, "peerDependencies": { "type": "object", "patternProperties": { "^(?:@([^/]+?)/)?([^/]+?)$": { "type": "string", "pattern": "^(.+)$", "examples": ["*"] } }, "additionalProperties": false, "_exampleKeys": ["webpack-cli"] }, "peerDependenciesMeta": { "type": "object", "patternProperties": { "^(?:@([^/]+?)/)?([^/]+?)$": { "type": "object", "properties": { "optional": { "type": "boolean", "examples": [true] } } } }, "additionalProperties": false, "_exampleKeys": ["webpack-cli"] } }, "_margin": false } }, "additionalProperties": false, "_exampleKeys": ["webpack@*"] }, "patchFolder": { "_package": "@yarnpkg/plugin-patch", "title": "Folder where patch files will be written to.", "type": "string", "format": "uri-reference", "default": "./.yarn/patches" }, "pnpEnableEsmLoader": { "_package": "@yarnpkg/plugin-pnp", "title": "Define whether to generate a Node.js ESM loader or not.", "description": "If true, Yarn will generate an experimental ESM loader (`.pnp.loader.mjs`) on top of the CJS one.", "type": "boolean", "default": false }, "pnpEnableInlining": { "_package": "@yarnpkg/plugin-pnp", "title": "Define whether to store the PnP data in the generated file or not.", "description": "If false, Yarn will generate an additional `.pnp.data.json` file.", "type": "boolean", "default": true }, "pnpFallbackMode": { "_package": "@yarnpkg/plugin-pnp", "type": "string", "title": "Define whether to allow packages to rely on the builtin PnP fallback mechanism.", "description": "Possible values are:\n\n- If `all`, all packages can access dependencies made available in the fallback.\n- If `dependencies-only` (the default), dependencies will have access to them but not your workspaces.\n- If `none`, no packages will have access to them.", "enum": ["none", "dependencies-only", "all"], "default": "dependencies-only" }, "pnpIgnorePatterns": { "_package": "@yarnpkg/plugin-pnp", "title": "Array of file glob patterns that should be forced to use the default CommonJS resolution.", "description": "Files matching those locations will not be covered by PnP and will use the regular Node.js resolution algorithm. Typically only needed if you have subprojects that aren't yet part of your workspace tree.", "type": "array", "items": { "type": "string" }, "default": [], "_exampleItems": ["./subdir/*"] }, "pnpMode": { "_package": "@yarnpkg/plugin-pnp", "title": "Define whether to attempt to simulate traditional `node_modules` hoisting.", "description": "Possible values are:\n\n- If `strict` (the default), modules won't be allowed to require packages they don't explicitly list in their own dependencies.\n- If `loose`, packages will be allowed to access any other package that would have been hoisted to the top-level under 1.x installs.\n\nNote that, even in loose mode, hoisted require calls are unsafe and should be discouraged.", "enum": ["strict", "loose"], "type": "string", "default": "strict" }, "pnpShebang": { "_package": "@yarnpkg/plugin-pnp", "title": "String prepended to the generated PnP loader.", "type": "string", "pattern": "^(#!.*\n?)+", "default": "#!/usr/bin/env node" }, "pnpUnpluggedFolder": { "_package": "@yarnpkg/plugin-pnp", "title": "Path where unplugged packages are stored.", "description": "While Yarn attempts to reference and load packages directly from their zip archives, it may not always be possible. In those cases, Yarn will extract the files to the unplugged folder.", "type": "string", "format": "uri-reference", "default": "./.yarn/unplugged" }, "preferDeferredVersions": { "_package": "@yarnpkg/plugin-version", "title": "Define whether to use deferred versioning by default or not.", "description": "If true, deferred versioning by default when running the `yarn version` family of commands.", "type": "boolean", "default": false }, "preferInteractive": { "_package": "@yarnpkg/core", "title": "Define whether to use interactive prompts by default or not.", "description": "If true, Yarn will ask for your guidance when some actions would be improved by being disambiguated. Enabling this setting also unlocks some features (for example the `yarn add` command will suggest to reuse the same dependencies as other workspaces if pertinent).", "type": "boolean", "default": false }, "preferReuse": { "_package": "@yarnpkg/plugin-essentials", "title": "Define whether to reuse most common dependency ranges or not when adding dependencies to a package.", "description": "If true, `yarn add` will attempt to reuse the most common dependency range in other workspaces.", "type": "boolean", "default": false }, "preferTruncatedLines": { "_package": "@yarnpkg/core", "title": "Define whether to truncate lines that would go beyond the size of the terminal or not.", "description": "If true, Yarn will truncate lines that would go beyond the size of the terminal. If progress bars are disabled, lines will never be truncated.", "type": "boolean", "default": false }, "progressBarStyle": { "_package": "@yarnpkg/core", "title": "Style of progress bar to use.", "type": "string", "enum": ["patrick", "simba", "jack", "hogsfather", "default"], "examples": ["default"] }, "supportedArchitectures": { "_package": "@yarnpkg/core", "title": "Systems for which Yarn should install packages.", "type": "object", "properties": { "os": { "title": "List of operating systems to cover.", "type": "array", "items": { "type": "string" }, "default": [], "_exampleItems": ["current", "darwin", "linux", "win32"] }, "cpu": { "title": "List of CPU architectures to cover.", "description": "See https://nodejs.org/docs/latest/api/process.html#processarch for the architectures supported by Node.js", "type": "array", "items": { "type": "string" }, "default": [], "_exampleItems": ["current", "x64", "ia32"] }, "libc": { "title": "The list of standard C libraries to cover.", "type": "array", "items": { "type": "string" }, "default": [], "_exampleItems": ["current", "glibc", "musl"] } } }, "telemetryInterval": { "_package": "@yarnpkg/core", "title": "Define the minimal amount of time between two telemetry events, in days.", "description": "By default we only send one request per week, making it impossible for us to track your usage with a lower granularity.", "type": "number", "default": 7 }, "telemetryUserId": { "_package": "@yarnpkg/core", "title": "User-defined unique ID to send along with telemetry events.", "description": "The default settings never assign unique IDs to anyone, so we have no way to know which data originates from which project. This setting can be used to force a user ID to be sent to our telemetry server.\n\nFrankly, it's only useful in some very specific use cases. For example, we use it on the Yarn repository in order to exclude our own usage from the public dashboards (since we run Yarn far more often here than anywhere else, the resulting data would be biased).", "type": "string", "examples": ["yarnpkg/berry"] }, "tsEnableAutoTypes": { "_package": "@yarnpkg/plugin-typescript", "title": "Define whether to automatically install @types dependencies.", "description": "If true, Yarn will automatically add `@types` dependencies when running `yarn add` with packages that don't provide their own typings (as reported by the Algolia npm database). This behavior is enabled by default if you have a tsconfig file at the root of your project.", "type": "boolean", "examples": [true] }, "unsafeHttpWhitelist": { "_package": "@yarnpkg/core", "title": "Array of hostname glob patterns for which using the HTTP protocol is allowed.", "type": "array", "items": { "type": "string", "pattern": "[-a-zA-Z0-9@:%._\\+~#=]{1,256}\\.[a-zA-Z0-9()]{1,6}\\b([-a-zA-Z0-9()@:%_\\+.~#?&//=]*)" }, "default": [], "_exampleItems": ["*.example.org", "example.org"] }, "virtualFolder": { "_package": "@yarnpkg/core", "title": "Path where virtual packages will be stored.", "description": "Due to a particularity in how Yarn installs packages which list peer dependencies, some packages will be mapped to multiple virtual directories that don't actually exist on the filesystem. This settings tells Yarn where to put them. Note that the folder name *must* be `__virtual__`.", "type": "string", "format": "uri-reference", "pattern": "^.*__virtual__$", "default": "./.yarn/__virtual__" }, "yarnPath": { "_package": "@yarnpkg/core", "title": "Path of a Yarn binary to use instead of the global one.", "description": "This binary will be executed instead of any other (including the global one) for any command run within the directory covered by the rc file. If the file extension ends with `.js` it will be required, and will be spawned in any other case.\n\nThe `yarnPath` setting used to be the preferred way to install Yarn within a project, but we now recommend to use [Corepack](https://nodejs.org/api/corepack.html) in most cases.", "type": "string", "format": "uri-reference", "examples": ["./scripts/yarn-2.0.0-rc001.js"] } } }
pubspec.json
{ "$id": "https://json.schemastore.org/pubspec", "$schema": "http://json-schema.org/draft-07/schema#", "definitions": { "version": { "type": "string", "pattern": "^\\d+\\.\\d+\\.\\d+(?:[+-]\\S+)?$" }, "versionConstraint": { "description": "Version range of the package or SDK to use", "oneOf": [ { "type": "string", "description": "Allows any version of the package. This is not recommended for performance reasons", "enum": ["any", ""] }, { "$ref": "#/definitions/version" }, { "type": "string", "examples": [">1.0.0 <2.3.0-beta", ">=1.0.0-pre.1 <=3.0.0"], "pattern": "^(?:(?:>=|>|<=|<)\\d+\\.\\d+\\.\\d+(?:[+-]\\S+)?\\s*)+$" }, { "type": "string", "examples": ["^1.0.0"], "pattern": "^\\^\\d+\\.\\d+\\.\\d+(?:[+-]\\S+)?$" } ] }, "dependency": { "oneOf": [ { "$ref": "#/definitions/versionConstraint", "$comment": "Syntax in yaml: `foo: ^1.2.3`" }, { "description": "Default dependency, matches any version of the package", "type": "null", "$comment": "Syntax in yaml: `foo:` or `foo: null`" }, { "title": "SDK dependency", "type": "object", "properties": { "sdk": { "description": "The SDK which contains this package", "type": "string" }, "version": { "$ref": "#/definitions/versionConstraint" } }, "required": ["sdk"], "additionalProperties": false }, { "title": "Hosted dependency", "type": "object", "properties": { "hosted": { "oneOf": [ { "type": "string", "description": "URL of the package server hosting this package", "format": "uri" }, { "type": "object", "properties": { "name": { "type": "string" }, "url": { "description": "The package server hosting this package", "type": "string", "format": "uri" } }, "required": ["url"] } ] }, "version": { "$ref": "#/definitions/versionConstraint" } }, "required": ["hosted"], "additionalProperties": false }, { "description": "Git dependency", "type": "object", "properties": { "git": { "$comment": "Can either be a string (uri) or an object with ref etc.", "oneOf": [ { "description": "URI of the repository hosting this package", "type": "string" }, { "type": "object", "properties": { "url": { "type": "string", "description": "URI of the repository hosting this package" }, "path": { "type": "string", "description": "Path of this package relative to the Git repo's root" }, "ref": { "type": "string", "description": "The branch, tag, or anything else Git allows to identify a commit." } } } ] } }, "required": ["git"], "additionalProperties": false }, { "description": "Path dependency", "type": "object", "properties": { "path": { "type": "string" } }, "additionalProperties": false } ] }, "dependencies": { "type": "object", "additionalProperties": { "$ref": "#/definitions/dependency" } } }, "description": "Dart Pubspec file", "properties": { "name": { "description": "The name of this package. The name is how other packages refer to yours, should you publish it.", "type": "string" }, "version": { "$ref": "#/definitions/version" }, "description": { "type": "string" }, "authors": { "type": "array", "deprecated": true, "items": { "type": "string" } }, "homepage": { "type": "string", "format": "uri" }, "repository": { "type": "string", "format": "uri" }, "issue_tracker": { "type": "string", "format": "uri" }, "documentation": { "type": "string", "format": "uri" }, "executables": { "type": "object" }, "publish_to": { "type": "string" }, "environment": { "type": "object", "examples": [ { "sdk": ">=1.19.0 <3.0.0", "flutter": "^0.1.2" } ], "additionalProperties": { "$ref": "#/definitions/versionConstraint" } }, "dependencies": { "$ref": "#/definitions/dependencies" }, "dev_dependencies": { "$ref": "#/definitions/dependencies" }, "dependency_overrides": { "$ref": "#/definitions/dependencies" } }, "required": ["name"], "title": "Pubspec", "type": "object" }
samtrc.json
{ "$id": "https://json.schemastore.org/samtrc.json", "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "definitions": { "level_type": { "enum": ["error", "warn", "info", "off"] }, "naming_type": { "enum": [ "PascalCase", "camelCase", "kebab-case", "snake_case", "SCREAMING_SNAKE_CASE" ] } }, "properties": { "extends": { "description": "The name of the configuration file to extend from, used to determine the default rules to apply", "anyOf": [ { "type": "string" }, { "enum": ["recommended", "strict"] } ] }, "rules": { "description": "Configuration for linter rules for the current project", "type": "array", "items": { "oneOf": [ { "description": "Configure whether model types (e.g. record and service) must be in a separate file from their providers and consumers", "type": "object", "required": ["type"], "properties": { "type": { "const": "split-model-and-providers" }, "level": { "$ref": "#/definitions/level_type" } }, "additionalProperties": false }, { "description": "Configure naming rules which apply to all types in the project", "type": "object", "required": ["type"], "properties": { "type": { "const": "naming-conventions" }, "level": { "$ref": "#/definitions/level_type" }, "record": { "$ref": "#/definitions/naming_type" }, "recordField": { "$ref": "#/definitions/naming_type" }, "enum": { "$ref": "#/definitions/naming_type" }, "enumValue": { "$ref": "#/definitions/naming_type" }, "typeAlias": { "$ref": "#/definitions/naming_type" }, "service": { "$ref": "#/definitions/naming_type" }, "serviceOperation": { "$ref": "#/definitions/naming_type" }, "serviceOperationParameter": { "$ref": "#/definitions/naming_type" }, "provider": { "$ref": "#/definitions/naming_type" }, "package": { "$ref": "#/definitions/naming_type" }, "fileName": { "$ref": "#/definitions/naming_type" } }, "additionalProperties": false } ] } } }, "required": ["extends"], "type": "object" }
swadl-schema-1.0.json
{ "$schema": "http://json-schema.org/draft-04/schema#", "description": "SWADL (Symphony Workflow Automation Definition Language) is a language to describe workflows on Symphony.", "default": {}, "type": "object", "additionalProperties": false, "required": [ "id", "activities" ], "properties": { "id": { "type": "string", "description": "Workflow's id should start with a letter. It is optional. If no id is provided, the workflow filename is used. Otherwise, it will be generated. The id will appear in logs and audit trails.", "pattern": "^[a-zA-Z]+[a-zA-Z0-9][^ ]*$", "default": "my-workflow", "maxLength": 100 }, "properties": { "type": "object", "description": "Some metadata about the workflow", "properties": { "publish": { "type": [ "boolean", "string" ], "description": "Should the workflow be published or not, true publish, false otherwise", "default": true } } }, "variables": { "type": "object", "description": "Variables are accessible and editable within the entire workflow. A map of key: value entries is expected." }, "activities": { "type": "array", "minLength": 1, "description": "A list of activities to be executed by the workflow. By default the execution is sequential but complex logic can be orchestrated with if/else conditions as well as on/activity-completed events.", "$comment": "Defined like this to support both validation and autocompletion, even with custom activities. Last item is removed on the fly during validation and replaced by known custom activities.", "items": { "type": "object", "additionalProperties": false, "properties": { "create-room": { "description": "Creates a new chatroom.", "x-intellij-html-description": "<html><p>Creates a new chatroom.\n</p><a href=\"https://developers.symphony.com/restapi/reference#create-room-v3\">https://developers.symphony.com/restapi/reference#create-room-v3</a></html>", "allOf": [ { "$ref": "#/definitions/basic-activity-inner" }, { "$ref": "#/definitions/create-room-inner" } ] }, "update-room": { "description": "Updates the attributes of an existing chat room.", "x-intellij-html-description": "<html><p>Updates the attributes of an existing chat room.\n</p><a href=\"https://developers.symphony.com/restapi/reference#update-room-v3\">https://developers.symphony.com/restapi/reference#update-room-v3</a></html>", "allOf": [ { "$ref": "#/definitions/basic-activity-inner" }, { "$ref": "#/definitions/update-room-inner" } ] }, "add-room-member": { "description": "Adds new members to an existing room.", "x-intellij-html-description": "<html><p>Adds a new members to an existing room.\n</p><a href=\"https://developers.symphony.com/restapi/reference#add-member\">https://developers.symphony.com/restapi/reference#add-member</a></html>", "allOf": [ { "$ref": "#/definitions/basic-activity-inner" }, { "$ref": "#/definitions/add-room-member-inner" } ] }, "remove-room-member": { "description": "Removes members from an existing room.", "x-intellij-html-description": "<html><p>Removes members from an existing room.\n</p><a href=\"https://developers.symphony.com/restapi/reference#remove-member\">https://developers.symphony.com/restapi/reference#remove-member</a></html>", "allOf": [ { "$ref": "#/definitions/basic-activity-inner" }, { "$ref": "#/definitions/remove-room-member-inner" } ] }, "promote-room-owner": { "description": "Promotes user to owner of the chat room.", "x-intellij-html-description": "<html><p>Promotes user to owner of the chat room.\n</p><a href=\"https://developers.symphony.com/restapi/reference#promote-owner\">https://developers.symphony.com/restapi/reference#promote-owner</a></html>", "allOf": [ { "$ref": "#/definitions/basic-activity-inner" }, { "$ref": "#/definitions/promote-room-owner-inner" } ] }, "demote-room-owner": { "description": "Demotes room owner to a participant in the chat room.", "x-intellij-html-description": "<html><p>Demotes room owner to a participant in the chat room.</p><a href=\"https://developers.symphony.com/restapi/reference#demote-owner\">https://developers.symphony.com/restapi/reference#demote-owner</a></html>", "allOf": [ { "$ref": "#/definitions/basic-activity-inner" }, { "$ref": "#/definitions/demote-room-owner-inner" } ] }, "send-message": { "description": "Posts a message to a stream.", "x-intellij-html-description": "<html><p>Posts a message to a stream.</p><a href=\"https://developers.symphony.com/restapi/reference#create-message-v4\">https://developers.symphony.com/restapi/reference#create-message-v4</a></html>", "allOf": [ { "$ref": "#/definitions/basic-activity-inner" }, { "$ref": "#/definitions/send-message-inner" } ] }, "update-message": { "description": "Updates an existing message into a stream.", "x-intellij-html-description": "<html><p>Updates an existing message into a stream.</p><a href=\"https://developers.symphony.com/restapi/reference#update-message-v4\">https://developers.symphony.com/restapi/reference#update-message-v4</a></html>", "allOf": [ { "$ref": "#/definitions/basic-activity-inner" }, { "$ref": "#/definitions/update-message-inner" } ] }, "pin-message": { "description": "Pin an existing message into the stream it belongs to.", "x-intellij-html-description": "<html><p>Pin an existing message into the stream it belongs to.<a href=\"https://developers.symphony.com/restapi/reference#update-room-v3\">https://developers.symphony.com/restapi/reference#update-room-v3</a><a href=\"https://developers.symphony.com/restapi/v20.13/reference#update-im\">(https://developers.symphony.com/restapi/v20.13/reference#update-im</a></html>", "allOf": [ { "$ref": "#/definitions/basic-activity-inner" }, { "$ref": "#/definitions/pin-message-inner" } ] }, "unpin-message": { "description": "Unpin any message (if present) from an existing stream.", "x-intellij-html-description": "<html><p>Unpin any message (if present) from an existing stream.</p><a href=\"https://developers.symphony.com/restapi/reference#update-room-v3\">https://developers.symphony.com/restapi/reference#update-room-v3</a><a href=\"https://developers.symphony.com/restapi/v20.13/reference#update-im\">(https://developers.symphony.com/restapi/v20.13/reference#update-im</a></html>", "allOf": [ { "$ref": "#/definitions/basic-activity-inner" }, { "$ref": "#/definitions/unpin-message-inner" } ] }, "get-attachment": { "description": "Gets one attachment and stores it locally.", "x-intellij-html-description": "<html><p>Gets one attachment and stores it locally.</p><a href=\"https://developers.symphony.com/restapi/reference#attachment\">https://developers.symphony.com/restapi/reference#attachment</a></html>", "allOf": [ { "$ref": "#/definitions/basic-activity-inner" }, { "$ref": "#/definitions/get-attachment-inner" } ] }, "debug": { "description": "Standard debug activity.", "x-intellij-html-description": "<html><p>Standard debug activity.</p></html>", "type": "object", "properties": { "id": { "description": "Activity's identifier, should be unique across workflow. As it can be used as a variable identifier only alphanumerical characters are allowed.", "type": "string", "$comment": "variables is forbidden to avoid conflict with variables.output... that would override the workflows variables", "pattern": "^(?!variables$)([a-zA-Z][a-zA-Z0-9_]+)$" }, "on": { "$ref": "#/definitions/on" }, "if": { "description": "Conditional execution of the activity based on a boolean expression.", "type": "string" }, "else": { "description": "Default execution of the activity when if conditions are used for previous activities.", "type": "object" }, "object": { "type": [ "object", "string" ] } }, "required": [ "object" ] }, "execute-script": { "description": "Executes a Groovy script.", "x-intellij-html-description": "<html><p>Executes a Groovy script.</p></html>", "allOf": [ { "$ref": "#/definitions/basic-activity-inner" }, { "$ref": "#/definitions/execute-script-inner" } ] }, "execute-request": { "description": "Executes an HTTP request.", "allOf": [ { "$ref": "#/definitions/basic-activity-inner" }, { "$ref": "#/definitions/execute-request-inner" } ] }, "create-user": { "description": "Creates a new end user.", "x-intellij-html-description": "<html><p>Creates a new end user.</p><a href=\"https://developers.symphony.com/restapi/reference#create-user-v2\">https://developers.symphony.com/restapi/reference#create-user-v2</a></html>", "allOf": [ { "$ref": "#/definitions/basic-activity-inner" }, { "$ref": "#/definitions/create-user-inner", "required": [ "email", "username", "firstname", "lastname", "display-name" ] } ] }, "update-user": { "description": "Updates an existing end user.", "x-intellij-html-description": "<html><p>Updates an existing end user.</p><a href=\"https://developers.symphony.com/restapi/reference#update-user-v2\">https://developers.symphony.com/restapi/reference#update-user-v2</a></html>", "allOf": [ { "$ref": "#/definitions/basic-activity-inner" }, { "$ref": "#/definitions/create-user-inner" }, { "type": "object", "properties": { "user-id": { "$ref": "#/definitions/user-id" } }, "required": [ "user-id" ] } ] }, "create-system-user": { "description": "Creates a new service user.", "x-intellij-html-description": "<html><p>Creates a new service user.</p><a href=\"https://developers.symphony.com/restapi/reference#create-user-v2\">https://developers.symphony.com/restapi/reference#create-user-v2</a></html>", "allOf": [ { "$ref": "#/definitions/basic-activity-inner" }, { "$ref": "#/definitions/create-system-user-inner", "required": [ "email", "username", "display-name" ] } ] }, "update-system-user": { "description": "Updates an existing service user.", "x-intellij-html-description": "<html><p>Updates an existing service user.</p><a href=\"https://developers.symphony.com/restapi/reference#update-user-v2\">https://developers.symphony.com/restapi/reference#update-user-v2</a></html>", "allOf": [ { "$ref": "#/definitions/basic-activity-inner" }, { "$ref": "#/definitions/create-system-user-inner" }, { "type": "object", "properties": { "user-id": { "$ref": "#/definitions/user-id" } }, "required": [ "user-id" ] } ] }, "add-user-role": { "description": "Adds roles to user accounts.", "x-intellij-html-description": "<html><p>Adds a role or optional entitleable action to a user’s account.</p><a href=\"https://developers.symphony.com/restapi/reference#add-role\">https://developers.symphony.com/restapi/reference#add-role</a></html>", "allOf": [ { "$ref": "#/definitions/basic-activity-inner" }, { "$ref": "#/definitions/user-role-inner" } ] }, "remove-user-role": { "description": "Removes roles from user accounts.", "x-intellij-html-description": "<html><p>Removes a role or optional entitleable action from a user’s account.</p><a href=\"https://developers.symphony.com/restapi/reference#remove-role\">https://developers.symphony.com/restapi/reference#remove-role</a></html>", "allOf": [ { "$ref": "#/definitions/basic-activity-inner" }, { "$ref": "#/definitions/user-role-inner" } ] }, "get-user": { "description": "Returns details for a particular user.", "x-intellij-html-description": "<html><p>Returns details for a particular user.</p><a href=\"https://developers.symphony.com/restapi/reference#get-user-v2\">https://developers.symphony.com/restapi/reference#get-user-v2</a></html>", "type": "object", "allOf": [ { "$ref": "#/definitions/basic-activity-inner" }, { "$ref": "#/definitions/get-user-inner" } ] }, "get-users": { "description": "Returns a list of users ID, including user metadata.", "x-intellij-html-description": "<html><p>Returns a list of users ID, including user metadata.</p><a href=\"https://developers.symphony.com/restapi/reference#users-lookup-v3\">https://developers.symphony.com/restapi/reference#users-lookup-v3</a></html>", "type": "object", "allOf": [ { "$ref": "#/definitions/basic-activity-inner" }, { "$ref": "#/definitions/get-users-inner" } ] }, "get-stream": { "type": "object", "description": "Returns information about a particular stream.", "x-intellij-html-description": "<htmL><p>Returns information about a particular stream.</p><a href=\"https://developers.symphony.com/restapi/reference#stream-info-v2\">https://developers.symphony.com/restapi/reference#stream-info-v2</a></html", "allOf": [ { "$ref": "#/definitions/basic-activity-inner" }, { "$ref": "#/definitions/get-stream-inner" } ] }, "get-room": { "type": "object", "description": "Returns information about a particular chat room.", "x-intellij-html-description": "<html><p>Returns information about a particular chat room.</p><a href=\"https://developers.symphony.com/restapi/reference#room-info-v3\">https://developers.symphony.com/restapi/reference#room-info-v3</a></html>", "allOf": [ { "$ref": "#/definitions/basic-activity-inner" }, { "$ref": "#/definitions/get-room-inner" } ] }, "get-message": { "type": "object", "description": "Returns a message found by id.", "x-intellij-html-description": "<html><p>Returns a message found by id.</p><a href=\"https://developers.symphony.com/restapi/reference#get-message-v1\">https://developers.symphony.com/restapi/reference#get-message-v1</html>", "allOf": [ { "$ref": "#/definitions/basic-activity-inner" }, { "$ref": "#/definitions/get-message-inner" } ] }, "get-stream-members": { "type": "object", "description": "Returns a list of all the current members of a stream (IM, MIM, or chatroom).", "x-intellij-html-description": "<html><p>Returns a list of all the current members of a stream (IM, MIM, or chatroom).</p><a href=\"https://developers.symphony.com/restapi/reference#stream-members\">https://developers.symphony.com/restapi/reference#stream-members</a></html>", "allOf": [ { "$ref": "#/definitions/basic-activity-inner" }, { "$ref": "#/definitions/get-stream-members-inner" } ] }, "get-room-members": { "type": "object", "description": "Lists the current members of an existing room.", "x-intellij-html-description": "<html><p>Lists the current members of an existing room.</p><a href=\"https://developers.symphony.com/restapi/reference#room-members\">https://developers.symphony.com/restapi/reference#room-members</a></html>", "allOf": [ { "$ref": "#/definitions/basic-activity-inner" }, { "$ref": "#/definitions/get-room-members-inner" } ] }, "get-user-streams": { "type": "object", "description": "Returns a list of all the streams of which the requesting user is a member, sorted by creation date (ascending - oldest to newest).", "x-intellij-html-description": "<html><p>Returns a list of all the streams of which the requesting user is a member, sorted by creation date (ascending - oldest to newest).</p><a href=\"https://developers.symphony.com/restapi/reference#list-user-streams\">https://developers.symphony.com/restapi/reference#list-user-streams</a></html>", "allOf": [ { "$ref": "#/definitions/basic-activity-inner" }, { "$ref": "#/definitions/get-user-streams-inner" } ] }, "get-streams": { "type": "object", "description": "Returns a list of all the streams (IMs, MIMs, and chatrooms) for the calling user's company, sorted by creation date (ascending – oldest to newest).", "x-intellij-html-description": "<html><p>Returns a list of all the streams (IMs, MIMs, and chatrooms) for the calling user's company, sorted by creation date (ascending – oldest to newest).</p><a href\"https://developers.symphony.com/restapi/reference#list-streams-for-enterprise-v2\">https://developers.symphony.com/restapi/reference#list-streams-for-enterprise-v2</a></html>", "allOf": [ { "$ref": "#/definitions/basic-activity-inner" }, { "$ref": "#/definitions/get-streams-inner" } ] }, "get-connection": { "type": "object", "description": "Get one connection status.", "x-intellij-html-description": "<html><p>Get one connection status.</p><a href=\"https://developers.symphony.com/restapi/reference#get-connection\">https://developers.symphony.com/restapi/reference#get-connection</a></html>", "allOf": [ { "$ref": "#/definitions/basic-activity-inner" }, { "$ref": "#/definitions/connection-inner" } ] }, "create-connection": { "type": "object", "description": "Send a connection request to another user.", "x-intellij-html-description": "<html><p>Send a connection request to another user.</p><a href=\"https://developers.symphony.com/restapi/reference#create-connection\">https://developers.symphony.com/restapi/reference#create-connection</a></html>", "allOf": [ { "$ref": "#/definitions/basic-activity-inner" }, { "$ref": "#/definitions/connection-inner" } ] }, "accept-connection": { "type": "object", "description": "Accept the connection request for a requesting user.", "x-intellij-html-description": "<html><p>Accept the connection request for a requesting user.</p><a href=\"https://developers.symphony.com/restapi/reference#accepted-connection\">https://developers.symphony.com/restapi/reference#accepted-connection</a></html>", "allOf": [ { "$ref": "#/definitions/basic-activity-inner" }, { "$ref": "#/definitions/connection-inner" } ] }, "reject-connection": { "type": "object", "description": "Reject the connection request from a requesting user.", "x-intellij-html-description": "<html><p>Reject the connection request from a requesting user.</p><a href=\"https://developers.symphony.com/restapi/reference#reject-connection\">https://developers.symphony.com/restapi/reference#reject-connection</a></html>", "allOf": [ { "$ref": "#/definitions/basic-activity-inner" }, { "$ref": "#/definitions/connection-inner" } ] }, "remove-connection": { "type": "object", "description": "Remove a connection with a user.", "x-intellij-html-description": "<html><p>Remove a connection with a user.</p><a href=\"https://developers.symphony.com/restapi/reference#remove-connection\">https://developers.symphony.com/restapi/reference#remove-connection</a></html>", "allOf": [ { "$ref": "#/definitions/basic-activity-inner" }, { "$ref": "#/definitions/connection-inner" } ] }, "get-rooms": { "type": "object", "description": "Search for rooms, querying name, description, and specified keywords.", "x-intellij-html-description": "<html><p>Search for rooms, querying name, description, and specified keywords.</p><a href=\"https://developers.symphony.com/restapi/reference#search-rooms-v3\">https://developers.symphony.com/restapi/reference#search-rooms-v3</a></html>", "allOf": [ { "$ref": "#/definitions/basic-activity-inner" }, { "$ref": "#/definitions/get-rooms-inner" } ] }, "get-messages": { "type": "object", "description": "Get messages from an existing stream (IM, MIM, or chatroom).\nAdditionally returns any attachments associated with the message.", "x-intellij-html-description": "<html><p>Get messages from an existing stream (IM, MIM, or chatroom).\nAdditionally returns any attachments associated with the message.</p><a href=\"https://developers.symphony.com/restapi/reference#messages-v4\">https://developers.symphony.com/restapi/reference#messages-v4</a></html>", "allOf": [ { "$ref": "#/definitions/basic-activity-inner" }, { "$ref": "#/definitions/get-messages-inner" } ] }, "get-connections": { "type": "object", "description": "Get one or multiple connections statuses", "x-intellij-html-description": "<html><p>Get one or multiple connections statuses</p><a href=\"https://developers.symphony.com/restapi/reference#list-connections\">https://developers.symphony.com/restapi/reference#list-connections</a></html>", "allOf": [ { "$ref": "#/definitions/basic-activity-inner" }, { "$ref": "#/definitions/get-connections-inner" } ] }, "create-group": { "type": "object", "description": "Create a group (distribution list)", "x-intellij-html-description": "<html><p>Create a group (distribution list)</p><a href=\"https://developers.symphony.com/restapi/reference/insertgroup\">https://developers.symphony.com/restapi/reference/insertgroup</a></html>", "allOf": [ { "$ref": "#/definitions/basic-activity-inner" }, { "$ref": "#/definitions/create-group-inner" } ], "required": [ "name", "owner", "members", "profile" ] }, "update-group": { "type": "object", "description": "Update a group (distribution list)", "x-intellij-html-description": "<html><p>Update a group (distribution list)</p><a href=\"https://developers.symphony.com/restapi/reference/updategroup\">https://developers.symphony.com/restapi/reference/updategroup</a></html>", "allOf": [ { "$ref": "#/definitions/basic-activity-inner" }, { "$ref": "#/definitions/create-group-inner" }, { "type": "object", "$ref": "#/definitions/update-group-inner" } ] }, "get-group": { "type": "object", "description": "Retrieve a group (distribution list)", "x-intellij-html-description": "<html><p>Retrieve a group (distribution list)</p><a href=\"https://developers.symphony.com/restapi/reference/getgroup\">https://developers.symphony.com/restapi/reference/getgroup</a></html>", "allOf": [ { "$ref": "#/definitions/basic-activity-inner" }, { "$ref": "#/definitions/get-group-inner" } ] }, "get-groups": { "type": "object", "description": "Retrieve groups of specified type (distribution list)", "x-intellij-html-description": "<html><p>Retrieve groups of specified type (distribution list)</p><a href=\"https://developers.symphony.com/restapi/reference/listgroups\">https://developers.symphony.com/restapi/reference/listgroups</a></html>", "allOf": [ { "$ref": "#/definitions/basic-activity-inner" }, { "$ref": "#/definitions/get-groups-inner" } ] }, "add-group-member": { "type": "object", "description": "Add members to a group (distribution list)", "x-intellij-html-description": "<html><p>Add members to a group (distribution list)</p><a href=\"https://developers.symphony.com/restapi/reference/addmembertogroup\">https://developers.symphony.com/restapi/reference/addmembertogroup</a></html>", "allOf": [ { "$ref": "#/definitions/basic-activity-inner" }, { "$ref": "#/definitions/add-group-member-inner" } ] } }, "maxProperties": 1, "minProperties": 1, "patternProperties": { "^(?!create-room|update-room|add-room-member|remove-room-member|promote-room-owner|demote-room-owner|send-message|update-message|pin-message|unpin-message|debug|execute-script|execute-request|create-user|create-system-user|create-connection|update-user|update-system-user|add-user-role|remove-user-role|remove-connection|reject-connection|accept-connection|get-user|get-users|get-stream|get-room|get-message|get-connection|get-stream-members|get-room-members|get-user-streams|get-streams|get-rooms|get-messages|get-connections)([a-z0-9-]+)$": { "$comment": "Match everything that is not an already known activity to allow for custom activities to be used.", "$ref": "#/definitions/basic-activity-inner" } } } } }, "definitions": { "search-user-inner": { "type": "object", "properties": { "local": { "type": [ "boolean", "string" ], "description": "If true then a local DB search will be performed and only local pod users will be returned. If absent or false then a directory search will be performed and users from other pods who are visible to the calling user will also be returned.", "default": false }, "active": { "type": [ "boolean", "string" ], "description": "If true, it searches for active users only. If false, it searches for inactive users only. If not set, it searches for all users regardless of their status." } } }, "on": { "description": "Events that can trigger the activity execution.", "x-intellij-html-description": "<html><p>Events that can trigger the activity execution.</p><a href=\"https://docs.developers.symphony.com/building-bots-on-symphony/datafeed/real-time-events\">List of real-time events: https://docs.developers.symphony.com/building-bots-on-symphony/datafeed/real-time-events</a></html>", "type": "object", "allOf": [ { "type": "object", "properties": { "timeout": { "type": "string", "description": "Timeout while waiting for form-replied events, expressed as an ISO 8601 duration. Default value is 24 hours.", "pattern": "^P(?!$)(\\d+(?:\\.\\d+)?Y)?(\\d+(?:\\.\\d+)?M)?(\\d+(?:\\.\\d+)?W)?(\\d+(?:\\.\\d+)?D)?(T(?=\\d)(\\d+(?:\\.\\d+)?H)?(\\d+(?:\\.\\d+)?M)?(\\d+(?:\\.\\d+)?S)?)?$" } } }, { "oneOf": [ { "$ref": "#/definitions/form-replied-event" }, { "$ref": "#/definitions/activity-expired-event" }, { "$ref": "#/definitions/activity-completed-event" }, { "$ref": "#/definitions/activity-failed-event" }, { "$ref": "#/definitions/message-received-event" }, { "$ref": "#/definitions/request-received-event" }, { "$ref": "#/definitions/message-suppressed-event" }, { "$ref": "#/definitions/post-shared-event" }, { "$ref": "#/definitions/im-created-event" }, { "$ref": "#/definitions/room-created-event" }, { "$ref": "#/definitions/room-updated-event" }, { "$ref": "#/definitions/room-deactivated-event" }, { "$ref": "#/definitions/room-reactivated-event" }, { "$ref": "#/definitions/room-member-promoted-to-owner-event" }, { "$ref": "#/definitions/room-member-demoted-from-owner-event" }, { "$ref": "#/definitions/user-joined-room-event" }, { "$ref": "#/definitions/user-left-room-event" }, { "$ref": "#/definitions/user-requested-join-room-event" }, { "$ref": "#/definitions/connection-requested-event" }, { "$ref": "#/definitions/connection-accepted-event" }, { "$ref": "#/definitions/timer-fired-event" }, { "$ref": "#/definitions/one-of-event" }, { "$ref": "#/definitions/all-of-event" } ] } ] }, "form-replied-event": { "type": "object", "properties": { "form-replied": { "description": "Generated when a user replies to a bot message that contains an interactive form with UX components such as text fields, radio buttons, checkboxes, person selectors and more.", "x-intellij-html-description": "<html><p>Generated when a user replies to a bot message that contains an interactive form with UX components such as text fields, radio buttons, checkboxes, person selectors and more. Please refer to <a href=\"https://docs.developers.symphony.com/building-bots-on-symphony/symphony-elements\">Symphony Elements.</p><a href=\"https://docs.developers.symphony.com/building-bots-on-symphony/datafeed/real-time-events#symphony-elements-action\">https://docs.developers.symphony.com/building-bots-on-symphony/datafeed/real-time-events#symphony-elements-action</a></html>", "$ref": "#/definitions/form-replied-event-inner" } }, "required": [ "form-replied" ] }, "request-received-event": { "title": "object", "properties": { "request-received": { "description": "Generated when an HTTP request is received in order to trigger a workflow.", "$ref": "#/definitions/request-received-event-inner" } }, "required": [ "request-received" ] }, "message-received-event": { "type": "object", "properties": { "message-received": { "description": "Generated when a message is sent in an IM, MIM, or chatroom of which the workflow bot is a member, including messages sent by the user him/herself.", "x-intellij-html-description": "<html><p>Generated when a message is sent in an IM, MIM, or chatroom of which the workflow bot is a member, including messages sent by the user him/herself.</p><a href=\"https://docs.developers.symphony.com/building-bots-on-symphony/datafeed/real-time-events#message-sent\">https://docs.developers.symphony.com/building-bots-on-symphony/datafeed/real-time-events#message-sent</a></html>", "$ref": "#/definitions/message-received-event-inner" } }, "required": [ "message-received" ] }, "message-suppressed-event": { "type": "object", "properties": { "message-suppressed": { "description": "Generated when messages are suppressed.", "x-intellij-html-description": "<html><p>Generated when messages are suppressed.</p><a href=\"https://docs.developers.symphony.com/building-bots-on-symphony/datafeed/real-time-events#messages-suppressed\">https://docs.developers.symphony.com/building-bots-on-symphony/datafeed/real-time-events#messages-suppressed</a></html>", "$ref": "#/definitions/message-suppressed-event-inner" } }, "required": [ "message-suppressed" ] }, "post-shared-event": { "type": "object", "properties": { "post-shared": { "description": "Generated when either the workflow bot shares a wall post written by another user or another user shares a wall post written by the workflow bot.", "x-intellij-html-description": "<html><p>Generated when either:<li>The workflow bot shares a wall post written by another user.</li><li>Another user shares a wall post written by the workflow bot.</li></p><a href=\"https://docs.developers.symphony.com/building-bots-on-symphony/datafeed/real-time-events#shared-wall-posts\">https://docs.developers.symphony.com/building-bots-on-symphony/datafeed/real-time-events#shared-wall-posts</a></html>", "$ref": "#/definitions/post-shared-event-inner" } }, "required": [ "post-shared" ] }, "im-created-event": { "type": "object", "properties": { "im-created": { "description": "Generated when an IM or MIM is created with the workflow bot as a member, initiated either by the workflow bot or another user.", "x-intellij-html-description": "<html><p>Generated when an IM or MIM is created with the workflow bot as a member, initiated either by the workflow bot or another user.</p><a href=\"https://docs.developers.symphony.com/building-bots-on-symphony/datafeed/real-time-events#im-mim-created\">https://docs.developers.symphony.com/building-bots-on-symphony/datafeed/real-time-events#im-mim-created</a></html>", "$ref": "#/definitions/im-created-event-inner" } }, "required": [ "im-created" ] }, "room-created-event": { "type": "object", "properties": { "room-created": { "description": "Generated when a room is created by the workflow bot.", "x-intellij-html-description": "<html><p>Generated when a room is created by the workflow bot.</p><a href=\"https://docs.developers.symphony.com/building-bots-on-symphony/datafeed/real-time-events#room-created\">https://docs.developers.symphony.com/building-bots-on-symphony/datafeed/real-time-events#room-created</a></html>", "$ref": "#/definitions/room-created-event-inner" } }, "required": [ "room-created" ] }, "room-updated-event": { "type": "object", "properties": { "room-updated": { "description": "Generated when a room of which the workflow bot is a member is updated, including rooms updated by the user him/herself.", "x-intellij-html-description": "<html><p>Generated when a room of which the workflow bot is a member is updated, including rooms updated by the user him/herself.</p><a href=\"https://docs.developers.symphony.com/building-bots-on-symphony/datafeed/real-time-events#room-updated-message\">https://docs.developers.symphony.com/building-bots-on-symphony/datafeed/real-time-events#room-updated-message</a></html>", "$ref": "#/definitions/room-updated-event-inner" } }, "required": [ "room-updated" ] }, "room-deactivated-event": { "type": "object", "properties": { "room-deactivated": { "description": "Generated when a room of which the workflow bot is a member is deactivated, including rooms deactivated by the user him/herself.", "x-intellij-html-description": "<html><p>Generated when a room of which the workflow bot is a member is deactivated, including rooms deactivated by the user him/herself.</p><a href=\"https://docs.developers.symphony.com/building-bots-on-symphony/datafeed/real-time-events#room-deactivated-message\">https://docs.developers.symphony.com/building-bots-on-symphony/datafeed/real-time-events#room-deactivated-message</a></html>", "$ref": "#/definitions/room-deactivated-event-inner" } }, "required": [ "room-deactivated" ] }, "room-reactivated-event": { "type": "object", "properties": { "room-reactivated": { "description": "Generated when a room of which the workflow bot is a member is reactivated, including rooms reactivated by the user him/herself.", "x-intellij-html-description": "<html><p>Generated when a room of which the workflow bot is a member is reactivated, including rooms reactivated by the user him/herself.</p><a href=\"https://docs.developers.symphony.com/building-bots-on-symphony/datafeed/real-time-events#room-reactivated-message\">https://docs.developers.symphony.com/building-bots-on-symphony/datafeed/real-time-events#room-reactivated-message</a></html>", "$ref": "#/definitions/room-reactivated-event-inner" } }, "required": [ "room-reactivated" ] }, "room-member-promoted-to-owner-event": { "type": "object", "properties": { "room-member-promoted-to-owner": { "description": "Generated when a user is promoted from a participant to an owner of a room of which the workflow bot is a member, including when the user himself is promoted to an owner or promotes another user.", "x-intellij-html-description": "<html><p>Generated when a user is promoted from a participant to an owner of a room of which the workflow bot is a member, including when the user himself is promoted to an owner or promotes another user.</p><a href=\"https://docs.developers.symphony.com/building-bots-on-symphony/datafeed/real-time-events#room-member-promoted-to-owner\">https://docs.developers.symphony.com/building-bots-on-symphony/datafeed/real-time-events#room-member-promoted-to-owner</a></html>", "$ref": "#/definitions/room-member-promoted-to-owner-event-inner" } }, "required": [ "room-member-promoted-to-owner" ] }, "room-member-demoted-from-owner-event": { "type": "object", "properties": { "room-member-demoted-from-owner": { "description": "Generated when a user is demoted from an owner to a participant of a room of which the workflow bot is a member, including when the user himself is demoted to a participant or demotes another user.", "x-intellij-html-description": "<html><p>Generated when a user is demoted from an owner to a participant of a room of which the workflow bot is a member, including when the user himself is demoted to a participant or demotes another user.</p><a href=\"https://docs.developers.symphony.com/building-bots-on-symphony/datafeed/real-time-events#room-member-demoted-from-owner\">https://docs.developers.symphony.com/building-bots-on-symphony/datafeed/real-time-events#room-member-demoted-from-owner</a></html>", "$ref": "#/definitions/room-member-demoted-from-owner-event-inner" } }, "required": [ "room-member-demoted-from-owner" ] }, "user-joined-room-event": { "type": "object", "properties": { "user-joined-room": { "description": "Generated when a new user joins or is added to a room of which the workflow bot is a member, including when the user himself joins or is added to a room.", "x-intellij-html-description": "<html><p>Generated when a new user joins or is added to a room of which the workflow bot is a member, including when the user himself joins or is added to a room.</p><a href=\"https://docs.developers.symphony.com/building-bots-on-symphony/datafeed/real-time-events#user-joined-room\">https://docs.developers.symphony.com/building-bots-on-symphony/datafeed/real-time-events#user-joined-room</a></html>", "$ref": "#/definitions/user-joined-room-event-inner" } }, "required": [ "user-joined-room" ] }, "user-left-room-event": { "type": "object", "properties": { "user-left-room": { "description": "Generated when a user leaves or is removed from a room of which the workflow bot is a member, including when the user himself leaves or is removed from a room.", "x-intellij-html-description": "<html><p>Generated when a user leaves or is removed from a room of which the workflow bot is a member, including when the user himself leaves or is removed from a room.</p><a href=\"https://docs.developers.symphony.com/building-bots-on-symphony/datafeed/real-time-events#user-left-room\">https://docs.developers.symphony.com/building-bots-on-symphony/datafeed/real-time-events#user-left-room</a></html>", "$ref": "#/definitions/user-left-room-event-inner" } }, "required": [ "user-left-room" ] }, "user-requested-join-room-event": { "type": "object", "properties": { "user-requested-join-room": { "description": "Generated when a user requests to join a room. Only the user who requested to join the room and the owners of that room will receive this event on their datafeeds.", "x-intellij-html-description": "<html><p>Generated when a user requests to join a room. Only the user who requested to join the room and the owners of that room will receive this event on their datafeeds.</p><a href=\"https://docs.developers.symphony.com/building-bots-on-symphony/datafeed/real-time-events#user-requested-to-join-room\">https://docs.developers.symphony.com/building-bots-on-symphony/datafeed/real-time-events#user-requested-to-join-room</a></html>", "$ref": "#/definitions/user-requested-join-room-event-inner" } }, "required": [ "user-requested-join-room" ] }, "connection-requested-event": { "type": "object", "properties": { "connection-requested": { "description": "Generated when a connection request is sent, either by the workflow bot to another user or to the workflow bot by another user.", "x-intellij-html-description": "<html><p>Generated when a connection request is sent, either:<li>Sent by the workflow bot to another user.</li><li>Sent to the workflow bot by another user.</li></p><a href=\"https://docs.developers.symphony.com/building-bots-on-symphony/datafeed/real-time-events#connection-requested\">https://docs.developers.symphony.com/building-bots-on-symphony/datafeed/real-time-events#connection-requested</a></html>", "$ref": "#/definitions/connection-requested-event-inner" } }, "required": [ "connection-requested" ] }, "connection-accepted-event": { "type": "object", "properties": { "connection-accepted": { "description": "Generated when a connection request is accepted, either sent by the workflow bot and accepted by another user or sent by another user and accepted by the workflow bot.", "x-intellij-html-description": "<html><p>Generated when a connection request is accepted, either:<li>Sent by the workflow bot and accepted by another user.</li><li>Sent by another user and accepted by the workflow bot.</li></p><a href=\"https://docs.developers.symphony.com/building-bots-on-symphony/datafeed/real-time-events#connection-accepted\">https://docs.developers.symphony.com/building-bots-on-symphony/datafeed/real-time-events#connection-accepted</a></html>", "$ref": "#/definitions/connection-accepted-event-inner" } }, "required": [ "connection-accepted" ] }, "activity-expired-event": { "type": "object", "properties": { "activity-expired": { "description": "Generated when the given activity event timeout has expired. Note this is not a Datafeed real-time event.", "$ref": "#/definitions/activity-expired-event-inner" } }, "required": [ "activity-expired" ] }, "activity-failed-event": { "type": "object", "properties": { "activity-failed": { "description": "Generated when the given activity has failed. Note this is not a Datafeed real-time event.", "$ref": "#/definitions/activity-failed-event-inner" } }, "required": [ "activity-failed" ] }, "activity-completed-event": { "type": "object", "properties": { "activity-completed": { "description": "Generated when the given activity is completed. Note this is not a Datafeed real-time event.", "x-intellij-html-description": "<html><p>Generated when the given activity is completed. Note this is not a Datafeed real-time event.</p></html>", "$ref": "#/definitions/activity-completed-event-inner" }, "if": { "type": "string", "pattern": "^\\$\\{.*\\}$" } }, "required": [ "activity-completed" ] }, "all-of-event": { "type": "object", "properties": { "all-of": { "description": "Used to receive all listed events.", "x-intellij-html-description": "Used to receive all listed events.", "type": "array", "items": { "anyOf": [ { "$ref": "#/definitions/form-replied-event" }, { "$ref": "#/definitions/activity-completed-event" }, { "$ref": "#/definitions/activity-failed-event" }, { "$ref": "#/definitions/message-received-event" }, { "$ref": "#/definitions/request-received-event" }, { "$ref": "#/definitions/message-suppressed-event" }, { "$ref": "#/definitions/post-shared-event" }, { "$ref": "#/definitions/im-created-event" }, { "$ref": "#/definitions/room-created-event" }, { "$ref": "#/definitions/room-updated-event" }, { "$ref": "#/definitions/room-deactivated-event" }, { "$ref": "#/definitions/room-reactivated-event" }, { "$ref": "#/definitions/room-member-promoted-to-owner-event" }, { "$ref": "#/definitions/room-member-demoted-from-owner-event" }, { "$ref": "#/definitions/user-joined-room-event" }, { "$ref": "#/definitions/user-left-room-event" }, { "$ref": "#/definitions/user-requested-join-room-event" }, { "$ref": "#/definitions/connection-requested-event" }, { "$ref": "#/definitions/connection-accepted-event" }, { "$ref": "#/definitions/timer-fired-event" } ] } } }, "additionalProperties": true, "required": [ "all-of" ] }, "one-of-event": { "type": "object", "properties": { "one-of": { "description": "Used to receive at least one of the listed events.", "x-intellij-html-description": "Used to receive at least one of the listed events.", "type": "array", "items": { "oneOf": [ { "$ref": "#/definitions/form-replied-event" }, { "$ref": "#/definitions/activity-expired-event" }, { "$ref": "#/definitions/activity-completed-event" }, { "$ref": "#/definitions/activity-failed-event" }, { "$ref": "#/definitions/message-received-event" }, { "$ref": "#/definitions/request-received-event" }, { "$ref": "#/definitions/message-suppressed-event" }, { "$ref": "#/definitions/post-shared-event" }, { "$ref": "#/definitions/im-created-event" }, { "$ref": "#/definitions/room-created-event" }, { "$ref": "#/definitions/room-updated-event" }, { "$ref": "#/definitions/room-deactivated-event" }, { "$ref": "#/definitions/room-reactivated-event" }, { "$ref": "#/definitions/room-member-promoted-to-owner-event" }, { "$ref": "#/definitions/room-member-demoted-from-owner-event" }, { "$ref": "#/definitions/user-joined-room-event" }, { "$ref": "#/definitions/user-left-room-event" }, { "$ref": "#/definitions/user-requested-join-room-event" }, { "$ref": "#/definitions/connection-requested-event" }, { "$ref": "#/definitions/connection-accepted-event" }, { "$ref": "#/definitions/timer-fired-event" } ] } } }, "additionalProperties": true, "required": [ "one-of" ] }, "timer-fired-event": { "type": "object", "properties": { "timer-fired": { "description": "Timer based event. It is either triggered at a given point in time using the keyword \"at\" or repeated using the keyword \"repeat\". Note this is not a Datafeed real-time event.", "x-intellij-html-description": "<html><p>Timer based event. It is either triggered at: <li>a given point in time using the keyword <i>\"at\"</i>.</li><li>repeated using the keyword <i>\"repeat\"</i>.</li> Note this is not a Datafeed real-time event.</p></html>", "$ref": "#/definitions/timer-fired-event-inner" } }, "additionalProperties": false, "required": [ "timer-fired" ] }, "repeat": { "properties": { "repeat": { "description": "ISO 8601 repeating intervals to repeat the current activity.", "type": "string", "default": "R/PT0.1S" } }, "required": [ "repeat" ] }, "at": { "properties": { "at": { "description": "ISO 8601 date representing a point in time when the current activity should be executed.", "type": "string", "default": "2021-08-31T-15:50:00" } }, "required": [ "at" ] }, "timer-fired-event-inner": { "type": "object", "oneOf": [ { "$ref": "#/definitions/repeat" }, { "$ref": "#/definitions/at" } ] }, "form-replied-event-inner": { "type": "object", "properties": { "form-id": { "description": "Form's id. The id should be the same as activity's one that sent the form.", "type": "string" }, "exclusive": { "description": "True if only one reply is expected to the form. Default is false", "default": false, "type": "boolean" } }, "required": [ "form-id" ] }, "message-received-event-inner": { "type": "object", "additionalProperties": false, "properties": { "content": { "description": "Message content to listen to.", "type": "string" }, "requires-bot-mention": { "description": "If true, the event is only triggered if the bot is mentioned.", "type": "boolean", "default": false }, "id": { "description": "Event's identifier, should be unique across workflow. As it can be used as a variable identifier only alphanumerical characters are allowed.", "type": "string", "pattern": "^(?!variables$)([a-zA-Z][a-zA-Z0-9_]+)$" } } }, "request-received-event-inner": { "type": "object", "additionalProperties": false, "properties": { "token": { "description": "Token to authorize incoming http requests.", "type": "string", "minLength": 1 }, "id": { "description": "Event's identifier, should be unique across workflow. As it can be used as a variable identifier only alphanumerical characters are allowed.", "type": "string", "pattern": "^(?!variables$)([a-zA-Z][a-zA-Z0-9_]+)$" } }, "required": [ "token" ] }, "message-suppressed-event-inner": { "type": "object", "properties": { } }, "post-shared-event-inner": { "type": "object", "properties": { } }, "im-created-event-inner": { "type": "object", "properties": { } }, "room-created-event-inner": { "type": "object", "properties": { } }, "room-updated-event-inner": { "type": "object", "properties": { } }, "room-deactivated-event-inner": { "type": "object", "properties": { } }, "room-reactivated-event-inner": { "type": "object", "properties": { } }, "room-member-promoted-to-owner-event-inner": { "type": "object", "properties": { "id": { "description": "Event's identifier, should be unique across workflow. As it can be used as a variable identifier only alphanumerical characters are allowed.", "type": "string", "pattern": "^(?!variables$)([a-zA-Z][a-zA-Z0-9_]+)$" } } }, "room-member-demoted-from-owner-event-inner": { "type": "object", "properties": { } }, "user-joined-room-event-inner": { "type": "object", "properties": { "id": { "description": "Event's identifier, should be unique across workflow. As it can be used as a variable identifier only alphanumerical characters are allowed.", "type": "string", "pattern": "^(?!variables$)([a-zA-Z][a-zA-Z0-9_]+)$" } } }, "user-left-room-event-inner": { "type": "object", "properties": { "id": { "description": "Event's identifier, should be unique across workflow. As it can be used as a variable identifier only alphanumerical characters are allowed.", "type": "string", "pattern": "^(?!variables$)([a-zA-Z][a-zA-Z0-9_]+)$" } } }, "user-requested-join-room-event-inner": { "type": "object", "properties": { } }, "connection-requested-event-inner": { "type": "object", "properties": { } }, "connection-accepted-event-inner": { "type": "object", "properties": { } }, "activity-expired-event-inner": { "type": "object", "properties": { "activity-id": { "description": "The expiring activity triggering this event.", "$ref": "#/definitions/id" } }, "required": [ "activity-id" ] }, "activity-failed-event-inner": { "type": "object", "properties": { "activity-id": { "description": "The failing activity triggering this event.", "$ref": "#/definitions/id" } }, "required": [ "activity-id" ] }, "activity-completed-event-inner": { "type": "object", "properties": { "activity-id": { "description": "The completed (without errors) activity triggering this event.", "$ref": "#/definitions/id" }, "id": { "description": "Event's identifier, should be unique across workflow. As it can be used as a variable identifier only alphanumerical characters are allowed.", "type": "string", "pattern": "^(?!variables$)([a-zA-Z][a-zA-Z0-9_]+)$" } }, "required": [ "activity-id" ] }, "basic-activity-inner": { "type": "object", "description": "Inner property having common properties for every activity.", "properties": { "id": { "description": "Activity's identifier, should be unique across workflow. As it can be used as a variable identifier only alphanumerical characters are allowed.", "type": "string", "$comment": "variables is forbidden to avoid conflict with variables.output... that would override the workflows variables", "pattern": "^(?!variables$)([a-zA-Z][a-zA-Z0-9_]+)$" }, "on": { "$ref": "#/definitions/on" }, "if": { "description": "Conditional execution of the activity based on a boolean expression.", "type": "string" }, "else": { "description": "Default execution of the activity when if conditions are used for previous activities.", "type": "object" } }, "required": [ "id" ] }, "room-name": { "anyOf": [ { "enum": [ "${ACTIVITY_ID.outputs.room.roomAttributes.name}", "${ACTIVITY_ID.outputs.stream.roomAttributes.name}", "${variables.VARIABLE_NAME}" ] }, { "description": "Room's name. Room names will be considered the same if they only differ in capitalization and whitespace. E.g. \"room1\" and \"R O O M 1\" are considered the same. Also, room names must be shorter than 50 characters.", "type": "string", "maxLength": 50 } ] }, "room-description": { "anyOf": [ { "enum": [ "${ACTIVITY_ID.outputs.room.roomAttributes.description}", "${variables.VARIABLE_NAME}" ] }, { "description": "Room's description.", "type": "string" } ] }, "keywords": { "description": "A list of key-value pairs, describing additional properties of the room.", "oneOf": [ { "type": "object" }, { "type": "string", "minLength": 1 }, { "enum": [ "${variables.VARIABLE_NAME}" ] } ] }, "members-can-invite": { "description": "If true, any chat room participant can add new participants. If false, only owners can add new participants.", "type": [ "boolean", "string" ], "default": false }, "discoverable": { "description": "If true, this chat room (name, description and messages) non-participants can search for this room. If false, only participants can search for this room.", "type": [ "boolean", "string" ], "default": false }, "public": { "description": "If true, this is a public chatroom. If false, a private chatroom.\nNote: Once this value is set for a room, it is read-only and can’t be updated.", "x-intellij-html-description": "<html><p>If true, this is a public chatroom. If false, a private chatroom.<br/><i>Note: Once this value is set for a room, it is read-only and can’t be updated.</i></p></html>", "type": [ "boolean", "string" ], "default": false }, "read-only": { "type": [ "boolean", "string" ], "description": "If true, only stream owners can send messages.\nNote: Once this value is set for a room, it is read-only and can’t be updated.", "x-intellij-html-description": "<html><p>If true, only stream owners can send messages.<br/><i>Note: Once this value is set for a room, it is read-only and can’t be updated.</i></p></html>", "default": false }, "copy-protected": { "type": [ "boolean", "string" ], "description": "If true, users cannot copy content from this room.\nNote: Once this value is set to true for a room, it is read-only and can’t be updated.", "x-intellij-html-description": "<html><p>If true, users cannot copy content from this room.<br/><i>Note: Once this value is set to true for a room, it is read-only and can’t be updated.</i></p></html>", "default": false }, "cross-pod": { "type": [ "boolean", "string" ], "description": "If true, this room is a cross-pod room.", "default": false }, "view-history": { "type": [ "boolean", "string" ], "description": "If true, new members can view the room chat history of the room.", "default": false }, "multilateral-room": { "type": [ "boolean", "string" ], "description": "If true, this is a multilateral room where users belonging to more than 2 companies can be found.", "default": false }, "active": { "type": [ "boolean", "string" ], "description": "If false, the room is not active anymore.", "default": false }, "sub-type": { "type": "string", "enum": [ "EMAIL" ] }, "create-room-inner": { "type": "object", "properties": { "room-name": { "$ref": "#/definitions/room-name" }, "room-description": { "$ref": "#/definitions/room-description" }, "public": { "$ref": "#/definitions/public" }, "user-ids": { "$ref": "#/definitions/user-ids-inner" }, "keywords": { "$ref": "#/definitions/keywords" }, "members-can-invite": { "$ref": "#/definitions/members-can-invite" }, "discoverable": { "$ref": "#/definitions/discoverable" }, "read-only": { "$ref": "#/definitions/read-only" }, "copy-protected": { "$ref": "#/definitions/copy-protected" }, "cross-pod": { "$ref": "#/definitions/cross-pod" }, "view-history": { "$ref": "#/definitions/view-history" }, "multilateral-room": { "$ref": "#/definitions/multilateral-room" }, "sub-type": { "$ref": "#/definitions/sub-type" }, "obo": { "description": "Defines whether the activity will be executed on behalf of a user and the user on whose behalf the call will be made", "$ref": "#/definitions/obo-inner" } }, "anyOf": [ { "required": [ "room-name", "room-description" ] }, { "required": [ "user-ids" ] } ] }, "update-room-inner": { "type": "object", "required": [ "stream-id" ], "properties": { "stream-id": { "description": "Stream's id to update.", "$ref": "#/definitions/stream-id-inner" }, "room-name": { "$ref": "#/definitions/room-name" }, "room-description": { "$ref": "#/definitions/room-description" }, "keywords": { "$ref": "#/definitions/keywords" }, "members-can-invite": { "$ref": "#/definitions/members-can-invite" }, "discoverable": { "$ref": "#/definitions/discoverable" }, "public": { "$ref": "#/definitions/public" }, "read-only": { "$ref": "#/definitions/read-only" }, "copy-protected": { "$ref": "#/definitions/copy-protected" }, "cross-pod": { "$ref": "#/definitions/cross-pod" }, "view-history": { "$ref": "#/definitions/view-history" }, "multilateral-room": { "$ref": "#/definitions/multilateral-room" }, "active": { "$ref": "#/definitions/active" }, "obo": { "description": "Defines whether the activity will be executed on behalf of a user and the user on whose behalf the call will be made", "$ref": "#/definitions/obo-inner" } } }, "add-room-member-inner": { "type": "object", "properties": { "stream-id": { "description": "Stream id where to add user(s).", "$ref": "#/definitions/stream-id-inner" }, "user-ids": { "description": "User ids to add to the room.", "$ref": "#/definitions/user-ids-inner" }, "obo": { "description": "Defines whether the activity will be executed on behalf of a user and the user on whose behalf the call will be made", "$ref": "#/definitions/obo-inner" } }, "required": [ "stream-id", "user-ids" ] }, "remove-room-member-inner": { "type": "object", "properties": { "stream-id": { "description": "Stream id where to remove user(s).", "$ref": "#/definitions/stream-id-inner" }, "user-ids": { "description": "User ids to remove from the room.", "$ref": "#/definitions/user-ids-inner" }, "obo": { "description": "Defines whether the activity will be executed on behalf of a user and the user on whose behalf the call will be made", "$ref": "#/definitions/obo-inner" } }, "required": [ "stream-id", "user-ids" ] }, "promote-room-owner-inner": { "type": "object", "properties": { "stream-id": { "description": "Stream id where to promote user.", "$ref": "#/definitions/stream-id-inner" }, "user-ids": { "description": "User ids to promote in the room.", "$ref": "#/definitions/user-ids-inner" }, "obo": { "description": "Defines whether the activity will be executed on behalf of a user and the user on whose behalf the call will be made", "$ref": "#/definitions/obo-inner" } }, "required": [ "stream-id", "user-ids" ] }, "demote-room-owner-inner": { "type": "object", "properties": { "stream-id": { "description": "Stream id where to demote user.", "$ref": "#/definitions/stream-id-inner" }, "user-ids": { "description": "User ids to demote in the room.", "$ref": "#/definitions/user-ids-inner" }, "obo": { "description": "Defines whether the activity will be executed on behalf of a user and the user on whose behalf the call will be made", "$ref": "#/definitions/obo-inner" } }, "required": [ "stream-id", "user-ids" ] }, "send-message-inner": { "type": "object", "properties": { "to": { "description": "The recipient (conversation, IM, MIM or chatroom) in which the message should be posted.", "$ref": "#/definitions/to" }, "content": { "$ref": "#/definitions/content-inner" }, "data": { "description": "Message data, which is a Json string and sent along with message.", "type": "string" }, "attachments": { "description": "One or more attachments to be sent along with the message.", "type": "array", "items": { "$ref": "#/definitions/attachment" } }, "obo": { "description": "Defines whether the activity will be executed on behalf of a user and the user on whose behalf the call will be made", "$ref": "#/definitions/obo-inner" } }, "required": [ "content" ] }, "update-message-inner": { "type": "object", "properties": { "content": { "$ref": "#/definitions/content-inner" }, "message-id": { "$ref": "#/definitions/message-id-inner" }, "silent": { "type": [ "boolean", "string" ], "description": "If enabled, the new updated message is marked as read, otherwise is unread", "default": true } }, "required": [ "content", "message-id" ] }, "pin-message-inner": { "type": "object", "properties": { "message-id": { "$ref": "#/definitions/message-id-inner" }, "obo": { "description": "Defines whether the activity will be executed on behalf of a user and the user on whose behalf the call will be made", "$ref": "#/definitions/obo-inner" } }, "required": [ "message-id" ] }, "unpin-message-inner": { "type": "object", "properties": { "stream-id": { "$ref": "#/definitions/stream-id-inner" }, "obo": { "description": "Defines whether the activity will be executed on behalf of a user and the user on whose behalf the call will be made", "$ref": "#/definitions/obo-inner" } }, "required": [ "stream-id" ] }, "get-attachment-inner": { "type": "object", "properties": { "message-id": { "$ref": "#/definitions/message-id-inner" }, "attachment-id": { "$ref": "#/definitions/single-attachment" } }, "required": [ "message-id", "attachment-id" ] }, "execute-script-inner": { "type": "object", "required": [ "script" ], "properties": { "script": { "type": "string", "description": "Script to execute (only Groovy is supported)", "x-intellij-language-injection": "Groovy" } } }, "execute-request-inner": { "type": "object", "properties": { "url": { "type": "string", "description": "Contains the host and the path to be targeted", "minLength": 1 }, "encode-query-params": { "type": [ "boolean", "string" ], "description": "If enabled, the query parameters will be encoded in application/x-www-form-urlencoded", "default": true }, "method": { "type": "string", "description": "HTTP method to perform", "default": "GET", "enum": [ "GET", "POST", "PUT", "DELETE", "PATCH", "HEAD", "OPTIONS" ] }, "body": { "oneOf": [ { "type": "string", "description": "HTTP request body", "$comment": "String format is required for all content types except multipart/form-data" }, { "type": "object", "description": "HTTP request body", "$comment": "Object format is required for multipart/form-data content type" } ] }, "headers": { "type": "object", "description": "HTTP request headers" } }, "required": [ "url" ] }, "email": { "description": "Email address, must be unique", "$comment": "Variable or email regex is accepted.", "anyOf": [ { "enum": [ "${variables.VARIABLE_NAME}", "${ACTIVITY_ID.outputs.user.userAttributes.emailAddress}" ] }, { "type": "string", "pattern": "([$][{].+})|(?:[a-z0-9!#$%&'*+/=?^_`{|}~-]+(?:\\.[a-z0-9!#$%&'*+/=?^_`{|}~-]+)*|\"(?:[\\x01-\\x08\\x0b\\x0c\\x0e-\\x1f\\x21\\x23-\\x5b\\x5d-\\x7f]|\\\\[\\x01-\\x09\\x0b\\x0c\\x0e-\\x7f])*\")@(?:(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\\.)+[a-z0-9](?:[a-z0-9-]*[a-z0-9])?|\\[(?:(?:(2(5[0-5]|[0-4][0-9])|1[0-9][0-9]|[1-9]?[0-9]))\\.){3}(?:(2(5[0-5]|[0-4][0-9])|1[0-9][0-9]|[1-9]?[0-9])|[a-z0-9-]*[a-z0-9]:(?:[\\x01-\\x08\\x0b\\x0c\\x0e-\\x1f\\x21-\\x5a\\x53-\\x7f]|\\\\[\\x01-\\x09\\x0b\\x0c\\x0e-\\x7f])+)\\])" } ] }, "name": { "anyOf": [ { "enum": [ "${variables.VARIABLE_NAME}", "${ACTIVITY_ID.outputs.user.userAttributes.firstName}", "${ACTIVITY_ID.outputs.user.userAttributes.lastName}", "${ACTIVITY_ID.outputs.user.userAttributes.userName}", "${ACTIVITY_ID.outputs.user.userAttributes.displayName}" ] }, { "type": "string", "minLength": 1 } ] }, "phoneNumber": { "description": "The user's work phone number.", "anyOf": [ { "enum": [ "${variables.VARIABLE_NAME}", "${ACTIVITY_ID.outputs.user.userAttributes.workPhoneNumber}", "${ACTIVITY_ID.outputs.user.userAttributes.mobilePhoneNumber}", "${ACTIVITY_ID.outputs.user.userAttributes.twoFactorAuthPhone}" ] }, { "type": "string", "pattern": "^[0-9]*$|^\\+[0-9]*$" } ] }, "business": { "type": "object", "description": "Business information", "additionalProperties": false, "properties": { "company-name": { "type": "string", "description": "The user's company name.\nIf not specified, it is set with the default company name." }, "department": { "type": "string", "description": "The user's department." }, "division": { "type": "string", "description": "The user's division." }, "title": { "type": "string", "description": "The user's title." }, "location": { "type": "string", "description": "The user's location." }, "job-function": { "type": "string", "description": "The user's job function.", "enum": [ "Analyst", "Other", "Business Development Executive", "Corporate Access", "Developer", "Director", "Economist", "Portfolio Manager", "Project Manager", "Research Analyst", "Sales", "Strategist", "Trader" ] }, "asset-classes": { "description": "The user's asset classes (one or more).", "oneOf": [ { "type": "array", "uniqueItems": true, "items": { "type": "string", "enum": [ "Equities", "Cash Equities", "Securities Lending", "Fixed Income", "Government Bonds", "Prime Brokerage", "Commodities", "Municipal Bonds", "Currencies", "Corporate Bonds" ] } }, { "type": "string", "minLength": 1, "pattern": "^\\$\\{.*\\}$" }, { "enum": [ "${variables.VARIABLE_NAME}" ] } ] }, "industries": { "description": "The user's job industries (one or more).", "oneOf": [ { "type": "array", "uniqueItems": true, "items": { "type": "string", "enum": [ "Healthcare", "Consumer Non-Cyclicals", "Transportation", "Technology", "Real Estate", "Basic Materials", "Financials", "Energy & Utilities", "Conglomerates", "Consumer Cyclicals", "Services" ] } }, { "type": "string", "minLength": 1, "pattern": "^\\$\\{.*\\}$" }, { "enum": [ "${variables.VARIABLE_NAME}" ] } ] }, "functions": { "description": "The user's job functions (one or more).", "oneOf": [ { "type": "array", "uniqueItems": true, "items": { "type": "string", "enum": [ "Collateral", "Confirmation", "Trade Processing", "Pre-Matching", "Margin", "Matching", "Claims Processing", "Middle Office", "Liquidity Management", "Allocation", "Trade Management", "Regulatory Outreach", "Settlements", "Post Trade Management" ] } }, { "type": "string", "minLength": 1, "pattern": "^\\$\\{.*\\}$" }, { "enum": [ "${variables.VARIABLE_NAME}" ] } ] }, "market-coverages": { "description": "The user's market coverage (one or more).", "oneOf": [ { "type": "array", "uniqueItems": true, "items": { "type": "string", "enum": [ "EMEA", "NA", "APAC", "LATAM" ] } }, { "type": "string", "minLength": 1, "pattern": "^\\$\\{.*\\}$" }, { "enum": [ "${variables.VARIABLE_NAME}" ] } ] }, "responsibilities": { "description": "The user's responsibilities (one or more).", "oneOf": [ { "type": "array", "uniqueItems": true, "items": { "type": "string", "enum": [ "BAU", "Escalation" ] } }, { "type": "string", "minLength": 1, "pattern": "^\\$\\{.*\\}$" }, { "enum": [ "${variables.VARIABLE_NAME}" ] } ] }, "instruments": { "description": "The user's instruments (one or more).", "oneOf": [ { "type": "array", "uniqueItems": true, "items": { "type": "string", "enum": [ "Securities", "Fixed Income", "Equities" ] } }, { "type": "string", "minLength": 1, "pattern": "^\\$\\{.*\\}$" }, { "enum": [ "${variables.VARIABLE_NAME}" ] } ] } } }, "create-user-inner": { "type": "object", "properties": { "email": { "description": "Email address, must be unique.", "$ref": "#/definitions/email" }, "firstname": { "description": "User's first name.", "$ref": "#/definitions/name" }, "lastname": { "description": "User's last name.", "$ref": "#/definitions/name" }, "username": { "description": "Unique identifier for the user.", "$ref": "#/definitions/name" }, "display-name": { "description": "User's display name.", "$ref": "#/definitions/name" }, "recommended-language": { "type": "string", "description": "The recommended language. As an ISO 639-1 code.", "default": "en-US" }, "contact": { "type": "object", "description": "Contact information", "additionalProperties": false, "properties": { "work-phone-number": { "description": "User's work phone number.", "$ref": "#/definitions/phoneNumber" }, "mobile-phone-number": { "description": "User's mobile phone number.", "$ref": "#/definitions/phoneNumber" }, "two-factor-auth-number": { "description": "User's two factor auth number.", "$ref": "#/definitions/phoneNumber" }, "sms-number": { "description": "User's sms phone number.", "$ref": "#/definitions/phoneNumber" } } }, "business": { "description": "User's business information.", "$ref": "#/definitions/business" }, "password": { "type": "object", "description": "User's password. The password object is optional for end-user accounts (NORMAL). For example, if your organization utilizes SSO, you may not want to specify the password.", "additionalProperties": false, "required": [ "hashed-password", "hashed-salt" ], "properties": { "hashed-password": { "description": "A base64-encoded string. The hashed password. This is the hashed version of the password the user would use to login.", "type": "string", "minLength": 1 }, "hashed-salt": { "description": "A base64-encoded string. The salt used for hashing the hPassword.", "type": "string", "minLength": 1 }, "hashed-km-password": { "description": "A base64-encoded string. The hashed password to be used for authenticating to the key manager.", "type": "string", "minLength": 1 }, "hashed-km-salt": { "description": "A base64-encoded string. The salt used for hashing the khPassword.", "type": "string", "minLength": 1 } } }, "roles": { "description": "The roles object consists of the following possibilities:\nFor end-user accounts: INDIVIDUAL, ADMINISTRATOR, SUPER_ADMINISTRATOR, L1_SUPPORT, L2_SUPPORT, COMPLIANCE_OFFICER, SUPER_COMPLIANCE_OFFICER\nFor service accounts: INDIVIDUAL, USER_PROVISIONING, SCOPE_MANAGEMENT, CONTENT_MANAGEMENT, MALWARE_SCAN_MANAGER, MALWARE_SCAN_STATE_USER, AUDIT_TRAIL_MANAGEMENT", "x-intellij-html-description": "<html><p>The roles object consists of the following possibilities:<li>For end-user accounts: INDIVIDUAL, ADMINISTRATOR, SUPER_ADMINISTRATOR, L1_SUPPORT, L2_SUPPORT, COMPLIANCE_OFFICER, SUPER_COMPLIANCE_OFFICER</li><li>For service accounts: INDIVIDUAL, USER_PROVISIONING, SCOPE_MANAGEMENT, CONTENT_MANAGEMENT, MALWARE_SCAN_MANAGER, MALWARE_SCAN_STATE_USER, AUDIT_TRAIL_MANAGEMENT</li><br/><a href=\"https://developers.symphony.com/restapi/reference#roles-object\">https://developers.symphony.com/restapi/reference#roles-object</a></p></html>", "$ref": "#/definitions/roles-inner" }, "entitlements": { "description": "User entitlements.", "$ref": "#/definitions/entitlements-inner" }, "status": { "type": "string", "description": "User status: ENABLED or DISABLED.", "enum": [ "ENABLED", "DISABLED" ] } } }, "create-system-user-inner": { "type": "object", "properties": { "email": { "description": "Email address, must be unique", "$ref": "#/definitions/email" }, "username": { "description": "User's username.", "$ref": "#/definitions/name" }, "display-name": { "description": "User's display name.", "$ref": "#/definitions/name" }, "business": { "description": "User's business information.", "$ref": "#/definitions/business" }, "keys": { "type": "object", "description": "For SYSTEM users, to set up the RSA keys for authentication.", "properties": { "current": { "$ref": "#/definitions/key-inner" }, "previous": { "$ref": "#/definitions/key-inner" } } }, "roles": { "description": "The roles object consists of the following possibilities:\nFor end-user accounts: INDIVIDUAL, ADMINISTRATOR, SUPER_ADMINISTRATOR, L1_SUPPORT, L2_SUPPORT, COMPLIANCE_OFFICER, SUPER_COMPLIANCE_OFFICER\nFor service accounts: INDIVIDUAL, USER_PROVISIONING, SCOPE_MANAGEMENT, CONTENT_MANAGEMENT, MALWARE_SCAN_MANAGER, MALWARE_SCAN_STATE_USER, AUDIT_TRAIL_MANAGEMENT", "x-intellij-html-description": "<html><p>The roles object consists of the following possibilities:<li>For end-user accounts: INDIVIDUAL, ADMINISTRATOR, SUPER_ADMINISTRATOR, L1_SUPPORT, L2_SUPPORT, COMPLIANCE_OFFICER, SUPER_COMPLIANCE_OFFICER</li><li>For service accounts: INDIVIDUAL, USER_PROVISIONING, SCOPE_MANAGEMENT, CONTENT_MANAGEMENT, MALWARE_SCAN_MANAGER, MALWARE_SCAN_STATE_USER, AUDIT_TRAIL_MANAGEMENT</li><br/><a href=\"https://developers.symphony.com/restapi/reference#roles-object\">https://developers.symphony.com/restapi/reference#roles-object</a></p></html>", "$ref": "#/definitions/roles-inner" }, "entitlements": { "description": "User entitlements.", "$ref": "#/definitions/entitlements-inner" }, "status": { "type": "string", "description": "User status: ENABLED or DISABLED.", "enum": [ "ENABLED", "DISABLED" ] } } }, "key-inner": { "type": "object", "additionalProperties": false, "properties": { "action": { "description": "A string indicating the action to be performed on the user's RSA.\n\nThe following actions can be performed on the user's active RSA key:\nSAVE\nREVOKE.\n\nThe following actions can be performed onto the user's rotated RSA key:\nREVOKE\nEXTEND.", "type": "string", "enum": [ "SAVE", "EXTEND", "REVOKE" ] }, "key": { "description": "A string containing the user's RSA public key. The key must be 4096 bits. Only PKCS8 format is allowed.", "type": "string", "minLength": 1 }, "expiration": { "description": "An ISO 8601 timestamp containing the RSA key expiration date. This value is only set for rotated keys.", "type": "string", "minLength": 1 } } }, "entitlements-inner": { "description": "Feature entitlements to configure for the user.", "oneOf": [ { "type": "object", "properties": { "postReadEnabled": { "type": [ "boolean", "string" ], "description": "Allows the user to read wall posts." }, "postWriteEnabled": { "type": [ "boolean", "string" ], "description": "Allows the user to write wall posts." }, "delegatesEnabled": { "type": [ "boolean", "string" ], "description": "Allows the user to have delegates." }, "isExternalIMEnabled": { "type": [ "boolean", "string" ], "description": "Allows the user to chat in external IM/MIMs." }, "canShareFilesExternally": { "type": [ "boolean", "string" ], "description": "Allows the user to share files externally." }, "canCreatePublicRoom": { "type": [ "boolean", "string" ], "description": "Allows the user to create internal public rooms." }, "canUpdateAvatar": { "type": [ "boolean", "string" ], "description": "Allows the user to edit profile picture." }, "isExternalRoomEnabled": { "type": [ "boolean", "string" ], "description": "Allows the user to chat in private external rooms." }, "canCreatePushedSignals": { "type": [ "boolean", "string" ], "description": "Allows the user to create push signals." }, "canUseCompactMode": { "type": [ "boolean", "string" ], "description": "Enables Lite Mode." }, "mustBeRecorded": { "type": [ "boolean", "string" ], "description": "Must be recorded in meetings." }, "sendFilesEnabled": { "type": [ "boolean", "string" ], "description": "Allows the user to send files internally." }, "canUseInternalAudio": { "type": [ "boolean", "string" ], "description": "Allows the user to use audio in internal Meetings." }, "canUseInternalVideo": { "type": [ "boolean", "string" ], "description": "Allows the user to use video in internal Meetings." }, "canProjectInternalScreenShare": { "type": [ "boolean", "string" ], "description": "Allows the user to share screens in internal Meetings." }, "canViewInternalScreenShare": { "type": [ "boolean", "string" ], "description": "Allows the user to view shared screens in internal Meetings." }, "canCreateMultiLateralRoom": { "type": [ "boolean", "string" ], "description": "Allows the user to create multi-lateral room." }, "canJoinMultiLateralRoom": { "type": [ "boolean", "string" ], "description": "Allows the user to join multi-lateral room." }, "canUseFirehose": { "type": [ "boolean", "string" ], "description": "Allows the user to use Firehose." }, "canUseInternalAudioMobile": { "type": [ "boolean", "string" ], "description": "Allows the user to use audio in internal meetings on mobile." }, "canUseInternalVideoMobile": { "type": [ "boolean", "string" ], "description": "Allows the user to use video in internal meetings on mobile." }, "canProjectInternalScreenShareMobile": { "type": [ "boolean", "string" ], "description": "Allows the user to share screens in internal meetings on mobile." }, "canViewInternalScreenShareMobile": { "type": [ "boolean", "string" ], "description": "Allows the user to view shared screens in internal meetings on mobile." }, "canManageSignalSubscription": { "type": [ "boolean", "string" ], "description": "Allows the user to manage signal subscriptions." }, "canCreateDatahose": { "type": [ "boolean", "string" ], "description": "Can create datahose feeds." }, "canIntegrateEmail": { "type": [ "boolean", "string" ], "description": "Can integrate email service." }, "canReadDatahose": { "type": [ "boolean", "string" ], "description": "Can read from datahose feeds." }, "canSuppressMessage": { "type": [ "boolean", "string" ], "description": "Can suppress own messages." }, "canSwitchToClient20": { "type": [ "boolean", "string" ], "description": "Can switch to Client 2.0 experience." }, "canUpdateRoomHistoryProperty": { "type": [ "boolean", "string" ], "description": "Can Toggle Room's Share History Property." }, "canUseEncryptAPI": { "type": [ "boolean", "string" ], "description": "Allow user to use Agent Encrypt endpoints." }, "enableSwiftSearch": { "type": [ "boolean", "string" ], "description": "Can Use Swift Search." }, "sdaDevtoolsEnabled": { "type": [ "boolean", "string" ], "description": "Enable Developer Tools for SDA." }, "sdaPermissionsFullScreen": { "type": [ "boolean", "string" ], "description": "Enable Full screen access on SDA." }, "sdaPermissionsGeoLocation": { "type": [ "boolean", "string" ], "description": "Enable location access on SDA." }, "sdaPermissionsMedia": { "type": [ "boolean", "string" ], "description": "Enable Media access on SDA." }, "sdaPermissionsMidiSysex": { "type": [ "boolean", "string" ], "description": "Enable access to MIDI Sysex on SDA." }, "sdaPermissionsNotifications": { "type": [ "boolean", "string" ], "description": "Allow notifications on SDA." }, "sdaPermissionsOpenExternalApp": { "type": [ "boolean", "string" ], "description": "Allow Opening External Apps from SDA." }, "sdaPermissionsPointerLock": { "type": [ "boolean", "string" ], "description": "Enable Pointer Lock on SDA." } } }, { "type": "string", "minLength": 1 }, { "enum": [ "${variables.VARIABLE_NAME}" ] } ] }, "roles-inner": { "description": "The roles object consists of the following possibilities:\nFor end-user accounts: INDIVIDUAL, ADMINISTRATOR, SUPER_ADMINISTRATOR, L1_SUPPORT, L2_SUPPORT, COMPLIANCE_OFFICER, SUPER_COMPLIANCE_OFFICER\nFor service accounts: INDIVIDUAL, USER_PROVISIONING, SCOPE_MANAGEMENT, CONTENT_MANAGEMENT, MALWARE_SCAN_MANAGER, MALWARE_SCAN_STATE_USER, AUDIT_TRAIL_MANAGEMENT", "x-intellij-html-description": "<html><p>The roles object consists of the following possibilities:<li>For end-user accounts: INDIVIDUAL, ADMINISTRATOR, SUPER_ADMINISTRATOR, L1_SUPPORT, L2_SUPPORT, COMPLIANCE_OFFICER, SUPER_COMPLIANCE_OFFICER</li><li>For service accounts: INDIVIDUAL, USER_PROVISIONING, SCOPE_MANAGEMENT, CONTENT_MANAGEMENT, MALWARE_SCAN_MANAGER, MALWARE_SCAN_STATE_USER, AUDIT_TRAIL_MANAGEMENT</li><br/><a href=\"https://developers.symphony.com/restapi/reference#roles-object\">https://developers.symphony.com/restapi/reference#roles-object</a></p></html>", "oneOf": [ { "type": "array", "uniqueItems": true, "items": { "type": "string", "enum": [ "INDIVIDUAL", "ADMINISTRATOR", "SUPER_ADMINISTRATOR", "L1_SUPPORT", "L2_SUPPORT", "COMPLIANCE_OFFICER", "SUPER_COMPLIANCE_OFFICER", "USER_PROVISIONING", "SCOPE_MANAGEMENT", "CONTENT_MANAGEMENT", "MALWARE_SCAN_MANAGER", "MALWARE_SCAN_STATE_USER", "AUDIT_TRAIL_MANAGEMENT", "AGENT", "CONTENT_EXPORT_SERVICE", "SYMPHONY_ADMIN", "KEY_MANAGER", "EF_POLICY_MANAGEMENT", "CEP_VISIBILITY_GROUP_MANAGEMENT" ] } }, { "type": "string", "minLength": 1, "pattern": "^\\$\\{.*\\}$" }, { "enum": [ "${variables.VARIABLE_NAME}" ] } ] }, "user-role-inner": { "type": "object", "properties": { "user-ids": { "description": "Users to add or remove roles from.", "oneOf": [ { "type": "array", "uniqueItems": true, "minItems": 1, "items": { "type": [ "string", "integer" ], "minLength": 1 } }, { "type": "string", "minLength": 1, "pattern": "^\\$\\{.*\\}$" }, { "enum": [ "${variables.VARIABLE_NAME}" ] } ] }, "roles": { "$ref": "#/definitions/roles-inner" } }, "required": [ "user-ids", "roles" ] }, "get-user-inner": { "type": "object", "properties": { "user-id": { "$ref": "#/definitions/user-id" } }, "required": [ "user-id" ] }, "get-users-inner": { "type": "object", "properties": { "user-ids": { "$ref": "#/definitions/user-ids-inner" }, "emails": { "description": "List of email addresses. Note that for this activity, you can use either the user-ids, the emails or the usernames, but only one at a time, you cannot mix and match them.", "oneOf": [ { "type": "array", "items": { "$ref": "#/definitions/email" }, "minLength": 1 }, { "type": "string", "minLength": 1, "pattern": "^\\$\\{.*\\}$" }, { "enum": [ "${variables.VARIABLE_NAME}" ] } ] }, "usernames": { "description": "List of usernames. If username is specified, local must be set to true. Note that for this activity, you can use either the user-ids, the emails or the usernames, but only one at a time, you cannot mix and match them.", "oneOf": [ { "type": "array", "items": { "$ref": "#/definitions/name" }, "minLength": 1 }, { "type": "string", "minLength": 1, "pattern": "^\\$\\{.*\\}$" }, { "enum": [ "${variables.VARIABLE_NAME}" ] } ] }, "local": { "type": [ "boolean", "string" ], "description": "If true then a local DB search will be performed and only local pod users will be returned. If absent or false then a directory search will be performed and users from other pods who are visible to the calling user will also be returned.", "default": false }, "active": { "type": [ "boolean", "string" ], "description": "If true, it searches for active users only. If false, it searches for inactive users only. If not set, it searches for all users regardless of their status." }, "obo": { "description": "Defines whether the activity will be executed on behalf of a user and the user on whose behalf the call will be made", "$ref": "#/definitions/obo-inner" } }, "oneOf": [ { "required": [ "user-ids" ] }, { "required": [ "emails" ] }, { "required": [ "usernames" ] } ] }, "get-stream-inner": { "properties": { "stream-id": { "$ref": "#/definitions/stream-id-inner" }, "obo": { "description": "Defines whether the activity will be executed on behalf of a user and the user on whose behalf the call will be made", "$ref": "#/definitions/obo-inner" } }, "required": [ "stream-id" ] }, "get-room-inner": { "properties": { "stream-id": { "$ref": "#/definitions/stream-id-inner" }, "obo": { "description": "Defines whether the activity will be executed on behalf of a user and the user on whose behalf the call will be made", "$ref": "#/definitions/obo-inner" } }, "required": [ "stream-id" ] }, "connection-inner": { "type": "object", "properties": { "user-id": { "$ref": "#/definitions/user-id" }, "obo": { "description": "Defines whether the activity will be executed on behalf of a user and the user on whose behalf the call will be made", "$ref": "#/definitions/obo-inner" } }, "required": [ "user-id" ] }, "get-stream-members-inner": { "properties": { "stream-id": { "description": "Id of the stream for which to return members.", "$ref": "#/definitions/stream-id-inner" }, "limit": { "$ref": "#/definitions/limit" }, "skip": { "$ref": "#/definitions/skip" } }, "required": [ "stream-id" ] }, "get-room-members-inner": { "properties": { "stream-id": { "description": "Id of the stream for which to return members.", "$ref": "#/definitions/stream-id-inner" } }, "required": [ "stream-id" ] }, "get-user-streams-inner": { "properties": { "types": { "description": "A list of stream types that will be returned. Options are IM (1-1 instant messages), MIM (multiparty instant messages), ROOM (rooms), POST (the user's wall). For more information, see the streamTypes section below.\nIf not specified, all types of streams are returned.", "oneOf": [ { "type": "array", "items": { "type": "string", "enum": [ "IM", "MIM", "ROOM", "POST" ] } }, { "type": "string", "minLength": 1, "pattern": "^\\$\\{.*\\}$" }, { "enum": [ "${variables.VARIABLE_NAME}" ] } ] }, "include-inactive-streams": { "type": [ "boolean", "string" ], "description": "Whether to include inactive conversations. A chatroom is inactive if it has been deactivated by an owner or admin. An IM or MIM is inactive if one of the participating users has been deactivated by an admin. If not specified, only active streams are returned." }, "limit": { "$ref": "#/definitions/limit" }, "skip": { "$ref": "#/definitions/skip" }, "obo": { "description": "Defines whether the activity will be executed on behalf of a user and the user on whose behalf the call will be made", "$ref": "#/definitions/obo-inner" } }, "dependencies": { "skip": [ "limit" ], "limit": [ "skip" ] } }, "get-message-inner": { "properties": { "message-id": { "description": "The message identifier.", "$ref": "#/definitions/message-id-inner" } }, "required": [ "message-id" ] }, "get-streams-inner": { "properties": { "types": { "description": "A list of stream types that will be returned (IM, MIM, ROOM). If not specified, streams of all types are returned.", "oneOf": [ { "type": "array", "items": { "type": "string", "enum": [ "IM", "MIM", "ROOM" ] } }, { "type": "string", "minLength": 1, "pattern": "^\\$\\{.*\\}$" }, { "enum": [ "${variables.VARIABLE_NAME}" ] } ] }, "scope": { "type": "string", "enum": [ "INTERNAL", "EXTERNAL" ], "description": "The scope of the stream: INTERNAL (restricted to members of the calling user's company) or EXTERNAL (including members of the calling user's company, as well as another firm). If not specified, returns streams of either scope." }, "origin": { "type": "string", "enum": [ "INTERNAL", "EXTERNAL" ], "description": "The origin of the room: INTERNAL (created by a user of the calling user's company) or EXTERNAL (created by a user of another company). If not specified, returns streams of either origin. Only applies to chatrooms with External scope." }, "privacy": { "type": "string", "enum": [ "PRIVATE", "PUBLIC" ], "description": "The privacy setting of the room: PRIVATE (members must be added) or PUBLIC (anyone can join). If not specified, returns both private and public rooms. Only applies to chatrooms with internal scope." }, "status": { "type": "string", "enum": [ "ACTIVE", "INACTIVE" ], "description": "The status of the room: ACTIVE or INACTIVE. If not specified, both active and inactive streams are returned." }, "start-date": { "type": "string", "description": "Restricts result set to rooms that have been modified since this date (ISO 8601). When specified along with end-date, enables the developer to specify rooms modified within a given time range." }, "end-date": { "type": "string", "description": "Restricts result set to rooms that have been modified prior to this date (ISO 8601). When specified along with start-date, enables the developer to specify rooms modified within a given time range." }, "limit": { "$ref": "#/definitions/limit" }, "skip": { "$ref": "#/definitions/skip" } } }, "get-rooms-inner": { "properties": { "query": { "description": "The query which is searched for in room name, description, and optionally keywords. Case-insensitive.", "type": "string", "minLength": 1 }, "labels": { "description": "A list of room keywords whose values will be queried.", "oneOf": [ { "type": "array", "items": { "type": "string" } }, { "type": "string", "minLength": 1, "pattern": "^\\$\\{.*\\}$" }, { "enum": [ "${variables.VARIABLE_NAME}" ] } ] }, "active": { "type": [ "boolean", "string" ], "description": "If true, it restricts the search to active rooms. If false, it restricts the search to inactive rooms. If not specified, it includes both active and inactive rooms. Note that for inactive rooms, only rooms where the calling user is a member will be in the search scope; read the box “Room Search Scope” for further details." }, "private": { "type": [ "boolean", "string" ], "description": "If true, it includes only private rooms in the search results. If false, only public rooms are returned. If not specified, both public and private rooms are returned. Note that for inactive rooms, only discoverable rooms and rooms where the calling user is a member will be in the search scope; read the box “Room Search Scope” for further details." }, "creator-id": { "type": [ "string", "number" ], "description": "If provided, restrict the search to rooms created by the specified user.", "minLength": 1 }, "owner-id": { "type": [ "string", "number" ], "description": "If provided, restrict the search to rooms owned by the specified user.", "minLength": 1 }, "member-id": { "type": [ "string", "number" ], "description": "If provided, restrict the search to rooms where the specified user is a member.", "minLength": 1 }, "sort-order": { "type": "string", "enum": [ "BASIC", "RELEVANCE" ], "description": "Sort algorithm to be used. Supports two values: BASIC (legacy algorithm) and RELEVANCE (enhanced algorithm)." }, "limit": { "$ref": "#/definitions/limit" }, "skip": { "$ref": "#/definitions/skip" }, "obo": { "description": "Defines whether the activity will be executed on behalf of a user and the user on whose behalf the call will be made", "$ref": "#/definitions/obo-inner" } }, "required": [ "query" ] }, "get-messages-inner": { "type": "object", "properties": { "stream-id": { "description": "Stream identifier.", "$ref": "#/definitions/stream-id-inner" }, "since": { "description": "Date, in ISO 8601 format, of the earliest possible data of the first message returned.", "anyOf": [ { "enum": [ "${variables.VARIABLE_NAME}" ] }, { "type": "string", "minLength": 1 } ], "default": "2021-08-31T15:50:00Z" }, "skip": { "$ref": "#/definitions/skip" }, "limit": { "$ref": "#/definitions/limit" } }, "required": [ "stream-id", "since" ] }, "get-connections-inner": { "type": "object", "properties": { "user-ids": { "description": "List of user ids that this activity results will be restricted to their connections.", "$ref": "#/definitions/user-ids-inner" }, "status": { "type": "string", "enum": [ "PENDING_INCOMING", "PENDING_OUTGOING", "ACCEPTED", "REJECTED", "ALL" ] }, "obo": { "description": "Defines whether the activity will be executed on behalf of a user and the user on whose behalf the call will be made", "$ref": "#/definitions/obo-inner" } } }, "create-group-inner": { "type": "object", "properties": { "type": { "type": "string", "description": "Group type identifier (for instance SDL).", "minLength": 1 }, "owner": { "type": "object", "$ref": "#/definitions/group-owner" }, "name": { "type": "string", "description": "Group's name.", "minLength": 1 }, "sub-type": { "type": "string", "description": "The type of the company new groupType.", "enum": [ "COMMUNITY", "CHANNEL" ] }, "referrer": { "type": "string", "description": "Symphony, referring company name, referring channel partner name.", "minLength": 1 }, "members": { "type": "array", "oneOf": [ { "type": "array", "uniqueItems": true, "items": { "$ref": "#/definitions/group-member" } }, { "type": "string", "minLength": 1, "pattern": "^\\$\\{.*\\}$" }, { "enum": [ "${variables.VARIABLE_NAME}" ] } ] }, "profile": { "$ref": "#/definitions/group-profile" } } }, "group-owner": { "type": "object", "required": [ "id", "type" ], "properties": { "id": { "anyOf": [ { "type": [ "string", "integer" ], "minLength": 1 }, { "enum": [ "${variables.VARIABLE_NAME}" ] } ], "description": "Owner id if the owner type is tenant (podId) or user (userId), otherwise null." }, "type": { "type": "string", "default": "TENANT", "description": "Owner type. Only TENANT supported now.", "enum": [ "TENANT", "PLATFORM", "USER" ] } } }, "group-member": { "type": "object", "required": [ "user-id", "tenant-id" ], "properties": { "user-id": { "type": [ "string", "integer" ], "minLength": 1, "minimum": 0, "description": "Member's user id." }, "tenant-id": { "type": [ "string", "integer" ], "minLength": 1, "minimum": 0, "description": "Member's tenant id." } } }, "group-profile": { "type": "object", "required": [ "display-name" ], "properties": { "display-name": { "type": "string", "description": "The display name in Directory, it is expected to be the same as group name." }, "company-name": { "type": "string", "description": "The company name is expected to be the same as group company owner." }, "email": { "type": "string" }, "mobile": { "type": "string" }, "job": { "type": "object", "properties": { "title": { "type": "string" }, "role": { "type": "string" }, "department": { "type": "string" }, "division": { "type": "string" }, "phone": { "type": "string" }, "city": { "type": "string" } } }, "asset-classes": { "description": "The group's asset classes (one or more).", "oneOf": [ { "type": "array", "uniqueItems": true, "items": { "type": "string", "enum": [ "Equities", "Cash Equities", "Securities Lending", "Fixed Income", "Government Bonds", "Prime Brokerage", "Commodities", "Municipal Bonds", "Currencies", "Corporate Bonds" ] } }, { "type": "string", "minLength": 1, "pattern": "^\\$\\{.*\\}$" }, { "enum": [ "${variables.VARIABLE_NAME}" ] } ] }, "industries": { "description": "The group's job industries (one or more).", "oneOf": [ { "type": "array", "uniqueItems": true, "items": { "type": "string", "enum": [ "Healthcare", "Consumer Non-Cyclicals", "Transportation", "Technology", "Real Estate", "Basic Materials", "Financials", "Energy & Utilities", "Conglomerates", "Consumer Cyclicals", "Services" ] } }, { "type": "string", "minLength": 1, "pattern": "^\\$\\{.*\\}$" }, { "enum": [ "${variables.VARIABLE_NAME}" ] } ] }, "functions": { "description": "The group's job functions (one or more).", "oneOf": [ { "type": "array", "uniqueItems": true, "items": { "type": "string", "enum": [ "Collateral", "Confirmation", "Trade Processing", "Pre-Matching", "Margin", "Matching", "Claims Processing", "Middle Office", "Liquidity Management", "Allocation", "Trade Management", "Regulatory Outreach", "Settlements", "Post Trade Management" ] } }, { "type": "string", "minLength": 1, "pattern": "^\\$\\{.*\\}$" }, { "enum": [ "${variables.VARIABLE_NAME}" ] } ] }, "market-coverages": { "description": "The group's market coverage (one or more).", "oneOf": [ { "type": "array", "uniqueItems": true, "items": { "type": "string", "enum": [ "EMEA", "NA", "APAC", "LATAM" ] } }, { "type": "string", "minLength": 1, "pattern": "^\\$\\{.*\\}$" }, { "enum": [ "${variables.VARIABLE_NAME}" ] } ] }, "responsibilities": { "description": "The group's responsibilities (one or more).", "oneOf": [ { "type": "array", "uniqueItems": true, "items": { "type": "string", "enum": [ "BAU", "Escalation" ] } }, { "type": "string", "minLength": 1, "pattern": "^\\$\\{.*\\}$" }, { "enum": [ "${variables.VARIABLE_NAME}" ] } ] }, "instruments": { "description": "The group's instruments (one or more).", "oneOf": [ { "type": "array", "uniqueItems": true, "items": { "type": "string", "enum": [ "Securities", "Fixed Income", "Equities" ] } }, { "type": "string", "minLength": 1, "pattern": "^\\$\\{.*\\}$" }, { "enum": [ "${variables.VARIABLE_NAME}" ] } ] }, "visibility-restriction": { "type": "object", "$ref": "#/definitions/tenants-users-list" }, "implicit-connection": { "type": "object", "$ref": "#/definitions/tenants-users-list" }, "interaction-transfer": { "type": "object", "$ref": "#/definitions/tenants-users-list" } } }, "tenants-users-list": { "type": "object", "properties": { "user-ids": { "oneOf": [ { "type": "array", "uniqueItems": true, "items": { "type": [ "string", "integer" ], "minLength": 1, "minimum": 0 } }, { "type": "string", "minLength": 1, "pattern": "^\\$\\{.*\\}$" }, { "enum": [ "${variables.VARIABLE_NAME}" ] } ] }, "tenant-ids": { "oneOf": [ { "type": "array", "uniqueItems": true, "items": { "type": [ "string", "integer" ], "minLength": 1, "minimum": 0 } }, { "type": "string", "minLength": 1, "pattern": "^\\$\\{.*\\}$" }, { "enum": [ "${variables.VARIABLE_NAME}" ] } ] } } }, "update-group-inner": { "type": "object", "required": [ "group-id" ], "properties": { "group-id": { "$ref": "#/definitions/group-id" }, "status": { "type": "string", "description": "Status flag to distinguish between active and deleted objects. Required to update group fields except the image-path.", "enum": [ "ACTIVE", "DELETED" ] }, "e-tag": { "type": "string", "description": "Required to update group fields except the image-path." }, "image-path": { "description": "Path to the file to be uploaded as the group's avatar. The path is relative to the workflows folder.", "anyOf": [ { "enum": [ "${variables.VARIABLE_NAME}" ] }, { "type": "string", "minLength": 1 } ] } } }, "get-group-inner": { "type": "object", "required": [ "group-id" ], "properties": { "group-id": { "$ref": "#/definitions/group-id" } } }, "get-groups-inner": { "type": "object", "required": [ "type" ], "properties": { "type": { "type": "string", "minLength": 1, "default": "SDL", "description": "Group type id." }, "status": { "type": "string", "description": "Filter by status, active or deleted. If not specified both are returned.", "enum": [ "ACTIVE", "DELETED" ] }, "before": { "type": "string", "minLength": 1, "description": "NOT SUPPORTED YET, currently ignored. Cursor that points to the start of the current page of data. If not present, the current page is the first page." }, "after": { "type": "string", "minLength": 1, "description": "Cursor that points to the end of the current page of data. If not present, the current page is the last page." }, "limit": { "type": [ "string", "integer" ], "minLength": 1, "minimum": 0, "description": "Numbers of items to return.", "default": 100 }, "sort-order": { "type": "string", "enum": [ "ASC", "DESC" ] } } }, "add-group-member-inner": { "type": "object", "required": [ "group-id" ], "properties": { "group-id": { "$ref": "#/definitions/group-id" }, "members": { "type": "array", "oneOf": [ { "type": "array", "uniqueItems": true, "items": { "$ref": "#/definitions/group-member" } }, { "type": "string", "minLength": 1, "pattern": "^\\$\\{.*\\}$" }, { "enum": [ "${variables.VARIABLE_NAME}" ] } ] } } }, "group-id": { "anyOf": [ { "type": [ "string", "integer" ], "minLength": 1 }, { "enum": [ "${variables.VARIABLE_NAME}" ] } ], "description": "Group's unique identifier." }, "obo-inner": { "type": "object", "description": "Defines whether the activity will be executed on behalf of a user and the user on whose behalf the call will be made.", "properties": { "user-id": { "$ref": "#/definitions/user-id" }, "username": { "$ref": "#/definitions/name" } }, "anyOf": [ {"required": ["user-id"]}, {"required": ["username"]} ] }, "to": { "type": "object", "oneOf": [ { "$ref": "#/definitions/stream-id" }, { "$ref": "#/definitions/stream-ids" }, { "$ref": "#/definitions/user-ids" } ] }, "content-inner": { "description": "The content of the message in MessageML format. Must contain at least one space. In case the content is a form, this latter's id should be the same as the activity one.", "oneOf": [ { "enum": [ "${variables.VARIABLE_NAME}", "${text(ACTIVITY_ID.outputs.message.message)}", "${event.args.NAME}", "<mention uid='${ACTIVITY_ID.outputs.user.userSystemInfo.id}'/>", "<mention uid='${event.initiator.user.userId}'/>" ] }, { "type": "object", "properties": { "template": { "type": "string", "description": "Inline template message content in string.", "minLength": 1 }, "template-path": { "type": "string", "description": "External message template file path.", "minLength": 1 } }, "oneOf": [ {"required": ["template"]}, {"required": ["template-path"]} ] }, { "type": "string", "minLength": 0 } ] }, "skip": { "description": "Number of elements to be skipped during return - used for pagination.", "anyOf": [ { "enum": [ "${variables.VARIABLE_NAME}" ] }, { "type": [ "integer", "string" ], "minimum": 0 } ] }, "limit": { "description": "Maximum number of elements to be returned - used for pagination.", "anyOf": [ { "enum": [ "${variables.VARIABLE_NAME}" ] }, { "type": [ "integer", "string" ], "maximum": 1000, "minimum": 1 } ] }, "id": { "type": "string", "minLength": 1 }, "message-id-inner": { "description": "Message identifier. Both safe url and Base64 encoded urls are accepted.", "anyOf": [ { "enum": [ "${variables.VARIABLE_NAME}", "${ACTIVITY_ID.outputs.msgId}", "${ACTIVITY_ID.outputs.message.messageId}", "${ACTIVITY_ID.outputs.message.initialMessageId}" ] }, { "$ref": "#/definitions/id" } ] }, "stream-id-inner": { "description": "Stream identifier. Both safe url and Base64 encoded urls are accepted.", "anyOf": [ { "enum": [ "${event.source.message.stream.streamId}", "${variables.VARIABLE_NAME}", "${ACTIVITY_ID.outputs.roomId}", "${ACTIVITY_ID.outputs.stream.id}" ] }, { "$ref": "#/definitions/id" } ] }, "stream-id": { "type": "object", "description": "Stream id to sent the message to.", "properties": { "stream-id": { "$ref": "#/definitions/stream-id-inner" } }, "required": [ "stream-id" ] }, "stream-ids": { "type": "object", "description": "Stream ids to sent the message to (blast message).", "properties": { "stream-ids": { "oneOf": [ { "type": "array", "minLength": 1, "items": { "type": "string" }, "uniqueItems": true }, { "type": "string", "minLength": 1, "pattern": "^\\$\\{.*\\}$" }, { "enum": [ "${variables.VARIABLE_NAME}" ] } ] } }, "required": [ "stream-ids" ] }, "user-ids-inner": { "description": "User identifiers list.", "oneOf": [ { "type": "array", "items": { "$ref": "#/definitions/user-id" }, "minLength": 1, "uniqueItems": true }, { "type": "string", "minLength": 1, "pattern": "^\\$\\{.*\\}$" }, { "enum": [ "${variables.VARIABLE_NAME}" ] } ] }, "user-ids": { "type": "object", "description": "List of user ids.", "properties": { "user-ids": { "$ref": "#/definitions/user-ids-inner" } }, "required": [ "user-ids" ] }, "user-id": { "description": "User id.", "anyOf": [ { "type": [ "string", "integer" ], "minLength": 1 }, { "enum": [ "${ACTIVITY_ID.outputs.user.userSystemInfo.id}", "${event.initiator.user.userId}", "${event.source.fromUser.userId}", "${event.source.toUser.userId}" ] } ] }, "attachment": { "type": "object", "oneOf": [ { "$ref": "#/definitions/attachment-message" }, { "$ref": "#/definitions/attachment-file" } ] }, "single-attachment": { "type": "string", "minLength": 1 }, "attachment-message": { "type": "object", "properties": { "message-id": { "description": "Message id having the attachment to forward. Both url safe and base64 encoded urls are accepted.", "$ref": "#/definitions/message-id-inner" }, "attachment-id": { "description": "Attachment id to forward. If not set, all attachments in the provided message are forwarded. Both url safe and base64 encoded urls are accepted.", "anyOf": [ { "enum": [ "${variables.VARIABLE_NAME}" ] }, { "type": "string", "minLength": 1 } ] } }, "required": [ "message-id" ] }, "attachment-file": { "type": "object", "required": [ "content-path" ], "properties": { "content-path": { "description": "Path to the file to be attached to the message. The path is relative to the workflows folder.", "anyOf": [ { "enum": [ "${variables.VARIABLE_NAME}" ] }, { "type": "string", "minLength": 1 } ] } } } } }
ui5-workspace.yaml.json
{ "$schema": "http://json-schema.org/draft-07/schema", "title": "ui5-workspace.yaml", "description": "Schema for UI5 Tooling Workspace Configuration File (ui5-workspace.yaml)", "$comment": "See https://sap.github.io/ui5-tooling/", "type": "object", "required": [ "specVersion", "metadata", "dependencyManagement" ], "properties": { "additionalProperties": false, "specVersion": { "enum": [ "workspace/1.0" ], "errorMessage": "Unsupported \"specVersion\"\nYour UI5 CLI installation might be outdated.\nSupported specification versions: \"workspace/1.0\"\nFor details, see: https://sap.github.io/ui5-tooling/stable/pages/Workspace/#workspace-specification-versions" }, "metadata": { "$ref": "#/definitions/metadata" }, "dependencyManagement": { "$ref": "#/definitions/dependencyManagement" } }, "definitions": { "metadata": { "type": "object", "required": [ "name" ], "properties": { "additionalProperties": false, "name": { "type": "string", "minLength": 3, "maxLength": 80, "pattern": "^(?:@[0-9a-z-_.]+\\/)?[a-z][0-9a-z-_.]*$", "title": "Workspace Name", "description": "Identifier for the workspace configuration. Workspaces named 'default' will be used automatically by UI5 Tooling", "errorMessage": "Not a valid workspace name. It must consist of lowercase alphanumeric characters, dash, underscore, and period only. Additionally, it may contain an npm-style package scope. For details, see: https://sap.github.io/ui5-tooling/stable/pages/Workspace/#name" } } }, "dependencyManagement": { "type": "object", "properties": { "additionalProperties": false, "resolutions": { "type": "array", "additionalProperties": false, "items": { "type": "object", "additionalProperties": false, "properties": { "path": { "type": "string" } } } } } } } }
schema-kas.json
{ "$schema": "http://json-schema.org/draft-04/schema#", "$id": "https://github.com/siemens/kas/blob/master/kas/schema-kas.json", "title": "kas configuration", "description": "kas, a setup tool for bitbake based projects", "type": "object", "required": [ "header" ], "additionalProperties": false, "properties": { "header": { "type": "object", "required": [ "version" ], "additionalProperties": false, "properties": { "version": { "oneOf": [ { "type": "string", "enum": [ "0.10" ] }, { "type": "integer" } ] }, "includes": { "type": "array", "items": { "oneOf": [ { "type": "string" }, { "type": "object", "required": [ "repo", "file" ], "additionalProperties": false, "properties": { "repo": { "type": "string" }, "file": { "type": "string" } } } ] } } } }, "build_system": { "type": "string", "enum": [ "openembedded", "oe", "isar" ] }, "defaults": { "type": "object", "additionalProperties": false, "properties": { "repos": { "type": "object", "additionalProperties": false, "properties": { "branch": { "type": "string" }, "refspec": { "type": "string" }, "patches": { "type": "object", "additionalProperties": false, "properties": { "repo": { "type": "string" } } } } } } }, "overrides": { "type": "object", "additionalProperties": false, "properties": { "repos": { "type": "object", "additionalProperties": { "type": "object", "additionalProperties": false, "properties": { "commit": { "type": "string" } } } } } }, "machine": { "type": "string" }, "distro": { "type": "string" }, "env": { "type": "object", "additionalProperties": { "type": ["string", "null"] } }, "target": { "oneOf": [ { "type": "string" }, { "type": "array", "items": { "type": "string" } } ] }, "task": { "type": "string" }, "repos": { "type": "object", "additionalProperties": { "oneOf": [ { "type": "object", "additionalProperties": false, "properties": { "name": { "type": "string" }, "url": { "oneOf": [ { "type": "string" }, { "type": "null" } ] }, "type": { "type": "string" }, "commit": { "type": "string" }, "branch": { "type": "string" }, "refspec": { "type": "string" }, "path": { "oneOf": [ { "type": "string" }, { "type": "null" } ] }, "layers": { "type": "object", "additionalProperties": { "oneOf": [ { "type": "null" }, { "type": "integer" }, { "type": "boolean" }, { "type": "string" } ] } }, "patches": { "type": "object", "additionalProperties": { "oneOf": [ { "type": "object", "additionalProperties": false, "required": [ "path" ], "properties": { "repo": { "type": "string" }, "path": { "type": "string" } } }, { "type": "null" } ] } } } }, { "type": "null" } ] } }, "bblayers_conf_header": { "type": "object", "additionalProperties": { "type": "string" } }, "local_conf_header": { "type": "object", "additionalProperties": { "type": "string" } }, "proxy_config": { "type": "object", "additionalProperties": false, "properties": { "http_proxy": { "type": "string" }, "https_proxy": { "type": "string" }, "ftp_proxy": { "type": "string" }, "no_proxy": { "type": "string" } } }, "menu_configuration": { "type": "object", "additionalProperties": { "oneOf": [ { "type": "boolean" }, { "type": "string" }, { "type": "integer" } ] } }, "_source_dir": { "type": "string" }, "_source_dir_host": { "type": "string" } } }
case_schema.json
{ "$schema": "http://json-schema.org/draft-04/schema#", "definitions": { "api": { "title": "api url info", "type": "object", "properties": { "host": { "type": "string" }, "uri": { "type": "string" }, "method": { "type": "string" }, "header": { "type": "string", "default": "https://dev-api.qiandao.cn" } } }, "template": { "title": "template for all request", "type": "object", "properties": { "header": { "type": "object", "properties": { "authorization": { "type": "object", "default": "${{get_user_token(18669420998)}}" } } }, "request_body": { "type": "string" }, "provider_data": { "type": "array", "properties": { "provider_type": { "type": "string", "default": "sql" }, "provider_db": { "type": "string" }, "api_id": { "type": "string" }, "provider_sql": { "type": "string" } } } } }, "cases": { "title": "cases to test", "type": "array", "properties": { "case_id": { "type": "string" }, "describe": { "type": "string" }, "assert": { "type": "object" }, "request_body": { "type": "string" }, "provider_data": { "type": "array", "properties": { "provider_type": { "type": "string", "default": "sql" }, "provider_db": { "type": "string" }, "api_id": { "type": "string" }, "provider_sql": { "type": "string" } } } } } }, "description": "a schema for auto api cases", "id": "https://json.schemastore.org/case_schema.json", "title": "case", "type": "object" }
cityjson.min.schema.json
{"$schema":"http://json-schema.org/draft-07/schema#","$id":"https://www.cityjson.org/schemas/1.1.3/cityjson.schema.json","title":"CityJSON v1.1.3","description":"CityJSON specifications v1.1.3","type":"object","properties":{"type":{"enum":["CityJSON"]},"version":{"type":"string","pattern":"^(\\d\\.)(\\d)$"},"metadata":{"type":"object","properties":{"identifier":{"type":"string"},"pointOfContact":{"type":"object","properties":{"contactName":{"type":"string"},"phone":{"type":"string"},"address":{"type":"string"},"emailAddress":{"type":"string","format":"email"},"contactType":{"type":"string","enum":["individual","organization"]},"role":{"type":"string","description":"from ISO 19115 codelist","enum":["resourceProvider","custodian","owner","user","distributor","originator","pointOfContact","principalInvestigator","processor","publisher","author","sponsor","co-author","collaborator","editor","mediator","rightsHolder","contributor","funder","stakeholder"]},"organization":{"type":"string"},"website":{"type":"string","format":"uri","pattern":"^(https?)://"}},"required":["contactName","emailAddress"],"additionalProperties":false},"referenceDate":{"type":"string","format":"date"},"title":{"type":"string"},"geographicalExtent":{"type":"array","items":{"type":"number"},"minItems":6,"maxItems":6},"referenceSystem":{"type":"string","pattern":"^(http|https)://www.opengis.net/def/crs/"}},"additionalProperties":false},"extensions":{"type":"object","additionalProperties":{"type":"object","properties":{"url":{"type":"string","format":"uri-reference"},"version":{"type":"string","pattern":"^(\\d+\\.)(\\d+)$"}},"required":["url","version"]}},"CityObjects":{"type":"object","additionalProperties":{"oneOf":[{"allOf":[{"properties":{"attributes":{"type":"object"},"parents":{"type":"array","description":"the IDs of the parents","items":{"type":"string"}},"children":{"type":"array","description":"the IDs of children","items":{"type":"string"}},"geographicalExtent":{"type":"array","items":{"type":"number"},"minItems":6,"maxItems":6}}},{"properties":{"type":{"enum":["Bridge"]},"address":{"type":"array","items":{"type":"object","properties":{"location":{"type":"object","properties":{"type":{"enum":["MultiPoint"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"integer"}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["integer","null"]}}},"required":["surfaces","values"]}},"required":["type","lod","boundaries"],"additionalProperties":false}}}},"geometry":{"type":"array","items":{"oneOf":[{"type":"object","properties":{"type":{"enum":["MultiSurface"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"integer"}}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["integer","null"]}}},"required":["surfaces","values"]},"material":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":["array","null"],"items":{"type":["integer","null"]}},"value":{"type":"integer"}},"oneOf":[{"required":["value"]},{"required":["values"]}]}},"texture":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":["integer","null"]}}}}}}}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["CompositeSurface"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"integer"}}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["integer","null"]}}},"required":["surfaces","values"]},"material":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":["array","null"],"items":{"type":["integer","null"]}},"value":{"type":"integer"}},"oneOf":[{"required":["value"]},{"required":["values"]}]}},"texture":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":["integer","null"]}}}}}}}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["Solid"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"integer"}}}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}}},"required":["surfaces","values"]},"material":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}},"value":{"type":"integer"}},"oneOf":[{"required":["value"]},{"required":["values"]}]}},"texture":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":["integer","null"]}}}}}}}}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["CompositeSolid"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"integer"}}}}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}}}},"required":["surfaces","values"]},"material":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}}},"value":{"type":"integer"}},"oneOf":[{"required":["value"]},{"required":["values"]}]}},"texture":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":["integer","null"]}}}}}}}}}},"required":["type","lod","boundaries"],"additionalProperties":false}]}}},"required":["type"]}]},{"allOf":[{"properties":{"attributes":{"type":"object"},"parents":{"type":"array","description":"the IDs of the parents","items":{"type":"string"}},"children":{"type":"array","description":"the IDs of children","items":{"type":"string"}},"geographicalExtent":{"type":"array","items":{"type":"number"},"minItems":6,"maxItems":6}}},{"properties":{"type":{"enum":["BridgeConstructiveElement"]},"geometry":{"type":"array","items":{"oneOf":[{"type":"object","properties":{"type":{"enum":["MultiPoint"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"integer"}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["integer","null"]}}},"required":["surfaces","values"]}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["MultiLineString"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"integer"}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["integer","null"]}}},"required":["surfaces","values"]}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["MultiSurface"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"integer"}}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["integer","null"]}}},"required":["surfaces","values"]},"material":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":["array","null"],"items":{"type":["integer","null"]}},"value":{"type":"integer"}},"oneOf":[{"required":["value"]},{"required":["values"]}]}},"texture":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":["integer","null"]}}}}}}}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["CompositeSurface"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"integer"}}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["integer","null"]}}},"required":["surfaces","values"]},"material":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":["array","null"],"items":{"type":["integer","null"]}},"value":{"type":"integer"}},"oneOf":[{"required":["value"]},{"required":["values"]}]}},"texture":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":["integer","null"]}}}}}}}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["Solid"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"integer"}}}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}}},"required":["surfaces","values"]},"material":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}},"value":{"type":"integer"}},"oneOf":[{"required":["value"]},{"required":["values"]}]}},"texture":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":["integer","null"]}}}}}}}}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["CompositeSolid"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"integer"}}}}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}}}},"required":["surfaces","values"]},"material":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}}},"value":{"type":"integer"}},"oneOf":[{"required":["value"]},{"required":["values"]}]}},"texture":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":["integer","null"]}}}}}}}}}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["MultiSolid"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"integer"}}}}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}}}},"required":["surfaces","values"]},"material":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}}},"value":{"type":"integer"}},"oneOf":[{"required":["value"]},{"required":["values"]}]}},"texture":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":["integer","null"]}}}}}}}}}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["GeometryInstance"]},"template":{"type":"integer"},"boundaries":{"type":"array","items":{"type":"integer"},"minItems":1,"maxItems":1},"transformationMatrix":{"type":"array","items":{"type":"number"},"minItems":16,"maxItems":16}},"required":["type","template","boundaries","transformationMatrix"],"additionalProperties":false}]}}},"required":["type","parents"]}]},{"allOf":[{"properties":{"attributes":{"type":"object"},"parents":{"type":"array","description":"the IDs of the parents","items":{"type":"string"}},"children":{"type":"array","description":"the IDs of children","items":{"type":"string"}},"geographicalExtent":{"type":"array","items":{"type":"number"},"minItems":6,"maxItems":6}}},{"properties":{"type":{"enum":["BridgeFurniture"]},"geometry":{"type":"array","items":{"oneOf":[{"type":"object","properties":{"type":{"enum":["MultiPoint"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"integer"}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["integer","null"]}}},"required":["surfaces","values"]}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["MultiLineString"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"integer"}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["integer","null"]}}},"required":["surfaces","values"]}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["MultiSurface"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"integer"}}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["integer","null"]}}},"required":["surfaces","values"]},"material":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":["array","null"],"items":{"type":["integer","null"]}},"value":{"type":"integer"}},"oneOf":[{"required":["value"]},{"required":["values"]}]}},"texture":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":["integer","null"]}}}}}}}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["CompositeSurface"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"integer"}}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["integer","null"]}}},"required":["surfaces","values"]},"material":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":["array","null"],"items":{"type":["integer","null"]}},"value":{"type":"integer"}},"oneOf":[{"required":["value"]},{"required":["values"]}]}},"texture":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":["integer","null"]}}}}}}}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["Solid"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"integer"}}}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}}},"required":["surfaces","values"]},"material":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}},"value":{"type":"integer"}},"oneOf":[{"required":["value"]},{"required":["values"]}]}},"texture":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":["integer","null"]}}}}}}}}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["CompositeSolid"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"integer"}}}}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}}}},"required":["surfaces","values"]},"material":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}}},"value":{"type":"integer"}},"oneOf":[{"required":["value"]},{"required":["values"]}]}},"texture":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":["integer","null"]}}}}}}}}}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["MultiSolid"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"integer"}}}}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}}}},"required":["surfaces","values"]},"material":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}}},"value":{"type":"integer"}},"oneOf":[{"required":["value"]},{"required":["values"]}]}},"texture":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":["integer","null"]}}}}}}}}}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["GeometryInstance"]},"template":{"type":"integer"},"boundaries":{"type":"array","items":{"type":"integer"},"minItems":1,"maxItems":1},"transformationMatrix":{"type":"array","items":{"type":"number"},"minItems":16,"maxItems":16}},"required":["type","template","boundaries","transformationMatrix"],"additionalProperties":false}]}}},"required":["type","parents"]}]},{"allOf":[{"properties":{"attributes":{"type":"object"},"parents":{"type":"array","description":"the IDs of the parents","items":{"type":"string"}},"children":{"type":"array","description":"the IDs of children","items":{"type":"string"}},"geographicalExtent":{"type":"array","items":{"type":"number"},"minItems":6,"maxItems":6}}},{"properties":{"type":{"enum":["BridgeInstallation"]},"geometry":{"type":"array","items":{"oneOf":[{"type":"object","properties":{"type":{"enum":["MultiPoint"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"integer"}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["integer","null"]}}},"required":["surfaces","values"]}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["MultiLineString"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"integer"}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["integer","null"]}}},"required":["surfaces","values"]}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["MultiSurface"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"integer"}}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["integer","null"]}}},"required":["surfaces","values"]},"material":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":["array","null"],"items":{"type":["integer","null"]}},"value":{"type":"integer"}},"oneOf":[{"required":["value"]},{"required":["values"]}]}},"texture":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":["integer","null"]}}}}}}}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["CompositeSurface"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"integer"}}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["integer","null"]}}},"required":["surfaces","values"]},"material":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":["array","null"],"items":{"type":["integer","null"]}},"value":{"type":"integer"}},"oneOf":[{"required":["value"]},{"required":["values"]}]}},"texture":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":["integer","null"]}}}}}}}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["Solid"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"integer"}}}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}}},"required":["surfaces","values"]},"material":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}},"value":{"type":"integer"}},"oneOf":[{"required":["value"]},{"required":["values"]}]}},"texture":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":["integer","null"]}}}}}}}}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["CompositeSolid"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"integer"}}}}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}}}},"required":["surfaces","values"]},"material":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}}},"value":{"type":"integer"}},"oneOf":[{"required":["value"]},{"required":["values"]}]}},"texture":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":["integer","null"]}}}}}}}}}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["MultiSolid"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"integer"}}}}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}}}},"required":["surfaces","values"]},"material":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}}},"value":{"type":"integer"}},"oneOf":[{"required":["value"]},{"required":["values"]}]}},"texture":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":["integer","null"]}}}}}}}}}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["GeometryInstance"]},"template":{"type":"integer"},"boundaries":{"type":"array","items":{"type":"integer"},"minItems":1,"maxItems":1},"transformationMatrix":{"type":"array","items":{"type":"number"},"minItems":16,"maxItems":16}},"required":["type","template","boundaries","transformationMatrix"],"additionalProperties":false}]}}},"required":["type","parents"]}]},{"allOf":[{"properties":{"attributes":{"type":"object"},"parents":{"type":"array","description":"the IDs of the parents","items":{"type":"string"}},"children":{"type":"array","description":"the IDs of children","items":{"type":"string"}},"geographicalExtent":{"type":"array","items":{"type":"number"},"minItems":6,"maxItems":6}}},{"properties":{"type":{"enum":["BridgePart"]},"address":{"type":"array","items":{"type":"object","properties":{"location":{"type":"object","properties":{"type":{"enum":["MultiPoint"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"integer"}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["integer","null"]}}},"required":["surfaces","values"]}},"required":["type","lod","boundaries"],"additionalProperties":false}}}},"geometry":{"type":"array","items":{"oneOf":[{"type":"object","properties":{"type":{"enum":["MultiSurface"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"integer"}}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["integer","null"]}}},"required":["surfaces","values"]},"material":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":["array","null"],"items":{"type":["integer","null"]}},"value":{"type":"integer"}},"oneOf":[{"required":["value"]},{"required":["values"]}]}},"texture":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":["integer","null"]}}}}}}}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["CompositeSurface"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"integer"}}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["integer","null"]}}},"required":["surfaces","values"]},"material":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":["array","null"],"items":{"type":["integer","null"]}},"value":{"type":"integer"}},"oneOf":[{"required":["value"]},{"required":["values"]}]}},"texture":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":["integer","null"]}}}}}}}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["Solid"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"integer"}}}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}}},"required":["surfaces","values"]},"material":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}},"value":{"type":"integer"}},"oneOf":[{"required":["value"]},{"required":["values"]}]}},"texture":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":["integer","null"]}}}}}}}}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["CompositeSolid"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"integer"}}}}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}}}},"required":["surfaces","values"]},"material":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}}},"value":{"type":"integer"}},"oneOf":[{"required":["value"]},{"required":["values"]}]}},"texture":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":["integer","null"]}}}}}}}}}},"required":["type","lod","boundaries"],"additionalProperties":false}]}}},"required":["type","parents"]}]},{"allOf":[{"properties":{"attributes":{"type":"object"},"parents":{"type":"array","description":"the IDs of the parents","items":{"type":"string"}},"children":{"type":"array","description":"the IDs of children","items":{"type":"string"}},"geographicalExtent":{"type":"array","items":{"type":"number"},"minItems":6,"maxItems":6}}},{"properties":{"type":{"enum":["BridgeRoom"]},"geometry":{"type":"array","items":{"oneOf":[{"type":"object","properties":{"type":{"enum":["MultiSurface"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"integer"}}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["integer","null"]}}},"required":["surfaces","values"]},"material":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":["array","null"],"items":{"type":["integer","null"]}},"value":{"type":"integer"}},"oneOf":[{"required":["value"]},{"required":["values"]}]}},"texture":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":["integer","null"]}}}}}}}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["CompositeSurface"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"integer"}}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["integer","null"]}}},"required":["surfaces","values"]},"material":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":["array","null"],"items":{"type":["integer","null"]}},"value":{"type":"integer"}},"oneOf":[{"required":["value"]},{"required":["values"]}]}},"texture":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":["integer","null"]}}}}}}}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["Solid"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"integer"}}}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}}},"required":["surfaces","values"]},"material":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}},"value":{"type":"integer"}},"oneOf":[{"required":["value"]},{"required":["values"]}]}},"texture":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":["integer","null"]}}}}}}}}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["CompositeSolid"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"integer"}}}}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}}}},"required":["surfaces","values"]},"material":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}}},"value":{"type":"integer"}},"oneOf":[{"required":["value"]},{"required":["values"]}]}},"texture":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":["integer","null"]}}}}}}}}}},"required":["type","lod","boundaries"],"additionalProperties":false}]}}},"required":["type","parents"]}]},{"allOf":[{"allOf":[{"properties":{"attributes":{"type":"object"},"parents":{"type":"array","description":"the IDs of the parents","items":{"type":"string"}},"children":{"type":"array","description":"the IDs of children","items":{"type":"string"}},"geographicalExtent":{"type":"array","items":{"type":"number"},"minItems":6,"maxItems":6}}},{"properties":{"address":{"type":"array","items":{"type":"object","properties":{"location":{"type":"object","properties":{"type":{"enum":["MultiPoint"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"integer"}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["integer","null"]}}},"required":["surfaces","values"]}},"required":["type","lod","boundaries"],"additionalProperties":false}}}},"geometry":{"type":"array","items":{"oneOf":[{"type":"object","properties":{"type":{"enum":["MultiSurface"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"integer"}}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["integer","null"]}}},"required":["surfaces","values"]},"material":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":["array","null"],"items":{"type":["integer","null"]}},"value":{"type":"integer"}},"oneOf":[{"required":["value"]},{"required":["values"]}]}},"texture":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":["integer","null"]}}}}}}}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["CompositeSurface"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"integer"}}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["integer","null"]}}},"required":["surfaces","values"]},"material":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":["array","null"],"items":{"type":["integer","null"]}},"value":{"type":"integer"}},"oneOf":[{"required":["value"]},{"required":["values"]}]}},"texture":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":["integer","null"]}}}}}}}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["Solid"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"integer"}}}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}}},"required":["surfaces","values"]},"material":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}},"value":{"type":"integer"}},"oneOf":[{"required":["value"]},{"required":["values"]}]}},"texture":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":["integer","null"]}}}}}}}}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["CompositeSolid"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"integer"}}}}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}}}},"required":["surfaces","values"]},"material":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}}},"value":{"type":"integer"}},"oneOf":[{"required":["value"]},{"required":["values"]}]}},"texture":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":["integer","null"]}}}}}}}}}},"required":["type","lod","boundaries"],"additionalProperties":false}]}}}}]},{"properties":{"type":{"enum":["Building"]}},"required":["type"]}]},{"allOf":[{"properties":{"attributes":{"type":"object"},"parents":{"type":"array","description":"the IDs of the parents","items":{"type":"string"}},"children":{"type":"array","description":"the IDs of children","items":{"type":"string"}},"geographicalExtent":{"type":"array","items":{"type":"number"},"minItems":6,"maxItems":6}}},{"properties":{"type":{"enum":["BuildingConstructiveElement"]},"geometry":{"type":"array","items":{"oneOf":[{"type":"object","properties":{"type":{"enum":["MultiPoint"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"integer"}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["integer","null"]}}},"required":["surfaces","values"]}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["MultiLineString"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"integer"}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["integer","null"]}}},"required":["surfaces","values"]}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["MultiSurface"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"integer"}}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["integer","null"]}}},"required":["surfaces","values"]},"material":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":["array","null"],"items":{"type":["integer","null"]}},"value":{"type":"integer"}},"oneOf":[{"required":["value"]},{"required":["values"]}]}},"texture":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":["integer","null"]}}}}}}}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["CompositeSurface"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"integer"}}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["integer","null"]}}},"required":["surfaces","values"]},"material":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":["array","null"],"items":{"type":["integer","null"]}},"value":{"type":"integer"}},"oneOf":[{"required":["value"]},{"required":["values"]}]}},"texture":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":["integer","null"]}}}}}}}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["Solid"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"integer"}}}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}}},"required":["surfaces","values"]},"material":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}},"value":{"type":"integer"}},"oneOf":[{"required":["value"]},{"required":["values"]}]}},"texture":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":["integer","null"]}}}}}}}}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["CompositeSolid"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"integer"}}}}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}}}},"required":["surfaces","values"]},"material":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}}},"value":{"type":"integer"}},"oneOf":[{"required":["value"]},{"required":["values"]}]}},"texture":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":["integer","null"]}}}}}}}}}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["MultiSolid"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"integer"}}}}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}}}},"required":["surfaces","values"]},"material":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}}},"value":{"type":"integer"}},"oneOf":[{"required":["value"]},{"required":["values"]}]}},"texture":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":["integer","null"]}}}}}}}}}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["GeometryInstance"]},"template":{"type":"integer"},"boundaries":{"type":"array","items":{"type":"integer"},"minItems":1,"maxItems":1},"transformationMatrix":{"type":"array","items":{"type":"number"},"minItems":16,"maxItems":16}},"required":["type","template","boundaries","transformationMatrix"],"additionalProperties":false}]}}},"required":["type","parents"]}]},{"allOf":[{"properties":{"attributes":{"type":"object"},"parents":{"type":"array","description":"the IDs of the parents","items":{"type":"string"}},"children":{"type":"array","description":"the IDs of children","items":{"type":"string"}},"geographicalExtent":{"type":"array","items":{"type":"number"},"minItems":6,"maxItems":6}}},{"properties":{"type":{"enum":["BuildingFurniture"]},"geometry":{"type":"array","items":{"oneOf":[{"type":"object","properties":{"type":{"enum":["MultiPoint"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"integer"}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["integer","null"]}}},"required":["surfaces","values"]}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["MultiLineString"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"integer"}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["integer","null"]}}},"required":["surfaces","values"]}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["MultiSurface"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"integer"}}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["integer","null"]}}},"required":["surfaces","values"]},"material":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":["array","null"],"items":{"type":["integer","null"]}},"value":{"type":"integer"}},"oneOf":[{"required":["value"]},{"required":["values"]}]}},"texture":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":["integer","null"]}}}}}}}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["CompositeSurface"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"integer"}}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["integer","null"]}}},"required":["surfaces","values"]},"material":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":["array","null"],"items":{"type":["integer","null"]}},"value":{"type":"integer"}},"oneOf":[{"required":["value"]},{"required":["values"]}]}},"texture":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":["integer","null"]}}}}}}}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["Solid"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"integer"}}}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}}},"required":["surfaces","values"]},"material":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}},"value":{"type":"integer"}},"oneOf":[{"required":["value"]},{"required":["values"]}]}},"texture":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":["integer","null"]}}}}}}}}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["CompositeSolid"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"integer"}}}}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}}}},"required":["surfaces","values"]},"material":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}}},"value":{"type":"integer"}},"oneOf":[{"required":["value"]},{"required":["values"]}]}},"texture":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":["integer","null"]}}}}}}}}}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["MultiSolid"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"integer"}}}}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}}}},"required":["surfaces","values"]},"material":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}}},"value":{"type":"integer"}},"oneOf":[{"required":["value"]},{"required":["values"]}]}},"texture":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":["integer","null"]}}}}}}}}}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["GeometryInstance"]},"template":{"type":"integer"},"boundaries":{"type":"array","items":{"type":"integer"},"minItems":1,"maxItems":1},"transformationMatrix":{"type":"array","items":{"type":"number"},"minItems":16,"maxItems":16}},"required":["type","template","boundaries","transformationMatrix"],"additionalProperties":false}]}}},"required":["type","parents"]}]},{"allOf":[{"properties":{"attributes":{"type":"object"},"parents":{"type":"array","description":"the IDs of the parents","items":{"type":"string"}},"children":{"type":"array","description":"the IDs of children","items":{"type":"string"}},"geographicalExtent":{"type":"array","items":{"type":"number"},"minItems":6,"maxItems":6}}},{"properties":{"type":{"enum":["BuildingInstallation"]},"geometry":{"type":"array","items":{"oneOf":[{"type":"object","properties":{"type":{"enum":["MultiPoint"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"integer"}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["integer","null"]}}},"required":["surfaces","values"]}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["MultiLineString"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"integer"}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["integer","null"]}}},"required":["surfaces","values"]}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["MultiSurface"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"integer"}}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["integer","null"]}}},"required":["surfaces","values"]},"material":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":["array","null"],"items":{"type":["integer","null"]}},"value":{"type":"integer"}},"oneOf":[{"required":["value"]},{"required":["values"]}]}},"texture":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":["integer","null"]}}}}}}}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["CompositeSurface"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"integer"}}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["integer","null"]}}},"required":["surfaces","values"]},"material":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":["array","null"],"items":{"type":["integer","null"]}},"value":{"type":"integer"}},"oneOf":[{"required":["value"]},{"required":["values"]}]}},"texture":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":["integer","null"]}}}}}}}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["Solid"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"integer"}}}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}}},"required":["surfaces","values"]},"material":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}},"value":{"type":"integer"}},"oneOf":[{"required":["value"]},{"required":["values"]}]}},"texture":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":["integer","null"]}}}}}}}}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["CompositeSolid"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"integer"}}}}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}}}},"required":["surfaces","values"]},"material":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}}},"value":{"type":"integer"}},"oneOf":[{"required":["value"]},{"required":["values"]}]}},"texture":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":["integer","null"]}}}}}}}}}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["MultiSolid"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"integer"}}}}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}}}},"required":["surfaces","values"]},"material":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}}},"value":{"type":"integer"}},"oneOf":[{"required":["value"]},{"required":["values"]}]}},"texture":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":["integer","null"]}}}}}}}}}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["GeometryInstance"]},"template":{"type":"integer"},"boundaries":{"type":"array","items":{"type":"integer"},"minItems":1,"maxItems":1},"transformationMatrix":{"type":"array","items":{"type":"number"},"minItems":16,"maxItems":16}},"required":["type","template","boundaries","transformationMatrix"],"additionalProperties":false}]}}},"required":["type","parents"]}]},{"allOf":[{"allOf":[{"properties":{"attributes":{"type":"object"},"parents":{"type":"array","description":"the IDs of the parents","items":{"type":"string"}},"children":{"type":"array","description":"the IDs of children","items":{"type":"string"}},"geographicalExtent":{"type":"array","items":{"type":"number"},"minItems":6,"maxItems":6}}},{"properties":{"address":{"type":"array","items":{"type":"object","properties":{"location":{"type":"object","properties":{"type":{"enum":["MultiPoint"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"integer"}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["integer","null"]}}},"required":["surfaces","values"]}},"required":["type","lod","boundaries"],"additionalProperties":false}}}},"geometry":{"type":"array","items":{"oneOf":[{"type":"object","properties":{"type":{"enum":["MultiSurface"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"integer"}}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["integer","null"]}}},"required":["surfaces","values"]},"material":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":["array","null"],"items":{"type":["integer","null"]}},"value":{"type":"integer"}},"oneOf":[{"required":["value"]},{"required":["values"]}]}},"texture":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":["integer","null"]}}}}}}}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["CompositeSurface"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"integer"}}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["integer","null"]}}},"required":["surfaces","values"]},"material":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":["array","null"],"items":{"type":["integer","null"]}},"value":{"type":"integer"}},"oneOf":[{"required":["value"]},{"required":["values"]}]}},"texture":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":["integer","null"]}}}}}}}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["Solid"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"integer"}}}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}}},"required":["surfaces","values"]},"material":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}},"value":{"type":"integer"}},"oneOf":[{"required":["value"]},{"required":["values"]}]}},"texture":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":["integer","null"]}}}}}}}}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["CompositeSolid"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"integer"}}}}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}}}},"required":["surfaces","values"]},"material":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}}},"value":{"type":"integer"}},"oneOf":[{"required":["value"]},{"required":["values"]}]}},"texture":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":["integer","null"]}}}}}}}}}},"required":["type","lod","boundaries"],"additionalProperties":false}]}}}}]},{"properties":{"type":{"enum":["BuildingPart"]}},"required":["type","parents"]}]},{"allOf":[{"properties":{"attributes":{"type":"object"},"parents":{"type":"array","description":"the IDs of the parents","items":{"type":"string"}},"children":{"type":"array","description":"the IDs of children","items":{"type":"string"}},"geographicalExtent":{"type":"array","items":{"type":"number"},"minItems":6,"maxItems":6}}},{"properties":{"type":{"enum":["BuildingRoom"]},"geometry":{"type":"array","items":{"oneOf":[{"type":"object","properties":{"type":{"enum":["MultiSurface"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"integer"}}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["integer","null"]}}},"required":["surfaces","values"]},"material":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":["array","null"],"items":{"type":["integer","null"]}},"value":{"type":"integer"}},"oneOf":[{"required":["value"]},{"required":["values"]}]}},"texture":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":["integer","null"]}}}}}}}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["CompositeSurface"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"integer"}}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["integer","null"]}}},"required":["surfaces","values"]},"material":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":["array","null"],"items":{"type":["integer","null"]}},"value":{"type":"integer"}},"oneOf":[{"required":["value"]},{"required":["values"]}]}},"texture":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":["integer","null"]}}}}}}}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["Solid"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"integer"}}}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}}},"required":["surfaces","values"]},"material":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}},"value":{"type":"integer"}},"oneOf":[{"required":["value"]},{"required":["values"]}]}},"texture":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":["integer","null"]}}}}}}}}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["CompositeSolid"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"integer"}}}}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}}}},"required":["surfaces","values"]},"material":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}}},"value":{"type":"integer"}},"oneOf":[{"required":["value"]},{"required":["values"]}]}},"texture":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":["integer","null"]}}}}}}}}}},"required":["type","lod","boundaries"],"additionalProperties":false}]}}},"required":["type","parents"]}]},{"allOf":[{"properties":{"attributes":{"type":"object"},"parents":{"type":"array","description":"the IDs of the parents","items":{"type":"string"}},"children":{"type":"array","description":"the IDs of children","items":{"type":"string"}},"geographicalExtent":{"type":"array","items":{"type":"number"},"minItems":6,"maxItems":6}}},{"properties":{"type":{"enum":["BuildingStorey"]},"geometry":{"type":"array","items":{"oneOf":[{"type":"object","properties":{"type":{"enum":["MultiSurface"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"integer"}}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["integer","null"]}}},"required":["surfaces","values"]},"material":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":["array","null"],"items":{"type":["integer","null"]}},"value":{"type":"integer"}},"oneOf":[{"required":["value"]},{"required":["values"]}]}},"texture":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":["integer","null"]}}}}}}}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["CompositeSurface"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"integer"}}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["integer","null"]}}},"required":["surfaces","values"]},"material":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":["array","null"],"items":{"type":["integer","null"]}},"value":{"type":"integer"}},"oneOf":[{"required":["value"]},{"required":["values"]}]}},"texture":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":["integer","null"]}}}}}}}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["Solid"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"integer"}}}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}}},"required":["surfaces","values"]},"material":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}},"value":{"type":"integer"}},"oneOf":[{"required":["value"]},{"required":["values"]}]}},"texture":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":["integer","null"]}}}}}}}}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["CompositeSolid"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"integer"}}}}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}}}},"required":["surfaces","values"]},"material":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}}},"value":{"type":"integer"}},"oneOf":[{"required":["value"]},{"required":["values"]}]}},"texture":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":["integer","null"]}}}}}}}}}},"required":["type","lod","boundaries"],"additionalProperties":false}]}}},"required":["type","parents"]}]},{"allOf":[{"properties":{"attributes":{"type":"object"},"parents":{"type":"array","description":"the IDs of the parents","items":{"type":"string"}},"children":{"type":"array","description":"the IDs of children","items":{"type":"string"}},"geographicalExtent":{"type":"array","items":{"type":"number"},"minItems":6,"maxItems":6}}},{"properties":{"type":{"enum":["BuildingUnit"]},"address":{"type":"array","items":{"type":"object","properties":{"location":{"type":"object","properties":{"type":{"enum":["MultiPoint"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"integer"}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["integer","null"]}}},"required":["surfaces","values"]}},"required":["type","lod","boundaries"],"additionalProperties":false}}}},"geometry":{"type":"array","items":{"oneOf":[{"type":"object","properties":{"type":{"enum":["MultiSurface"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"integer"}}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["integer","null"]}}},"required":["surfaces","values"]},"material":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":["array","null"],"items":{"type":["integer","null"]}},"value":{"type":"integer"}},"oneOf":[{"required":["value"]},{"required":["values"]}]}},"texture":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":["integer","null"]}}}}}}}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["CompositeSurface"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"integer"}}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["integer","null"]}}},"required":["surfaces","values"]},"material":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":["array","null"],"items":{"type":["integer","null"]}},"value":{"type":"integer"}},"oneOf":[{"required":["value"]},{"required":["values"]}]}},"texture":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":["integer","null"]}}}}}}}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["Solid"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"integer"}}}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}}},"required":["surfaces","values"]},"material":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}},"value":{"type":"integer"}},"oneOf":[{"required":["value"]},{"required":["values"]}]}},"texture":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":["integer","null"]}}}}}}}}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["CompositeSolid"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"integer"}}}}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}}}},"required":["surfaces","values"]},"material":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}}},"value":{"type":"integer"}},"oneOf":[{"required":["value"]},{"required":["values"]}]}},"texture":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":["integer","null"]}}}}}}}}}},"required":["type","lod","boundaries"],"additionalProperties":false}]}}},"required":["type","parents"]}]},{"allOf":[{"properties":{"attributes":{"type":"object"},"parents":{"type":"array","description":"the IDs of the parents","items":{"type":"string"}},"children":{"type":"array","description":"the IDs of children","items":{"type":"string"}},"geographicalExtent":{"type":"array","items":{"type":"number"},"minItems":6,"maxItems":6}}},{"properties":{"type":{"enum":["CityFurniture"]},"geometry":{"type":"array","items":{"oneOf":[{"type":"object","properties":{"type":{"enum":["MultiPoint"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"integer"}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["integer","null"]}}},"required":["surfaces","values"]}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["MultiLineString"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"integer"}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["integer","null"]}}},"required":["surfaces","values"]}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["MultiSurface"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"integer"}}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["integer","null"]}}},"required":["surfaces","values"]},"material":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":["array","null"],"items":{"type":["integer","null"]}},"value":{"type":"integer"}},"oneOf":[{"required":["value"]},{"required":["values"]}]}},"texture":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":["integer","null"]}}}}}}}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["CompositeSurface"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"integer"}}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["integer","null"]}}},"required":["surfaces","values"]},"material":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":["array","null"],"items":{"type":["integer","null"]}},"value":{"type":"integer"}},"oneOf":[{"required":["value"]},{"required":["values"]}]}},"texture":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":["integer","null"]}}}}}}}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["Solid"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"integer"}}}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}}},"required":["surfaces","values"]},"material":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}},"value":{"type":"integer"}},"oneOf":[{"required":["value"]},{"required":["values"]}]}},"texture":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":["integer","null"]}}}}}}}}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["CompositeSolid"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"integer"}}}}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}}}},"required":["surfaces","values"]},"material":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}}},"value":{"type":"integer"}},"oneOf":[{"required":["value"]},{"required":["values"]}]}},"texture":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":["integer","null"]}}}}}}}}}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["MultiSolid"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"integer"}}}}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}}}},"required":["surfaces","values"]},"material":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}}},"value":{"type":"integer"}},"oneOf":[{"required":["value"]},{"required":["values"]}]}},"texture":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":["integer","null"]}}}}}}}}}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["GeometryInstance"]},"template":{"type":"integer"},"boundaries":{"type":"array","items":{"type":"integer"},"minItems":1,"maxItems":1},"transformationMatrix":{"type":"array","items":{"type":"number"},"minItems":16,"maxItems":16}},"required":["type","template","boundaries","transformationMatrix"],"additionalProperties":false}]}}},"required":["type"]}]},{"allOf":[{"properties":{"attributes":{"type":"object"},"parents":{"type":"array","description":"the IDs of the parents","items":{"type":"string"}},"children":{"type":"array","description":"the IDs of children","items":{"type":"string"}},"geographicalExtent":{"type":"array","items":{"type":"number"},"minItems":6,"maxItems":6}}},{"properties":{"type":{"enum":["CityObjectGroup"]},"children_roles":{"type":"array","description":"the role of each of the CityObjects members of that group","items":{"type":["string","null"]}},"geometry":{"type":"array","items":{"oneOf":[{"type":"object","properties":{"type":{"enum":["MultiPoint"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"integer"}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["integer","null"]}}},"required":["surfaces","values"]}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["MultiLineString"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"integer"}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["integer","null"]}}},"required":["surfaces","values"]}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["MultiSurface"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"integer"}}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["integer","null"]}}},"required":["surfaces","values"]},"material":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":["array","null"],"items":{"type":["integer","null"]}},"value":{"type":"integer"}},"oneOf":[{"required":["value"]},{"required":["values"]}]}},"texture":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":["integer","null"]}}}}}}}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["CompositeSurface"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"integer"}}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["integer","null"]}}},"required":["surfaces","values"]},"material":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":["array","null"],"items":{"type":["integer","null"]}},"value":{"type":"integer"}},"oneOf":[{"required":["value"]},{"required":["values"]}]}},"texture":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":["integer","null"]}}}}}}}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["Solid"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"integer"}}}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}}},"required":["surfaces","values"]},"material":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}},"value":{"type":"integer"}},"oneOf":[{"required":["value"]},{"required":["values"]}]}},"texture":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":["integer","null"]}}}}}}}}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["CompositeSolid"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"integer"}}}}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}}}},"required":["surfaces","values"]},"material":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}}},"value":{"type":"integer"}},"oneOf":[{"required":["value"]},{"required":["values"]}]}},"texture":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":["integer","null"]}}}}}}}}}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["MultiSolid"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"integer"}}}}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}}}},"required":["surfaces","values"]},"material":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}}},"value":{"type":"integer"}},"oneOf":[{"required":["value"]},{"required":["values"]}]}},"texture":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":["integer","null"]}}}}}}}}}},"required":["type","lod","boundaries"],"additionalProperties":false}]}}},"required":["type","children"]}]},{"type":"object","properties":{"type":{"type":"string","pattern":"(\\+)([A-Z])\\w+"}},"required":["type"]},{"allOf":[{"properties":{"attributes":{"type":"object"},"parents":{"type":"array","description":"the IDs of the parents","items":{"type":"string"}},"children":{"type":"array","description":"the IDs of children","items":{"type":"string"}},"geographicalExtent":{"type":"array","items":{"type":"number"},"minItems":6,"maxItems":6}}},{"properties":{"type":{"enum":["LandUse"]},"geometry":{"type":"array","items":{"oneOf":[{"type":"object","properties":{"type":{"enum":["MultiSurface"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"integer"}}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["integer","null"]}}},"required":["surfaces","values"]},"material":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":["array","null"],"items":{"type":["integer","null"]}},"value":{"type":"integer"}},"oneOf":[{"required":["value"]},{"required":["values"]}]}},"texture":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":["integer","null"]}}}}}}}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["CompositeSurface"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"integer"}}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["integer","null"]}}},"required":["surfaces","values"]},"material":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":["array","null"],"items":{"type":["integer","null"]}},"value":{"type":"integer"}},"oneOf":[{"required":["value"]},{"required":["values"]}]}},"texture":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":["integer","null"]}}}}}}}},"required":["type","lod","boundaries"],"additionalProperties":false}]}}},"required":["type"]}]},{"allOf":[{"properties":{"attributes":{"type":"object"},"parents":{"type":"array","description":"the IDs of the parents","items":{"type":"string"}},"children":{"type":"array","description":"the IDs of children","items":{"type":"string"}},"geographicalExtent":{"type":"array","items":{"type":"number"},"minItems":6,"maxItems":6}}},{"properties":{"type":{"enum":["OtherConstruction"]},"geometry":{"type":"array","items":{"oneOf":[{"type":"object","properties":{"type":{"enum":["MultiPoint"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"integer"}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["integer","null"]}}},"required":["surfaces","values"]}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["MultiLineString"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"integer"}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["integer","null"]}}},"required":["surfaces","values"]}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["MultiSurface"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"integer"}}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["integer","null"]}}},"required":["surfaces","values"]},"material":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":["array","null"],"items":{"type":["integer","null"]}},"value":{"type":"integer"}},"oneOf":[{"required":["value"]},{"required":["values"]}]}},"texture":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":["integer","null"]}}}}}}}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["CompositeSurface"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"integer"}}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["integer","null"]}}},"required":["surfaces","values"]},"material":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":["array","null"],"items":{"type":["integer","null"]}},"value":{"type":"integer"}},"oneOf":[{"required":["value"]},{"required":["values"]}]}},"texture":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":["integer","null"]}}}}}}}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["Solid"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"integer"}}}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}}},"required":["surfaces","values"]},"material":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}},"value":{"type":"integer"}},"oneOf":[{"required":["value"]},{"required":["values"]}]}},"texture":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":["integer","null"]}}}}}}}}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["CompositeSolid"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"integer"}}}}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}}}},"required":["surfaces","values"]},"material":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}}},"value":{"type":"integer"}},"oneOf":[{"required":["value"]},{"required":["values"]}]}},"texture":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":["integer","null"]}}}}}}}}}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["MultiSolid"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"integer"}}}}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}}}},"required":["surfaces","values"]},"material":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}}},"value":{"type":"integer"}},"oneOf":[{"required":["value"]},{"required":["values"]}]}},"texture":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":["integer","null"]}}}}}}}}}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["GeometryInstance"]},"template":{"type":"integer"},"boundaries":{"type":"array","items":{"type":"integer"},"minItems":1,"maxItems":1},"transformationMatrix":{"type":"array","items":{"type":"number"},"minItems":16,"maxItems":16}},"required":["type","template","boundaries","transformationMatrix"],"additionalProperties":false}]}}},"required":["type"]}]},{"allOf":[{"properties":{"attributes":{"type":"object"},"parents":{"type":"array","description":"the IDs of the parents","items":{"type":"string"}},"children":{"type":"array","description":"the IDs of children","items":{"type":"string"}},"geographicalExtent":{"type":"array","items":{"type":"number"},"minItems":6,"maxItems":6}}},{"properties":{"type":{"enum":["PlantCover"]},"geometry":{"type":"array","items":{"oneOf":[{"type":"object","properties":{"type":{"enum":["MultiSurface"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"integer"}}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["integer","null"]}}},"required":["surfaces","values"]},"material":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":["array","null"],"items":{"type":["integer","null"]}},"value":{"type":"integer"}},"oneOf":[{"required":["value"]},{"required":["values"]}]}},"texture":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":["integer","null"]}}}}}}}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["CompositeSurface"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"integer"}}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["integer","null"]}}},"required":["surfaces","values"]},"material":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":["array","null"],"items":{"type":["integer","null"]}},"value":{"type":"integer"}},"oneOf":[{"required":["value"]},{"required":["values"]}]}},"texture":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":["integer","null"]}}}}}}}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["Solid"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"integer"}}}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}}},"required":["surfaces","values"]},"material":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}},"value":{"type":"integer"}},"oneOf":[{"required":["value"]},{"required":["values"]}]}},"texture":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":["integer","null"]}}}}}}}}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["CompositeSolid"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"integer"}}}}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}}}},"required":["surfaces","values"]},"material":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}}},"value":{"type":"integer"}},"oneOf":[{"required":["value"]},{"required":["values"]}]}},"texture":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":["integer","null"]}}}}}}}}}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["MultiSolid"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"integer"}}}}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}}}},"required":["surfaces","values"]},"material":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}}},"value":{"type":"integer"}},"oneOf":[{"required":["value"]},{"required":["values"]}]}},"texture":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":["integer","null"]}}}}}}}}}},"required":["type","lod","boundaries"],"additionalProperties":false}]}}},"required":["type"]}]},{"allOf":[{"allOf":[{"properties":{"attributes":{"type":"object"},"parents":{"type":"array","description":"the IDs of the parents","items":{"type":"string"}},"children":{"type":"array","description":"the IDs of children","items":{"type":"string"}},"geographicalExtent":{"type":"array","items":{"type":"number"},"minItems":6,"maxItems":6}}},{"properties":{"geometry":{"type":"array","items":{"oneOf":[{"type":"object","properties":{"type":{"enum":["MultiLineString"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"integer"}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["integer","null"]}}},"required":["surfaces","values"]}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["MultiSurface"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"integer"}}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["integer","null"]}}},"required":["surfaces","values"]},"material":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":["array","null"],"items":{"type":["integer","null"]}},"value":{"type":"integer"}},"oneOf":[{"required":["value"]},{"required":["values"]}]}},"texture":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":["integer","null"]}}}}}}}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["CompositeSurface"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"integer"}}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["integer","null"]}}},"required":["surfaces","values"]},"material":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":["array","null"],"items":{"type":["integer","null"]}},"value":{"type":"integer"}},"oneOf":[{"required":["value"]},{"required":["values"]}]}},"texture":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":["integer","null"]}}}}}}}},"required":["type","lod","boundaries"],"additionalProperties":false}]}}}}]},{"properties":{"type":{"enum":["Railway"]}},"required":["type"]}]},{"allOf":[{"allOf":[{"properties":{"attributes":{"type":"object"},"parents":{"type":"array","description":"the IDs of the parents","items":{"type":"string"}},"children":{"type":"array","description":"the IDs of children","items":{"type":"string"}},"geographicalExtent":{"type":"array","items":{"type":"number"},"minItems":6,"maxItems":6}}},{"properties":{"geometry":{"type":"array","items":{"oneOf":[{"type":"object","properties":{"type":{"enum":["MultiLineString"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"integer"}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["integer","null"]}}},"required":["surfaces","values"]}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["MultiSurface"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"integer"}}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["integer","null"]}}},"required":["surfaces","values"]},"material":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":["array","null"],"items":{"type":["integer","null"]}},"value":{"type":"integer"}},"oneOf":[{"required":["value"]},{"required":["values"]}]}},"texture":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":["integer","null"]}}}}}}}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["CompositeSurface"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"integer"}}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["integer","null"]}}},"required":["surfaces","values"]},"material":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":["array","null"],"items":{"type":["integer","null"]}},"value":{"type":"integer"}},"oneOf":[{"required":["value"]},{"required":["values"]}]}},"texture":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":["integer","null"]}}}}}}}},"required":["type","lod","boundaries"],"additionalProperties":false}]}}}}]},{"properties":{"type":{"enum":["Road"]}},"required":["type"]}]},{"allOf":[{"properties":{"attributes":{"type":"object"},"parents":{"type":"array","description":"the IDs of the parents","items":{"type":"string"}},"children":{"type":"array","description":"the IDs of children","items":{"type":"string"}},"geographicalExtent":{"type":"array","items":{"type":"number"},"minItems":6,"maxItems":6}}},{"properties":{"type":{"enum":["SolitaryVegetationObject"]},"geometry":{"type":"array","items":{"oneOf":[{"type":"object","properties":{"type":{"enum":["MultiPoint"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"integer"}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["integer","null"]}}},"required":["surfaces","values"]}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["MultiLineString"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"integer"}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["integer","null"]}}},"required":["surfaces","values"]}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["MultiSurface"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"integer"}}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["integer","null"]}}},"required":["surfaces","values"]},"material":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":["array","null"],"items":{"type":["integer","null"]}},"value":{"type":"integer"}},"oneOf":[{"required":["value"]},{"required":["values"]}]}},"texture":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":["integer","null"]}}}}}}}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["CompositeSurface"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"integer"}}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["integer","null"]}}},"required":["surfaces","values"]},"material":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":["array","null"],"items":{"type":["integer","null"]}},"value":{"type":"integer"}},"oneOf":[{"required":["value"]},{"required":["values"]}]}},"texture":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":["integer","null"]}}}}}}}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["Solid"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"integer"}}}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}}},"required":["surfaces","values"]},"material":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}},"value":{"type":"integer"}},"oneOf":[{"required":["value"]},{"required":["values"]}]}},"texture":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":["integer","null"]}}}}}}}}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["CompositeSolid"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"integer"}}}}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}}}},"required":["surfaces","values"]},"material":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}}},"value":{"type":"integer"}},"oneOf":[{"required":["value"]},{"required":["values"]}]}},"texture":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":["integer","null"]}}}}}}}}}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["MultiSolid"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"integer"}}}}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}}}},"required":["surfaces","values"]},"material":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}}},"value":{"type":"integer"}},"oneOf":[{"required":["value"]},{"required":["values"]}]}},"texture":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":["integer","null"]}}}}}}}}}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["GeometryInstance"]},"template":{"type":"integer"},"boundaries":{"type":"array","items":{"type":"integer"},"minItems":1,"maxItems":1},"transformationMatrix":{"type":"array","items":{"type":"number"},"minItems":16,"maxItems":16}},"required":["type","template","boundaries","transformationMatrix"],"additionalProperties":false}]}}},"required":["type"]}]},{"allOf":[{"properties":{"attributes":{"type":"object"},"parents":{"type":"array","description":"the IDs of the parents","items":{"type":"string"}},"children":{"type":"array","description":"the IDs of children","items":{"type":"string"}},"geographicalExtent":{"type":"array","items":{"type":"number"},"minItems":6,"maxItems":6}}},{"properties":{"type":{"enum":["TINRelief"]},"geometry":{"type":"array","items":{"oneOf":[{"type":"object","properties":{"type":{"enum":["CompositeSurface"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"integer"}}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["integer","null"]}}},"required":["surfaces","values"]},"material":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":["array","null"],"items":{"type":["integer","null"]}},"value":{"type":"integer"}},"oneOf":[{"required":["value"]},{"required":["values"]}]}},"texture":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":["integer","null"]}}}}}}}},"required":["type","lod","boundaries"],"additionalProperties":false}]}}},"required":["type"]}]},{"allOf":[{"allOf":[{"properties":{"attributes":{"type":"object"},"parents":{"type":"array","description":"the IDs of the parents","items":{"type":"string"}},"children":{"type":"array","description":"the IDs of children","items":{"type":"string"}},"geographicalExtent":{"type":"array","items":{"type":"number"},"minItems":6,"maxItems":6}}},{"properties":{"geometry":{"type":"array","items":{"oneOf":[{"type":"object","properties":{"type":{"enum":["MultiLineString"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"integer"}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["integer","null"]}}},"required":["surfaces","values"]}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["MultiSurface"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"integer"}}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["integer","null"]}}},"required":["surfaces","values"]},"material":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":["array","null"],"items":{"type":["integer","null"]}},"value":{"type":"integer"}},"oneOf":[{"required":["value"]},{"required":["values"]}]}},"texture":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":["integer","null"]}}}}}}}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["CompositeSurface"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"integer"}}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["integer","null"]}}},"required":["surfaces","values"]},"material":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":["array","null"],"items":{"type":["integer","null"]}},"value":{"type":"integer"}},"oneOf":[{"required":["value"]},{"required":["values"]}]}},"texture":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":["integer","null"]}}}}}}}},"required":["type","lod","boundaries"],"additionalProperties":false}]}}}}]},{"properties":{"type":{"enum":["TransportSquare"]}},"required":["type"]}]},{"allOf":[{"properties":{"attributes":{"type":"object"},"parents":{"type":"array","description":"the IDs of the parents","items":{"type":"string"}},"children":{"type":"array","description":"the IDs of children","items":{"type":"string"}},"geographicalExtent":{"type":"array","items":{"type":"number"},"minItems":6,"maxItems":6}}},{"properties":{"type":{"enum":["Tunnel"]},"geometry":{"type":"array","items":{"oneOf":[{"type":"object","properties":{"type":{"enum":["MultiSurface"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"integer"}}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["integer","null"]}}},"required":["surfaces","values"]},"material":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":["array","null"],"items":{"type":["integer","null"]}},"value":{"type":"integer"}},"oneOf":[{"required":["value"]},{"required":["values"]}]}},"texture":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":["integer","null"]}}}}}}}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["CompositeSurface"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"integer"}}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["integer","null"]}}},"required":["surfaces","values"]},"material":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":["array","null"],"items":{"type":["integer","null"]}},"value":{"type":"integer"}},"oneOf":[{"required":["value"]},{"required":["values"]}]}},"texture":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":["integer","null"]}}}}}}}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["Solid"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"integer"}}}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}}},"required":["surfaces","values"]},"material":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}},"value":{"type":"integer"}},"oneOf":[{"required":["value"]},{"required":["values"]}]}},"texture":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":["integer","null"]}}}}}}}}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["CompositeSolid"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"integer"}}}}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}}}},"required":["surfaces","values"]},"material":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}}},"value":{"type":"integer"}},"oneOf":[{"required":["value"]},{"required":["values"]}]}},"texture":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":["integer","null"]}}}}}}}}}},"required":["type","lod","boundaries"],"additionalProperties":false}]}}},"required":["type"]}]},{"allOf":[{"properties":{"attributes":{"type":"object"},"parents":{"type":"array","description":"the IDs of the parents","items":{"type":"string"}},"children":{"type":"array","description":"the IDs of children","items":{"type":"string"}},"geographicalExtent":{"type":"array","items":{"type":"number"},"minItems":6,"maxItems":6}}},{"properties":{"type":{"enum":["TunnelConstructiveElement"]},"geometry":{"type":"array","items":{"oneOf":[{"type":"object","properties":{"type":{"enum":["MultiPoint"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"integer"}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["integer","null"]}}},"required":["surfaces","values"]}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["MultiLineString"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"integer"}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["integer","null"]}}},"required":["surfaces","values"]}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["MultiSurface"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"integer"}}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["integer","null"]}}},"required":["surfaces","values"]},"material":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":["array","null"],"items":{"type":["integer","null"]}},"value":{"type":"integer"}},"oneOf":[{"required":["value"]},{"required":["values"]}]}},"texture":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":["integer","null"]}}}}}}}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["CompositeSurface"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"integer"}}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["integer","null"]}}},"required":["surfaces","values"]},"material":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":["array","null"],"items":{"type":["integer","null"]}},"value":{"type":"integer"}},"oneOf":[{"required":["value"]},{"required":["values"]}]}},"texture":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":["integer","null"]}}}}}}}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["Solid"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"integer"}}}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}}},"required":["surfaces","values"]},"material":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}},"value":{"type":"integer"}},"oneOf":[{"required":["value"]},{"required":["values"]}]}},"texture":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":["integer","null"]}}}}}}}}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["CompositeSolid"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"integer"}}}}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}}}},"required":["surfaces","values"]},"material":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}}},"value":{"type":"integer"}},"oneOf":[{"required":["value"]},{"required":["values"]}]}},"texture":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":["integer","null"]}}}}}}}}}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["MultiSolid"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"integer"}}}}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}}}},"required":["surfaces","values"]},"material":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}}},"value":{"type":"integer"}},"oneOf":[{"required":["value"]},{"required":["values"]}]}},"texture":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":["integer","null"]}}}}}}}}}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["GeometryInstance"]},"template":{"type":"integer"},"boundaries":{"type":"array","items":{"type":"integer"},"minItems":1,"maxItems":1},"transformationMatrix":{"type":"array","items":{"type":"number"},"minItems":16,"maxItems":16}},"required":["type","template","boundaries","transformationMatrix"],"additionalProperties":false}]}}},"required":["type","parents"]}]},{"allOf":[{"properties":{"attributes":{"type":"object"},"parents":{"type":"array","description":"the IDs of the parents","items":{"type":"string"}},"children":{"type":"array","description":"the IDs of children","items":{"type":"string"}},"geographicalExtent":{"type":"array","items":{"type":"number"},"minItems":6,"maxItems":6}}},{"properties":{"type":{"enum":["TunnelFurniture"]},"geometry":{"type":"array","items":{"oneOf":[{"type":"object","properties":{"type":{"enum":["MultiPoint"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"integer"}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["integer","null"]}}},"required":["surfaces","values"]}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["MultiLineString"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"integer"}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["integer","null"]}}},"required":["surfaces","values"]}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["MultiSurface"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"integer"}}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["integer","null"]}}},"required":["surfaces","values"]},"material":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":["array","null"],"items":{"type":["integer","null"]}},"value":{"type":"integer"}},"oneOf":[{"required":["value"]},{"required":["values"]}]}},"texture":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":["integer","null"]}}}}}}}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["CompositeSurface"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"integer"}}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["integer","null"]}}},"required":["surfaces","values"]},"material":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":["array","null"],"items":{"type":["integer","null"]}},"value":{"type":"integer"}},"oneOf":[{"required":["value"]},{"required":["values"]}]}},"texture":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":["integer","null"]}}}}}}}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["Solid"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"integer"}}}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}}},"required":["surfaces","values"]},"material":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}},"value":{"type":"integer"}},"oneOf":[{"required":["value"]},{"required":["values"]}]}},"texture":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":["integer","null"]}}}}}}}}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["CompositeSolid"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"integer"}}}}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}}}},"required":["surfaces","values"]},"material":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}}},"value":{"type":"integer"}},"oneOf":[{"required":["value"]},{"required":["values"]}]}},"texture":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":["integer","null"]}}}}}}}}}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["MultiSolid"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"integer"}}}}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}}}},"required":["surfaces","values"]},"material":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}}},"value":{"type":"integer"}},"oneOf":[{"required":["value"]},{"required":["values"]}]}},"texture":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":["integer","null"]}}}}}}}}}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["GeometryInstance"]},"template":{"type":"integer"},"boundaries":{"type":"array","items":{"type":"integer"},"minItems":1,"maxItems":1},"transformationMatrix":{"type":"array","items":{"type":"number"},"minItems":16,"maxItems":16}},"required":["type","template","boundaries","transformationMatrix"],"additionalProperties":false}]}}},"required":["type","parents"]}]},{"allOf":[{"properties":{"attributes":{"type":"object"},"parents":{"type":"array","description":"the IDs of the parents","items":{"type":"string"}},"children":{"type":"array","description":"the IDs of children","items":{"type":"string"}},"geographicalExtent":{"type":"array","items":{"type":"number"},"minItems":6,"maxItems":6}}},{"properties":{"type":{"enum":["TunnelHollowSpace"]},"geometry":{"type":"array","items":{"oneOf":[{"type":"object","properties":{"type":{"enum":["MultiSurface"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"integer"}}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["integer","null"]}}},"required":["surfaces","values"]},"material":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":["array","null"],"items":{"type":["integer","null"]}},"value":{"type":"integer"}},"oneOf":[{"required":["value"]},{"required":["values"]}]}},"texture":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":["integer","null"]}}}}}}}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["CompositeSurface"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"integer"}}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["integer","null"]}}},"required":["surfaces","values"]},"material":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":["array","null"],"items":{"type":["integer","null"]}},"value":{"type":"integer"}},"oneOf":[{"required":["value"]},{"required":["values"]}]}},"texture":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":["integer","null"]}}}}}}}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["Solid"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"integer"}}}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}}},"required":["surfaces","values"]},"material":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}},"value":{"type":"integer"}},"oneOf":[{"required":["value"]},{"required":["values"]}]}},"texture":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":["integer","null"]}}}}}}}}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["CompositeSolid"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"integer"}}}}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}}}},"required":["surfaces","values"]},"material":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}}},"value":{"type":"integer"}},"oneOf":[{"required":["value"]},{"required":["values"]}]}},"texture":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":["integer","null"]}}}}}}}}}},"required":["type","lod","boundaries"],"additionalProperties":false}]}}},"required":["type","parents"]}]},{"allOf":[{"properties":{"attributes":{"type":"object"},"parents":{"type":"array","description":"the IDs of the parents","items":{"type":"string"}},"children":{"type":"array","description":"the IDs of children","items":{"type":"string"}},"geographicalExtent":{"type":"array","items":{"type":"number"},"minItems":6,"maxItems":6}}},{"properties":{"type":{"enum":["TunnelInstallation"]},"geometry":{"type":"array","items":{"oneOf":[{"type":"object","properties":{"type":{"enum":["MultiPoint"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"integer"}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["integer","null"]}}},"required":["surfaces","values"]}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["MultiLineString"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"integer"}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["integer","null"]}}},"required":["surfaces","values"]}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["MultiSurface"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"integer"}}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["integer","null"]}}},"required":["surfaces","values"]},"material":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":["array","null"],"items":{"type":["integer","null"]}},"value":{"type":"integer"}},"oneOf":[{"required":["value"]},{"required":["values"]}]}},"texture":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":["integer","null"]}}}}}}}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["CompositeSurface"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"integer"}}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["integer","null"]}}},"required":["surfaces","values"]},"material":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":["array","null"],"items":{"type":["integer","null"]}},"value":{"type":"integer"}},"oneOf":[{"required":["value"]},{"required":["values"]}]}},"texture":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":["integer","null"]}}}}}}}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["Solid"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"integer"}}}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}}},"required":["surfaces","values"]},"material":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}},"value":{"type":"integer"}},"oneOf":[{"required":["value"]},{"required":["values"]}]}},"texture":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":["integer","null"]}}}}}}}}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["CompositeSolid"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"integer"}}}}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}}}},"required":["surfaces","values"]},"material":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}}},"value":{"type":"integer"}},"oneOf":[{"required":["value"]},{"required":["values"]}]}},"texture":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":["integer","null"]}}}}}}}}}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["MultiSolid"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"integer"}}}}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}}}},"required":["surfaces","values"]},"material":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}}},"value":{"type":"integer"}},"oneOf":[{"required":["value"]},{"required":["values"]}]}},"texture":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":["integer","null"]}}}}}}}}}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["GeometryInstance"]},"template":{"type":"integer"},"boundaries":{"type":"array","items":{"type":"integer"},"minItems":1,"maxItems":1},"transformationMatrix":{"type":"array","items":{"type":"number"},"minItems":16,"maxItems":16}},"required":["type","template","boundaries","transformationMatrix"],"additionalProperties":false}]}}},"required":["type","parents"]}]},{"allOf":[{"properties":{"attributes":{"type":"object"},"parents":{"type":"array","description":"the IDs of the parents","items":{"type":"string"}},"children":{"type":"array","description":"the IDs of children","items":{"type":"string"}},"geographicalExtent":{"type":"array","items":{"type":"number"},"minItems":6,"maxItems":6}}},{"properties":{"type":{"enum":["TunnelPart"]},"geometry":{"type":"array","items":{"oneOf":[{"type":"object","properties":{"type":{"enum":["MultiSurface"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"integer"}}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["integer","null"]}}},"required":["surfaces","values"]},"material":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":["array","null"],"items":{"type":["integer","null"]}},"value":{"type":"integer"}},"oneOf":[{"required":["value"]},{"required":["values"]}]}},"texture":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":["integer","null"]}}}}}}}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["CompositeSurface"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"integer"}}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["integer","null"]}}},"required":["surfaces","values"]},"material":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":["array","null"],"items":{"type":["integer","null"]}},"value":{"type":"integer"}},"oneOf":[{"required":["value"]},{"required":["values"]}]}},"texture":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":["integer","null"]}}}}}}}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["Solid"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"integer"}}}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}}},"required":["surfaces","values"]},"material":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}},"value":{"type":"integer"}},"oneOf":[{"required":["value"]},{"required":["values"]}]}},"texture":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":["integer","null"]}}}}}}}}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["CompositeSolid"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"integer"}}}}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}}}},"required":["surfaces","values"]},"material":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}}},"value":{"type":"integer"}},"oneOf":[{"required":["value"]},{"required":["values"]}]}},"texture":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":["integer","null"]}}}}}}}}}},"required":["type","lod","boundaries"],"additionalProperties":false}]}}},"required":["type","parents"]}]},{"allOf":[{"properties":{"attributes":{"type":"object"},"parents":{"type":"array","description":"the IDs of the parents","items":{"type":"string"}},"children":{"type":"array","description":"the IDs of children","items":{"type":"string"}},"geographicalExtent":{"type":"array","items":{"type":"number"},"minItems":6,"maxItems":6}}},{"properties":{"type":{"enum":["WaterBody"]},"geometry":{"type":"array","items":{"oneOf":[{"type":"object","properties":{"type":{"enum":["MultiLineString"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"integer"}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["integer","null"]}}},"required":["surfaces","values"]}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["MultiSurface"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"integer"}}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["integer","null"]}}},"required":["surfaces","values"]},"material":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":["array","null"],"items":{"type":["integer","null"]}},"value":{"type":"integer"}},"oneOf":[{"required":["value"]},{"required":["values"]}]}},"texture":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":["integer","null"]}}}}}}}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["CompositeSurface"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"integer"}}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["integer","null"]}}},"required":["surfaces","values"]},"material":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":["array","null"],"items":{"type":["integer","null"]}},"value":{"type":"integer"}},"oneOf":[{"required":["value"]},{"required":["values"]}]}},"texture":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":["integer","null"]}}}}}}}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["Solid"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"integer"}}}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}}},"required":["surfaces","values"]},"material":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}},"value":{"type":"integer"}},"oneOf":[{"required":["value"]},{"required":["values"]}]}},"texture":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":["integer","null"]}}}}}}}}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["CompositeSolid"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"integer"}}}}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}}}},"required":["surfaces","values"]},"material":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}}},"value":{"type":"integer"}},"oneOf":[{"required":["value"]},{"required":["values"]}]}},"texture":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":["integer","null"]}}}}}}}}}},"required":["type","lod","boundaries"],"additionalProperties":false}]}}},"required":["type"]}]},{"allOf":[{"allOf":[{"properties":{"attributes":{"type":"object"},"parents":{"type":"array","description":"the IDs of the parents","items":{"type":"string"}},"children":{"type":"array","description":"the IDs of children","items":{"type":"string"}},"geographicalExtent":{"type":"array","items":{"type":"number"},"minItems":6,"maxItems":6}}},{"properties":{"geometry":{"type":"array","items":{"oneOf":[{"type":"object","properties":{"type":{"enum":["MultiLineString"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"integer"}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["integer","null"]}}},"required":["surfaces","values"]}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["MultiSurface"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"integer"}}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["integer","null"]}}},"required":["surfaces","values"]},"material":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":["array","null"],"items":{"type":["integer","null"]}},"value":{"type":"integer"}},"oneOf":[{"required":["value"]},{"required":["values"]}]}},"texture":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":["integer","null"]}}}}}}}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["CompositeSurface"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"integer"}}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["integer","null"]}}},"required":["surfaces","values"]},"material":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":["array","null"],"items":{"type":["integer","null"]}},"value":{"type":"integer"}},"oneOf":[{"required":["value"]},{"required":["values"]}]}},"texture":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":["integer","null"]}}}}}}}},"required":["type","lod","boundaries"],"additionalProperties":false}]}}}}]},{"properties":{"type":{"enum":["Waterway"]}},"required":["type"]}]}]}},"vertices":{"type":"array","items":{"type":"array","items":{"type":"number"},"minItems":3,"maxItems":3}},"transform":{"type":"object","properties":{"scale":{"type":"array","items":{"type":"number"},"minItems":3,"maxItems":3},"translate":{"type":"array","items":{"type":"number"},"minItems":3,"maxItems":3}},"required":["scale","translate"],"additionalProperties":false},"appearance":{"type":"object","properties":{"default-theme-texture":{"type":"string"},"default-theme-material":{"type":"string"},"materials":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string"},"ambientIntensity":{"type":"number"},"diffuseColor":{"type":"array","items":{"type":"number"},"minItems":3,"maxItems":3},"emissiveColor":{"type":"array","items":{"type":"number"},"minItems":3,"maxItems":3},"specularColor":{"type":"array","items":{"type":"number"},"minItems":3,"maxItems":3},"shininess":{"type":"number"},"transparency":{"type":"number"},"isSmooth":{"type":"boolean"}},"required":["name"],"additionalProperties":false}},"textures":{"type":"array","items":{"type":"object","properties":{"type":{"enum":["PNG","JPG"]},"image":{"type":"string"},"wrapMode":{"enum":["none","wrap","mirror","clamp","border"]},"textureType":{"enum":["unknown","specific","typical"]},"borderColor":{"type":"array","items":{"type":"number"},"minItems":3,"maxItems":4}},"additionalProperties":false}},"vertices-texture":{"type":"array","items":{"type":"array","items":{"type":"number"},"minItems":2,"maxItems":2}}},"additionalProperties":false},"geometry-templates":{"type":"object","properties":{"templates":{"type":"array","items":{"oneOf":[{"type":"object","properties":{"type":{"enum":["MultiPoint"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"integer"}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["integer","null"]}}},"required":["surfaces","values"]}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["MultiLineString"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"integer"}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["integer","null"]}}},"required":["surfaces","values"]}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["Solid"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"integer"}}}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}}},"required":["surfaces","values"]},"material":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}},"value":{"type":"integer"}},"oneOf":[{"required":["value"]},{"required":["values"]}]}},"texture":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":["integer","null"]}}}}}}}}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["MultiSolid"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"integer"}}}}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}}}},"required":["surfaces","values"]},"material":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}}},"value":{"type":"integer"}},"oneOf":[{"required":["value"]},{"required":["values"]}]}},"texture":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":["integer","null"]}}}}}}}}}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["CompositeSolid"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"integer"}}}}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}}}},"required":["surfaces","values"]},"material":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["array","null"],"items":{"type":["integer","null"]}}}},"value":{"type":"integer"}},"oneOf":[{"required":["value"]},{"required":["values"]}]}},"texture":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":["integer","null"]}}}}}}}}}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["MultiSurface"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"integer"}}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["integer","null"]}}},"required":["surfaces","values"]},"material":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":["array","null"],"items":{"type":["integer","null"]}},"value":{"type":"integer"}},"oneOf":[{"required":["value"]},{"required":["values"]}]}},"texture":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":["integer","null"]}}}}}}}},"required":["type","lod","boundaries"],"additionalProperties":false},{"type":"object","properties":{"type":{"enum":["CompositeSurface"]},"lod":{"type":"string","pattern":"^(\\d\\.)(\\d)$|^(\\d)$"},"boundaries":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":"integer"}}}},"semantics":{"type":"object","properties":{"surfaces":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","oneOf":[{"enum":["RoofSurface"]},{"enum":["GroundSurface"]},{"enum":["WallSurface"]},{"enum":["ClosureSurface"]},{"enum":["OuterCeilingSurface"]},{"enum":["OuterFloorSurface"]},{"enum":["Window"]},{"enum":["Door"]},{"enum":["InteriorWallSurface"]},{"enum":["CeilingSurface"]},{"enum":["FloorSurface"]},{"enum":["WaterSurface"]},{"enum":["WaterGroundSurface"]},{"enum":["WaterClosureSurface"]},{"enum":["TrafficArea"]},{"enum":["AuxiliaryTrafficArea"]},{"enum":["TransportationHole"]},{"enum":["TransportationMarking"]},{"type":"string","pattern":"(\\+)\\w+"}]}}}},"values":{"type":["array","null"],"items":{"type":["integer","null"]}}},"required":["surfaces","values"]},"material":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":["array","null"],"items":{"type":["integer","null"]}},"value":{"type":"integer"}},"oneOf":[{"required":["value"]},{"required":["values"]}]}},"texture":{"type":"object","additionalProperties":{"type":"object","properties":{"values":{"type":"array","items":{"type":"array","items":{"type":"array","items":{"type":["integer","null"]}}}}}}}},"required":["type","lod","boundaries"],"additionalProperties":false}]}},"vertices-templates":{"type":"array","items":{"type":"array","items":{"type":"number"},"minItems":3,"maxItems":3}}},"required":["templates","vertices-templates"],"additionalProperties":false}},"required":["type","transform","version","CityObjects","vertices"]}
curations-schema.json
{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://oss-review-toolkit.org/curations.yml", "title": "ORT curations", "description": "The OSS-Review-Toolkit (ORT) provides a possibility to correct metadata and set the concluded license for a specific packages (dependencies) in curation files. A full list of all available options can be found at https://github.com/oss-review-toolkit/ort/blob/main/docs/config-file-curations-yml.md.", "type": "array", "items": { "type": "object", "properties": { "id": { "type": "string" }, "curations": { "type": "object", "properties": { "comment": { "type": "string" }, "authors": { "type": "array", "items": [ { "type": "string" } ] }, "concluded_license": { "type": "string" }, "cpe": { "type": "string" }, "declared_license_mapping": { "type": "object" }, "description": { "type": "string" }, "homepage_url": { "type": "string" }, "purl": { "type": "string" }, "binary_artifact": { "type": "object", "properties": { "url": { "type": "string" }, "hash": { "$ref": "#/definitions/hash" } }, "required": [ "hash", "url" ] }, "source_artifact": { "type": "object", "properties": { "url": { "type": "string" }, "hash": { "$ref": "#/definitions/hash" } }, "required": [ "hash", "url" ] }, "vcs": { "$ref": "#/definitions/vcsMatcher" }, "is_metadata_only": { "type": "boolean" }, "is_modified": { "type": "boolean" } } } }, "required": [ "id", "curations" ] }, "definitions": { "vcsMatcher": { "anyOf": [ { "required": [ "type" ] }, { "required": [ "url" ] }, { "required": [ "revision" ] }, { "required": [ "path" ] } ], "properties": { "path": { "type": "string" }, "revision": { "type": "string" }, "type": { "type": "string" }, "url": { "type": "string" } }, "type": "object" }, "hash": { "type": ["object"], "properties": { "value": { "type": "string" }, "algorithm": { "type": "string" } }, "required": [ "value", "algorithm" ] } } }
csscomb.json
{ "$schema": "http://json-schema.org/draft-04/schema#", "id": "https://json.schemastore.org/csscomb.json", "properties": { "exclude": { "description": "A list of files to ignore in the current project\nhttps://github.com/csscomb/csscomb.js/blob/dev/doc/configuration.md#create-custom-config", "type": "array", "uniqueItems": true, "items": { "type": "string", "minLength": 1 } }, "verbose": { "type": "boolean" }, "always-semicolon": { "description": "Whether to add missing semicolon in the current project\nhttps://github.com/csscomb/csscomb.js/blob/dev/doc/configuration.md#create-custom-config", "type": "boolean" }, "block-indent": { "description": "A block indent style in the current project\nhttps://github.com/csscomb/csscomb.js/blob/dev/doc/configuration.md#create-custom-config", "type": "string" }, "color-case": { "description": "A hexadecimal color style in the current project\nhttps://github.com/csscomb/csscomb.js/blob/dev/doc/configuration.md#create-custom-config", "type": "string", "enum": ["lower", "upper"] }, "color-shorthand": { "description": "Whether to expand hexadecimal color or use shorthand in the current project\nhttps://github.com/csscomb/csscomb.js/blob/dev/doc/configuration.md#create-custom-config", "type": "boolean" }, "element-case": { "description": "Whether to unify case of element selector in the current project\nhttps://github.com/csscomb/csscomb.js/blob/dev/doc/configuration.md#create-custom-config", "type": "string", "enum": ["lower", "upper"] }, "eof-newline": { "description": "Whether to add a trailing line break in the current project\nhttps://github.com/csscomb/csscomb.js/blob/dev/doc/configuration.md#create-custom-config", "type": "boolean" }, "leading-zero": { "description": "Whether to add leading zero in a dimension in the current project\nhttps://github.com/csscomb/csscomb.js/blob/dev/doc/configuration.md#create-custom-config", "type": "boolean" }, "quotes": { "description": "A quote style in the current project\nhttps://github.com/csscomb/csscomb.js/blob/dev/doc/configuration.md#create-custom-config", "type": "string", "enum": ["single", "double"] }, "remove-empty-rulesets": { "description": "Whether to remove empty rulesets\nhttps://github.com/csscomb/csscomb.js/blob/dev/doc/configuration.md#create-custom-config", "type": "boolean" }, "space-after-colon": { "description": "A space style after a colon in the current project\nhttps://github.com/csscomb/csscomb.js/blob/dev/doc/configuration.md#create-custom-config", "type": "string" }, "space-after-combinator": { "description": "A space style after a combinator in the current project\nhttps://github.com/csscomb/csscomb.js/blob/dev/doc/configuration.md#create-custom-config", "type": "string" }, "space-after-opening-brace": { "description": "A space style after an opening brace in the current project\nhttps://github.com/csscomb/csscomb.js/blob/dev/doc/configuration.md#create-custom-config", "type": "string" }, "space-after-selector-delimiter": { "description": "A space style after a selector delimiter in the current project\nhttps://github.com/csscomb/csscomb.js/blob/dev/doc/configuration.md#create-custom-config", "type": "string" }, "space-after-closing-brace": { "description": "A space style after a closing brace in the current project\nhttps://github.com/csscomb/csscomb.js/blob/dev/doc/configuration.md#create-custom-config", "type": "string" }, "space-before-colon": { "description": "A space style before a colon in the current project\nhttps://github.com/csscomb/csscomb.js/blob/dev/doc/configuration.md#create-custom-config", "type": "string" }, "space-before-combinator": { "description": "A space style before a combinator in the current project\nhttps://github.com/csscomb/csscomb.js/blob/dev/doc/configuration.md#create-custom-config", "type": "string" }, "space-before-opening-brace": { "description": "A space style before an opening brace in the current project\nhttps://github.com/csscomb/csscomb.js/blob/dev/doc/configuration.md#create-custom-config", "type": "string" }, "space-before-selector-delimiter": { "description": "A space style before a selector delimiter in the current project\nhttps://github.com/csscomb/csscomb.js/blob/dev/doc/configuration.md#create-custom-config", "type": "string" }, "space-between-declarations": { "description": "A space style between declarations in the current project\nhttps://github.com/csscomb/csscomb.js/blob/dev/doc/configuration.md#create-custom-config", "type": "string" }, "strip-spaces": { "description": "Whether to trim trailing space in the current project\nhttps://github.com/csscomb/csscomb.js/blob/dev/doc/configuration.md#create-custom-config", "type": "boolean" }, "unitless-zero": { "description": "Whether to remove unit in zero-valued dimension in the current project\nhttps://github.com/csscomb/csscomb.js/blob/dev/doc/configuration.md#create-custom-config", "type": "boolean" }, "vendor-prefix-align": { "description": "Whether to align prefix in property and value in the current project\nhttps://github.com/csscomb/csscomb.js/blob/dev/doc/configuration.md#create-custom-config", "type": "boolean" }, "sort-order": { "description": "A sort order in the current project\nhttps://github.com/csscomb/csscomb.js/blob/dev/doc/configuration.md#create-custom-config", "type": "array", "items": { "type": "array", "items": { "type": "string" } } }, "tab-size": { "type": "boolean" }, "sort-order-fallback": { "description": "A sort style of unknown properties in the current project\nhttps://github.com/csscomb/csscomb.js/blob/dev/doc/configuration.md#create-custom-config", "type": "string" } }, "title": "A CSS Comb config schema", "type": "object" }
cicsts-resourcemodel.json
{ "$id": "http://www.ibm.com/xmlns/prod/cics/cicsts-resourcemodel", "$schema": "http://json-schema.org/draft-07/schema#", "title": "Resource model JSON Schema.", "description": "Super-schema that describes all versions of 'Resource model JSON Schema.'", "allOf": [ { "title": "Resource model JSON Schema.", "description": "Schema that describes the structure of a resource model document.", "if": { "properties": { "schemaVersion": { "const": "resourceModel/1.0" } } }, "then": { "$ref": "cicsts-resourcemodel/cicsts-resourcemodel-1.0.1.json" } } ] }
agripparc-1.4.json
{ "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "id": "https://json.schemastore.org/agripparc-1.4.json", "properties": { "props": { "description": "Which prop declaration method to use", "type": "string", "enum": ["ts", "jsdoc", "prop-types", "none"] }, "children": { "description": "Whether the component is meant to have children (FC) or not (VFC)", "type": "boolean" }, "typescript": { "description": "Wether to use Typescript", "type": "boolean" }, "flat": { "description": "Whether to create a new, dedicated dir for the component (false) or not (true)", "type": "boolean" }, "styling": { "description": "Which styling solution to use", "type": "string", "enum": [ "css", "scss", "jss", "mui", "react-native", "styled-components", "none" ] }, "stylingModule": { "description": "Relevant for `css` or `scss` styling. If true, generates a scoped `module` stylesheet", "type": "boolean" }, "importReact": { "description": "Whether to import React", "type": "boolean" }, "overwrite": { "description": "Whether to overwrite existing files, if any are found", "type": "boolean" }, "postCommand": { "description": "A command to run after a component was successfully generated", "type": "string" }, "baseDir": { "description": "Path to a base directory which components should be genenrated in or relative to", "type": "string" }, "destination": { "description": "The path in which the component folder/files should be generated, relative to baseDir", "type": "string" }, "allowOutsideBase": { "description": "If true, allows components to be generated outside the resolved baseDir", "type": "boolean" }, "exportType": { "description": "Whether to use a named export or a default export for the component", "type": "string", "enum": ["named", "default"] }, "declaration": { "description": "Whether to declare the component as a const with an arrow function or a function declaration", "type": "string", "enum": ["const", "function"] }, "tsPropsDeclaration": { "description": "For TS components, whether to declare props as an interface or a type", "type": "string", "enum": ["interface", "type"] }, "memo": { "description": "Whether to generate a memo() component. Overrides the declaration option", "type": "boolean" }, "separateIndex": { "description": "Whether to use a dedicated index file (recommended)", "type": "boolean" }, "reactNative": { "description": "Whether to generate React Native components" }, "debug": { "description": "Whether to log additional debug information", "type": "boolean" }, "$schema": { "description": "Link to https://json.schemastore.org/agripparc-1.4.json", "type": "string", "enum": ["https://json.schemastore.org/agripparc-1.4.json"] } }, "title": "JSON schema for the Agrippa config file", "type": "object" }
meltano.schema.json
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://meltano.com/meltano.schema.json", "title": "JSON Schema for meltano.yml", "description": "Meltano (https://meltano.com) is an open source platform for building, running & orchestrating ELT pipelines", "type": "object", "additionalProperties": false, "properties": { "version": { "const": 1 }, "annotations": { "$ref": "#/$defs/annotations" }, "default_environment": { "type": "string", "description": "A default environment to be used when one is not present as an argument or as an environment variable." }, "send_anonymous_usage_stats": { "type": "boolean", "description": "Share anonymous usage data with the Meltano team to help them gauge interest and allocate development time", "default": true }, "project_id": { "type": "string", "description": "A globally unique project identifier. Defaults to a Meltano-generated unique GUID for each project." }, "database_uri": { "type": "string", "description": "A database URI for the project system database. Defaults to a SQLite file stored at .meltano/meltano.db", "default": "sqlite:///$MELTANO_PROJECT_ROOT/.meltano/meltano.db" }, "python": { "type": "string", "description": "The python version to use for plugins, specified as a path, or as the name of an executable to find within a directory in $PATH. If not specified, the python executable that was used to run Meltano will be used (within a separate virtual environment). This can be overridden on a per-plugin basis by setting the `python` property for the plugin.", "examples": [ "/usr/bin/python3.10", "python", "python3.11" ] }, "state_backend": { "type": "object", "description": "Configuration for state backend.", "properties": { "uri": { "type": "string", "description": "The URI pointing to the backend to use.", "default": "systemdb" }, "lock_timeout_seconds": { "type": "integer", "description": "The number of seconds a lock on a state file is considered valid." }, "lock_retry_seconds": { "type": "integer", "description": "The number of seconds to wait between retrying lock acquisition." }, "azure": { "type": "object", "description": "Configuration for Azure Blob Storage state backend.", "properties": { "connection_string": { "type": "string", "description": "The azure connection string to use for connecting to Azure Blob Storage." } } }, "gcs": { "type": "object", "description": "Configuration for Google Cloud Storage state backend.", "properties": { "application_credentials": { "type": "string", "description": "Path to a Google credentials file to use for authenticating to Google Cloud Storage." } } }, "s3": { "type": "object", "description": "Configuration for AWS S3 state backend.", "properties": { "aws_access_key_id": { "type": "string", "description": "AWS access key ID to use for authenticating to AWS S3." }, "aws_secret_access_key": { "type": "string", "description": "AWS secret access key to use for authenticating to AWS S3." }, "endpoint_url": { "type": "string", "description": "S3 endpoint URL to use." } } } } }, "environments": { "type": "array", "description": "An array of environments (i.e. dev, stage, prod) with override configs for plugins based on the environment its run in.", "items": { "$ref": "#/$defs/environments" } }, "discovery_url": { "type": "string", "description": "URL to remote manifest of Meltano plugins, used by meltano discover. Set to 'false' to disable.", "default": "https://www.meltano.com/discovery.yml" }, "include_paths": { "type": "array", "description": "An array of paths (relative to the project directory) of other Meltano config files to include in the configuration.", "items": { "type": "string" } }, "plugins": { "type": "object", "additionalProperties": false, "properties": { "extractors": { "type": "array", "items": { "$ref": "#/$defs/plugins/extractors" } }, "loaders": { "type": "array", "items": { "$ref": "#/$defs/plugins/loaders" } }, "mappers": { "type": "array", "items": { "$ref": "#/$defs/plugins/mappers" } }, "orchestrators": { "type": "array", "items": { "$ref": "#/$defs/plugins/orchestrators" } }, "transformers": { "type": "array", "items": { "$ref": "#/$defs/plugins/transformers" } }, "files": { "type": "array", "items": { "$ref": "#/$defs/plugins/files" } }, "utilities": { "type": "array", "items": { "$ref": "#/$defs/plugins/utilities" } }, "transforms": { "type": "array", "items": { "$ref": "#/$defs/plugins/transforms" } } } }, "schedules": { "type": "array", "items": { "$ref": "#/$defs/schedules" }, "description": "Scheduled ELT jobs, added using 'meltano schedule'" }, "env": { "$ref": "#/$defs/env" }, "jobs": { "type": "array", "items": { "$ref": "#/$defs/jobs" }, "description": "Jobs, added using 'meltano job'" }, "database_max_retries": { "type": "integer", "description": "The number of times to retry connecting to the Meltano database.", "default": 3, "minimum": 0 }, "database_retry_timeout": { "type": "integer", "description": "The time in seconds to wait between Meltano database connection attempts.", "default": 5, "minimum": 0 }, "cli": { "type": "object", "description": "CLI related settings.", "properties": { "log_config": { "type": "string", "description": "The path to the logging config, relative to the Meltano project root.", "default": "logging.yaml" } } }, "elt": { "type": "object", "description": "ELT related settings", "properties": { "buffer_size": { "type": "integer", "description": "The size of the ELT buffer in bytes.", "default": 10485760 } } }, "experimental": { "type": "boolean", "description": "Whether experimental features should be enabled.", "default": false }, "ff": { "type": "object", "description": "A feature flag, which can be used to enable or disable particular Meltano features.", "properties": { "enable_uvicorn": { "type": "boolean", "description": "Whether to use Uvicorn rather than Gunicorn as the API server.", "default": false }, "enable_api_scheduled_job_list": { "type": "boolean", "description": "Whether the API includes scheduled jobs in listings.", "default": false }, "strict_env_var_mode": { "type": "boolean", "description": "Whether references to undefined environment variables cause Meltano to exit with an error.", "default": false }, "plugin_locks_required": { "type": "boolean", "description": "Whether plugin locks are required to run a job.", "default": false } } }, "hub_api_root": { "type": [ "string", "null" ], "description": "The URL to the root of the Meltano Hub API.", "default": null, "examples": [ "https://hub.meltano.com/meltano/api/v1" ] }, "hub_url": { "type": "string", "description": "The URL for Meltano Hub.", "default": "https://hub.meltano.com" }, "hub_url_auth": { "type": [ "string", "boolean", "null" ], "description": "The value of the `Authorization` header when making requests to Meltano Hub. If null, false, or unset, no `Authorization` header is used.", "default": null, "examples": [ "Bearer $ACCESS_TOKEN" ] }, "snowplow": { "type": "object", "description": "Snowplow related settings.", "properties": { "collector_endpoints": { "type": "array", "description": "Array of Snowplow collector endpoints.", "items": { "type": "string", "description": "A URL to which Snowplow events will be sent if telemetry is enabled." }, "default": [ "https://sp.meltano.com" ] } } } }, "$defs": { "annotations": { "type": "object", "description": "Arbitrary annotations keyed by tool/vendor name - not processed by the core Meltano library or CLI", "propertyNames": { "type": "string" }, "additionalProperties": { "type": "object" } }, "plugins": { "plugin_generic": { "type": "object", "required": [ "name" ], "properties": { "annotations": { "$ref": "#/$defs/annotations" }, "name": { "type": "string", "description": "The name of the plugin.", "examples": [ "target-jsonl" ] }, "description": { "type": "string", "description": "A description of the plugin." }, "plugin_type": { "type": "string", "description": "The type of the plugin.", "enum": [ "extractors", "loaders", "orchestrators", "transformers", "files", "utilities", "transforms", "mappers" ] }, "repo": { "type": "string", "description": "The URL of the repository containing the source code for the plugin." }, "ext_repo": { "type": "string", "description": "The URL of the repository containing the source code for a Meltano extension plugin that typically wraps some other tool, in which case the 'repo' property is used for the URL of the repository for that tool." }, "inherit_from": { "type": "string", "description": "An existing plugin to inherit from." }, "pip_url": { "type": "string", "description": "The pip hosted package name or URL", "examples": [ "target-jsonl", "git+https://gitlab.com/meltano/tap-facebook.git", "wtforms==2.2.1 apache-airflow==1.10.2" ] }, "variant": { "type": "string", "description": "The variant of the plugin." }, "namespace": { "type": "string", "description": "The namespace of this plugin", "examples": [ "tap_csv", "target_jsonl" ] }, "config": { "type": "object", "description": "Your plugin configuration, type 'meltano config <plugin> list' for details" }, "label": { "type": "string", "description": "A user friendly label describing the plugin", "examples": [ "Stripe", "Facebook Ads" ] }, "logo_url": { "type": "string", "description": "An optional logo URL for this plugin" }, "python": { "type": "string", "description": "The python version to use for this plugin, specified as a path, or as the name of an executable to find within a directory in $PATH. If not specified, the top-level `python` setting will be used, or if it is not set, the python executable that was used to run Meltano will be used (within a separate virtual environment).", "examples": [ "/usr/bin/python3.10", "python", "python3.11" ] }, "executable": { "type": "string", "description": "The plugin's executable name, as defined in setup.py (if a Python based plugin)", "examples": [ "tap-stripe", "tap-covid-19" ] }, "settings": { "type": "array", "items": { "$ref": "#/$defs/base_setting" } }, "docs": { "type": "string", "description": "A URL to the documentation for this plugin" }, "settings_group_validation": { "type": "array", "items": { "type": "array", "description": "A set consisting of one valid combination of required setting names", "items": { "type": "string" } } }, "commands": { "type": "object", "description": "A mapping of command names to either a string command, or an object containing info about the command.", "additionalProperties": { "oneOf": [ { "type": "object", "required": [ "args" ], "properties": { "annotations": { "$ref": "#/$defs/annotations" }, "args": { "type": "string", "description": "Command arguments" }, "description": { "type": "string", "description": "Documentation displayed when listing commands" }, "executable": { "type": "string", "description": "Override the plugin's executable for this command" }, "container_spec": { "type": "object", "required": [ "image" ], "description": "Container specification for this command", "properties": { "annotations": { "$ref": "#/$defs/annotations" }, "image": { "type": "string", "description": "Container image", "examples": [ "ghcr.io/dbt-labs/dbt-postgres:latest" ] }, "command": { "type": "string", "description": "Container command", "examples": [ "list", "test", "compile" ] }, "entrypoint": { "type": "string", "description": "Container entrypoint" }, "ports": { "type": "object", "description": "Mapping of host to container ports", "propertyNames": { "type": "string" }, "additionalProperties": { "type": "string" }, "examples": [ { "5000": "5000" } ] }, "volumes": { "type": "array", "description": "Array of volumes to mount during container execution", "items": { "type": "string", "examples": [ "$MELTANO_PROJECT_ROOT/transform/:/usr/app/" ] } }, "env": { "type": "object", "description": "Mapping to environment variable to set inside the container. These take precedence over Meltano own runtime environment variables.", "propertyNames": { "type": "string" }, "additionalProperties": { "type": "string" }, "examples": [ { "DBT_PROFILES_DIR": "/usr/app/profile/" } ] } } } } }, { "type": "string", "description": "The command as a string." } ] } }, "requires": { "$ref": "#/$defs/requires" }, "env": { "$ref": "#/$defs/env" } } }, "extractor_shared": { "type": "object", "properties": { "annotations": { "$ref": "#/$defs/annotations" }, "catalog": { "type": "string", "description": "A path to a catalog file (relative to the project directory) to be provided to the extractor when it is run in sync mode." }, "load_schema": { "type": "string", "description": "The name of the database schema extracted data should be loaded into." }, "metadata": { "type": "object", "description": "An object containing Singer stream and property metadata", "default": {} }, "schema": { "type": "object", "description": "An object representing override rules for a Singer stream schema", "default": {} }, "state": { "type": "string", "description": "A path to a state file (relative to the project directory) to be provided to the extractor when it is run as part of a pipeline using meltano elt." }, "select": { "type": "array", "default": [ "*.*" ], "description": "An array of entity selection rules in the form '<entity|*>.<attribute|*>'", "items": { "type": "string" } }, "select_filter": { "type": "array", "description": "An array of entity selection filter rules that are applied to the extractor's discovered or provided catalog file when the extractor is run.", "items": { "type": "string" }, "default": [] } } }, "extractors": { "description": "https://docs.meltano.com/concepts/plugins#extractors", "type": "object", "allOf": [ { "$ref": "#/$defs/plugins/plugin_generic" }, { "$ref": "#/$defs/plugins/extractor_shared" }, { "type": "object", "properties": { "capabilities": { "type": "array", "items": { "type": "string", "enum": [ "properties", "catalog", "discover", "state", "about", "stream-maps", "activate-version", "batch", "test", "log-based", "schema-flattening" ] } } } } ], "unevaluatedProperties": false }, "loaders": { "description": "https://docs.meltano.com/concepts/plugins#loaders", "type": "object", "allOf": [ { "$ref": "#/$defs/plugins/plugin_generic" }, { "properties": { "capabilities": { "type": "array", "items": { "type": "string", "enum": [ "about", "stream-maps", "activate-version", "batch", "soft-delete", "hard-delete", "datatype-failsafe", "record-flattening" ] } }, "dialect": { "type": "string", "description": "The name of the dialect of the target database, so that transformers in the same pipeline and Meltano UI's Analysis feature can determine the type of database to connect to." }, "target_schema": { "type": "string", "description": "The name of the database schema the loader has been configured to load data into (assuming the destination supports schemas), so that transformers in the same pipeline can determine the database schema to load data from." } } } ], "unevaluatedProperties": false }, "orchestrators": { "description": "https://docs.meltano.com/concepts/plugins#orchestrators", "type": "object", "$ref": "#/$defs/plugins/plugin_generic", "unevaluatedProperties": false }, "transformers": { "description": "https://docs.meltano.com/concepts/plugins#transforms", "type": "object", "$ref": "#/$defs/plugins/plugin_generic", "unevaluatedProperties": false }, "files": { "description": "https://docs.meltano.com/concepts/plugins#file-bundles", "type": "object", "$ref": "#/$defs/plugins/plugin_generic", "unevaluatedProperties": false }, "utilities": { "description": "https://docs.meltano.com/concepts/plugins#utilities", "type": "object", "$ref": "#/$defs/plugins/plugin_generic", "unevaluatedProperties": false }, "transforms": { "description": "https://docs.meltano.com/concepts/plugins#transforms", "type": "object", "allOf": [ { "$ref": "#/$defs/plugins/plugin_generic" }, { "properties": { "annotations": { "$ref": "#/$defs/annotations" }, "vars": { "type": "object", "description": "An object containing dbt model variables" }, "package_name": { "type": "string", "description": "The name of the dbt package's internal dbt project: the value of name in dbt_project.yml." } } } ], "unevaluatedProperties": false }, "mapper_specific": { "type": "object", "properties": { "annotations": { "$ref": "#/$defs/annotations" }, "mappings": { "description": "Name of the invokable mappings and their associated configs.", "type": "array", "items": { "type": "object", "additionalProperties": false, "properties": { "annotations": { "$ref": "#/$defs/annotations" }, "name": { "type": "string" }, "config": { "type": "object" } } }, "required": [ "config", "name" ] } } }, "mappers": { "description": "https://docs.meltano.com/concepts/plugins#mappers", "type": "object", "allOf": [ { "$ref": "#/$defs/plugins/plugin_generic" }, { "$ref": "#/$defs/plugins/mapper_specific" } ], "unevaluatedProperties": false } }, "base_setting": { "type": "object", "required": [ "name" ], "additionalProperties": false, "properties": { "annotations": { "$ref": "#/$defs/annotations" }, "name": { "type": "string", "description": "The name of the setting", "examples": [ "account_id" ] }, "aliases": { "type": "array", "description": "Alternative setting names that can be used in 'meltano.yml' and 'meltano config set'", "examples": [ "accountId", "account_identifier" ], "items": { "type": "string" } }, "label": { "type": "string", "description": "A user friendly label for the setting", "examples": [ "Account ID" ] }, "value": { "description": "The default value of this setting if not otherwise defined" }, "placeholder": { "type": "string", "description": "A placeholder value for this setting", "examples": [ "Ex. 18161" ] }, "kind": { "type": "string", "description": "The type of value this setting contains", "enum": [ "oauth", "hidden", "password", "date_iso8601", "file", "email", "integer", "options", "object", "array", "boolean", "string" ] }, "description": { "type": "string", "description": "A description for what this setting does", "examples": [ "The unique account identifier for your Stripe Account" ] }, "tooltip": { "type": "string", "description": "A phrase to provide additional information on this setting", "examples": [ "Here is some additional info..." ] }, "documentation": { "type": "string", "description": "A link to documentation on this setting", "examples": [ "https://meltano.com/" ] }, "protected": { "type": "boolean", "description": "A protected setting cannot be changed from the UI", "default": false }, "env": { "type": "string", "description": "An alternative environment variable name to populate with this settings value in the plugin environment.", "examples": [ "GITLAB_API_TOKEN", "FACEBOOK_ADS_ACCESS_TOKEN" ] }, "value_processor": { "description": "Use with `kind: object` to pre-process the keys in a particular way.", "enum": [ "nest_object", "upcase_string" ] }, "value_post_processor": { "description": "Use with `kind: object` to post-process the keys in a particular way.", "enum": [ "stringify" ] }, "oauth": { "type": "object", "required": [ "provider" ], "properties": { "provider": { "type": "string", "description": "The name of a Meltano-supported OAuth provider", "examples": [ "google-adwords" ] } } }, "options": { "type": "array", "items": { "type": "object", "properties": { "label": { "type": "string", "description": "A user friendly label for the option", "examples": [ "Account ID" ] }, "value": { "description": "The value of this option" } }, "required": [ "label", "value" ], "additionalProperties": false } } } }, "schedules": { "type": "object", "oneOf": [ { "required": [ "name", "job", "interval" ] }, { "required": [ "name", "extractor", "loader", "transform", "interval", "start_date" ] } ], "description": "https://docs.meltano.com/guide/orchestration", "additionalProperties": false, "properties": { "annotations": { "$ref": "#/$defs/annotations" }, "name": { "type": "string", "description": "The schedule's unique name", "examples": [ "gitlab-to-jsonl" ] }, "job": { "type": "string", "description": "The name of a meltano job", "examples": [ "some-custom-job" ] }, "extractor": { "type": "string", "description": "The name of the extractor plugin", "examples": [ "tap-gitlab" ] }, "env": { "$ref": "#/$defs/env" }, "loader": { "type": "string", "description": "The name of the loader plugin", "examples": [ "target-jsonl" ] }, "interval": { "type": "string", "description": "A UNIX cron expression to represent the frequency the scheduled job should execute", "examples": [ "@hourly", "@daily", "@weekly", "0 0 * * *" ], "pattern": "^((@(hourly|daily|weekly|monthly|yearly|once))|((((\\d+,)+\\d+|(\\d+(\\/|-)\\d+)|\\d+|\\*) ?){5,6}))$" }, "transform": { "type": "string", "description": "Describes if transforms should run, be skipped, or if only transforms should execute (skip extractors and loaders)", "default": "skip", "enum": [ "run", "skip", "only" ] }, "start_date": { "type": "string", "description": "The date when the schedule should first execute", "examples": [ "2020-08-06 00:00:00" ] } } }, "jobs": { "type": "object", "required": [ "name", "tasks" ], "description": "https://docs.meltano.com/reference/command-line-interface#job", "additionalProperties": false, "properties": { "annotations": { "$ref": "#/$defs/annotations" }, "name": { "type": "string", "description": "This jobs unique name", "examples": [ "gitlab-to-jsonl" ] }, "tasks": { "oneOf": [ { "type": "string" }, { "type": "array", "items": { "oneOf": [ { "type": "string" }, { "type": "array", "items": { "type": "string" } } ] } } ] } } }, "environments": { "type": "object", "additionalProperties": false, "required": [ "name" ], "properties": { "annotations": { "$ref": "#/$defs/annotations" }, "name": { "type": "string", "description": "The name of the environment." }, "config": { "type": "object", "description": "An object of environment specific configurations.", "additionalProperties": false, "properties": { "plugins": { "type": "object", "description": "An object of environment specific plugin configurations.", "properties": { "extractors": { "type": "array", "items": { "allOf": [ { "$ref": "#/$defs/environments/$defs/plugins" }, { "$ref": "#/$defs/plugins/extractor_shared" } ], "unevaluatedProperties": false } }, "loaders": { "type": "array", "items": { "unevaluatedProperties": false, "$ref": "#/$defs/environments/$defs/plugins" } }, "orchestrators": { "type": "array", "items": { "unevaluatedProperties": false, "$ref": "#/$defs/environments/$defs/plugins" } }, "transformers": { "type": "array", "items": { "unevaluatedProperties": false, "$ref": "#/$defs/environments/$defs/plugins" } }, "files": { "type": "array", "items": { "unevaluatedProperties": false, "$ref": "#/$defs/environments/$defs/plugins" } }, "utilities": { "type": "array", "items": { "unevaluatedProperties": false, "$ref": "#/$defs/environments/$defs/plugins" } }, "transforms": { "type": "array", "items": { "unevaluatedProperties": false, "$ref": "#/$defs/environments/$defs/plugins" } } } } } }, "env": { "$ref": "#/$defs/env" } }, "$defs": { "plugins": { "type": "object", "required": [ "name" ], "properties": { "annotations": { "$ref": "#/$defs/annotations" }, "name": { "type": "string" }, "config": { "type": "object" }, "env": { "$ref": "#/$defs/env" } } } } }, "requires": { "type": "object", "description": "A set of plugin requirements.", "additionalProperties": false, "patternProperties": { "^(extractors|loaders|transforms|orchestrators|transformers|files|utilities|mappers)$": { "type": "array", "items": { "$ref": "#/$defs/plugin_requirement" } } } }, "plugin_requirement": { "type": "object", "description": "A single plugin requirement", "additionalProperties": false, "properties": { "annotations": { "$ref": "#/$defs/annotations" }, "name": { "type": "string", "description": "The name of the required plugin" }, "variant": { "type": "string", "description": "The variant of the required plugin" } } }, "env": { "type": "object", "description": "Mapping of environment variables for use in config.", "propertyNames": { "type": "string" }, "additionalProperties": { "type": "string" }, "examples": [ { "SNOWFLAKE_ACCOUNT": "my.snowflake.account.com" } ] } } }
resjson.json
{ "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": { "minProperties": 1, "anyOf": [ { "type": "string" }, { "$ref": "#/definitions/resource" } ] }, "definitions": { "resource": { "type": "object", "additionalProperties": { "minProperties": 1, "anyOf": [ { "type": "string" }, { "$ref": "#/definitions/resource" } ] } } }, "id": "https://json.schemastore.org/resjson.json", "title": "JSON schema for Windows resource files (.resjson)", "type": "object" }
cloudformation.schema.json
{ "$id": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "definitions": { "AWS::ACMPCA::Certificate": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ApiPassthrough": { "$ref": "#/definitions/AWS::ACMPCA::Certificate.ApiPassthrough" }, "CertificateAuthorityArn": { "type": "string" }, "CertificateSigningRequest": { "type": "string" }, "SigningAlgorithm": { "type": "string" }, "TemplateArn": { "type": "string" }, "Validity": { "$ref": "#/definitions/AWS::ACMPCA::Certificate.Validity" }, "ValidityNotBefore": { "$ref": "#/definitions/AWS::ACMPCA::Certificate.Validity" } }, "required": [ "CertificateAuthorityArn", "CertificateSigningRequest", "SigningAlgorithm", "Validity" ], "type": "object" }, "Type": { "enum": [ "AWS::ACMPCA::Certificate" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::ACMPCA::Certificate.ApiPassthrough": { "additionalProperties": false, "properties": { "Extensions": { "$ref": "#/definitions/AWS::ACMPCA::Certificate.Extensions" }, "Subject": { "$ref": "#/definitions/AWS::ACMPCA::Certificate.Subject" } }, "type": "object" }, "AWS::ACMPCA::Certificate.CustomAttribute": { "additionalProperties": false, "properties": { "ObjectIdentifier": { "type": "string" }, "Value": { "type": "string" } }, "required": [ "ObjectIdentifier", "Value" ], "type": "object" }, "AWS::ACMPCA::Certificate.CustomExtension": { "additionalProperties": false, "properties": { "Critical": { "type": "boolean" }, "ObjectIdentifier": { "type": "string" }, "Value": { "type": "string" } }, "required": [ "ObjectIdentifier", "Value" ], "type": "object" }, "AWS::ACMPCA::Certificate.EdiPartyName": { "additionalProperties": false, "properties": { "NameAssigner": { "type": "string" }, "PartyName": { "type": "string" } }, "required": [ "NameAssigner", "PartyName" ], "type": "object" }, "AWS::ACMPCA::Certificate.ExtendedKeyUsage": { "additionalProperties": false, "properties": { "ExtendedKeyUsageObjectIdentifier": { "type": "string" }, "ExtendedKeyUsageType": { "type": "string" } }, "type": "object" }, "AWS::ACMPCA::Certificate.Extensions": { "additionalProperties": false, "properties": { "CertificatePolicies": { "items": { "$ref": "#/definitions/AWS::ACMPCA::Certificate.PolicyInformation" }, "type": "array" }, "CustomExtensions": { "items": { "$ref": "#/definitions/AWS::ACMPCA::Certificate.CustomExtension" }, "type": "array" }, "ExtendedKeyUsage": { "items": { "$ref": "#/definitions/AWS::ACMPCA::Certificate.ExtendedKeyUsage" }, "type": "array" }, "KeyUsage": { "$ref": "#/definitions/AWS::ACMPCA::Certificate.KeyUsage" }, "SubjectAlternativeNames": { "items": { "$ref": "#/definitions/AWS::ACMPCA::Certificate.GeneralName" }, "type": "array" } }, "type": "object" }, "AWS::ACMPCA::Certificate.GeneralName": { "additionalProperties": false, "properties": { "DirectoryName": { "$ref": "#/definitions/AWS::ACMPCA::Certificate.Subject" }, "DnsName": { "type": "string" }, "EdiPartyName": { "$ref": "#/definitions/AWS::ACMPCA::Certificate.EdiPartyName" }, "IpAddress": { "type": "string" }, "OtherName": { "$ref": "#/definitions/AWS::ACMPCA::Certificate.OtherName" }, "RegisteredId": { "type": "string" }, "Rfc822Name": { "type": "string" }, "UniformResourceIdentifier": { "type": "string" } }, "type": "object" }, "AWS::ACMPCA::Certificate.KeyUsage": { "additionalProperties": false, "properties": { "CRLSign": { "type": "boolean" }, "DataEncipherment": { "type": "boolean" }, "DecipherOnly": { "type": "boolean" }, "DigitalSignature": { "type": "boolean" }, "EncipherOnly": { "type": "boolean" }, "KeyAgreement": { "type": "boolean" }, "KeyCertSign": { "type": "boolean" }, "KeyEncipherment": { "type": "boolean" }, "NonRepudiation": { "type": "boolean" } }, "type": "object" }, "AWS::ACMPCA::Certificate.OtherName": { "additionalProperties": false, "properties": { "TypeId": { "type": "string" }, "Value": { "type": "string" } }, "required": [ "TypeId", "Value" ], "type": "object" }, "AWS::ACMPCA::Certificate.PolicyInformation": { "additionalProperties": false, "properties": { "CertPolicyId": { "type": "string" }, "PolicyQualifiers": { "items": { "$ref": "#/definitions/AWS::ACMPCA::Certificate.PolicyQualifierInfo" }, "type": "array" } }, "required": [ "CertPolicyId" ], "type": "object" }, "AWS::ACMPCA::Certificate.PolicyQualifierInfo": { "additionalProperties": false, "properties": { "PolicyQualifierId": { "type": "string" }, "Qualifier": { "$ref": "#/definitions/AWS::ACMPCA::Certificate.Qualifier" } }, "required": [ "PolicyQualifierId", "Qualifier" ], "type": "object" }, "AWS::ACMPCA::Certificate.Qualifier": { "additionalProperties": false, "properties": { "CpsUri": { "type": "string" } }, "required": [ "CpsUri" ], "type": "object" }, "AWS::ACMPCA::Certificate.Subject": { "additionalProperties": false, "properties": { "CommonName": { "type": "string" }, "Country": { "type": "string" }, "CustomAttributes": { "items": { "$ref": "#/definitions/AWS::ACMPCA::Certificate.CustomAttribute" }, "type": "array" }, "DistinguishedNameQualifier": { "type": "string" }, "GenerationQualifier": { "type": "string" }, "GivenName": { "type": "string" }, "Initials": { "type": "string" }, "Locality": { "type": "string" }, "Organization": { "type": "string" }, "OrganizationalUnit": { "type": "string" }, "Pseudonym": { "type": "string" }, "SerialNumber": { "type": "string" }, "State": { "type": "string" }, "Surname": { "type": "string" }, "Title": { "type": "string" } }, "type": "object" }, "AWS::ACMPCA::Certificate.Validity": { "additionalProperties": false, "properties": { "Type": { "type": "string" }, "Value": { "type": "number" } }, "required": [ "Type", "Value" ], "type": "object" }, "AWS::ACMPCA::CertificateAuthority": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "CsrExtensions": { "$ref": "#/definitions/AWS::ACMPCA::CertificateAuthority.CsrExtensions" }, "KeyAlgorithm": { "type": "string" }, "KeyStorageSecurityStandard": { "type": "string" }, "RevocationConfiguration": { "$ref": "#/definitions/AWS::ACMPCA::CertificateAuthority.RevocationConfiguration" }, "SigningAlgorithm": { "type": "string" }, "Subject": { "$ref": "#/definitions/AWS::ACMPCA::CertificateAuthority.Subject" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "Type": { "type": "string" }, "UsageMode": { "type": "string" } }, "required": [ "KeyAlgorithm", "SigningAlgorithm", "Subject", "Type" ], "type": "object" }, "Type": { "enum": [ "AWS::ACMPCA::CertificateAuthority" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::ACMPCA::CertificateAuthority.AccessDescription": { "additionalProperties": false, "properties": { "AccessLocation": { "$ref": "#/definitions/AWS::ACMPCA::CertificateAuthority.GeneralName" }, "AccessMethod": { "$ref": "#/definitions/AWS::ACMPCA::CertificateAuthority.AccessMethod" } }, "required": [ "AccessLocation", "AccessMethod" ], "type": "object" }, "AWS::ACMPCA::CertificateAuthority.AccessMethod": { "additionalProperties": false, "properties": { "AccessMethodType": { "type": "string" }, "CustomObjectIdentifier": { "type": "string" } }, "type": "object" }, "AWS::ACMPCA::CertificateAuthority.CrlConfiguration": { "additionalProperties": false, "properties": { "CustomCname": { "type": "string" }, "Enabled": { "type": "boolean" }, "ExpirationInDays": { "type": "number" }, "S3BucketName": { "type": "string" }, "S3ObjectAcl": { "type": "string" } }, "type": "object" }, "AWS::ACMPCA::CertificateAuthority.CsrExtensions": { "additionalProperties": false, "properties": { "KeyUsage": { "$ref": "#/definitions/AWS::ACMPCA::CertificateAuthority.KeyUsage" }, "SubjectInformationAccess": { "items": { "$ref": "#/definitions/AWS::ACMPCA::CertificateAuthority.AccessDescription" }, "type": "array" } }, "type": "object" }, "AWS::ACMPCA::CertificateAuthority.CustomAttribute": { "additionalProperties": false, "properties": { "ObjectIdentifier": { "type": "string" }, "Value": { "type": "string" } }, "required": [ "ObjectIdentifier", "Value" ], "type": "object" }, "AWS::ACMPCA::CertificateAuthority.EdiPartyName": { "additionalProperties": false, "properties": { "NameAssigner": { "type": "string" }, "PartyName": { "type": "string" } }, "required": [ "NameAssigner", "PartyName" ], "type": "object" }, "AWS::ACMPCA::CertificateAuthority.GeneralName": { "additionalProperties": false, "properties": { "DirectoryName": { "$ref": "#/definitions/AWS::ACMPCA::CertificateAuthority.Subject" }, "DnsName": { "type": "string" }, "EdiPartyName": { "$ref": "#/definitions/AWS::ACMPCA::CertificateAuthority.EdiPartyName" }, "IpAddress": { "type": "string" }, "OtherName": { "$ref": "#/definitions/AWS::ACMPCA::CertificateAuthority.OtherName" }, "RegisteredId": { "type": "string" }, "Rfc822Name": { "type": "string" }, "UniformResourceIdentifier": { "type": "string" } }, "type": "object" }, "AWS::ACMPCA::CertificateAuthority.KeyUsage": { "additionalProperties": false, "properties": { "CRLSign": { "type": "boolean" }, "DataEncipherment": { "type": "boolean" }, "DecipherOnly": { "type": "boolean" }, "DigitalSignature": { "type": "boolean" }, "EncipherOnly": { "type": "boolean" }, "KeyAgreement": { "type": "boolean" }, "KeyCertSign": { "type": "boolean" }, "KeyEncipherment": { "type": "boolean" }, "NonRepudiation": { "type": "boolean" } }, "type": "object" }, "AWS::ACMPCA::CertificateAuthority.OcspConfiguration": { "additionalProperties": false, "properties": { "Enabled": { "type": "boolean" }, "OcspCustomCname": { "type": "string" } }, "type": "object" }, "AWS::ACMPCA::CertificateAuthority.OtherName": { "additionalProperties": false, "properties": { "TypeId": { "type": "string" }, "Value": { "type": "string" } }, "required": [ "TypeId", "Value" ], "type": "object" }, "AWS::ACMPCA::CertificateAuthority.RevocationConfiguration": { "additionalProperties": false, "properties": { "CrlConfiguration": { "$ref": "#/definitions/AWS::ACMPCA::CertificateAuthority.CrlConfiguration" }, "OcspConfiguration": { "$ref": "#/definitions/AWS::ACMPCA::CertificateAuthority.OcspConfiguration" } }, "type": "object" }, "AWS::ACMPCA::CertificateAuthority.Subject": { "additionalProperties": false, "properties": { "CommonName": { "type": "string" }, "Country": { "type": "string" }, "CustomAttributes": { "items": { "$ref": "#/definitions/AWS::ACMPCA::CertificateAuthority.CustomAttribute" }, "type": "array" }, "DistinguishedNameQualifier": { "type": "string" }, "GenerationQualifier": { "type": "string" }, "GivenName": { "type": "string" }, "Initials": { "type": "string" }, "Locality": { "type": "string" }, "Organization": { "type": "string" }, "OrganizationalUnit": { "type": "string" }, "Pseudonym": { "type": "string" }, "SerialNumber": { "type": "string" }, "State": { "type": "string" }, "Surname": { "type": "string" }, "Title": { "type": "string" } }, "type": "object" }, "AWS::ACMPCA::CertificateAuthorityActivation": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Certificate": { "type": "string" }, "CertificateAuthorityArn": { "type": "string" }, "CertificateChain": { "type": "string" }, "Status": { "type": "string" } }, "required": [ "Certificate", "CertificateAuthorityArn" ], "type": "object" }, "Type": { "enum": [ "AWS::ACMPCA::CertificateAuthorityActivation" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::ACMPCA::Permission": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Actions": { "items": { "type": "string" }, "type": "array" }, "CertificateAuthorityArn": { "type": "string" }, "Principal": { "type": "string" }, "SourceAccount": { "type": "string" } }, "required": [ "Actions", "CertificateAuthorityArn", "Principal" ], "type": "object" }, "Type": { "enum": [ "AWS::ACMPCA::Permission" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::APS::RuleGroupsNamespace": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Data": { "type": "string" }, "Name": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "Workspace": { "type": "string" } }, "required": [ "Data", "Name", "Workspace" ], "type": "object" }, "Type": { "enum": [ "AWS::APS::RuleGroupsNamespace" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::APS::Workspace": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AlertManagerDefinition": { "type": "string" }, "Alias": { "type": "string" }, "LoggingConfiguration": { "$ref": "#/definitions/AWS::APS::Workspace.LoggingConfiguration" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "type": "object" }, "Type": { "enum": [ "AWS::APS::Workspace" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::APS::Workspace.LoggingConfiguration": { "additionalProperties": false, "properties": { "LogGroupArn": { "type": "string" } }, "type": "object" }, "AWS::AccessAnalyzer::Analyzer": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AnalyzerName": { "type": "string" }, "ArchiveRules": { "items": { "$ref": "#/definitions/AWS::AccessAnalyzer::Analyzer.ArchiveRule" }, "type": "array" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "Type": { "type": "string" } }, "required": [ "Type" ], "type": "object" }, "Type": { "enum": [ "AWS::AccessAnalyzer::Analyzer" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::AccessAnalyzer::Analyzer.ArchiveRule": { "additionalProperties": false, "properties": { "Filter": { "items": { "$ref": "#/definitions/AWS::AccessAnalyzer::Analyzer.Filter" }, "type": "array" }, "RuleName": { "type": "string" } }, "required": [ "Filter", "RuleName" ], "type": "object" }, "AWS::AccessAnalyzer::Analyzer.Filter": { "additionalProperties": false, "properties": { "Contains": { "items": { "type": "string" }, "type": "array" }, "Eq": { "items": { "type": "string" }, "type": "array" }, "Exists": { "type": "boolean" }, "Neq": { "items": { "type": "string" }, "type": "array" }, "Property": { "type": "string" } }, "required": [ "Property" ], "type": "object" }, "AWS::AmazonMQ::Broker": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AuthenticationStrategy": { "type": "string" }, "AutoMinorVersionUpgrade": { "type": "boolean" }, "BrokerName": { "type": "string" }, "Configuration": { "$ref": "#/definitions/AWS::AmazonMQ::Broker.ConfigurationId" }, "DataReplicationMode": { "type": "string" }, "DataReplicationPrimaryBrokerArn": { "type": "string" }, "DeploymentMode": { "type": "string" }, "EncryptionOptions": { "$ref": "#/definitions/AWS::AmazonMQ::Broker.EncryptionOptions" }, "EngineType": { "type": "string" }, "EngineVersion": { "type": "string" }, "HostInstanceType": { "type": "string" }, "LdapServerMetadata": { "$ref": "#/definitions/AWS::AmazonMQ::Broker.LdapServerMetadata" }, "Logs": { "$ref": "#/definitions/AWS::AmazonMQ::Broker.LogList" }, "MaintenanceWindowStartTime": { "$ref": "#/definitions/AWS::AmazonMQ::Broker.MaintenanceWindow" }, "PubliclyAccessible": { "type": "boolean" }, "SecurityGroups": { "items": { "type": "string" }, "type": "array" }, "StorageType": { "type": "string" }, "SubnetIds": { "items": { "type": "string" }, "type": "array" }, "Tags": { "items": { "$ref": "#/definitions/AWS::AmazonMQ::Broker.TagsEntry" }, "type": "array" }, "Users": { "items": { "$ref": "#/definitions/AWS::AmazonMQ::Broker.User" }, "type": "array" } }, "required": [ "AutoMinorVersionUpgrade", "BrokerName", "DeploymentMode", "EngineType", "EngineVersion", "HostInstanceType", "PubliclyAccessible", "Users" ], "type": "object" }, "Type": { "enum": [ "AWS::AmazonMQ::Broker" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::AmazonMQ::Broker.ConfigurationId": { "additionalProperties": false, "properties": { "Id": { "type": "string" }, "Revision": { "type": "number" } }, "required": [ "Id", "Revision" ], "type": "object" }, "AWS::AmazonMQ::Broker.EncryptionOptions": { "additionalProperties": false, "properties": { "KmsKeyId": { "type": "string" }, "UseAwsOwnedKey": { "type": "boolean" } }, "required": [ "UseAwsOwnedKey" ], "type": "object" }, "AWS::AmazonMQ::Broker.LdapServerMetadata": { "additionalProperties": false, "properties": { "Hosts": { "items": { "type": "string" }, "type": "array" }, "RoleBase": { "type": "string" }, "RoleName": { "type": "string" }, "RoleSearchMatching": { "type": "string" }, "RoleSearchSubtree": { "type": "boolean" }, "ServiceAccountPassword": { "type": "string" }, "ServiceAccountUsername": { "type": "string" }, "UserBase": { "type": "string" }, "UserRoleName": { "type": "string" }, "UserSearchMatching": { "type": "string" }, "UserSearchSubtree": { "type": "boolean" } }, "required": [ "Hosts", "RoleBase", "RoleSearchMatching", "ServiceAccountPassword", "ServiceAccountUsername", "UserBase", "UserSearchMatching" ], "type": "object" }, "AWS::AmazonMQ::Broker.LogList": { "additionalProperties": false, "properties": { "Audit": { "type": "boolean" }, "General": { "type": "boolean" } }, "type": "object" }, "AWS::AmazonMQ::Broker.MaintenanceWindow": { "additionalProperties": false, "properties": { "DayOfWeek": { "type": "string" }, "TimeOfDay": { "type": "string" }, "TimeZone": { "type": "string" } }, "required": [ "DayOfWeek", "TimeOfDay", "TimeZone" ], "type": "object" }, "AWS::AmazonMQ::Broker.TagsEntry": { "additionalProperties": false, "properties": { "Key": { "type": "string" }, "Value": { "type": "string" } }, "required": [ "Key", "Value" ], "type": "object" }, "AWS::AmazonMQ::Broker.User": { "additionalProperties": false, "properties": { "ConsoleAccess": { "type": "boolean" }, "Groups": { "items": { "type": "string" }, "type": "array" }, "Password": { "type": "string" }, "Username": { "type": "string" } }, "required": [ "Password", "Username" ], "type": "object" }, "AWS::AmazonMQ::Configuration": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AuthenticationStrategy": { "type": "string" }, "Data": { "type": "string" }, "Description": { "type": "string" }, "EngineType": { "type": "string" }, "EngineVersion": { "type": "string" }, "Name": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/AWS::AmazonMQ::Configuration.TagsEntry" }, "type": "array" } }, "required": [ "Data", "EngineType", "EngineVersion", "Name" ], "type": "object" }, "Type": { "enum": [ "AWS::AmazonMQ::Configuration" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::AmazonMQ::Configuration.TagsEntry": { "additionalProperties": false, "properties": { "Key": { "type": "string" }, "Value": { "type": "string" } }, "required": [ "Key", "Value" ], "type": "object" }, "AWS::AmazonMQ::ConfigurationAssociation": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Broker": { "type": "string" }, "Configuration": { "$ref": "#/definitions/AWS::AmazonMQ::ConfigurationAssociation.ConfigurationId" } }, "required": [ "Broker", "Configuration" ], "type": "object" }, "Type": { "enum": [ "AWS::AmazonMQ::ConfigurationAssociation" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::AmazonMQ::ConfigurationAssociation.ConfigurationId": { "additionalProperties": false, "properties": { "Id": { "type": "string" }, "Revision": { "type": "number" } }, "required": [ "Id", "Revision" ], "type": "object" }, "AWS::Amplify::App": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AccessToken": { "type": "string" }, "AutoBranchCreationConfig": { "$ref": "#/definitions/AWS::Amplify::App.AutoBranchCreationConfig" }, "BasicAuthConfig": { "$ref": "#/definitions/AWS::Amplify::App.BasicAuthConfig" }, "BuildSpec": { "type": "string" }, "CustomHeaders": { "type": "string" }, "CustomRules": { "items": { "$ref": "#/definitions/AWS::Amplify::App.CustomRule" }, "type": "array" }, "Description": { "type": "string" }, "EnableBranchAutoDeletion": { "type": "boolean" }, "EnvironmentVariables": { "items": { "$ref": "#/definitions/AWS::Amplify::App.EnvironmentVariable" }, "type": "array" }, "IAMServiceRole": { "type": "string" }, "Name": { "type": "string" }, "OauthToken": { "type": "string" }, "Platform": { "type": "string" }, "Repository": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "Name" ], "type": "object" }, "Type": { "enum": [ "AWS::Amplify::App" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Amplify::App.AutoBranchCreationConfig": { "additionalProperties": false, "properties": { "AutoBranchCreationPatterns": { "items": { "type": "string" }, "type": "array" }, "BasicAuthConfig": { "$ref": "#/definitions/AWS::Amplify::App.BasicAuthConfig" }, "BuildSpec": { "type": "string" }, "EnableAutoBranchCreation": { "type": "boolean" }, "EnableAutoBuild": { "type": "boolean" }, "EnablePerformanceMode": { "type": "boolean" }, "EnablePullRequestPreview": { "type": "boolean" }, "EnvironmentVariables": { "items": { "$ref": "#/definitions/AWS::Amplify::App.EnvironmentVariable" }, "type": "array" }, "Framework": { "type": "string" }, "PullRequestEnvironmentName": { "type": "string" }, "Stage": { "type": "string" } }, "type": "object" }, "AWS::Amplify::App.BasicAuthConfig": { "additionalProperties": false, "properties": { "EnableBasicAuth": { "type": "boolean" }, "Password": { "type": "string" }, "Username": { "type": "string" } }, "type": "object" }, "AWS::Amplify::App.CustomRule": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "Source": { "type": "string" }, "Status": { "type": "string" }, "Target": { "type": "string" } }, "required": [ "Source", "Target" ], "type": "object" }, "AWS::Amplify::App.EnvironmentVariable": { "additionalProperties": false, "properties": { "Name": { "type": "string" }, "Value": { "type": "string" } }, "required": [ "Name", "Value" ], "type": "object" }, "AWS::Amplify::Branch": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AppId": { "type": "string" }, "BasicAuthConfig": { "$ref": "#/definitions/AWS::Amplify::Branch.BasicAuthConfig" }, "BranchName": { "type": "string" }, "BuildSpec": { "type": "string" }, "Description": { "type": "string" }, "EnableAutoBuild": { "type": "boolean" }, "EnablePerformanceMode": { "type": "boolean" }, "EnablePullRequestPreview": { "type": "boolean" }, "EnvironmentVariables": { "items": { "$ref": "#/definitions/AWS::Amplify::Branch.EnvironmentVariable" }, "type": "array" }, "Framework": { "type": "string" }, "PullRequestEnvironmentName": { "type": "string" }, "Stage": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "AppId", "BranchName" ], "type": "object" }, "Type": { "enum": [ "AWS::Amplify::Branch" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Amplify::Branch.BasicAuthConfig": { "additionalProperties": false, "properties": { "EnableBasicAuth": { "type": "boolean" }, "Password": { "type": "string" }, "Username": { "type": "string" } }, "required": [ "Password", "Username" ], "type": "object" }, "AWS::Amplify::Branch.EnvironmentVariable": { "additionalProperties": false, "properties": { "Name": { "type": "string" }, "Value": { "type": "string" } }, "required": [ "Name", "Value" ], "type": "object" }, "AWS::Amplify::Domain": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AppId": { "type": "string" }, "AutoSubDomainCreationPatterns": { "items": { "type": "string" }, "type": "array" }, "AutoSubDomainIAMRole": { "type": "string" }, "DomainName": { "type": "string" }, "EnableAutoSubDomain": { "type": "boolean" }, "SubDomainSettings": { "items": { "$ref": "#/definitions/AWS::Amplify::Domain.SubDomainSetting" }, "type": "array" } }, "required": [ "AppId", "DomainName", "SubDomainSettings" ], "type": "object" }, "Type": { "enum": [ "AWS::Amplify::Domain" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Amplify::Domain.SubDomainSetting": { "additionalProperties": false, "properties": { "BranchName": { "type": "string" }, "Prefix": { "type": "string" } }, "required": [ "BranchName", "Prefix" ], "type": "object" }, "AWS::AmplifyUIBuilder::Component": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AppId": { "type": "string" }, "BindingProperties": { "additionalProperties": false, "patternProperties": { "^[a-zA-Z0-9]+$": { "$ref": "#/definitions/AWS::AmplifyUIBuilder::Component.ComponentBindingPropertiesValue" } }, "type": "object" }, "Children": { "items": { "$ref": "#/definitions/AWS::AmplifyUIBuilder::Component.ComponentChild" }, "type": "array" }, "CollectionProperties": { "additionalProperties": false, "patternProperties": { "^[a-zA-Z0-9]+$": { "$ref": "#/definitions/AWS::AmplifyUIBuilder::Component.ComponentDataConfiguration" } }, "type": "object" }, "ComponentType": { "type": "string" }, "EnvironmentName": { "type": "string" }, "Events": { "additionalProperties": false, "patternProperties": { "^[a-zA-Z0-9]+$": { "$ref": "#/definitions/AWS::AmplifyUIBuilder::Component.ComponentEvent" } }, "type": "object" }, "Name": { "type": "string" }, "Overrides": { "type": "object" }, "Properties": { "additionalProperties": false, "patternProperties": { "^[a-zA-Z0-9]+$": { "$ref": "#/definitions/AWS::AmplifyUIBuilder::Component.ComponentProperty" } }, "type": "object" }, "SchemaVersion": { "type": "string" }, "SourceId": { "type": "string" }, "Tags": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" }, "Variants": { "items": { "$ref": "#/definitions/AWS::AmplifyUIBuilder::Component.ComponentVariant" }, "type": "array" } }, "required": [ "BindingProperties", "ComponentType", "Name", "Overrides", "Properties", "Variants" ], "type": "object" }, "Type": { "enum": [ "AWS::AmplifyUIBuilder::Component" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::AmplifyUIBuilder::Component.ActionParameters": { "additionalProperties": false, "properties": { "Anchor": { "$ref": "#/definitions/AWS::AmplifyUIBuilder::Component.ComponentProperty" }, "Fields": { "additionalProperties": false, "patternProperties": { "^[a-zA-Z0-9]+$": { "$ref": "#/definitions/AWS::AmplifyUIBuilder::Component.ComponentProperty" } }, "type": "object" }, "Global": { "$ref": "#/definitions/AWS::AmplifyUIBuilder::Component.ComponentProperty" }, "Id": { "$ref": "#/definitions/AWS::AmplifyUIBuilder::Component.ComponentProperty" }, "Model": { "type": "string" }, "State": { "$ref": "#/definitions/AWS::AmplifyUIBuilder::Component.MutationActionSetStateParameter" }, "Target": { "$ref": "#/definitions/AWS::AmplifyUIBuilder::Component.ComponentProperty" }, "Type": { "$ref": "#/definitions/AWS::AmplifyUIBuilder::Component.ComponentProperty" }, "Url": { "$ref": "#/definitions/AWS::AmplifyUIBuilder::Component.ComponentProperty" } }, "type": "object" }, "AWS::AmplifyUIBuilder::Component.ComponentBindingPropertiesValue": { "additionalProperties": false, "properties": { "BindingProperties": { "$ref": "#/definitions/AWS::AmplifyUIBuilder::Component.ComponentBindingPropertiesValueProperties" }, "DefaultValue": { "type": "string" }, "Type": { "type": "string" } }, "type": "object" }, "AWS::AmplifyUIBuilder::Component.ComponentBindingPropertiesValueProperties": { "additionalProperties": false, "properties": { "Bucket": { "type": "string" }, "DefaultValue": { "type": "string" }, "Field": { "type": "string" }, "Key": { "type": "string" }, "Model": { "type": "string" }, "Predicates": { "items": { "$ref": "#/definitions/AWS::AmplifyUIBuilder::Component.Predicate" }, "type": "array" }, "UserAttribute": { "type": "string" } }, "type": "object" }, "AWS::AmplifyUIBuilder::Component.ComponentChild": { "additionalProperties": false, "properties": { "Children": { "items": { "$ref": "#/definitions/AWS::AmplifyUIBuilder::Component.ComponentChild" }, "type": "array" }, "ComponentType": { "type": "string" }, "Events": { "additionalProperties": false, "patternProperties": { "^[a-zA-Z0-9]+$": { "$ref": "#/definitions/AWS::AmplifyUIBuilder::Component.ComponentEvent" } }, "type": "object" }, "Name": { "type": "string" }, "Properties": { "additionalProperties": false, "patternProperties": { "^[a-zA-Z0-9]+$": { "$ref": "#/definitions/AWS::AmplifyUIBuilder::Component.ComponentProperty" } }, "type": "object" } }, "required": [ "ComponentType", "Name", "Properties" ], "type": "object" }, "AWS::AmplifyUIBuilder::Component.ComponentConditionProperty": { "additionalProperties": false, "properties": { "Else": { "$ref": "#/definitions/AWS::AmplifyUIBuilder::Component.ComponentProperty" }, "Field": { "type": "string" }, "Operand": { "type": "string" }, "OperandType": { "type": "string" }, "Operator": { "type": "string" }, "Property": { "type": "string" }, "Then": { "$ref": "#/definitions/AWS::AmplifyUIBuilder::Component.ComponentProperty" } }, "type": "object" }, "AWS::AmplifyUIBuilder::Component.ComponentDataConfiguration": { "additionalProperties": false, "properties": { "Identifiers": { "items": { "type": "string" }, "type": "array" }, "Model": { "type": "string" }, "Predicate": { "$ref": "#/definitions/AWS::AmplifyUIBuilder::Component.Predicate" }, "Sort": { "items": { "$ref": "#/definitions/AWS::AmplifyUIBuilder::Component.SortProperty" }, "type": "array" } }, "required": [ "Model" ], "type": "object" }, "AWS::AmplifyUIBuilder::Component.ComponentEvent": { "additionalProperties": false, "properties": { "Action": { "type": "string" }, "Parameters": { "$ref": "#/definitions/AWS::AmplifyUIBuilder::Component.ActionParameters" } }, "type": "object" }, "AWS::AmplifyUIBuilder::Component.ComponentProperty": { "additionalProperties": false, "properties": { "BindingProperties": { "$ref": "#/definitions/AWS::AmplifyUIBuilder::Component.ComponentPropertyBindingProperties" }, "Bindings": { "additionalProperties": false, "patternProperties": { "^[a-zA-Z0-9]+$": { "$ref": "#/definitions/AWS::AmplifyUIBuilder::Component.FormBindingElement" } }, "type": "object" }, "CollectionBindingProperties": { "$ref": "#/definitions/AWS::AmplifyUIBuilder::Component.ComponentPropertyBindingProperties" }, "ComponentName": { "type": "string" }, "Concat": { "items": { "$ref": "#/definitions/AWS::AmplifyUIBuilder::Component.ComponentProperty" }, "type": "array" }, "Condition": { "$ref": "#/definitions/AWS::AmplifyUIBuilder::Component.ComponentConditionProperty" }, "Configured": { "type": "boolean" }, "DefaultValue": { "type": "string" }, "Event": { "type": "string" }, "ImportedValue": { "type": "string" }, "Model": { "type": "string" }, "Property": { "type": "string" }, "Type": { "type": "string" }, "UserAttribute": { "type": "string" }, "Value": { "type": "string" } }, "type": "object" }, "AWS::AmplifyUIBuilder::Component.ComponentPropertyBindingProperties": { "additionalProperties": false, "properties": { "Field": { "type": "string" }, "Property": { "type": "string" } }, "required": [ "Property" ], "type": "object" }, "AWS::AmplifyUIBuilder::Component.ComponentVariant": { "additionalProperties": false, "properties": { "Overrides": { "type": "object" }, "VariantValues": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" } }, "type": "object" }, "AWS::AmplifyUIBuilder::Component.FormBindingElement": { "additionalProperties": false, "properties": { "Element": { "type": "string" }, "Property": { "type": "string" } }, "required": [ "Element", "Property" ], "type": "object" }, "AWS::AmplifyUIBuilder::Component.MutationActionSetStateParameter": { "additionalProperties": false, "properties": { "ComponentName": { "type": "string" }, "Property": { "type": "string" }, "Set": { "$ref": "#/definitions/AWS::AmplifyUIBuilder::Component.ComponentProperty" } }, "required": [ "ComponentName", "Property", "Set" ], "type": "object" }, "AWS::AmplifyUIBuilder::Component.Predicate": { "additionalProperties": false, "properties": { "And": { "items": { "$ref": "#/definitions/AWS::AmplifyUIBuilder::Component.Predicate" }, "type": "array" }, "Field": { "type": "string" }, "Operand": { "type": "string" }, "Operator": { "type": "string" }, "Or": { "items": { "$ref": "#/definitions/AWS::AmplifyUIBuilder::Component.Predicate" }, "type": "array" } }, "type": "object" }, "AWS::AmplifyUIBuilder::Component.SortProperty": { "additionalProperties": false, "properties": { "Direction": { "type": "string" }, "Field": { "type": "string" } }, "required": [ "Direction", "Field" ], "type": "object" }, "AWS::AmplifyUIBuilder::Form": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AppId": { "type": "string" }, "Cta": { "$ref": "#/definitions/AWS::AmplifyUIBuilder::Form.FormCTA" }, "DataType": { "$ref": "#/definitions/AWS::AmplifyUIBuilder::Form.FormDataTypeConfig" }, "EnvironmentName": { "type": "string" }, "Fields": { "additionalProperties": false, "patternProperties": { "^[a-zA-Z0-9]+$": { "$ref": "#/definitions/AWS::AmplifyUIBuilder::Form.FieldConfig" } }, "type": "object" }, "FormActionType": { "type": "string" }, "LabelDecorator": { "type": "string" }, "Name": { "type": "string" }, "SchemaVersion": { "type": "string" }, "SectionalElements": { "additionalProperties": false, "patternProperties": { "^[a-zA-Z0-9]+$": { "$ref": "#/definitions/AWS::AmplifyUIBuilder::Form.SectionalElement" } }, "type": "object" }, "Style": { "$ref": "#/definitions/AWS::AmplifyUIBuilder::Form.FormStyle" }, "Tags": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" } }, "required": [ "DataType", "Fields", "FormActionType", "Name", "SchemaVersion", "SectionalElements", "Style" ], "type": "object" }, "Type": { "enum": [ "AWS::AmplifyUIBuilder::Form" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::AmplifyUIBuilder::Form.FieldConfig": { "additionalProperties": false, "properties": { "Excluded": { "type": "boolean" }, "InputType": { "$ref": "#/definitions/AWS::AmplifyUIBuilder::Form.FieldInputConfig" }, "Label": { "type": "string" }, "Position": { "$ref": "#/definitions/AWS::AmplifyUIBuilder::Form.FieldPosition" }, "Validations": { "items": { "$ref": "#/definitions/AWS::AmplifyUIBuilder::Form.FieldValidationConfiguration" }, "type": "array" } }, "type": "object" }, "AWS::AmplifyUIBuilder::Form.FieldInputConfig": { "additionalProperties": false, "properties": { "DefaultChecked": { "type": "boolean" }, "DefaultCountryCode": { "type": "string" }, "DefaultValue": { "type": "string" }, "DescriptiveText": { "type": "string" }, "FileUploaderConfig": { "$ref": "#/definitions/AWS::AmplifyUIBuilder::Form.FileUploaderFieldConfig" }, "IsArray": { "type": "boolean" }, "MaxValue": { "type": "number" }, "MinValue": { "type": "number" }, "Name": { "type": "string" }, "Placeholder": { "type": "string" }, "ReadOnly": { "type": "boolean" }, "Required": { "type": "boolean" }, "Step": { "type": "number" }, "Type": { "type": "string" }, "Value": { "type": "string" }, "ValueMappings": { "$ref": "#/definitions/AWS::AmplifyUIBuilder::Form.ValueMappings" } }, "required": [ "Type" ], "type": "object" }, "AWS::AmplifyUIBuilder::Form.FieldPosition": { "additionalProperties": false, "properties": { "Below": { "type": "string" }, "Fixed": { "type": "string" }, "RightOf": { "type": "string" } }, "type": "object" }, "AWS::AmplifyUIBuilder::Form.FieldValidationConfiguration": { "additionalProperties": false, "properties": { "NumValues": { "items": { "type": "number" }, "type": "array" }, "StrValues": { "items": { "type": "string" }, "type": "array" }, "Type": { "type": "string" }, "ValidationMessage": { "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::AmplifyUIBuilder::Form.FileUploaderFieldConfig": { "additionalProperties": false, "properties": { "AcceptedFileTypes": { "items": { "type": "string" }, "type": "array" }, "AccessLevel": { "type": "string" }, "IsResumable": { "type": "boolean" }, "MaxFileCount": { "type": "number" }, "MaxSize": { "type": "number" }, "ShowThumbnails": { "type": "boolean" } }, "required": [ "AcceptedFileTypes", "AccessLevel" ], "type": "object" }, "AWS::AmplifyUIBuilder::Form.FormButton": { "additionalProperties": false, "properties": { "Children": { "type": "string" }, "Excluded": { "type": "boolean" }, "Position": { "$ref": "#/definitions/AWS::AmplifyUIBuilder::Form.FieldPosition" } }, "type": "object" }, "AWS::AmplifyUIBuilder::Form.FormCTA": { "additionalProperties": false, "properties": { "Cancel": { "$ref": "#/definitions/AWS::AmplifyUIBuilder::Form.FormButton" }, "Clear": { "$ref": "#/definitions/AWS::AmplifyUIBuilder::Form.FormButton" }, "Position": { "type": "string" }, "Submit": { "$ref": "#/definitions/AWS::AmplifyUIBuilder::Form.FormButton" } }, "type": "object" }, "AWS::AmplifyUIBuilder::Form.FormDataTypeConfig": { "additionalProperties": false, "properties": { "DataSourceType": { "type": "string" }, "DataTypeName": { "type": "string" } }, "required": [ "DataSourceType", "DataTypeName" ], "type": "object" }, "AWS::AmplifyUIBuilder::Form.FormInputValueProperty": { "additionalProperties": false, "properties": { "Value": { "type": "string" } }, "type": "object" }, "AWS::AmplifyUIBuilder::Form.FormStyle": { "additionalProperties": false, "properties": { "HorizontalGap": { "$ref": "#/definitions/AWS::AmplifyUIBuilder::Form.FormStyleConfig" }, "OuterPadding": { "$ref": "#/definitions/AWS::AmplifyUIBuilder::Form.FormStyleConfig" }, "VerticalGap": { "$ref": "#/definitions/AWS::AmplifyUIBuilder::Form.FormStyleConfig" } }, "type": "object" }, "AWS::AmplifyUIBuilder::Form.FormStyleConfig": { "additionalProperties": false, "properties": { "TokenReference": { "type": "string" }, "Value": { "type": "string" } }, "type": "object" }, "AWS::AmplifyUIBuilder::Form.SectionalElement": { "additionalProperties": false, "properties": { "Excluded": { "type": "boolean" }, "Level": { "type": "number" }, "Orientation": { "type": "string" }, "Position": { "$ref": "#/definitions/AWS::AmplifyUIBuilder::Form.FieldPosition" }, "Text": { "type": "string" }, "Type": { "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::AmplifyUIBuilder::Form.ValueMapping": { "additionalProperties": false, "properties": { "DisplayValue": { "$ref": "#/definitions/AWS::AmplifyUIBuilder::Form.FormInputValueProperty" }, "Value": { "$ref": "#/definitions/AWS::AmplifyUIBuilder::Form.FormInputValueProperty" } }, "required": [ "Value" ], "type": "object" }, "AWS::AmplifyUIBuilder::Form.ValueMappings": { "additionalProperties": false, "properties": { "Values": { "items": { "$ref": "#/definitions/AWS::AmplifyUIBuilder::Form.ValueMapping" }, "type": "array" } }, "required": [ "Values" ], "type": "object" }, "AWS::AmplifyUIBuilder::Theme": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AppId": { "type": "string" }, "EnvironmentName": { "type": "string" }, "Name": { "type": "string" }, "Overrides": { "items": { "$ref": "#/definitions/AWS::AmplifyUIBuilder::Theme.ThemeValues" }, "type": "array" }, "Tags": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" }, "Values": { "items": { "$ref": "#/definitions/AWS::AmplifyUIBuilder::Theme.ThemeValues" }, "type": "array" } }, "required": [ "Name", "Values" ], "type": "object" }, "Type": { "enum": [ "AWS::AmplifyUIBuilder::Theme" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::AmplifyUIBuilder::Theme.ThemeValue": { "additionalProperties": false, "properties": { "Children": { "items": { "$ref": "#/definitions/AWS::AmplifyUIBuilder::Theme.ThemeValues" }, "type": "array" }, "Value": { "type": "string" } }, "type": "object" }, "AWS::AmplifyUIBuilder::Theme.ThemeValues": { "additionalProperties": false, "properties": { "Key": { "type": "string" }, "Value": { "$ref": "#/definitions/AWS::AmplifyUIBuilder::Theme.ThemeValue" } }, "type": "object" }, "AWS::ApiGateway::Account": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "CloudWatchRoleArn": { "type": "string" } }, "type": "object" }, "Type": { "enum": [ "AWS::ApiGateway::Account" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::ApiGateway::ApiKey": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "CustomerId": { "type": "string" }, "Description": { "type": "string" }, "Enabled": { "type": "boolean" }, "GenerateDistinctId": { "type": "boolean" }, "Name": { "type": "string" }, "StageKeys": { "items": { "$ref": "#/definitions/AWS::ApiGateway::ApiKey.StageKey" }, "type": "array" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "Value": { "type": "string" } }, "type": "object" }, "Type": { "enum": [ "AWS::ApiGateway::ApiKey" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::ApiGateway::ApiKey.StageKey": { "additionalProperties": false, "properties": { "RestApiId": { "type": "string" }, "StageName": { "type": "string" } }, "type": "object" }, "AWS::ApiGateway::Authorizer": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AuthType": { "type": "string" }, "AuthorizerCredentials": { "type": "string" }, "AuthorizerResultTtlInSeconds": { "type": "number" }, "AuthorizerUri": { "type": "string" }, "IdentitySource": { "type": "string" }, "IdentityValidationExpression": { "type": "string" }, "Name": { "type": "string" }, "ProviderARNs": { "items": { "type": "string" }, "type": "array" }, "RestApiId": { "type": "string" }, "Type": { "type": "string" } }, "required": [ "Name", "RestApiId", "Type" ], "type": "object" }, "Type": { "enum": [ "AWS::ApiGateway::Authorizer" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::ApiGateway::BasePathMapping": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "BasePath": { "type": "string" }, "DomainName": { "type": "string" }, "Id": { "type": "string" }, "RestApiId": { "type": "string" }, "Stage": { "type": "string" } }, "required": [ "DomainName" ], "type": "object" }, "Type": { "enum": [ "AWS::ApiGateway::BasePathMapping" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::ApiGateway::ClientCertificate": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "type": "object" }, "Type": { "enum": [ "AWS::ApiGateway::ClientCertificate" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::ApiGateway::Deployment": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "DeploymentCanarySettings": { "$ref": "#/definitions/AWS::ApiGateway::Deployment.DeploymentCanarySettings" }, "Description": { "type": "string" }, "RestApiId": { "type": "string" }, "StageDescription": { "$ref": "#/definitions/AWS::ApiGateway::Deployment.StageDescription" }, "StageName": { "type": "string" } }, "required": [ "RestApiId" ], "type": "object" }, "Type": { "enum": [ "AWS::ApiGateway::Deployment" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::ApiGateway::Deployment.AccessLogSetting": { "additionalProperties": false, "properties": { "DestinationArn": { "type": "string" }, "Format": { "type": "string" } }, "type": "object" }, "AWS::ApiGateway::Deployment.CanarySetting": { "additionalProperties": false, "properties": { "PercentTraffic": { "type": "number" }, "StageVariableOverrides": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" }, "UseStageCache": { "type": "boolean" } }, "type": "object" }, "AWS::ApiGateway::Deployment.DeploymentCanarySettings": { "additionalProperties": false, "properties": { "PercentTraffic": { "type": "number" }, "StageVariableOverrides": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" }, "UseStageCache": { "type": "boolean" } }, "type": "object" }, "AWS::ApiGateway::Deployment.MethodSetting": { "additionalProperties": false, "properties": { "CacheDataEncrypted": { "type": "boolean" }, "CacheTtlInSeconds": { "type": "number" }, "CachingEnabled": { "type": "boolean" }, "DataTraceEnabled": { "type": "boolean" }, "HttpMethod": { "type": "string" }, "LoggingLevel": { "type": "string" }, "MetricsEnabled": { "type": "boolean" }, "ResourcePath": { "type": "string" }, "ThrottlingBurstLimit": { "type": "number" }, "ThrottlingRateLimit": { "type": "number" } }, "type": "object" }, "AWS::ApiGateway::Deployment.StageDescription": { "additionalProperties": false, "properties": { "AccessLogSetting": { "$ref": "#/definitions/AWS::ApiGateway::Deployment.AccessLogSetting" }, "CacheClusterEnabled": { "type": "boolean" }, "CacheClusterSize": { "type": "string" }, "CacheDataEncrypted": { "type": "boolean" }, "CacheTtlInSeconds": { "type": "number" }, "CachingEnabled": { "type": "boolean" }, "CanarySetting": { "$ref": "#/definitions/AWS::ApiGateway::Deployment.CanarySetting" }, "ClientCertificateId": { "type": "string" }, "DataTraceEnabled": { "type": "boolean" }, "Description": { "type": "string" }, "DocumentationVersion": { "type": "string" }, "LoggingLevel": { "type": "string" }, "MethodSettings": { "items": { "$ref": "#/definitions/AWS::ApiGateway::Deployment.MethodSetting" }, "type": "array" }, "MetricsEnabled": { "type": "boolean" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "ThrottlingBurstLimit": { "type": "number" }, "ThrottlingRateLimit": { "type": "number" }, "TracingEnabled": { "type": "boolean" }, "Variables": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" } }, "type": "object" }, "AWS::ApiGateway::DocumentationPart": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Location": { "$ref": "#/definitions/AWS::ApiGateway::DocumentationPart.Location" }, "Properties": { "type": "string" }, "RestApiId": { "type": "string" } }, "required": [ "Location", "Properties", "RestApiId" ], "type": "object" }, "Type": { "enum": [ "AWS::ApiGateway::DocumentationPart" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::ApiGateway::DocumentationPart.Location": { "additionalProperties": false, "properties": { "Method": { "type": "string" }, "Name": { "type": "string" }, "Path": { "type": "string" }, "StatusCode": { "type": "string" }, "Type": { "type": "string" } }, "type": "object" }, "AWS::ApiGateway::DocumentationVersion": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "DocumentationVersion": { "type": "string" }, "RestApiId": { "type": "string" } }, "required": [ "DocumentationVersion", "RestApiId" ], "type": "object" }, "Type": { "enum": [ "AWS::ApiGateway::DocumentationVersion" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::ApiGateway::DomainName": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "CertificateArn": { "type": "string" }, "DomainName": { "type": "string" }, "EndpointConfiguration": { "$ref": "#/definitions/AWS::ApiGateway::DomainName.EndpointConfiguration" }, "MutualTlsAuthentication": { "$ref": "#/definitions/AWS::ApiGateway::DomainName.MutualTlsAuthentication" }, "OwnershipVerificationCertificateArn": { "type": "string" }, "RegionalCertificateArn": { "type": "string" }, "SecurityPolicy": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "type": "object" }, "Type": { "enum": [ "AWS::ApiGateway::DomainName" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::ApiGateway::DomainName.EndpointConfiguration": { "additionalProperties": false, "properties": { "Types": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::ApiGateway::DomainName.MutualTlsAuthentication": { "additionalProperties": false, "properties": { "TruststoreUri": { "type": "string" }, "TruststoreVersion": { "type": "string" } }, "type": "object" }, "AWS::ApiGateway::GatewayResponse": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ResponseParameters": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" }, "ResponseTemplates": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" }, "ResponseType": { "type": "string" }, "RestApiId": { "type": "string" }, "StatusCode": { "type": "string" } }, "required": [ "ResponseType", "RestApiId" ], "type": "object" }, "Type": { "enum": [ "AWS::ApiGateway::GatewayResponse" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::ApiGateway::Method": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ApiKeyRequired": { "type": "boolean" }, "AuthorizationScopes": { "items": { "type": "string" }, "type": "array" }, "AuthorizationType": { "type": "string" }, "AuthorizerId": { "type": "string" }, "HttpMethod": { "type": "string" }, "Integration": { "$ref": "#/definitions/AWS::ApiGateway::Method.Integration" }, "MethodResponses": { "items": { "$ref": "#/definitions/AWS::ApiGateway::Method.MethodResponse" }, "type": "array" }, "OperationName": { "type": "string" }, "RequestModels": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" }, "RequestParameters": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "boolean" } }, "type": "object" }, "RequestValidatorId": { "type": "string" }, "ResourceId": { "type": "string" }, "RestApiId": { "type": "string" } }, "required": [ "HttpMethod", "ResourceId", "RestApiId" ], "type": "object" }, "Type": { "enum": [ "AWS::ApiGateway::Method" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::ApiGateway::Method.Integration": { "additionalProperties": false, "properties": { "CacheKeyParameters": { "items": { "type": "string" }, "type": "array" }, "CacheNamespace": { "type": "string" }, "ConnectionId": { "type": "string" }, "ConnectionType": { "type": "string" }, "ContentHandling": { "type": "string" }, "Credentials": { "type": "string" }, "IntegrationHttpMethod": { "type": "string" }, "IntegrationResponses": { "items": { "$ref": "#/definitions/AWS::ApiGateway::Method.IntegrationResponse" }, "type": "array" }, "PassthroughBehavior": { "type": "string" }, "RequestParameters": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" }, "RequestTemplates": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" }, "TimeoutInMillis": { "type": "number" }, "Type": { "type": "string" }, "Uri": { "type": "string" } }, "type": "object" }, "AWS::ApiGateway::Method.IntegrationResponse": { "additionalProperties": false, "properties": { "ContentHandling": { "type": "string" }, "ResponseParameters": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" }, "ResponseTemplates": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" }, "SelectionPattern": { "type": "string" }, "StatusCode": { "type": "string" } }, "required": [ "StatusCode" ], "type": "object" }, "AWS::ApiGateway::Method.MethodResponse": { "additionalProperties": false, "properties": { "ResponseModels": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" }, "ResponseParameters": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "boolean" } }, "type": "object" }, "StatusCode": { "type": "string" } }, "required": [ "StatusCode" ], "type": "object" }, "AWS::ApiGateway::Model": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ContentType": { "type": "string" }, "Description": { "type": "string" }, "Name": { "type": "string" }, "RestApiId": { "type": "string" }, "Schema": { "type": "object" } }, "required": [ "RestApiId" ], "type": "object" }, "Type": { "enum": [ "AWS::ApiGateway::Model" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::ApiGateway::RequestValidator": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Name": { "type": "string" }, "RestApiId": { "type": "string" }, "ValidateRequestBody": { "type": "boolean" }, "ValidateRequestParameters": { "type": "boolean" } }, "required": [ "RestApiId" ], "type": "object" }, "Type": { "enum": [ "AWS::ApiGateway::RequestValidator" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::ApiGateway::Resource": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ParentId": { "type": "string" }, "PathPart": { "type": "string" }, "RestApiId": { "type": "string" } }, "required": [ "ParentId", "PathPart", "RestApiId" ], "type": "object" }, "Type": { "enum": [ "AWS::ApiGateway::Resource" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::ApiGateway::RestApi": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ApiKeySourceType": { "type": "string" }, "BinaryMediaTypes": { "items": { "type": "string" }, "type": "array" }, "Body": { "type": "object" }, "BodyS3Location": { "$ref": "#/definitions/AWS::ApiGateway::RestApi.S3Location" }, "CloneFrom": { "type": "string" }, "Description": { "type": "string" }, "DisableExecuteApiEndpoint": { "type": "boolean" }, "EndpointConfiguration": { "$ref": "#/definitions/AWS::ApiGateway::RestApi.EndpointConfiguration" }, "FailOnWarnings": { "type": "boolean" }, "MinimumCompressionSize": { "type": "number" }, "Mode": { "type": "string" }, "Name": { "type": "string" }, "Parameters": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" }, "Policy": { "type": "object" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "type": "object" }, "Type": { "enum": [ "AWS::ApiGateway::RestApi" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::ApiGateway::RestApi.EndpointConfiguration": { "additionalProperties": false, "properties": { "Types": { "items": { "type": "string" }, "type": "array" }, "VpcEndpointIds": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::ApiGateway::RestApi.S3Location": { "additionalProperties": false, "properties": { "Bucket": { "type": "string" }, "ETag": { "type": "string" }, "Key": { "type": "string" }, "Version": { "type": "string" } }, "type": "object" }, "AWS::ApiGateway::Stage": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AccessLogSetting": { "$ref": "#/definitions/AWS::ApiGateway::Stage.AccessLogSetting" }, "CacheClusterEnabled": { "type": "boolean" }, "CacheClusterSize": { "type": "string" }, "CanarySetting": { "$ref": "#/definitions/AWS::ApiGateway::Stage.CanarySetting" }, "ClientCertificateId": { "type": "string" }, "DeploymentId": { "type": "string" }, "Description": { "type": "string" }, "DocumentationVersion": { "type": "string" }, "MethodSettings": { "items": { "$ref": "#/definitions/AWS::ApiGateway::Stage.MethodSetting" }, "type": "array" }, "RestApiId": { "type": "string" }, "StageName": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "TracingEnabled": { "type": "boolean" }, "Variables": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" } }, "required": [ "RestApiId" ], "type": "object" }, "Type": { "enum": [ "AWS::ApiGateway::Stage" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::ApiGateway::Stage.AccessLogSetting": { "additionalProperties": false, "properties": { "DestinationArn": { "type": "string" }, "Format": { "type": "string" } }, "type": "object" }, "AWS::ApiGateway::Stage.CanarySetting": { "additionalProperties": false, "properties": { "DeploymentId": { "type": "string" }, "PercentTraffic": { "type": "number" }, "StageVariableOverrides": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" }, "UseStageCache": { "type": "boolean" } }, "type": "object" }, "AWS::ApiGateway::Stage.MethodSetting": { "additionalProperties": false, "properties": { "CacheDataEncrypted": { "type": "boolean" }, "CacheTtlInSeconds": { "type": "number" }, "CachingEnabled": { "type": "boolean" }, "DataTraceEnabled": { "type": "boolean" }, "HttpMethod": { "type": "string" }, "LoggingLevel": { "type": "string" }, "MetricsEnabled": { "type": "boolean" }, "ResourcePath": { "type": "string" }, "ThrottlingBurstLimit": { "type": "number" }, "ThrottlingRateLimit": { "type": "number" } }, "type": "object" }, "AWS::ApiGateway::UsagePlan": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ApiStages": { "items": { "$ref": "#/definitions/AWS::ApiGateway::UsagePlan.ApiStage" }, "type": "array" }, "Description": { "type": "string" }, "Quota": { "$ref": "#/definitions/AWS::ApiGateway::UsagePlan.QuotaSettings" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "Throttle": { "$ref": "#/definitions/AWS::ApiGateway::UsagePlan.ThrottleSettings" }, "UsagePlanName": { "type": "string" } }, "type": "object" }, "Type": { "enum": [ "AWS::ApiGateway::UsagePlan" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::ApiGateway::UsagePlan.ApiStage": { "additionalProperties": false, "properties": { "ApiId": { "type": "string" }, "Stage": { "type": "string" }, "Throttle": { "additionalProperties": false, "patternProperties": { "^[a-zA-Z0-9]+$": { "$ref": "#/definitions/AWS::ApiGateway::UsagePlan.ThrottleSettings" } }, "type": "object" } }, "type": "object" }, "AWS::ApiGateway::UsagePlan.QuotaSettings": { "additionalProperties": false, "properties": { "Limit": { "type": "number" }, "Offset": { "type": "number" }, "Period": { "type": "string" } }, "type": "object" }, "AWS::ApiGateway::UsagePlan.ThrottleSettings": { "additionalProperties": false, "properties": { "BurstLimit": { "type": "number" }, "RateLimit": { "type": "number" } }, "type": "object" }, "AWS::ApiGateway::UsagePlanKey": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "KeyId": { "type": "string" }, "KeyType": { "type": "string" }, "UsagePlanId": { "type": "string" } }, "required": [ "KeyId", "KeyType", "UsagePlanId" ], "type": "object" }, "Type": { "enum": [ "AWS::ApiGateway::UsagePlanKey" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::ApiGateway::VpcLink": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "Name": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "TargetArns": { "items": { "type": "string" }, "type": "array" } }, "required": [ "Name", "TargetArns" ], "type": "object" }, "Type": { "enum": [ "AWS::ApiGateway::VpcLink" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::ApiGatewayV2::Api": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ApiKeySelectionExpression": { "type": "string" }, "BasePath": { "type": "string" }, "Body": { "type": "object" }, "BodyS3Location": { "$ref": "#/definitions/AWS::ApiGatewayV2::Api.BodyS3Location" }, "CorsConfiguration": { "$ref": "#/definitions/AWS::ApiGatewayV2::Api.Cors" }, "CredentialsArn": { "type": "string" }, "Description": { "type": "string" }, "DisableExecuteApiEndpoint": { "type": "boolean" }, "DisableSchemaValidation": { "type": "boolean" }, "FailOnWarnings": { "type": "boolean" }, "Name": { "type": "string" }, "ProtocolType": { "type": "string" }, "RouteKey": { "type": "string" }, "RouteSelectionExpression": { "type": "string" }, "Tags": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" }, "Target": { "type": "string" }, "Version": { "type": "string" } }, "type": "object" }, "Type": { "enum": [ "AWS::ApiGatewayV2::Api" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::ApiGatewayV2::Api.BodyS3Location": { "additionalProperties": false, "properties": { "Bucket": { "type": "string" }, "Etag": { "type": "string" }, "Key": { "type": "string" }, "Version": { "type": "string" } }, "type": "object" }, "AWS::ApiGatewayV2::Api.Cors": { "additionalProperties": false, "properties": { "AllowCredentials": { "type": "boolean" }, "AllowHeaders": { "items": { "type": "string" }, "type": "array" }, "AllowMethods": { "items": { "type": "string" }, "type": "array" }, "AllowOrigins": { "items": { "type": "string" }, "type": "array" }, "ExposeHeaders": { "items": { "type": "string" }, "type": "array" }, "MaxAge": { "type": "number" } }, "type": "object" }, "AWS::ApiGatewayV2::ApiGatewayManagedOverrides": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ApiId": { "type": "string" }, "Integration": { "$ref": "#/definitions/AWS::ApiGatewayV2::ApiGatewayManagedOverrides.IntegrationOverrides" }, "Route": { "$ref": "#/definitions/AWS::ApiGatewayV2::ApiGatewayManagedOverrides.RouteOverrides" }, "Stage": { "$ref": "#/definitions/AWS::ApiGatewayV2::ApiGatewayManagedOverrides.StageOverrides" } }, "required": [ "ApiId" ], "type": "object" }, "Type": { "enum": [ "AWS::ApiGatewayV2::ApiGatewayManagedOverrides" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::ApiGatewayV2::ApiGatewayManagedOverrides.AccessLogSettings": { "additionalProperties": false, "properties": { "DestinationArn": { "type": "string" }, "Format": { "type": "string" } }, "type": "object" }, "AWS::ApiGatewayV2::ApiGatewayManagedOverrides.IntegrationOverrides": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "IntegrationMethod": { "type": "string" }, "PayloadFormatVersion": { "type": "string" }, "TimeoutInMillis": { "type": "number" } }, "type": "object" }, "AWS::ApiGatewayV2::ApiGatewayManagedOverrides.RouteOverrides": { "additionalProperties": false, "properties": { "AuthorizationScopes": { "items": { "type": "string" }, "type": "array" }, "AuthorizationType": { "type": "string" }, "AuthorizerId": { "type": "string" }, "OperationName": { "type": "string" }, "Target": { "type": "string" } }, "type": "object" }, "AWS::ApiGatewayV2::ApiGatewayManagedOverrides.RouteSettings": { "additionalProperties": false, "properties": { "DataTraceEnabled": { "type": "boolean" }, "DetailedMetricsEnabled": { "type": "boolean" }, "LoggingLevel": { "type": "string" }, "ThrottlingBurstLimit": { "type": "number" }, "ThrottlingRateLimit": { "type": "number" } }, "type": "object" }, "AWS::ApiGatewayV2::ApiGatewayManagedOverrides.StageOverrides": { "additionalProperties": false, "properties": { "AccessLogSettings": { "$ref": "#/definitions/AWS::ApiGatewayV2::ApiGatewayManagedOverrides.AccessLogSettings" }, "AutoDeploy": { "type": "boolean" }, "DefaultRouteSettings": { "$ref": "#/definitions/AWS::ApiGatewayV2::ApiGatewayManagedOverrides.RouteSettings" }, "Description": { "type": "string" }, "RouteSettings": { "type": "object" }, "StageVariables": { "type": "object" } }, "type": "object" }, "AWS::ApiGatewayV2::ApiMapping": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ApiId": { "type": "string" }, "ApiMappingKey": { "type": "string" }, "DomainName": { "type": "string" }, "Stage": { "type": "string" } }, "required": [ "ApiId", "DomainName", "Stage" ], "type": "object" }, "Type": { "enum": [ "AWS::ApiGatewayV2::ApiMapping" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::ApiGatewayV2::Authorizer": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ApiId": { "type": "string" }, "AuthorizerCredentialsArn": { "type": "string" }, "AuthorizerPayloadFormatVersion": { "type": "string" }, "AuthorizerResultTtlInSeconds": { "type": "number" }, "AuthorizerType": { "type": "string" }, "AuthorizerUri": { "type": "string" }, "EnableSimpleResponses": { "type": "boolean" }, "IdentitySource": { "items": { "type": "string" }, "type": "array" }, "IdentityValidationExpression": { "type": "string" }, "JwtConfiguration": { "$ref": "#/definitions/AWS::ApiGatewayV2::Authorizer.JWTConfiguration" }, "Name": { "type": "string" } }, "required": [ "ApiId", "AuthorizerType", "Name" ], "type": "object" }, "Type": { "enum": [ "AWS::ApiGatewayV2::Authorizer" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::ApiGatewayV2::Authorizer.JWTConfiguration": { "additionalProperties": false, "properties": { "Audience": { "items": { "type": "string" }, "type": "array" }, "Issuer": { "type": "string" } }, "type": "object" }, "AWS::ApiGatewayV2::Deployment": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ApiId": { "type": "string" }, "Description": { "type": "string" }, "StageName": { "type": "string" } }, "required": [ "ApiId" ], "type": "object" }, "Type": { "enum": [ "AWS::ApiGatewayV2::Deployment" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::ApiGatewayV2::DomainName": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "DomainName": { "type": "string" }, "DomainNameConfigurations": { "items": { "$ref": "#/definitions/AWS::ApiGatewayV2::DomainName.DomainNameConfiguration" }, "type": "array" }, "MutualTlsAuthentication": { "$ref": "#/definitions/AWS::ApiGatewayV2::DomainName.MutualTlsAuthentication" }, "Tags": { "type": "object" } }, "required": [ "DomainName" ], "type": "object" }, "Type": { "enum": [ "AWS::ApiGatewayV2::DomainName" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::ApiGatewayV2::DomainName.DomainNameConfiguration": { "additionalProperties": false, "properties": { "CertificateArn": { "type": "string" }, "CertificateName": { "type": "string" }, "EndpointType": { "type": "string" }, "OwnershipVerificationCertificateArn": { "type": "string" }, "SecurityPolicy": { "type": "string" } }, "type": "object" }, "AWS::ApiGatewayV2::DomainName.MutualTlsAuthentication": { "additionalProperties": false, "properties": { "TruststoreUri": { "type": "string" }, "TruststoreVersion": { "type": "string" } }, "type": "object" }, "AWS::ApiGatewayV2::Integration": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ApiId": { "type": "string" }, "ConnectionId": { "type": "string" }, "ConnectionType": { "type": "string" }, "ContentHandlingStrategy": { "type": "string" }, "CredentialsArn": { "type": "string" }, "Description": { "type": "string" }, "IntegrationMethod": { "type": "string" }, "IntegrationSubtype": { "type": "string" }, "IntegrationType": { "type": "string" }, "IntegrationUri": { "type": "string" }, "PassthroughBehavior": { "type": "string" }, "PayloadFormatVersion": { "type": "string" }, "RequestParameters": { "type": "object" }, "RequestTemplates": { "type": "object" }, "ResponseParameters": { "type": "object" }, "TemplateSelectionExpression": { "type": "string" }, "TimeoutInMillis": { "type": "number" }, "TlsConfig": { "$ref": "#/definitions/AWS::ApiGatewayV2::Integration.TlsConfig" } }, "required": [ "ApiId", "IntegrationType" ], "type": "object" }, "Type": { "enum": [ "AWS::ApiGatewayV2::Integration" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::ApiGatewayV2::Integration.ResponseParameter": { "additionalProperties": false, "properties": { "Destination": { "type": "string" }, "Source": { "type": "string" } }, "required": [ "Destination", "Source" ], "type": "object" }, "AWS::ApiGatewayV2::Integration.ResponseParameterList": { "additionalProperties": false, "properties": { "ResponseParameters": { "items": { "$ref": "#/definitions/AWS::ApiGatewayV2::Integration.ResponseParameter" }, "type": "array" } }, "type": "object" }, "AWS::ApiGatewayV2::Integration.TlsConfig": { "additionalProperties": false, "properties": { "ServerNameToVerify": { "type": "string" } }, "type": "object" }, "AWS::ApiGatewayV2::IntegrationResponse": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ApiId": { "type": "string" }, "ContentHandlingStrategy": { "type": "string" }, "IntegrationId": { "type": "string" }, "IntegrationResponseKey": { "type": "string" }, "ResponseParameters": { "type": "object" }, "ResponseTemplates": { "type": "object" }, "TemplateSelectionExpression": { "type": "string" } }, "required": [ "ApiId", "IntegrationId", "IntegrationResponseKey" ], "type": "object" }, "Type": { "enum": [ "AWS::ApiGatewayV2::IntegrationResponse" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::ApiGatewayV2::Model": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ApiId": { "type": "string" }, "ContentType": { "type": "string" }, "Description": { "type": "string" }, "Name": { "type": "string" }, "Schema": { "type": "object" } }, "required": [ "ApiId", "Name", "Schema" ], "type": "object" }, "Type": { "enum": [ "AWS::ApiGatewayV2::Model" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::ApiGatewayV2::Route": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ApiId": { "type": "string" }, "ApiKeyRequired": { "type": "boolean" }, "AuthorizationScopes": { "items": { "type": "string" }, "type": "array" }, "AuthorizationType": { "type": "string" }, "AuthorizerId": { "type": "string" }, "ModelSelectionExpression": { "type": "string" }, "OperationName": { "type": "string" }, "RequestModels": { "type": "object" }, "RequestParameters": { "type": "object" }, "RouteKey": { "type": "string" }, "RouteResponseSelectionExpression": { "type": "string" }, "Target": { "type": "string" } }, "required": [ "ApiId", "RouteKey" ], "type": "object" }, "Type": { "enum": [ "AWS::ApiGatewayV2::Route" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::ApiGatewayV2::RouteResponse": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ApiId": { "type": "string" }, "ModelSelectionExpression": { "type": "string" }, "ResponseModels": { "type": "object" }, "ResponseParameters": { "additionalProperties": false, "patternProperties": { "^[a-zA-Z0-9]+$": { "$ref": "#/definitions/AWS::ApiGatewayV2::RouteResponse.ParameterConstraints" } }, "type": "object" }, "RouteId": { "type": "string" }, "RouteResponseKey": { "type": "string" } }, "required": [ "ApiId", "RouteId", "RouteResponseKey" ], "type": "object" }, "Type": { "enum": [ "AWS::ApiGatewayV2::RouteResponse" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::ApiGatewayV2::RouteResponse.ParameterConstraints": { "additionalProperties": false, "properties": { "Required": { "type": "boolean" } }, "required": [ "Required" ], "type": "object" }, "AWS::ApiGatewayV2::Stage": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AccessLogSettings": { "$ref": "#/definitions/AWS::ApiGatewayV2::Stage.AccessLogSettings" }, "AccessPolicyId": { "type": "string" }, "ApiId": { "type": "string" }, "AutoDeploy": { "type": "boolean" }, "ClientCertificateId": { "type": "string" }, "DefaultRouteSettings": { "$ref": "#/definitions/AWS::ApiGatewayV2::Stage.RouteSettings" }, "DeploymentId": { "type": "string" }, "Description": { "type": "string" }, "RouteSettings": { "type": "object" }, "StageName": { "type": "string" }, "StageVariables": { "type": "object" }, "Tags": { "type": "object" } }, "required": [ "ApiId", "StageName" ], "type": "object" }, "Type": { "enum": [ "AWS::ApiGatewayV2::Stage" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::ApiGatewayV2::Stage.AccessLogSettings": { "additionalProperties": false, "properties": { "DestinationArn": { "type": "string" }, "Format": { "type": "string" } }, "type": "object" }, "AWS::ApiGatewayV2::Stage.RouteSettings": { "additionalProperties": false, "properties": { "DataTraceEnabled": { "type": "boolean" }, "DetailedMetricsEnabled": { "type": "boolean" }, "LoggingLevel": { "type": "string" }, "ThrottlingBurstLimit": { "type": "number" }, "ThrottlingRateLimit": { "type": "number" } }, "type": "object" }, "AWS::ApiGatewayV2::VpcLink": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Name": { "type": "string" }, "SecurityGroupIds": { "items": { "type": "string" }, "type": "array" }, "SubnetIds": { "items": { "type": "string" }, "type": "array" }, "Tags": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" } }, "required": [ "Name", "SubnetIds" ], "type": "object" }, "Type": { "enum": [ "AWS::ApiGatewayV2::VpcLink" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::AppConfig::Application": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "Name": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/AWS::AppConfig::Application.Tags" }, "type": "array" } }, "required": [ "Name" ], "type": "object" }, "Type": { "enum": [ "AWS::AppConfig::Application" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::AppConfig::Application.Tags": { "additionalProperties": false, "properties": { "Key": { "type": "string" }, "Value": { "type": "string" } }, "type": "object" }, "AWS::AppConfig::ConfigurationProfile": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ApplicationId": { "type": "string" }, "Description": { "type": "string" }, "LocationUri": { "type": "string" }, "Name": { "type": "string" }, "RetrievalRoleArn": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/AWS::AppConfig::ConfigurationProfile.Tags" }, "type": "array" }, "Type": { "type": "string" }, "Validators": { "items": { "$ref": "#/definitions/AWS::AppConfig::ConfigurationProfile.Validators" }, "type": "array" } }, "required": [ "ApplicationId", "LocationUri", "Name" ], "type": "object" }, "Type": { "enum": [ "AWS::AppConfig::ConfigurationProfile" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::AppConfig::ConfigurationProfile.Tags": { "additionalProperties": false, "properties": { "Key": { "type": "string" }, "Value": { "type": "string" } }, "type": "object" }, "AWS::AppConfig::ConfigurationProfile.Validators": { "additionalProperties": false, "properties": { "Content": { "type": "string" }, "Type": { "type": "string" } }, "type": "object" }, "AWS::AppConfig::Deployment": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ApplicationId": { "type": "string" }, "ConfigurationProfileId": { "type": "string" }, "ConfigurationVersion": { "type": "string" }, "DeploymentStrategyId": { "type": "string" }, "Description": { "type": "string" }, "EnvironmentId": { "type": "string" }, "KmsKeyIdentifier": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/AWS::AppConfig::Deployment.Tags" }, "type": "array" } }, "required": [ "ApplicationId", "ConfigurationProfileId", "ConfigurationVersion", "DeploymentStrategyId", "EnvironmentId" ], "type": "object" }, "Type": { "enum": [ "AWS::AppConfig::Deployment" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::AppConfig::Deployment.Tags": { "additionalProperties": false, "properties": { "Key": { "type": "string" }, "Value": { "type": "string" } }, "type": "object" }, "AWS::AppConfig::DeploymentStrategy": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "DeploymentDurationInMinutes": { "type": "number" }, "Description": { "type": "string" }, "FinalBakeTimeInMinutes": { "type": "number" }, "GrowthFactor": { "type": "number" }, "GrowthType": { "type": "string" }, "Name": { "type": "string" }, "ReplicateTo": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/AWS::AppConfig::DeploymentStrategy.Tags" }, "type": "array" } }, "required": [ "DeploymentDurationInMinutes", "GrowthFactor", "Name", "ReplicateTo" ], "type": "object" }, "Type": { "enum": [ "AWS::AppConfig::DeploymentStrategy" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::AppConfig::DeploymentStrategy.Tags": { "additionalProperties": false, "properties": { "Key": { "type": "string" }, "Value": { "type": "string" } }, "type": "object" }, "AWS::AppConfig::Environment": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ApplicationId": { "type": "string" }, "Description": { "type": "string" }, "Monitors": { "items": { "$ref": "#/definitions/AWS::AppConfig::Environment.Monitors" }, "type": "array" }, "Name": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/AWS::AppConfig::Environment.Tags" }, "type": "array" } }, "required": [ "ApplicationId", "Name" ], "type": "object" }, "Type": { "enum": [ "AWS::AppConfig::Environment" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::AppConfig::Environment.Monitors": { "additionalProperties": false, "properties": { "AlarmArn": { "type": "string" }, "AlarmRoleArn": { "type": "string" } }, "type": "object" }, "AWS::AppConfig::Environment.Tags": { "additionalProperties": false, "properties": { "Key": { "type": "string" }, "Value": { "type": "string" } }, "type": "object" }, "AWS::AppConfig::Extension": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Actions": { "type": "object" }, "Description": { "type": "string" }, "LatestVersionNumber": { "type": "number" }, "Name": { "type": "string" }, "Parameters": { "additionalProperties": false, "patternProperties": { "^[a-zA-Z0-9]+$": { "$ref": "#/definitions/AWS::AppConfig::Extension.Parameter" } }, "type": "object" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "Actions", "Name" ], "type": "object" }, "Type": { "enum": [ "AWS::AppConfig::Extension" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::AppConfig::Extension.Parameter": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "Required": { "type": "boolean" } }, "required": [ "Required" ], "type": "object" }, "AWS::AppConfig::ExtensionAssociation": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ExtensionIdentifier": { "type": "string" }, "ExtensionVersionNumber": { "type": "number" }, "Parameters": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" }, "ResourceIdentifier": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "type": "object" }, "Type": { "enum": [ "AWS::AppConfig::ExtensionAssociation" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::AppConfig::HostedConfigurationVersion": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ApplicationId": { "type": "string" }, "ConfigurationProfileId": { "type": "string" }, "Content": { "type": "string" }, "ContentType": { "type": "string" }, "Description": { "type": "string" }, "LatestVersionNumber": { "type": "number" }, "VersionLabel": { "type": "string" } }, "required": [ "ApplicationId", "ConfigurationProfileId", "Content", "ContentType" ], "type": "object" }, "Type": { "enum": [ "AWS::AppConfig::HostedConfigurationVersion" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::AppFlow::Connector": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ConnectorLabel": { "type": "string" }, "ConnectorProvisioningConfig": { "$ref": "#/definitions/AWS::AppFlow::Connector.ConnectorProvisioningConfig" }, "ConnectorProvisioningType": { "type": "string" }, "Description": { "type": "string" } }, "required": [ "ConnectorProvisioningConfig", "ConnectorProvisioningType" ], "type": "object" }, "Type": { "enum": [ "AWS::AppFlow::Connector" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::AppFlow::Connector.ConnectorProvisioningConfig": { "additionalProperties": false, "properties": { "Lambda": { "$ref": "#/definitions/AWS::AppFlow::Connector.LambdaConnectorProvisioningConfig" } }, "type": "object" }, "AWS::AppFlow::Connector.LambdaConnectorProvisioningConfig": { "additionalProperties": false, "properties": { "LambdaArn": { "type": "string" } }, "required": [ "LambdaArn" ], "type": "object" }, "AWS::AppFlow::ConnectorProfile": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ConnectionMode": { "type": "string" }, "ConnectorLabel": { "type": "string" }, "ConnectorProfileConfig": { "$ref": "#/definitions/AWS::AppFlow::ConnectorProfile.ConnectorProfileConfig" }, "ConnectorProfileName": { "type": "string" }, "ConnectorType": { "type": "string" }, "KMSArn": { "type": "string" } }, "required": [ "ConnectionMode", "ConnectorProfileName", "ConnectorType" ], "type": "object" }, "Type": { "enum": [ "AWS::AppFlow::ConnectorProfile" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::AppFlow::ConnectorProfile.AmplitudeConnectorProfileCredentials": { "additionalProperties": false, "properties": { "ApiKey": { "type": "string" }, "SecretKey": { "type": "string" } }, "required": [ "ApiKey", "SecretKey" ], "type": "object" }, "AWS::AppFlow::ConnectorProfile.ApiKeyCredentials": { "additionalProperties": false, "properties": { "ApiKey": { "type": "string" }, "ApiSecretKey": { "type": "string" } }, "required": [ "ApiKey" ], "type": "object" }, "AWS::AppFlow::ConnectorProfile.BasicAuthCredentials": { "additionalProperties": false, "properties": { "Password": { "type": "string" }, "Username": { "type": "string" } }, "required": [ "Password", "Username" ], "type": "object" }, "AWS::AppFlow::ConnectorProfile.ConnectorOAuthRequest": { "additionalProperties": false, "properties": { "AuthCode": { "type": "string" }, "RedirectUri": { "type": "string" } }, "type": "object" }, "AWS::AppFlow::ConnectorProfile.ConnectorProfileConfig": { "additionalProperties": false, "properties": { "ConnectorProfileCredentials": { "$ref": "#/definitions/AWS::AppFlow::ConnectorProfile.ConnectorProfileCredentials" }, "ConnectorProfileProperties": { "$ref": "#/definitions/AWS::AppFlow::ConnectorProfile.ConnectorProfileProperties" } }, "type": "object" }, "AWS::AppFlow::ConnectorProfile.ConnectorProfileCredentials": { "additionalProperties": false, "properties": { "Amplitude": { "$ref": "#/definitions/AWS::AppFlow::ConnectorProfile.AmplitudeConnectorProfileCredentials" }, "CustomConnector": { "$ref": "#/definitions/AWS::AppFlow::ConnectorProfile.CustomConnectorProfileCredentials" }, "Datadog": { "$ref": "#/definitions/AWS::AppFlow::ConnectorProfile.DatadogConnectorProfileCredentials" }, "Dynatrace": { "$ref": "#/definitions/AWS::AppFlow::ConnectorProfile.DynatraceConnectorProfileCredentials" }, "GoogleAnalytics": { "$ref": "#/definitions/AWS::AppFlow::ConnectorProfile.GoogleAnalyticsConnectorProfileCredentials" }, "InforNexus": { "$ref": "#/definitions/AWS::AppFlow::ConnectorProfile.InforNexusConnectorProfileCredentials" }, "Marketo": { "$ref": "#/definitions/AWS::AppFlow::ConnectorProfile.MarketoConnectorProfileCredentials" }, "Pardot": { "$ref": "#/definitions/AWS::AppFlow::ConnectorProfile.PardotConnectorProfileCredentials" }, "Redshift": { "$ref": "#/definitions/AWS::AppFlow::ConnectorProfile.RedshiftConnectorProfileCredentials" }, "SAPOData": { "$ref": "#/definitions/AWS::AppFlow::ConnectorProfile.SAPODataConnectorProfileCredentials" }, "Salesforce": { "$ref": "#/definitions/AWS::AppFlow::ConnectorProfile.SalesforceConnectorProfileCredentials" }, "ServiceNow": { "$ref": "#/definitions/AWS::AppFlow::ConnectorProfile.ServiceNowConnectorProfileCredentials" }, "Singular": { "$ref": "#/definitions/AWS::AppFlow::ConnectorProfile.SingularConnectorProfileCredentials" }, "Slack": { "$ref": "#/definitions/AWS::AppFlow::ConnectorProfile.SlackConnectorProfileCredentials" }, "Snowflake": { "$ref": "#/definitions/AWS::AppFlow::ConnectorProfile.SnowflakeConnectorProfileCredentials" }, "Trendmicro": { "$ref": "#/definitions/AWS::AppFlow::ConnectorProfile.TrendmicroConnectorProfileCredentials" }, "Veeva": { "$ref": "#/definitions/AWS::AppFlow::ConnectorProfile.VeevaConnectorProfileCredentials" }, "Zendesk": { "$ref": "#/definitions/AWS::AppFlow::ConnectorProfile.ZendeskConnectorProfileCredentials" } }, "type": "object" }, "AWS::AppFlow::ConnectorProfile.ConnectorProfileProperties": { "additionalProperties": false, "properties": { "CustomConnector": { "$ref": "#/definitions/AWS::AppFlow::ConnectorProfile.CustomConnectorProfileProperties" }, "Datadog": { "$ref": "#/definitions/AWS::AppFlow::ConnectorProfile.DatadogConnectorProfileProperties" }, "Dynatrace": { "$ref": "#/definitions/AWS::AppFlow::ConnectorProfile.DynatraceConnectorProfileProperties" }, "InforNexus": { "$ref": "#/definitions/AWS::AppFlow::ConnectorProfile.InforNexusConnectorProfileProperties" }, "Marketo": { "$ref": "#/definitions/AWS::AppFlow::ConnectorProfile.MarketoConnectorProfileProperties" }, "Pardot": { "$ref": "#/definitions/AWS::AppFlow::ConnectorProfile.PardotConnectorProfileProperties" }, "Redshift": { "$ref": "#/definitions/AWS::AppFlow::ConnectorProfile.RedshiftConnectorProfileProperties" }, "SAPOData": { "$ref": "#/definitions/AWS::AppFlow::ConnectorProfile.SAPODataConnectorProfileProperties" }, "Salesforce": { "$ref": "#/definitions/AWS::AppFlow::ConnectorProfile.SalesforceConnectorProfileProperties" }, "ServiceNow": { "$ref": "#/definitions/AWS::AppFlow::ConnectorProfile.ServiceNowConnectorProfileProperties" }, "Slack": { "$ref": "#/definitions/AWS::AppFlow::ConnectorProfile.SlackConnectorProfileProperties" }, "Snowflake": { "$ref": "#/definitions/AWS::AppFlow::ConnectorProfile.SnowflakeConnectorProfileProperties" }, "Veeva": { "$ref": "#/definitions/AWS::AppFlow::ConnectorProfile.VeevaConnectorProfileProperties" }, "Zendesk": { "$ref": "#/definitions/AWS::AppFlow::ConnectorProfile.ZendeskConnectorProfileProperties" } }, "type": "object" }, "AWS::AppFlow::ConnectorProfile.CustomAuthCredentials": { "additionalProperties": false, "properties": { "CredentialsMap": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" }, "CustomAuthenticationType": { "type": "string" } }, "required": [ "CustomAuthenticationType" ], "type": "object" }, "AWS::AppFlow::ConnectorProfile.CustomConnectorProfileCredentials": { "additionalProperties": false, "properties": { "ApiKey": { "$ref": "#/definitions/AWS::AppFlow::ConnectorProfile.ApiKeyCredentials" }, "AuthenticationType": { "type": "string" }, "Basic": { "$ref": "#/definitions/AWS::AppFlow::ConnectorProfile.BasicAuthCredentials" }, "Custom": { "$ref": "#/definitions/AWS::AppFlow::ConnectorProfile.CustomAuthCredentials" }, "Oauth2": { "$ref": "#/definitions/AWS::AppFlow::ConnectorProfile.OAuth2Credentials" } }, "required": [ "AuthenticationType" ], "type": "object" }, "AWS::AppFlow::ConnectorProfile.CustomConnectorProfileProperties": { "additionalProperties": false, "properties": { "OAuth2Properties": { "$ref": "#/definitions/AWS::AppFlow::ConnectorProfile.OAuth2Properties" }, "ProfileProperties": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" } }, "type": "object" }, "AWS::AppFlow::ConnectorProfile.DatadogConnectorProfileCredentials": { "additionalProperties": false, "properties": { "ApiKey": { "type": "string" }, "ApplicationKey": { "type": "string" } }, "required": [ "ApiKey", "ApplicationKey" ], "type": "object" }, "AWS::AppFlow::ConnectorProfile.DatadogConnectorProfileProperties": { "additionalProperties": false, "properties": { "InstanceUrl": { "type": "string" } }, "required": [ "InstanceUrl" ], "type": "object" }, "AWS::AppFlow::ConnectorProfile.DynatraceConnectorProfileCredentials": { "additionalProperties": false, "properties": { "ApiToken": { "type": "string" } }, "required": [ "ApiToken" ], "type": "object" }, "AWS::AppFlow::ConnectorProfile.DynatraceConnectorProfileProperties": { "additionalProperties": false, "properties": { "InstanceUrl": { "type": "string" } }, "required": [ "InstanceUrl" ], "type": "object" }, "AWS::AppFlow::ConnectorProfile.GoogleAnalyticsConnectorProfileCredentials": { "additionalProperties": false, "properties": { "AccessToken": { "type": "string" }, "ClientId": { "type": "string" }, "ClientSecret": { "type": "string" }, "ConnectorOAuthRequest": { "$ref": "#/definitions/AWS::AppFlow::ConnectorProfile.ConnectorOAuthRequest" }, "RefreshToken": { "type": "string" } }, "required": [ "ClientId", "ClientSecret" ], "type": "object" }, "AWS::AppFlow::ConnectorProfile.InforNexusConnectorProfileCredentials": { "additionalProperties": false, "properties": { "AccessKeyId": { "type": "string" }, "Datakey": { "type": "string" }, "SecretAccessKey": { "type": "string" }, "UserId": { "type": "string" } }, "required": [ "AccessKeyId", "Datakey", "SecretAccessKey", "UserId" ], "type": "object" }, "AWS::AppFlow::ConnectorProfile.InforNexusConnectorProfileProperties": { "additionalProperties": false, "properties": { "InstanceUrl": { "type": "string" } }, "required": [ "InstanceUrl" ], "type": "object" }, "AWS::AppFlow::ConnectorProfile.MarketoConnectorProfileCredentials": { "additionalProperties": false, "properties": { "AccessToken": { "type": "string" }, "ClientId": { "type": "string" }, "ClientSecret": { "type": "string" }, "ConnectorOAuthRequest": { "$ref": "#/definitions/AWS::AppFlow::ConnectorProfile.ConnectorOAuthRequest" } }, "required": [ "ClientId", "ClientSecret" ], "type": "object" }, "AWS::AppFlow::ConnectorProfile.MarketoConnectorProfileProperties": { "additionalProperties": false, "properties": { "InstanceUrl": { "type": "string" } }, "required": [ "InstanceUrl" ], "type": "object" }, "AWS::AppFlow::ConnectorProfile.OAuth2Credentials": { "additionalProperties": false, "properties": { "AccessToken": { "type": "string" }, "ClientId": { "type": "string" }, "ClientSecret": { "type": "string" }, "OAuthRequest": { "$ref": "#/definitions/AWS::AppFlow::ConnectorProfile.ConnectorOAuthRequest" }, "RefreshToken": { "type": "string" } }, "type": "object" }, "AWS::AppFlow::ConnectorProfile.OAuth2Properties": { "additionalProperties": false, "properties": { "OAuth2GrantType": { "type": "string" }, "TokenUrl": { "type": "string" }, "TokenUrlCustomProperties": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" } }, "type": "object" }, "AWS::AppFlow::ConnectorProfile.OAuthCredentials": { "additionalProperties": false, "properties": { "AccessToken": { "type": "string" }, "ClientId": { "type": "string" }, "ClientSecret": { "type": "string" }, "ConnectorOAuthRequest": { "$ref": "#/definitions/AWS::AppFlow::ConnectorProfile.ConnectorOAuthRequest" }, "RefreshToken": { "type": "string" } }, "type": "object" }, "AWS::AppFlow::ConnectorProfile.OAuthProperties": { "additionalProperties": false, "properties": { "AuthCodeUrl": { "type": "string" }, "OAuthScopes": { "items": { "type": "string" }, "type": "array" }, "TokenUrl": { "type": "string" } }, "type": "object" }, "AWS::AppFlow::ConnectorProfile.PardotConnectorProfileCredentials": { "additionalProperties": false, "properties": { "AccessToken": { "type": "string" }, "ClientCredentialsArn": { "type": "string" }, "ConnectorOAuthRequest": { "$ref": "#/definitions/AWS::AppFlow::ConnectorProfile.ConnectorOAuthRequest" }, "RefreshToken": { "type": "string" } }, "type": "object" }, "AWS::AppFlow::ConnectorProfile.PardotConnectorProfileProperties": { "additionalProperties": false, "properties": { "BusinessUnitId": { "type": "string" }, "InstanceUrl": { "type": "string" }, "IsSandboxEnvironment": { "type": "boolean" } }, "required": [ "BusinessUnitId" ], "type": "object" }, "AWS::AppFlow::ConnectorProfile.RedshiftConnectorProfileCredentials": { "additionalProperties": false, "properties": { "Password": { "type": "string" }, "Username": { "type": "string" } }, "type": "object" }, "AWS::AppFlow::ConnectorProfile.RedshiftConnectorProfileProperties": { "additionalProperties": false, "properties": { "BucketName": { "type": "string" }, "BucketPrefix": { "type": "string" }, "ClusterIdentifier": { "type": "string" }, "DataApiRoleArn": { "type": "string" }, "DatabaseName": { "type": "string" }, "DatabaseUrl": { "type": "string" }, "IsRedshiftServerless": { "type": "boolean" }, "RoleArn": { "type": "string" }, "WorkgroupName": { "type": "string" } }, "required": [ "BucketName", "RoleArn" ], "type": "object" }, "AWS::AppFlow::ConnectorProfile.SAPODataConnectorProfileCredentials": { "additionalProperties": false, "properties": { "BasicAuthCredentials": { "$ref": "#/definitions/AWS::AppFlow::ConnectorProfile.BasicAuthCredentials" }, "OAuthCredentials": { "$ref": "#/definitions/AWS::AppFlow::ConnectorProfile.OAuthCredentials" } }, "type": "object" }, "AWS::AppFlow::ConnectorProfile.SAPODataConnectorProfileProperties": { "additionalProperties": false, "properties": { "ApplicationHostUrl": { "type": "string" }, "ApplicationServicePath": { "type": "string" }, "ClientNumber": { "type": "string" }, "DisableSSO": { "type": "boolean" }, "LogonLanguage": { "type": "string" }, "OAuthProperties": { "$ref": "#/definitions/AWS::AppFlow::ConnectorProfile.OAuthProperties" }, "PortNumber": { "type": "number" }, "PrivateLinkServiceName": { "type": "string" } }, "type": "object" }, "AWS::AppFlow::ConnectorProfile.SalesforceConnectorProfileCredentials": { "additionalProperties": false, "properties": { "AccessToken": { "type": "string" }, "ClientCredentialsArn": { "type": "string" }, "ConnectorOAuthRequest": { "$ref": "#/definitions/AWS::AppFlow::ConnectorProfile.ConnectorOAuthRequest" }, "JwtToken": { "type": "string" }, "OAuth2GrantType": { "type": "string" }, "RefreshToken": { "type": "string" } }, "type": "object" }, "AWS::AppFlow::ConnectorProfile.SalesforceConnectorProfileProperties": { "additionalProperties": false, "properties": { "InstanceUrl": { "type": "string" }, "isSandboxEnvironment": { "type": "boolean" }, "usePrivateLinkForMetadataAndAuthorization": { "type": "boolean" } }, "type": "object" }, "AWS::AppFlow::ConnectorProfile.ServiceNowConnectorProfileCredentials": { "additionalProperties": false, "properties": { "Password": { "type": "string" }, "Username": { "type": "string" } }, "required": [ "Password", "Username" ], "type": "object" }, "AWS::AppFlow::ConnectorProfile.ServiceNowConnectorProfileProperties": { "additionalProperties": false, "properties": { "InstanceUrl": { "type": "string" } }, "required": [ "InstanceUrl" ], "type": "object" }, "AWS::AppFlow::ConnectorProfile.SingularConnectorProfileCredentials": { "additionalProperties": false, "properties": { "ApiKey": { "type": "string" } }, "required": [ "ApiKey" ], "type": "object" }, "AWS::AppFlow::ConnectorProfile.SlackConnectorProfileCredentials": { "additionalProperties": false, "properties": { "AccessToken": { "type": "string" }, "ClientId": { "type": "string" }, "ClientSecret": { "type": "string" }, "ConnectorOAuthRequest": { "$ref": "#/definitions/AWS::AppFlow::ConnectorProfile.ConnectorOAuthRequest" } }, "required": [ "ClientId", "ClientSecret" ], "type": "object" }, "AWS::AppFlow::ConnectorProfile.SlackConnectorProfileProperties": { "additionalProperties": false, "properties": { "InstanceUrl": { "type": "string" } }, "required": [ "InstanceUrl" ], "type": "object" }, "AWS::AppFlow::ConnectorProfile.SnowflakeConnectorProfileCredentials": { "additionalProperties": false, "properties": { "Password": { "type": "string" }, "Username": { "type": "string" } }, "required": [ "Password", "Username" ], "type": "object" }, "AWS::AppFlow::ConnectorProfile.SnowflakeConnectorProfileProperties": { "additionalProperties": false, "properties": { "AccountName": { "type": "string" }, "BucketName": { "type": "string" }, "BucketPrefix": { "type": "string" }, "PrivateLinkServiceName": { "type": "string" }, "Region": { "type": "string" }, "Stage": { "type": "string" }, "Warehouse": { "type": "string" } }, "required": [ "BucketName", "Stage", "Warehouse" ], "type": "object" }, "AWS::AppFlow::ConnectorProfile.TrendmicroConnectorProfileCredentials": { "additionalProperties": false, "properties": { "ApiSecretKey": { "type": "string" } }, "required": [ "ApiSecretKey" ], "type": "object" }, "AWS::AppFlow::ConnectorProfile.VeevaConnectorProfileCredentials": { "additionalProperties": false, "properties": { "Password": { "type": "string" }, "Username": { "type": "string" } }, "required": [ "Password", "Username" ], "type": "object" }, "AWS::AppFlow::ConnectorProfile.VeevaConnectorProfileProperties": { "additionalProperties": false, "properties": { "InstanceUrl": { "type": "string" } }, "required": [ "InstanceUrl" ], "type": "object" }, "AWS::AppFlow::ConnectorProfile.ZendeskConnectorProfileCredentials": { "additionalProperties": false, "properties": { "AccessToken": { "type": "string" }, "ClientId": { "type": "string" }, "ClientSecret": { "type": "string" }, "ConnectorOAuthRequest": { "$ref": "#/definitions/AWS::AppFlow::ConnectorProfile.ConnectorOAuthRequest" } }, "required": [ "ClientId", "ClientSecret" ], "type": "object" }, "AWS::AppFlow::ConnectorProfile.ZendeskConnectorProfileProperties": { "additionalProperties": false, "properties": { "InstanceUrl": { "type": "string" } }, "required": [ "InstanceUrl" ], "type": "object" }, "AWS::AppFlow::Flow": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "DestinationFlowConfigList": { "items": { "$ref": "#/definitions/AWS::AppFlow::Flow.DestinationFlowConfig" }, "type": "array" }, "FlowName": { "type": "string" }, "FlowStatus": { "type": "string" }, "KMSArn": { "type": "string" }, "MetadataCatalogConfig": { "$ref": "#/definitions/AWS::AppFlow::Flow.MetadataCatalogConfig" }, "SourceFlowConfig": { "$ref": "#/definitions/AWS::AppFlow::Flow.SourceFlowConfig" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "Tasks": { "items": { "$ref": "#/definitions/AWS::AppFlow::Flow.Task" }, "type": "array" }, "TriggerConfig": { "$ref": "#/definitions/AWS::AppFlow::Flow.TriggerConfig" } }, "required": [ "DestinationFlowConfigList", "FlowName", "SourceFlowConfig", "Tasks", "TriggerConfig" ], "type": "object" }, "Type": { "enum": [ "AWS::AppFlow::Flow" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::AppFlow::Flow.AggregationConfig": { "additionalProperties": false, "properties": { "AggregationType": { "type": "string" }, "TargetFileSize": { "type": "number" } }, "type": "object" }, "AWS::AppFlow::Flow.AmplitudeSourceProperties": { "additionalProperties": false, "properties": { "Object": { "type": "string" } }, "required": [ "Object" ], "type": "object" }, "AWS::AppFlow::Flow.ConnectorOperator": { "additionalProperties": false, "properties": { "Amplitude": { "type": "string" }, "CustomConnector": { "type": "string" }, "Datadog": { "type": "string" }, "Dynatrace": { "type": "string" }, "GoogleAnalytics": { "type": "string" }, "InforNexus": { "type": "string" }, "Marketo": { "type": "string" }, "Pardot": { "type": "string" }, "S3": { "type": "string" }, "SAPOData": { "type": "string" }, "Salesforce": { "type": "string" }, "ServiceNow": { "type": "string" }, "Singular": { "type": "string" }, "Slack": { "type": "string" }, "Trendmicro": { "type": "string" }, "Veeva": { "type": "string" }, "Zendesk": { "type": "string" } }, "type": "object" }, "AWS::AppFlow::Flow.CustomConnectorDestinationProperties": { "additionalProperties": false, "properties": { "CustomProperties": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" }, "EntityName": { "type": "string" }, "ErrorHandlingConfig": { "$ref": "#/definitions/AWS::AppFlow::Flow.ErrorHandlingConfig" }, "IdFieldNames": { "items": { "type": "string" }, "type": "array" }, "WriteOperationType": { "type": "string" } }, "required": [ "EntityName" ], "type": "object" }, "AWS::AppFlow::Flow.CustomConnectorSourceProperties": { "additionalProperties": false, "properties": { "CustomProperties": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" }, "DataTransferApi": { "$ref": "#/definitions/AWS::AppFlow::Flow.DataTransferApi" }, "EntityName": { "type": "string" } }, "required": [ "EntityName" ], "type": "object" }, "AWS::AppFlow::Flow.DataTransferApi": { "additionalProperties": false, "properties": { "Name": { "type": "string" }, "Type": { "type": "string" } }, "required": [ "Name", "Type" ], "type": "object" }, "AWS::AppFlow::Flow.DatadogSourceProperties": { "additionalProperties": false, "properties": { "Object": { "type": "string" } }, "required": [ "Object" ], "type": "object" }, "AWS::AppFlow::Flow.DestinationConnectorProperties": { "additionalProperties": false, "properties": { "CustomConnector": { "$ref": "#/definitions/AWS::AppFlow::Flow.CustomConnectorDestinationProperties" }, "EventBridge": { "$ref": "#/definitions/AWS::AppFlow::Flow.EventBridgeDestinationProperties" }, "LookoutMetrics": { "$ref": "#/definitions/AWS::AppFlow::Flow.LookoutMetricsDestinationProperties" }, "Marketo": { "$ref": "#/definitions/AWS::AppFlow::Flow.MarketoDestinationProperties" }, "Redshift": { "$ref": "#/definitions/AWS::AppFlow::Flow.RedshiftDestinationProperties" }, "S3": { "$ref": "#/definitions/AWS::AppFlow::Flow.S3DestinationProperties" }, "SAPOData": { "$ref": "#/definitions/AWS::AppFlow::Flow.SAPODataDestinationProperties" }, "Salesforce": { "$ref": "#/definitions/AWS::AppFlow::Flow.SalesforceDestinationProperties" }, "Snowflake": { "$ref": "#/definitions/AWS::AppFlow::Flow.SnowflakeDestinationProperties" }, "Upsolver": { "$ref": "#/definitions/AWS::AppFlow::Flow.UpsolverDestinationProperties" }, "Zendesk": { "$ref": "#/definitions/AWS::AppFlow::Flow.ZendeskDestinationProperties" } }, "type": "object" }, "AWS::AppFlow::Flow.DestinationFlowConfig": { "additionalProperties": false, "properties": { "ApiVersion": { "type": "string" }, "ConnectorProfileName": { "type": "string" }, "ConnectorType": { "type": "string" }, "DestinationConnectorProperties": { "$ref": "#/definitions/AWS::AppFlow::Flow.DestinationConnectorProperties" } }, "required": [ "ConnectorType", "DestinationConnectorProperties" ], "type": "object" }, "AWS::AppFlow::Flow.DynatraceSourceProperties": { "additionalProperties": false, "properties": { "Object": { "type": "string" } }, "required": [ "Object" ], "type": "object" }, "AWS::AppFlow::Flow.ErrorHandlingConfig": { "additionalProperties": false, "properties": { "BucketName": { "type": "string" }, "BucketPrefix": { "type": "string" }, "FailOnFirstError": { "type": "boolean" } }, "type": "object" }, "AWS::AppFlow::Flow.EventBridgeDestinationProperties": { "additionalProperties": false, "properties": { "ErrorHandlingConfig": { "$ref": "#/definitions/AWS::AppFlow::Flow.ErrorHandlingConfig" }, "Object": { "type": "string" } }, "required": [ "Object" ], "type": "object" }, "AWS::AppFlow::Flow.GlueDataCatalog": { "additionalProperties": false, "properties": { "DatabaseName": { "type": "string" }, "RoleArn": { "type": "string" }, "TablePrefix": { "type": "string" } }, "required": [ "DatabaseName", "RoleArn", "TablePrefix" ], "type": "object" }, "AWS::AppFlow::Flow.GoogleAnalyticsSourceProperties": { "additionalProperties": false, "properties": { "Object": { "type": "string" } }, "required": [ "Object" ], "type": "object" }, "AWS::AppFlow::Flow.IncrementalPullConfig": { "additionalProperties": false, "properties": { "DatetimeTypeFieldName": { "type": "string" } }, "type": "object" }, "AWS::AppFlow::Flow.InforNexusSourceProperties": { "additionalProperties": false, "properties": { "Object": { "type": "string" } }, "required": [ "Object" ], "type": "object" }, "AWS::AppFlow::Flow.LookoutMetricsDestinationProperties": { "additionalProperties": false, "properties": { "Object": { "type": "string" } }, "type": "object" }, "AWS::AppFlow::Flow.MarketoDestinationProperties": { "additionalProperties": false, "properties": { "ErrorHandlingConfig": { "$ref": "#/definitions/AWS::AppFlow::Flow.ErrorHandlingConfig" }, "Object": { "type": "string" } }, "required": [ "Object" ], "type": "object" }, "AWS::AppFlow::Flow.MarketoSourceProperties": { "additionalProperties": false, "properties": { "Object": { "type": "string" } }, "required": [ "Object" ], "type": "object" }, "AWS::AppFlow::Flow.MetadataCatalogConfig": { "additionalProperties": false, "properties": { "GlueDataCatalog": { "$ref": "#/definitions/AWS::AppFlow::Flow.GlueDataCatalog" } }, "type": "object" }, "AWS::AppFlow::Flow.PardotSourceProperties": { "additionalProperties": false, "properties": { "Object": { "type": "string" } }, "required": [ "Object" ], "type": "object" }, "AWS::AppFlow::Flow.PrefixConfig": { "additionalProperties": false, "properties": { "PathPrefixHierarchy": { "items": { "type": "string" }, "type": "array" }, "PrefixFormat": { "type": "string" }, "PrefixType": { "type": "string" } }, "type": "object" }, "AWS::AppFlow::Flow.RedshiftDestinationProperties": { "additionalProperties": false, "properties": { "BucketPrefix": { "type": "string" }, "ErrorHandlingConfig": { "$ref": "#/definitions/AWS::AppFlow::Flow.ErrorHandlingConfig" }, "IntermediateBucketName": { "type": "string" }, "Object": { "type": "string" } }, "required": [ "IntermediateBucketName", "Object" ], "type": "object" }, "AWS::AppFlow::Flow.S3DestinationProperties": { "additionalProperties": false, "properties": { "BucketName": { "type": "string" }, "BucketPrefix": { "type": "string" }, "S3OutputFormatConfig": { "$ref": "#/definitions/AWS::AppFlow::Flow.S3OutputFormatConfig" } }, "required": [ "BucketName" ], "type": "object" }, "AWS::AppFlow::Flow.S3InputFormatConfig": { "additionalProperties": false, "properties": { "S3InputFileType": { "type": "string" } }, "type": "object" }, "AWS::AppFlow::Flow.S3OutputFormatConfig": { "additionalProperties": false, "properties": { "AggregationConfig": { "$ref": "#/definitions/AWS::AppFlow::Flow.AggregationConfig" }, "FileType": { "type": "string" }, "PrefixConfig": { "$ref": "#/definitions/AWS::AppFlow::Flow.PrefixConfig" }, "PreserveSourceDataTyping": { "type": "boolean" } }, "type": "object" }, "AWS::AppFlow::Flow.S3SourceProperties": { "additionalProperties": false, "properties": { "BucketName": { "type": "string" }, "BucketPrefix": { "type": "string" }, "S3InputFormatConfig": { "$ref": "#/definitions/AWS::AppFlow::Flow.S3InputFormatConfig" } }, "required": [ "BucketName", "BucketPrefix" ], "type": "object" }, "AWS::AppFlow::Flow.SAPODataDestinationProperties": { "additionalProperties": false, "properties": { "ErrorHandlingConfig": { "$ref": "#/definitions/AWS::AppFlow::Flow.ErrorHandlingConfig" }, "IdFieldNames": { "items": { "type": "string" }, "type": "array" }, "ObjectPath": { "type": "string" }, "SuccessResponseHandlingConfig": { "$ref": "#/definitions/AWS::AppFlow::Flow.SuccessResponseHandlingConfig" }, "WriteOperationType": { "type": "string" } }, "required": [ "ObjectPath" ], "type": "object" }, "AWS::AppFlow::Flow.SAPODataSourceProperties": { "additionalProperties": false, "properties": { "ObjectPath": { "type": "string" } }, "required": [ "ObjectPath" ], "type": "object" }, "AWS::AppFlow::Flow.SalesforceDestinationProperties": { "additionalProperties": false, "properties": { "DataTransferApi": { "type": "string" }, "ErrorHandlingConfig": { "$ref": "#/definitions/AWS::AppFlow::Flow.ErrorHandlingConfig" }, "IdFieldNames": { "items": { "type": "string" }, "type": "array" }, "Object": { "type": "string" }, "WriteOperationType": { "type": "string" } }, "required": [ "Object" ], "type": "object" }, "AWS::AppFlow::Flow.SalesforceSourceProperties": { "additionalProperties": false, "properties": { "DataTransferApi": { "type": "string" }, "EnableDynamicFieldUpdate": { "type": "boolean" }, "IncludeDeletedRecords": { "type": "boolean" }, "Object": { "type": "string" } }, "required": [ "Object" ], "type": "object" }, "AWS::AppFlow::Flow.ScheduledTriggerProperties": { "additionalProperties": false, "properties": { "DataPullMode": { "type": "string" }, "FirstExecutionFrom": { "type": "number" }, "FlowErrorDeactivationThreshold": { "type": "number" }, "ScheduleEndTime": { "type": "number" }, "ScheduleExpression": { "type": "string" }, "ScheduleOffset": { "type": "number" }, "ScheduleStartTime": { "type": "number" }, "TimeZone": { "type": "string" } }, "required": [ "ScheduleExpression" ], "type": "object" }, "AWS::AppFlow::Flow.ServiceNowSourceProperties": { "additionalProperties": false, "properties": { "Object": { "type": "string" } }, "required": [ "Object" ], "type": "object" }, "AWS::AppFlow::Flow.SingularSourceProperties": { "additionalProperties": false, "properties": { "Object": { "type": "string" } }, "required": [ "Object" ], "type": "object" }, "AWS::AppFlow::Flow.SlackSourceProperties": { "additionalProperties": false, "properties": { "Object": { "type": "string" } }, "required": [ "Object" ], "type": "object" }, "AWS::AppFlow::Flow.SnowflakeDestinationProperties": { "additionalProperties": false, "properties": { "BucketPrefix": { "type": "string" }, "ErrorHandlingConfig": { "$ref": "#/definitions/AWS::AppFlow::Flow.ErrorHandlingConfig" }, "IntermediateBucketName": { "type": "string" }, "Object": { "type": "string" } }, "required": [ "IntermediateBucketName", "Object" ], "type": "object" }, "AWS::AppFlow::Flow.SourceConnectorProperties": { "additionalProperties": false, "properties": { "Amplitude": { "$ref": "#/definitions/AWS::AppFlow::Flow.AmplitudeSourceProperties" }, "CustomConnector": { "$ref": "#/definitions/AWS::AppFlow::Flow.CustomConnectorSourceProperties" }, "Datadog": { "$ref": "#/definitions/AWS::AppFlow::Flow.DatadogSourceProperties" }, "Dynatrace": { "$ref": "#/definitions/AWS::AppFlow::Flow.DynatraceSourceProperties" }, "GoogleAnalytics": { "$ref": "#/definitions/AWS::AppFlow::Flow.GoogleAnalyticsSourceProperties" }, "InforNexus": { "$ref": "#/definitions/AWS::AppFlow::Flow.InforNexusSourceProperties" }, "Marketo": { "$ref": "#/definitions/AWS::AppFlow::Flow.MarketoSourceProperties" }, "Pardot": { "$ref": "#/definitions/AWS::AppFlow::Flow.PardotSourceProperties" }, "S3": { "$ref": "#/definitions/AWS::AppFlow::Flow.S3SourceProperties" }, "SAPOData": { "$ref": "#/definitions/AWS::AppFlow::Flow.SAPODataSourceProperties" }, "Salesforce": { "$ref": "#/definitions/AWS::AppFlow::Flow.SalesforceSourceProperties" }, "ServiceNow": { "$ref": "#/definitions/AWS::AppFlow::Flow.ServiceNowSourceProperties" }, "Singular": { "$ref": "#/definitions/AWS::AppFlow::Flow.SingularSourceProperties" }, "Slack": { "$ref": "#/definitions/AWS::AppFlow::Flow.SlackSourceProperties" }, "Trendmicro": { "$ref": "#/definitions/AWS::AppFlow::Flow.TrendmicroSourceProperties" }, "Veeva": { "$ref": "#/definitions/AWS::AppFlow::Flow.VeevaSourceProperties" }, "Zendesk": { "$ref": "#/definitions/AWS::AppFlow::Flow.ZendeskSourceProperties" } }, "type": "object" }, "AWS::AppFlow::Flow.SourceFlowConfig": { "additionalProperties": false, "properties": { "ApiVersion": { "type": "string" }, "ConnectorProfileName": { "type": "string" }, "ConnectorType": { "type": "string" }, "IncrementalPullConfig": { "$ref": "#/definitions/AWS::AppFlow::Flow.IncrementalPullConfig" }, "SourceConnectorProperties": { "$ref": "#/definitions/AWS::AppFlow::Flow.SourceConnectorProperties" } }, "required": [ "ConnectorType", "SourceConnectorProperties" ], "type": "object" }, "AWS::AppFlow::Flow.SuccessResponseHandlingConfig": { "additionalProperties": false, "properties": { "BucketName": { "type": "string" }, "BucketPrefix": { "type": "string" } }, "type": "object" }, "AWS::AppFlow::Flow.Task": { "additionalProperties": false, "properties": { "ConnectorOperator": { "$ref": "#/definitions/AWS::AppFlow::Flow.ConnectorOperator" }, "DestinationField": { "type": "string" }, "SourceFields": { "items": { "type": "string" }, "type": "array" }, "TaskProperties": { "items": { "$ref": "#/definitions/AWS::AppFlow::Flow.TaskPropertiesObject" }, "type": "array" }, "TaskType": { "type": "string" } }, "required": [ "SourceFields", "TaskType" ], "type": "object" }, "AWS::AppFlow::Flow.TaskPropertiesObject": { "additionalProperties": false, "properties": { "Key": { "type": "string" }, "Value": { "type": "string" } }, "required": [ "Key", "Value" ], "type": "object" }, "AWS::AppFlow::Flow.TrendmicroSourceProperties": { "additionalProperties": false, "properties": { "Object": { "type": "string" } }, "required": [ "Object" ], "type": "object" }, "AWS::AppFlow::Flow.TriggerConfig": { "additionalProperties": false, "properties": { "TriggerProperties": { "$ref": "#/definitions/AWS::AppFlow::Flow.ScheduledTriggerProperties" }, "TriggerType": { "type": "string" } }, "required": [ "TriggerType" ], "type": "object" }, "AWS::AppFlow::Flow.UpsolverDestinationProperties": { "additionalProperties": false, "properties": { "BucketName": { "type": "string" }, "BucketPrefix": { "type": "string" }, "S3OutputFormatConfig": { "$ref": "#/definitions/AWS::AppFlow::Flow.UpsolverS3OutputFormatConfig" } }, "required": [ "BucketName", "S3OutputFormatConfig" ], "type": "object" }, "AWS::AppFlow::Flow.UpsolverS3OutputFormatConfig": { "additionalProperties": false, "properties": { "AggregationConfig": { "$ref": "#/definitions/AWS::AppFlow::Flow.AggregationConfig" }, "FileType": { "type": "string" }, "PrefixConfig": { "$ref": "#/definitions/AWS::AppFlow::Flow.PrefixConfig" } }, "required": [ "PrefixConfig" ], "type": "object" }, "AWS::AppFlow::Flow.VeevaSourceProperties": { "additionalProperties": false, "properties": { "DocumentType": { "type": "string" }, "IncludeAllVersions": { "type": "boolean" }, "IncludeRenditions": { "type": "boolean" }, "IncludeSourceFiles": { "type": "boolean" }, "Object": { "type": "string" } }, "required": [ "Object" ], "type": "object" }, "AWS::AppFlow::Flow.ZendeskDestinationProperties": { "additionalProperties": false, "properties": { "ErrorHandlingConfig": { "$ref": "#/definitions/AWS::AppFlow::Flow.ErrorHandlingConfig" }, "IdFieldNames": { "items": { "type": "string" }, "type": "array" }, "Object": { "type": "string" }, "WriteOperationType": { "type": "string" } }, "required": [ "Object" ], "type": "object" }, "AWS::AppFlow::Flow.ZendeskSourceProperties": { "additionalProperties": false, "properties": { "Object": { "type": "string" } }, "required": [ "Object" ], "type": "object" }, "AWS::AppIntegrations::DataIntegration": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "FileConfiguration": { "$ref": "#/definitions/AWS::AppIntegrations::DataIntegration.FileConfiguration" }, "KmsKey": { "type": "string" }, "Name": { "type": "string" }, "ObjectConfiguration": { "type": "object" }, "ScheduleConfig": { "$ref": "#/definitions/AWS::AppIntegrations::DataIntegration.ScheduleConfig" }, "SourceURI": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "KmsKey", "Name", "ScheduleConfig", "SourceURI" ], "type": "object" }, "Type": { "enum": [ "AWS::AppIntegrations::DataIntegration" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::AppIntegrations::DataIntegration.FileConfiguration": { "additionalProperties": false, "properties": { "Filters": { "type": "object" }, "Folders": { "items": { "type": "string" }, "type": "array" } }, "required": [ "Folders" ], "type": "object" }, "AWS::AppIntegrations::DataIntegration.ScheduleConfig": { "additionalProperties": false, "properties": { "FirstExecutionFrom": { "type": "string" }, "Object": { "type": "string" }, "ScheduleExpression": { "type": "string" } }, "required": [ "ScheduleExpression" ], "type": "object" }, "AWS::AppIntegrations::EventIntegration": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "EventBridgeBus": { "type": "string" }, "EventFilter": { "$ref": "#/definitions/AWS::AppIntegrations::EventIntegration.EventFilter" }, "Name": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "EventBridgeBus", "EventFilter", "Name" ], "type": "object" }, "Type": { "enum": [ "AWS::AppIntegrations::EventIntegration" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::AppIntegrations::EventIntegration.EventFilter": { "additionalProperties": false, "properties": { "Source": { "type": "string" } }, "required": [ "Source" ], "type": "object" }, "AWS::AppMesh::GatewayRoute": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "GatewayRouteName": { "type": "string" }, "MeshName": { "type": "string" }, "MeshOwner": { "type": "string" }, "Spec": { "$ref": "#/definitions/AWS::AppMesh::GatewayRoute.GatewayRouteSpec" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "VirtualGatewayName": { "type": "string" } }, "required": [ "MeshName", "Spec", "VirtualGatewayName" ], "type": "object" }, "Type": { "enum": [ "AWS::AppMesh::GatewayRoute" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::AppMesh::GatewayRoute.GatewayRouteHostnameMatch": { "additionalProperties": false, "properties": { "Exact": { "type": "string" }, "Suffix": { "type": "string" } }, "type": "object" }, "AWS::AppMesh::GatewayRoute.GatewayRouteHostnameRewrite": { "additionalProperties": false, "properties": { "DefaultTargetHostname": { "type": "string" } }, "type": "object" }, "AWS::AppMesh::GatewayRoute.GatewayRouteMetadataMatch": { "additionalProperties": false, "properties": { "Exact": { "type": "string" }, "Prefix": { "type": "string" }, "Range": { "$ref": "#/definitions/AWS::AppMesh::GatewayRoute.GatewayRouteRangeMatch" }, "Regex": { "type": "string" }, "Suffix": { "type": "string" } }, "type": "object" }, "AWS::AppMesh::GatewayRoute.GatewayRouteRangeMatch": { "additionalProperties": false, "properties": { "End": { "type": "number" }, "Start": { "type": "number" } }, "required": [ "End", "Start" ], "type": "object" }, "AWS::AppMesh::GatewayRoute.GatewayRouteSpec": { "additionalProperties": false, "properties": { "GrpcRoute": { "$ref": "#/definitions/AWS::AppMesh::GatewayRoute.GrpcGatewayRoute" }, "Http2Route": { "$ref": "#/definitions/AWS::AppMesh::GatewayRoute.HttpGatewayRoute" }, "HttpRoute": { "$ref": "#/definitions/AWS::AppMesh::GatewayRoute.HttpGatewayRoute" }, "Priority": { "type": "number" } }, "type": "object" }, "AWS::AppMesh::GatewayRoute.GatewayRouteTarget": { "additionalProperties": false, "properties": { "Port": { "type": "number" }, "VirtualService": { "$ref": "#/definitions/AWS::AppMesh::GatewayRoute.GatewayRouteVirtualService" } }, "required": [ "VirtualService" ], "type": "object" }, "AWS::AppMesh::GatewayRoute.GatewayRouteVirtualService": { "additionalProperties": false, "properties": { "VirtualServiceName": { "type": "string" } }, "required": [ "VirtualServiceName" ], "type": "object" }, "AWS::AppMesh::GatewayRoute.GrpcGatewayRoute": { "additionalProperties": false, "properties": { "Action": { "$ref": "#/definitions/AWS::AppMesh::GatewayRoute.GrpcGatewayRouteAction" }, "Match": { "$ref": "#/definitions/AWS::AppMesh::GatewayRoute.GrpcGatewayRouteMatch" } }, "required": [ "Action", "Match" ], "type": "object" }, "AWS::AppMesh::GatewayRoute.GrpcGatewayRouteAction": { "additionalProperties": false, "properties": { "Rewrite": { "$ref": "#/definitions/AWS::AppMesh::GatewayRoute.GrpcGatewayRouteRewrite" }, "Target": { "$ref": "#/definitions/AWS::AppMesh::GatewayRoute.GatewayRouteTarget" } }, "required": [ "Target" ], "type": "object" }, "AWS::AppMesh::GatewayRoute.GrpcGatewayRouteMatch": { "additionalProperties": false, "properties": { "Hostname": { "$ref": "#/definitions/AWS::AppMesh::GatewayRoute.GatewayRouteHostnameMatch" }, "Metadata": { "items": { "$ref": "#/definitions/AWS::AppMesh::GatewayRoute.GrpcGatewayRouteMetadata" }, "type": "array" }, "Port": { "type": "number" }, "ServiceName": { "type": "string" } }, "type": "object" }, "AWS::AppMesh::GatewayRoute.GrpcGatewayRouteMetadata": { "additionalProperties": false, "properties": { "Invert": { "type": "boolean" }, "Match": { "$ref": "#/definitions/AWS::AppMesh::GatewayRoute.GatewayRouteMetadataMatch" }, "Name": { "type": "string" } }, "required": [ "Name" ], "type": "object" }, "AWS::AppMesh::GatewayRoute.GrpcGatewayRouteRewrite": { "additionalProperties": false, "properties": { "Hostname": { "$ref": "#/definitions/AWS::AppMesh::GatewayRoute.GatewayRouteHostnameRewrite" } }, "type": "object" }, "AWS::AppMesh::GatewayRoute.HttpGatewayRoute": { "additionalProperties": false, "properties": { "Action": { "$ref": "#/definitions/AWS::AppMesh::GatewayRoute.HttpGatewayRouteAction" }, "Match": { "$ref": "#/definitions/AWS::AppMesh::GatewayRoute.HttpGatewayRouteMatch" } }, "required": [ "Action", "Match" ], "type": "object" }, "AWS::AppMesh::GatewayRoute.HttpGatewayRouteAction": { "additionalProperties": false, "properties": { "Rewrite": { "$ref": "#/definitions/AWS::AppMesh::GatewayRoute.HttpGatewayRouteRewrite" }, "Target": { "$ref": "#/definitions/AWS::AppMesh::GatewayRoute.GatewayRouteTarget" } }, "required": [ "Target" ], "type": "object" }, "AWS::AppMesh::GatewayRoute.HttpGatewayRouteHeader": { "additionalProperties": false, "properties": { "Invert": { "type": "boolean" }, "Match": { "$ref": "#/definitions/AWS::AppMesh::GatewayRoute.HttpGatewayRouteHeaderMatch" }, "Name": { "type": "string" } }, "required": [ "Name" ], "type": "object" }, "AWS::AppMesh::GatewayRoute.HttpGatewayRouteHeaderMatch": { "additionalProperties": false, "properties": { "Exact": { "type": "string" }, "Prefix": { "type": "string" }, "Range": { "$ref": "#/definitions/AWS::AppMesh::GatewayRoute.GatewayRouteRangeMatch" }, "Regex": { "type": "string" }, "Suffix": { "type": "string" } }, "type": "object" }, "AWS::AppMesh::GatewayRoute.HttpGatewayRouteMatch": { "additionalProperties": false, "properties": { "Headers": { "items": { "$ref": "#/definitions/AWS::AppMesh::GatewayRoute.HttpGatewayRouteHeader" }, "type": "array" }, "Hostname": { "$ref": "#/definitions/AWS::AppMesh::GatewayRoute.GatewayRouteHostnameMatch" }, "Method": { "type": "string" }, "Path": { "$ref": "#/definitions/AWS::AppMesh::GatewayRoute.HttpPathMatch" }, "Port": { "type": "number" }, "Prefix": { "type": "string" }, "QueryParameters": { "items": { "$ref": "#/definitions/AWS::AppMesh::GatewayRoute.QueryParameter" }, "type": "array" } }, "type": "object" }, "AWS::AppMesh::GatewayRoute.HttpGatewayRoutePathRewrite": { "additionalProperties": false, "properties": { "Exact": { "type": "string" } }, "type": "object" }, "AWS::AppMesh::GatewayRoute.HttpGatewayRoutePrefixRewrite": { "additionalProperties": false, "properties": { "DefaultPrefix": { "type": "string" }, "Value": { "type": "string" } }, "type": "object" }, "AWS::AppMesh::GatewayRoute.HttpGatewayRouteRewrite": { "additionalProperties": false, "properties": { "Hostname": { "$ref": "#/definitions/AWS::AppMesh::GatewayRoute.GatewayRouteHostnameRewrite" }, "Path": { "$ref": "#/definitions/AWS::AppMesh::GatewayRoute.HttpGatewayRoutePathRewrite" }, "Prefix": { "$ref": "#/definitions/AWS::AppMesh::GatewayRoute.HttpGatewayRoutePrefixRewrite" } }, "type": "object" }, "AWS::AppMesh::GatewayRoute.HttpPathMatch": { "additionalProperties": false, "properties": { "Exact": { "type": "string" }, "Regex": { "type": "string" } }, "type": "object" }, "AWS::AppMesh::GatewayRoute.HttpQueryParameterMatch": { "additionalProperties": false, "properties": { "Exact": { "type": "string" } }, "type": "object" }, "AWS::AppMesh::GatewayRoute.QueryParameter": { "additionalProperties": false, "properties": { "Match": { "$ref": "#/definitions/AWS::AppMesh::GatewayRoute.HttpQueryParameterMatch" }, "Name": { "type": "string" } }, "required": [ "Name" ], "type": "object" }, "AWS::AppMesh::Mesh": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "MeshName": { "type": "string" }, "Spec": { "$ref": "#/definitions/AWS::AppMesh::Mesh.MeshSpec" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "type": "object" }, "Type": { "enum": [ "AWS::AppMesh::Mesh" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::AppMesh::Mesh.EgressFilter": { "additionalProperties": false, "properties": { "Type": { "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::AppMesh::Mesh.MeshServiceDiscovery": { "additionalProperties": false, "properties": { "IpPreference": { "type": "string" } }, "type": "object" }, "AWS::AppMesh::Mesh.MeshSpec": { "additionalProperties": false, "properties": { "EgressFilter": { "$ref": "#/definitions/AWS::AppMesh::Mesh.EgressFilter" }, "ServiceDiscovery": { "$ref": "#/definitions/AWS::AppMesh::Mesh.MeshServiceDiscovery" } }, "type": "object" }, "AWS::AppMesh::Route": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "MeshName": { "type": "string" }, "MeshOwner": { "type": "string" }, "RouteName": { "type": "string" }, "Spec": { "$ref": "#/definitions/AWS::AppMesh::Route.RouteSpec" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "VirtualRouterName": { "type": "string" } }, "required": [ "MeshName", "Spec", "VirtualRouterName" ], "type": "object" }, "Type": { "enum": [ "AWS::AppMesh::Route" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::AppMesh::Route.Duration": { "additionalProperties": false, "properties": { "Unit": { "type": "string" }, "Value": { "type": "number" } }, "required": [ "Unit", "Value" ], "type": "object" }, "AWS::AppMesh::Route.GrpcRetryPolicy": { "additionalProperties": false, "properties": { "GrpcRetryEvents": { "items": { "type": "string" }, "type": "array" }, "HttpRetryEvents": { "items": { "type": "string" }, "type": "array" }, "MaxRetries": { "type": "number" }, "PerRetryTimeout": { "$ref": "#/definitions/AWS::AppMesh::Route.Duration" }, "TcpRetryEvents": { "items": { "type": "string" }, "type": "array" } }, "required": [ "MaxRetries", "PerRetryTimeout" ], "type": "object" }, "AWS::AppMesh::Route.GrpcRoute": { "additionalProperties": false, "properties": { "Action": { "$ref": "#/definitions/AWS::AppMesh::Route.GrpcRouteAction" }, "Match": { "$ref": "#/definitions/AWS::AppMesh::Route.GrpcRouteMatch" }, "RetryPolicy": { "$ref": "#/definitions/AWS::AppMesh::Route.GrpcRetryPolicy" }, "Timeout": { "$ref": "#/definitions/AWS::AppMesh::Route.GrpcTimeout" } }, "required": [ "Action", "Match" ], "type": "object" }, "AWS::AppMesh::Route.GrpcRouteAction": { "additionalProperties": false, "properties": { "WeightedTargets": { "items": { "$ref": "#/definitions/AWS::AppMesh::Route.WeightedTarget" }, "type": "array" } }, "required": [ "WeightedTargets" ], "type": "object" }, "AWS::AppMesh::Route.GrpcRouteMatch": { "additionalProperties": false, "properties": { "Metadata": { "items": { "$ref": "#/definitions/AWS::AppMesh::Route.GrpcRouteMetadata" }, "type": "array" }, "MethodName": { "type": "string" }, "Port": { "type": "number" }, "ServiceName": { "type": "string" } }, "type": "object" }, "AWS::AppMesh::Route.GrpcRouteMetadata": { "additionalProperties": false, "properties": { "Invert": { "type": "boolean" }, "Match": { "$ref": "#/definitions/AWS::AppMesh::Route.GrpcRouteMetadataMatchMethod" }, "Name": { "type": "string" } }, "required": [ "Name" ], "type": "object" }, "AWS::AppMesh::Route.GrpcRouteMetadataMatchMethod": { "additionalProperties": false, "properties": { "Exact": { "type": "string" }, "Prefix": { "type": "string" }, "Range": { "$ref": "#/definitions/AWS::AppMesh::Route.MatchRange" }, "Regex": { "type": "string" }, "Suffix": { "type": "string" } }, "type": "object" }, "AWS::AppMesh::Route.GrpcTimeout": { "additionalProperties": false, "properties": { "Idle": { "$ref": "#/definitions/AWS::AppMesh::Route.Duration" }, "PerRequest": { "$ref": "#/definitions/AWS::AppMesh::Route.Duration" } }, "type": "object" }, "AWS::AppMesh::Route.HeaderMatchMethod": { "additionalProperties": false, "properties": { "Exact": { "type": "string" }, "Prefix": { "type": "string" }, "Range": { "$ref": "#/definitions/AWS::AppMesh::Route.MatchRange" }, "Regex": { "type": "string" }, "Suffix": { "type": "string" } }, "type": "object" }, "AWS::AppMesh::Route.HttpPathMatch": { "additionalProperties": false, "properties": { "Exact": { "type": "string" }, "Regex": { "type": "string" } }, "type": "object" }, "AWS::AppMesh::Route.HttpQueryParameterMatch": { "additionalProperties": false, "properties": { "Exact": { "type": "string" } }, "type": "object" }, "AWS::AppMesh::Route.HttpRetryPolicy": { "additionalProperties": false, "properties": { "HttpRetryEvents": { "items": { "type": "string" }, "type": "array" }, "MaxRetries": { "type": "number" }, "PerRetryTimeout": { "$ref": "#/definitions/AWS::AppMesh::Route.Duration" }, "TcpRetryEvents": { "items": { "type": "string" }, "type": "array" } }, "required": [ "MaxRetries", "PerRetryTimeout" ], "type": "object" }, "AWS::AppMesh::Route.HttpRoute": { "additionalProperties": false, "properties": { "Action": { "$ref": "#/definitions/AWS::AppMesh::Route.HttpRouteAction" }, "Match": { "$ref": "#/definitions/AWS::AppMesh::Route.HttpRouteMatch" }, "RetryPolicy": { "$ref": "#/definitions/AWS::AppMesh::Route.HttpRetryPolicy" }, "Timeout": { "$ref": "#/definitions/AWS::AppMesh::Route.HttpTimeout" } }, "required": [ "Action", "Match" ], "type": "object" }, "AWS::AppMesh::Route.HttpRouteAction": { "additionalProperties": false, "properties": { "WeightedTargets": { "items": { "$ref": "#/definitions/AWS::AppMesh::Route.WeightedTarget" }, "type": "array" } }, "required": [ "WeightedTargets" ], "type": "object" }, "AWS::AppMesh::Route.HttpRouteHeader": { "additionalProperties": false, "properties": { "Invert": { "type": "boolean" }, "Match": { "$ref": "#/definitions/AWS::AppMesh::Route.HeaderMatchMethod" }, "Name": { "type": "string" } }, "required": [ "Name" ], "type": "object" }, "AWS::AppMesh::Route.HttpRouteMatch": { "additionalProperties": false, "properties": { "Headers": { "items": { "$ref": "#/definitions/AWS::AppMesh::Route.HttpRouteHeader" }, "type": "array" }, "Method": { "type": "string" }, "Path": { "$ref": "#/definitions/AWS::AppMesh::Route.HttpPathMatch" }, "Port": { "type": "number" }, "Prefix": { "type": "string" }, "QueryParameters": { "items": { "$ref": "#/definitions/AWS::AppMesh::Route.QueryParameter" }, "type": "array" }, "Scheme": { "type": "string" } }, "type": "object" }, "AWS::AppMesh::Route.HttpTimeout": { "additionalProperties": false, "properties": { "Idle": { "$ref": "#/definitions/AWS::AppMesh::Route.Duration" }, "PerRequest": { "$ref": "#/definitions/AWS::AppMesh::Route.Duration" } }, "type": "object" }, "AWS::AppMesh::Route.MatchRange": { "additionalProperties": false, "properties": { "End": { "type": "number" }, "Start": { "type": "number" } }, "required": [ "End", "Start" ], "type": "object" }, "AWS::AppMesh::Route.QueryParameter": { "additionalProperties": false, "properties": { "Match": { "$ref": "#/definitions/AWS::AppMesh::Route.HttpQueryParameterMatch" }, "Name": { "type": "string" } }, "required": [ "Name" ], "type": "object" }, "AWS::AppMesh::Route.RouteSpec": { "additionalProperties": false, "properties": { "GrpcRoute": { "$ref": "#/definitions/AWS::AppMesh::Route.GrpcRoute" }, "Http2Route": { "$ref": "#/definitions/AWS::AppMesh::Route.HttpRoute" }, "HttpRoute": { "$ref": "#/definitions/AWS::AppMesh::Route.HttpRoute" }, "Priority": { "type": "number" }, "TcpRoute": { "$ref": "#/definitions/AWS::AppMesh::Route.TcpRoute" } }, "type": "object" }, "AWS::AppMesh::Route.TcpRoute": { "additionalProperties": false, "properties": { "Action": { "$ref": "#/definitions/AWS::AppMesh::Route.TcpRouteAction" }, "Match": { "$ref": "#/definitions/AWS::AppMesh::Route.TcpRouteMatch" }, "Timeout": { "$ref": "#/definitions/AWS::AppMesh::Route.TcpTimeout" } }, "required": [ "Action" ], "type": "object" }, "AWS::AppMesh::Route.TcpRouteAction": { "additionalProperties": false, "properties": { "WeightedTargets": { "items": { "$ref": "#/definitions/AWS::AppMesh::Route.WeightedTarget" }, "type": "array" } }, "required": [ "WeightedTargets" ], "type": "object" }, "AWS::AppMesh::Route.TcpRouteMatch": { "additionalProperties": false, "properties": { "Port": { "type": "number" } }, "type": "object" }, "AWS::AppMesh::Route.TcpTimeout": { "additionalProperties": false, "properties": { "Idle": { "$ref": "#/definitions/AWS::AppMesh::Route.Duration" } }, "type": "object" }, "AWS::AppMesh::Route.WeightedTarget": { "additionalProperties": false, "properties": { "Port": { "type": "number" }, "VirtualNode": { "type": "string" }, "Weight": { "type": "number" } }, "required": [ "VirtualNode", "Weight" ], "type": "object" }, "AWS::AppMesh::VirtualGateway": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "MeshName": { "type": "string" }, "MeshOwner": { "type": "string" }, "Spec": { "$ref": "#/definitions/AWS::AppMesh::VirtualGateway.VirtualGatewaySpec" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "VirtualGatewayName": { "type": "string" } }, "required": [ "MeshName", "Spec" ], "type": "object" }, "Type": { "enum": [ "AWS::AppMesh::VirtualGateway" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::AppMesh::VirtualGateway.JsonFormatRef": { "additionalProperties": false, "properties": { "Key": { "type": "string" }, "Value": { "type": "string" } }, "required": [ "Key", "Value" ], "type": "object" }, "AWS::AppMesh::VirtualGateway.LoggingFormat": { "additionalProperties": false, "properties": { "Json": { "items": { "$ref": "#/definitions/AWS::AppMesh::VirtualGateway.JsonFormatRef" }, "type": "array" }, "Text": { "type": "string" } }, "type": "object" }, "AWS::AppMesh::VirtualGateway.SubjectAlternativeNameMatchers": { "additionalProperties": false, "properties": { "Exact": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::AppMesh::VirtualGateway.SubjectAlternativeNames": { "additionalProperties": false, "properties": { "Match": { "$ref": "#/definitions/AWS::AppMesh::VirtualGateway.SubjectAlternativeNameMatchers" } }, "required": [ "Match" ], "type": "object" }, "AWS::AppMesh::VirtualGateway.VirtualGatewayAccessLog": { "additionalProperties": false, "properties": { "File": { "$ref": "#/definitions/AWS::AppMesh::VirtualGateway.VirtualGatewayFileAccessLog" } }, "type": "object" }, "AWS::AppMesh::VirtualGateway.VirtualGatewayBackendDefaults": { "additionalProperties": false, "properties": { "ClientPolicy": { "$ref": "#/definitions/AWS::AppMesh::VirtualGateway.VirtualGatewayClientPolicy" } }, "type": "object" }, "AWS::AppMesh::VirtualGateway.VirtualGatewayClientPolicy": { "additionalProperties": false, "properties": { "TLS": { "$ref": "#/definitions/AWS::AppMesh::VirtualGateway.VirtualGatewayClientPolicyTls" } }, "type": "object" }, "AWS::AppMesh::VirtualGateway.VirtualGatewayClientPolicyTls": { "additionalProperties": false, "properties": { "Certificate": { "$ref": "#/definitions/AWS::AppMesh::VirtualGateway.VirtualGatewayClientTlsCertificate" }, "Enforce": { "type": "boolean" }, "Ports": { "items": { "type": "number" }, "type": "array" }, "Validation": { "$ref": "#/definitions/AWS::AppMesh::VirtualGateway.VirtualGatewayTlsValidationContext" } }, "required": [ "Validation" ], "type": "object" }, "AWS::AppMesh::VirtualGateway.VirtualGatewayClientTlsCertificate": { "additionalProperties": false, "properties": { "File": { "$ref": "#/definitions/AWS::AppMesh::VirtualGateway.VirtualGatewayListenerTlsFileCertificate" }, "SDS": { "$ref": "#/definitions/AWS::AppMesh::VirtualGateway.VirtualGatewayListenerTlsSdsCertificate" } }, "type": "object" }, "AWS::AppMesh::VirtualGateway.VirtualGatewayConnectionPool": { "additionalProperties": false, "properties": { "GRPC": { "$ref": "#/definitions/AWS::AppMesh::VirtualGateway.VirtualGatewayGrpcConnectionPool" }, "HTTP": { "$ref": "#/definitions/AWS::AppMesh::VirtualGateway.VirtualGatewayHttpConnectionPool" }, "HTTP2": { "$ref": "#/definitions/AWS::AppMesh::VirtualGateway.VirtualGatewayHttp2ConnectionPool" } }, "type": "object" }, "AWS::AppMesh::VirtualGateway.VirtualGatewayFileAccessLog": { "additionalProperties": false, "properties": { "Format": { "$ref": "#/definitions/AWS::AppMesh::VirtualGateway.LoggingFormat" }, "Path": { "type": "string" } }, "required": [ "Path" ], "type": "object" }, "AWS::AppMesh::VirtualGateway.VirtualGatewayGrpcConnectionPool": { "additionalProperties": false, "properties": { "MaxRequests": { "type": "number" } }, "required": [ "MaxRequests" ], "type": "object" }, "AWS::AppMesh::VirtualGateway.VirtualGatewayHealthCheckPolicy": { "additionalProperties": false, "properties": { "HealthyThreshold": { "type": "number" }, "IntervalMillis": { "type": "number" }, "Path": { "type": "string" }, "Port": { "type": "number" }, "Protocol": { "type": "string" }, "TimeoutMillis": { "type": "number" }, "UnhealthyThreshold": { "type": "number" } }, "required": [ "HealthyThreshold", "IntervalMillis", "Protocol", "TimeoutMillis", "UnhealthyThreshold" ], "type": "object" }, "AWS::AppMesh::VirtualGateway.VirtualGatewayHttp2ConnectionPool": { "additionalProperties": false, "properties": { "MaxRequests": { "type": "number" } }, "required": [ "MaxRequests" ], "type": "object" }, "AWS::AppMesh::VirtualGateway.VirtualGatewayHttpConnectionPool": { "additionalProperties": false, "properties": { "MaxConnections": { "type": "number" }, "MaxPendingRequests": { "type": "number" } }, "required": [ "MaxConnections" ], "type": "object" }, "AWS::AppMesh::VirtualGateway.VirtualGatewayListener": { "additionalProperties": false, "properties": { "ConnectionPool": { "$ref": "#/definitions/AWS::AppMesh::VirtualGateway.VirtualGatewayConnectionPool" }, "HealthCheck": { "$ref": "#/definitions/AWS::AppMesh::VirtualGateway.VirtualGatewayHealthCheckPolicy" }, "PortMapping": { "$ref": "#/definitions/AWS::AppMesh::VirtualGateway.VirtualGatewayPortMapping" }, "TLS": { "$ref": "#/definitions/AWS::AppMesh::VirtualGateway.VirtualGatewayListenerTls" } }, "required": [ "PortMapping" ], "type": "object" }, "AWS::AppMesh::VirtualGateway.VirtualGatewayListenerTls": { "additionalProperties": false, "properties": { "Certificate": { "$ref": "#/definitions/AWS::AppMesh::VirtualGateway.VirtualGatewayListenerTlsCertificate" }, "Mode": { "type": "string" }, "Validation": { "$ref": "#/definitions/AWS::AppMesh::VirtualGateway.VirtualGatewayListenerTlsValidationContext" } }, "required": [ "Certificate", "Mode" ], "type": "object" }, "AWS::AppMesh::VirtualGateway.VirtualGatewayListenerTlsAcmCertificate": { "additionalProperties": false, "properties": { "CertificateArn": { "type": "string" } }, "required": [ "CertificateArn" ], "type": "object" }, "AWS::AppMesh::VirtualGateway.VirtualGatewayListenerTlsCertificate": { "additionalProperties": false, "properties": { "ACM": { "$ref": "#/definitions/AWS::AppMesh::VirtualGateway.VirtualGatewayListenerTlsAcmCertificate" }, "File": { "$ref": "#/definitions/AWS::AppMesh::VirtualGateway.VirtualGatewayListenerTlsFileCertificate" }, "SDS": { "$ref": "#/definitions/AWS::AppMesh::VirtualGateway.VirtualGatewayListenerTlsSdsCertificate" } }, "type": "object" }, "AWS::AppMesh::VirtualGateway.VirtualGatewayListenerTlsFileCertificate": { "additionalProperties": false, "properties": { "CertificateChain": { "type": "string" }, "PrivateKey": { "type": "string" } }, "required": [ "CertificateChain", "PrivateKey" ], "type": "object" }, "AWS::AppMesh::VirtualGateway.VirtualGatewayListenerTlsSdsCertificate": { "additionalProperties": false, "properties": { "SecretName": { "type": "string" } }, "required": [ "SecretName" ], "type": "object" }, "AWS::AppMesh::VirtualGateway.VirtualGatewayListenerTlsValidationContext": { "additionalProperties": false, "properties": { "SubjectAlternativeNames": { "$ref": "#/definitions/AWS::AppMesh::VirtualGateway.SubjectAlternativeNames" }, "Trust": { "$ref": "#/definitions/AWS::AppMesh::VirtualGateway.VirtualGatewayListenerTlsValidationContextTrust" } }, "required": [ "Trust" ], "type": "object" }, "AWS::AppMesh::VirtualGateway.VirtualGatewayListenerTlsValidationContextTrust": { "additionalProperties": false, "properties": { "File": { "$ref": "#/definitions/AWS::AppMesh::VirtualGateway.VirtualGatewayTlsValidationContextFileTrust" }, "SDS": { "$ref": "#/definitions/AWS::AppMesh::VirtualGateway.VirtualGatewayTlsValidationContextSdsTrust" } }, "type": "object" }, "AWS::AppMesh::VirtualGateway.VirtualGatewayLogging": { "additionalProperties": false, "properties": { "AccessLog": { "$ref": "#/definitions/AWS::AppMesh::VirtualGateway.VirtualGatewayAccessLog" } }, "type": "object" }, "AWS::AppMesh::VirtualGateway.VirtualGatewayPortMapping": { "additionalProperties": false, "properties": { "Port": { "type": "number" }, "Protocol": { "type": "string" } }, "required": [ "Port", "Protocol" ], "type": "object" }, "AWS::AppMesh::VirtualGateway.VirtualGatewaySpec": { "additionalProperties": false, "properties": { "BackendDefaults": { "$ref": "#/definitions/AWS::AppMesh::VirtualGateway.VirtualGatewayBackendDefaults" }, "Listeners": { "items": { "$ref": "#/definitions/AWS::AppMesh::VirtualGateway.VirtualGatewayListener" }, "type": "array" }, "Logging": { "$ref": "#/definitions/AWS::AppMesh::VirtualGateway.VirtualGatewayLogging" } }, "required": [ "Listeners" ], "type": "object" }, "AWS::AppMesh::VirtualGateway.VirtualGatewayTlsValidationContext": { "additionalProperties": false, "properties": { "SubjectAlternativeNames": { "$ref": "#/definitions/AWS::AppMesh::VirtualGateway.SubjectAlternativeNames" }, "Trust": { "$ref": "#/definitions/AWS::AppMesh::VirtualGateway.VirtualGatewayTlsValidationContextTrust" } }, "required": [ "Trust" ], "type": "object" }, "AWS::AppMesh::VirtualGateway.VirtualGatewayTlsValidationContextAcmTrust": { "additionalProperties": false, "properties": { "CertificateAuthorityArns": { "items": { "type": "string" }, "type": "array" } }, "required": [ "CertificateAuthorityArns" ], "type": "object" }, "AWS::AppMesh::VirtualGateway.VirtualGatewayTlsValidationContextFileTrust": { "additionalProperties": false, "properties": { "CertificateChain": { "type": "string" } }, "required": [ "CertificateChain" ], "type": "object" }, "AWS::AppMesh::VirtualGateway.VirtualGatewayTlsValidationContextSdsTrust": { "additionalProperties": false, "properties": { "SecretName": { "type": "string" } }, "required": [ "SecretName" ], "type": "object" }, "AWS::AppMesh::VirtualGateway.VirtualGatewayTlsValidationContextTrust": { "additionalProperties": false, "properties": { "ACM": { "$ref": "#/definitions/AWS::AppMesh::VirtualGateway.VirtualGatewayTlsValidationContextAcmTrust" }, "File": { "$ref": "#/definitions/AWS::AppMesh::VirtualGateway.VirtualGatewayTlsValidationContextFileTrust" }, "SDS": { "$ref": "#/definitions/AWS::AppMesh::VirtualGateway.VirtualGatewayTlsValidationContextSdsTrust" } }, "type": "object" }, "AWS::AppMesh::VirtualNode": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "MeshName": { "type": "string" }, "MeshOwner": { "type": "string" }, "Spec": { "$ref": "#/definitions/AWS::AppMesh::VirtualNode.VirtualNodeSpec" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "VirtualNodeName": { "type": "string" } }, "required": [ "MeshName", "Spec" ], "type": "object" }, "Type": { "enum": [ "AWS::AppMesh::VirtualNode" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::AppMesh::VirtualNode.AccessLog": { "additionalProperties": false, "properties": { "File": { "$ref": "#/definitions/AWS::AppMesh::VirtualNode.FileAccessLog" } }, "type": "object" }, "AWS::AppMesh::VirtualNode.AwsCloudMapInstanceAttribute": { "additionalProperties": false, "properties": { "Key": { "type": "string" }, "Value": { "type": "string" } }, "required": [ "Key", "Value" ], "type": "object" }, "AWS::AppMesh::VirtualNode.AwsCloudMapServiceDiscovery": { "additionalProperties": false, "properties": { "Attributes": { "items": { "$ref": "#/definitions/AWS::AppMesh::VirtualNode.AwsCloudMapInstanceAttribute" }, "type": "array" }, "IpPreference": { "type": "string" }, "NamespaceName": { "type": "string" }, "ServiceName": { "type": "string" } }, "required": [ "NamespaceName", "ServiceName" ], "type": "object" }, "AWS::AppMesh::VirtualNode.Backend": { "additionalProperties": false, "properties": { "VirtualService": { "$ref": "#/definitions/AWS::AppMesh::VirtualNode.VirtualServiceBackend" } }, "type": "object" }, "AWS::AppMesh::VirtualNode.BackendDefaults": { "additionalProperties": false, "properties": { "ClientPolicy": { "$ref": "#/definitions/AWS::AppMesh::VirtualNode.ClientPolicy" } }, "type": "object" }, "AWS::AppMesh::VirtualNode.ClientPolicy": { "additionalProperties": false, "properties": { "TLS": { "$ref": "#/definitions/AWS::AppMesh::VirtualNode.ClientPolicyTls" } }, "type": "object" }, "AWS::AppMesh::VirtualNode.ClientPolicyTls": { "additionalProperties": false, "properties": { "Certificate": { "$ref": "#/definitions/AWS::AppMesh::VirtualNode.ClientTlsCertificate" }, "Enforce": { "type": "boolean" }, "Ports": { "items": { "type": "number" }, "type": "array" }, "Validation": { "$ref": "#/definitions/AWS::AppMesh::VirtualNode.TlsValidationContext" } }, "required": [ "Validation" ], "type": "object" }, "AWS::AppMesh::VirtualNode.ClientTlsCertificate": { "additionalProperties": false, "properties": { "File": { "$ref": "#/definitions/AWS::AppMesh::VirtualNode.ListenerTlsFileCertificate" }, "SDS": { "$ref": "#/definitions/AWS::AppMesh::VirtualNode.ListenerTlsSdsCertificate" } }, "type": "object" }, "AWS::AppMesh::VirtualNode.DnsServiceDiscovery": { "additionalProperties": false, "properties": { "Hostname": { "type": "string" }, "IpPreference": { "type": "string" }, "ResponseType": { "type": "string" } }, "required": [ "Hostname" ], "type": "object" }, "AWS::AppMesh::VirtualNode.Duration": { "additionalProperties": false, "properties": { "Unit": { "type": "string" }, "Value": { "type": "number" } }, "required": [ "Unit", "Value" ], "type": "object" }, "AWS::AppMesh::VirtualNode.FileAccessLog": { "additionalProperties": false, "properties": { "Format": { "$ref": "#/definitions/AWS::AppMesh::VirtualNode.LoggingFormat" }, "Path": { "type": "string" } }, "required": [ "Path" ], "type": "object" }, "AWS::AppMesh::VirtualNode.GrpcTimeout": { "additionalProperties": false, "properties": { "Idle": { "$ref": "#/definitions/AWS::AppMesh::VirtualNode.Duration" }, "PerRequest": { "$ref": "#/definitions/AWS::AppMesh::VirtualNode.Duration" } }, "type": "object" }, "AWS::AppMesh::VirtualNode.HealthCheck": { "additionalProperties": false, "properties": { "HealthyThreshold": { "type": "number" }, "IntervalMillis": { "type": "number" }, "Path": { "type": "string" }, "Port": { "type": "number" }, "Protocol": { "type": "string" }, "TimeoutMillis": { "type": "number" }, "UnhealthyThreshold": { "type": "number" } }, "required": [ "HealthyThreshold", "IntervalMillis", "Protocol", "TimeoutMillis", "UnhealthyThreshold" ], "type": "object" }, "AWS::AppMesh::VirtualNode.HttpTimeout": { "additionalProperties": false, "properties": { "Idle": { "$ref": "#/definitions/AWS::AppMesh::VirtualNode.Duration" }, "PerRequest": { "$ref": "#/definitions/AWS::AppMesh::VirtualNode.Duration" } }, "type": "object" }, "AWS::AppMesh::VirtualNode.JsonFormatRef": { "additionalProperties": false, "properties": { "Key": { "type": "string" }, "Value": { "type": "string" } }, "required": [ "Key", "Value" ], "type": "object" }, "AWS::AppMesh::VirtualNode.Listener": { "additionalProperties": false, "properties": { "ConnectionPool": { "$ref": "#/definitions/AWS::AppMesh::VirtualNode.VirtualNodeConnectionPool" }, "HealthCheck": { "$ref": "#/definitions/AWS::AppMesh::VirtualNode.HealthCheck" }, "OutlierDetection": { "$ref": "#/definitions/AWS::AppMesh::VirtualNode.OutlierDetection" }, "PortMapping": { "$ref": "#/definitions/AWS::AppMesh::VirtualNode.PortMapping" }, "TLS": { "$ref": "#/definitions/AWS::AppMesh::VirtualNode.ListenerTls" }, "Timeout": { "$ref": "#/definitions/AWS::AppMesh::VirtualNode.ListenerTimeout" } }, "required": [ "PortMapping" ], "type": "object" }, "AWS::AppMesh::VirtualNode.ListenerTimeout": { "additionalProperties": false, "properties": { "GRPC": { "$ref": "#/definitions/AWS::AppMesh::VirtualNode.GrpcTimeout" }, "HTTP": { "$ref": "#/definitions/AWS::AppMesh::VirtualNode.HttpTimeout" }, "HTTP2": { "$ref": "#/definitions/AWS::AppMesh::VirtualNode.HttpTimeout" }, "TCP": { "$ref": "#/definitions/AWS::AppMesh::VirtualNode.TcpTimeout" } }, "type": "object" }, "AWS::AppMesh::VirtualNode.ListenerTls": { "additionalProperties": false, "properties": { "Certificate": { "$ref": "#/definitions/AWS::AppMesh::VirtualNode.ListenerTlsCertificate" }, "Mode": { "type": "string" }, "Validation": { "$ref": "#/definitions/AWS::AppMesh::VirtualNode.ListenerTlsValidationContext" } }, "required": [ "Certificate", "Mode" ], "type": "object" }, "AWS::AppMesh::VirtualNode.ListenerTlsAcmCertificate": { "additionalProperties": false, "properties": { "CertificateArn": { "type": "string" } }, "required": [ "CertificateArn" ], "type": "object" }, "AWS::AppMesh::VirtualNode.ListenerTlsCertificate": { "additionalProperties": false, "properties": { "ACM": { "$ref": "#/definitions/AWS::AppMesh::VirtualNode.ListenerTlsAcmCertificate" }, "File": { "$ref": "#/definitions/AWS::AppMesh::VirtualNode.ListenerTlsFileCertificate" }, "SDS": { "$ref": "#/definitions/AWS::AppMesh::VirtualNode.ListenerTlsSdsCertificate" } }, "type": "object" }, "AWS::AppMesh::VirtualNode.ListenerTlsFileCertificate": { "additionalProperties": false, "properties": { "CertificateChain": { "type": "string" }, "PrivateKey": { "type": "string" } }, "required": [ "CertificateChain", "PrivateKey" ], "type": "object" }, "AWS::AppMesh::VirtualNode.ListenerTlsSdsCertificate": { "additionalProperties": false, "properties": { "SecretName": { "type": "string" } }, "required": [ "SecretName" ], "type": "object" }, "AWS::AppMesh::VirtualNode.ListenerTlsValidationContext": { "additionalProperties": false, "properties": { "SubjectAlternativeNames": { "$ref": "#/definitions/AWS::AppMesh::VirtualNode.SubjectAlternativeNames" }, "Trust": { "$ref": "#/definitions/AWS::AppMesh::VirtualNode.ListenerTlsValidationContextTrust" } }, "required": [ "Trust" ], "type": "object" }, "AWS::AppMesh::VirtualNode.ListenerTlsValidationContextTrust": { "additionalProperties": false, "properties": { "File": { "$ref": "#/definitions/AWS::AppMesh::VirtualNode.TlsValidationContextFileTrust" }, "SDS": { "$ref": "#/definitions/AWS::AppMesh::VirtualNode.TlsValidationContextSdsTrust" } }, "type": "object" }, "AWS::AppMesh::VirtualNode.Logging": { "additionalProperties": false, "properties": { "AccessLog": { "$ref": "#/definitions/AWS::AppMesh::VirtualNode.AccessLog" } }, "type": "object" }, "AWS::AppMesh::VirtualNode.LoggingFormat": { "additionalProperties": false, "properties": { "Json": { "items": { "$ref": "#/definitions/AWS::AppMesh::VirtualNode.JsonFormatRef" }, "type": "array" }, "Text": { "type": "string" } }, "type": "object" }, "AWS::AppMesh::VirtualNode.OutlierDetection": { "additionalProperties": false, "properties": { "BaseEjectionDuration": { "$ref": "#/definitions/AWS::AppMesh::VirtualNode.Duration" }, "Interval": { "$ref": "#/definitions/AWS::AppMesh::VirtualNode.Duration" }, "MaxEjectionPercent": { "type": "number" }, "MaxServerErrors": { "type": "number" } }, "required": [ "BaseEjectionDuration", "Interval", "MaxEjectionPercent", "MaxServerErrors" ], "type": "object" }, "AWS::AppMesh::VirtualNode.PortMapping": { "additionalProperties": false, "properties": { "Port": { "type": "number" }, "Protocol": { "type": "string" } }, "required": [ "Port", "Protocol" ], "type": "object" }, "AWS::AppMesh::VirtualNode.ServiceDiscovery": { "additionalProperties": false, "properties": { "AWSCloudMap": { "$ref": "#/definitions/AWS::AppMesh::VirtualNode.AwsCloudMapServiceDiscovery" }, "DNS": { "$ref": "#/definitions/AWS::AppMesh::VirtualNode.DnsServiceDiscovery" } }, "type": "object" }, "AWS::AppMesh::VirtualNode.SubjectAlternativeNameMatchers": { "additionalProperties": false, "properties": { "Exact": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::AppMesh::VirtualNode.SubjectAlternativeNames": { "additionalProperties": false, "properties": { "Match": { "$ref": "#/definitions/AWS::AppMesh::VirtualNode.SubjectAlternativeNameMatchers" } }, "required": [ "Match" ], "type": "object" }, "AWS::AppMesh::VirtualNode.TcpTimeout": { "additionalProperties": false, "properties": { "Idle": { "$ref": "#/definitions/AWS::AppMesh::VirtualNode.Duration" } }, "type": "object" }, "AWS::AppMesh::VirtualNode.TlsValidationContext": { "additionalProperties": false, "properties": { "SubjectAlternativeNames": { "$ref": "#/definitions/AWS::AppMesh::VirtualNode.SubjectAlternativeNames" }, "Trust": { "$ref": "#/definitions/AWS::AppMesh::VirtualNode.TlsValidationContextTrust" } }, "required": [ "Trust" ], "type": "object" }, "AWS::AppMesh::VirtualNode.TlsValidationContextAcmTrust": { "additionalProperties": false, "properties": { "CertificateAuthorityArns": { "items": { "type": "string" }, "type": "array" } }, "required": [ "CertificateAuthorityArns" ], "type": "object" }, "AWS::AppMesh::VirtualNode.TlsValidationContextFileTrust": { "additionalProperties": false, "properties": { "CertificateChain": { "type": "string" } }, "required": [ "CertificateChain" ], "type": "object" }, "AWS::AppMesh::VirtualNode.TlsValidationContextSdsTrust": { "additionalProperties": false, "properties": { "SecretName": { "type": "string" } }, "required": [ "SecretName" ], "type": "object" }, "AWS::AppMesh::VirtualNode.TlsValidationContextTrust": { "additionalProperties": false, "properties": { "ACM": { "$ref": "#/definitions/AWS::AppMesh::VirtualNode.TlsValidationContextAcmTrust" }, "File": { "$ref": "#/definitions/AWS::AppMesh::VirtualNode.TlsValidationContextFileTrust" }, "SDS": { "$ref": "#/definitions/AWS::AppMesh::VirtualNode.TlsValidationContextSdsTrust" } }, "type": "object" }, "AWS::AppMesh::VirtualNode.VirtualNodeConnectionPool": { "additionalProperties": false, "properties": { "GRPC": { "$ref": "#/definitions/AWS::AppMesh::VirtualNode.VirtualNodeGrpcConnectionPool" }, "HTTP": { "$ref": "#/definitions/AWS::AppMesh::VirtualNode.VirtualNodeHttpConnectionPool" }, "HTTP2": { "$ref": "#/definitions/AWS::AppMesh::VirtualNode.VirtualNodeHttp2ConnectionPool" }, "TCP": { "$ref": "#/definitions/AWS::AppMesh::VirtualNode.VirtualNodeTcpConnectionPool" } }, "type": "object" }, "AWS::AppMesh::VirtualNode.VirtualNodeGrpcConnectionPool": { "additionalProperties": false, "properties": { "MaxRequests": { "type": "number" } }, "required": [ "MaxRequests" ], "type": "object" }, "AWS::AppMesh::VirtualNode.VirtualNodeHttp2ConnectionPool": { "additionalProperties": false, "properties": { "MaxRequests": { "type": "number" } }, "required": [ "MaxRequests" ], "type": "object" }, "AWS::AppMesh::VirtualNode.VirtualNodeHttpConnectionPool": { "additionalProperties": false, "properties": { "MaxConnections": { "type": "number" }, "MaxPendingRequests": { "type": "number" } }, "required": [ "MaxConnections" ], "type": "object" }, "AWS::AppMesh::VirtualNode.VirtualNodeSpec": { "additionalProperties": false, "properties": { "BackendDefaults": { "$ref": "#/definitions/AWS::AppMesh::VirtualNode.BackendDefaults" }, "Backends": { "items": { "$ref": "#/definitions/AWS::AppMesh::VirtualNode.Backend" }, "type": "array" }, "Listeners": { "items": { "$ref": "#/definitions/AWS::AppMesh::VirtualNode.Listener" }, "type": "array" }, "Logging": { "$ref": "#/definitions/AWS::AppMesh::VirtualNode.Logging" }, "ServiceDiscovery": { "$ref": "#/definitions/AWS::AppMesh::VirtualNode.ServiceDiscovery" } }, "type": "object" }, "AWS::AppMesh::VirtualNode.VirtualNodeTcpConnectionPool": { "additionalProperties": false, "properties": { "MaxConnections": { "type": "number" } }, "required": [ "MaxConnections" ], "type": "object" }, "AWS::AppMesh::VirtualNode.VirtualServiceBackend": { "additionalProperties": false, "properties": { "ClientPolicy": { "$ref": "#/definitions/AWS::AppMesh::VirtualNode.ClientPolicy" }, "VirtualServiceName": { "type": "string" } }, "required": [ "VirtualServiceName" ], "type": "object" }, "AWS::AppMesh::VirtualRouter": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "MeshName": { "type": "string" }, "MeshOwner": { "type": "string" }, "Spec": { "$ref": "#/definitions/AWS::AppMesh::VirtualRouter.VirtualRouterSpec" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "VirtualRouterName": { "type": "string" } }, "required": [ "MeshName", "Spec" ], "type": "object" }, "Type": { "enum": [ "AWS::AppMesh::VirtualRouter" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::AppMesh::VirtualRouter.PortMapping": { "additionalProperties": false, "properties": { "Port": { "type": "number" }, "Protocol": { "type": "string" } }, "required": [ "Port", "Protocol" ], "type": "object" }, "AWS::AppMesh::VirtualRouter.VirtualRouterListener": { "additionalProperties": false, "properties": { "PortMapping": { "$ref": "#/definitions/AWS::AppMesh::VirtualRouter.PortMapping" } }, "required": [ "PortMapping" ], "type": "object" }, "AWS::AppMesh::VirtualRouter.VirtualRouterSpec": { "additionalProperties": false, "properties": { "Listeners": { "items": { "$ref": "#/definitions/AWS::AppMesh::VirtualRouter.VirtualRouterListener" }, "type": "array" } }, "required": [ "Listeners" ], "type": "object" }, "AWS::AppMesh::VirtualService": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "MeshName": { "type": "string" }, "MeshOwner": { "type": "string" }, "Spec": { "$ref": "#/definitions/AWS::AppMesh::VirtualService.VirtualServiceSpec" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "VirtualServiceName": { "type": "string" } }, "required": [ "MeshName", "Spec", "VirtualServiceName" ], "type": "object" }, "Type": { "enum": [ "AWS::AppMesh::VirtualService" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::AppMesh::VirtualService.VirtualNodeServiceProvider": { "additionalProperties": false, "properties": { "VirtualNodeName": { "type": "string" } }, "required": [ "VirtualNodeName" ], "type": "object" }, "AWS::AppMesh::VirtualService.VirtualRouterServiceProvider": { "additionalProperties": false, "properties": { "VirtualRouterName": { "type": "string" } }, "required": [ "VirtualRouterName" ], "type": "object" }, "AWS::AppMesh::VirtualService.VirtualServiceProvider": { "additionalProperties": false, "properties": { "VirtualNode": { "$ref": "#/definitions/AWS::AppMesh::VirtualService.VirtualNodeServiceProvider" }, "VirtualRouter": { "$ref": "#/definitions/AWS::AppMesh::VirtualService.VirtualRouterServiceProvider" } }, "type": "object" }, "AWS::AppMesh::VirtualService.VirtualServiceSpec": { "additionalProperties": false, "properties": { "Provider": { "$ref": "#/definitions/AWS::AppMesh::VirtualService.VirtualServiceProvider" } }, "type": "object" }, "AWS::AppRunner::AutoScalingConfiguration": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AutoScalingConfigurationName": { "type": "string" }, "MaxConcurrency": { "type": "number" }, "MaxSize": { "type": "number" }, "MinSize": { "type": "number" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "type": "object" }, "Type": { "enum": [ "AWS::AppRunner::AutoScalingConfiguration" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::AppRunner::ObservabilityConfiguration": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ObservabilityConfigurationName": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "TraceConfiguration": { "$ref": "#/definitions/AWS::AppRunner::ObservabilityConfiguration.TraceConfiguration" } }, "type": "object" }, "Type": { "enum": [ "AWS::AppRunner::ObservabilityConfiguration" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::AppRunner::ObservabilityConfiguration.TraceConfiguration": { "additionalProperties": false, "properties": { "Vendor": { "type": "string" } }, "required": [ "Vendor" ], "type": "object" }, "AWS::AppRunner::Service": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AutoScalingConfigurationArn": { "type": "string" }, "EncryptionConfiguration": { "$ref": "#/definitions/AWS::AppRunner::Service.EncryptionConfiguration" }, "HealthCheckConfiguration": { "$ref": "#/definitions/AWS::AppRunner::Service.HealthCheckConfiguration" }, "InstanceConfiguration": { "$ref": "#/definitions/AWS::AppRunner::Service.InstanceConfiguration" }, "NetworkConfiguration": { "$ref": "#/definitions/AWS::AppRunner::Service.NetworkConfiguration" }, "ObservabilityConfiguration": { "$ref": "#/definitions/AWS::AppRunner::Service.ServiceObservabilityConfiguration" }, "ServiceName": { "type": "string" }, "SourceConfiguration": { "$ref": "#/definitions/AWS::AppRunner::Service.SourceConfiguration" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "SourceConfiguration" ], "type": "object" }, "Type": { "enum": [ "AWS::AppRunner::Service" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::AppRunner::Service.AuthenticationConfiguration": { "additionalProperties": false, "properties": { "AccessRoleArn": { "type": "string" }, "ConnectionArn": { "type": "string" } }, "type": "object" }, "AWS::AppRunner::Service.CodeConfiguration": { "additionalProperties": false, "properties": { "CodeConfigurationValues": { "$ref": "#/definitions/AWS::AppRunner::Service.CodeConfigurationValues" }, "ConfigurationSource": { "type": "string" } }, "required": [ "ConfigurationSource" ], "type": "object" }, "AWS::AppRunner::Service.CodeConfigurationValues": { "additionalProperties": false, "properties": { "BuildCommand": { "type": "string" }, "Port": { "type": "string" }, "Runtime": { "type": "string" }, "RuntimeEnvironmentSecrets": { "items": { "$ref": "#/definitions/AWS::AppRunner::Service.KeyValuePair" }, "type": "array" }, "RuntimeEnvironmentVariables": { "items": { "$ref": "#/definitions/AWS::AppRunner::Service.KeyValuePair" }, "type": "array" }, "StartCommand": { "type": "string" } }, "required": [ "Runtime" ], "type": "object" }, "AWS::AppRunner::Service.CodeRepository": { "additionalProperties": false, "properties": { "CodeConfiguration": { "$ref": "#/definitions/AWS::AppRunner::Service.CodeConfiguration" }, "RepositoryUrl": { "type": "string" }, "SourceCodeVersion": { "$ref": "#/definitions/AWS::AppRunner::Service.SourceCodeVersion" } }, "required": [ "RepositoryUrl", "SourceCodeVersion" ], "type": "object" }, "AWS::AppRunner::Service.EgressConfiguration": { "additionalProperties": false, "properties": { "EgressType": { "type": "string" }, "VpcConnectorArn": { "type": "string" } }, "required": [ "EgressType" ], "type": "object" }, "AWS::AppRunner::Service.EncryptionConfiguration": { "additionalProperties": false, "properties": { "KmsKey": { "type": "string" } }, "required": [ "KmsKey" ], "type": "object" }, "AWS::AppRunner::Service.HealthCheckConfiguration": { "additionalProperties": false, "properties": { "HealthyThreshold": { "type": "number" }, "Interval": { "type": "number" }, "Path": { "type": "string" }, "Protocol": { "type": "string" }, "Timeout": { "type": "number" }, "UnhealthyThreshold": { "type": "number" } }, "type": "object" }, "AWS::AppRunner::Service.ImageConfiguration": { "additionalProperties": false, "properties": { "Port": { "type": "string" }, "RuntimeEnvironmentSecrets": { "items": { "$ref": "#/definitions/AWS::AppRunner::Service.KeyValuePair" }, "type": "array" }, "RuntimeEnvironmentVariables": { "items": { "$ref": "#/definitions/AWS::AppRunner::Service.KeyValuePair" }, "type": "array" }, "StartCommand": { "type": "string" } }, "type": "object" }, "AWS::AppRunner::Service.ImageRepository": { "additionalProperties": false, "properties": { "ImageConfiguration": { "$ref": "#/definitions/AWS::AppRunner::Service.ImageConfiguration" }, "ImageIdentifier": { "type": "string" }, "ImageRepositoryType": { "type": "string" } }, "required": [ "ImageIdentifier", "ImageRepositoryType" ], "type": "object" }, "AWS::AppRunner::Service.IngressConfiguration": { "additionalProperties": false, "properties": { "IsPubliclyAccessible": { "type": "boolean" } }, "required": [ "IsPubliclyAccessible" ], "type": "object" }, "AWS::AppRunner::Service.InstanceConfiguration": { "additionalProperties": false, "properties": { "Cpu": { "type": "string" }, "InstanceRoleArn": { "type": "string" }, "Memory": { "type": "string" } }, "type": "object" }, "AWS::AppRunner::Service.KeyValuePair": { "additionalProperties": false, "properties": { "Name": { "type": "string" }, "Value": { "type": "string" } }, "type": "object" }, "AWS::AppRunner::Service.NetworkConfiguration": { "additionalProperties": false, "properties": { "EgressConfiguration": { "$ref": "#/definitions/AWS::AppRunner::Service.EgressConfiguration" }, "IngressConfiguration": { "$ref": "#/definitions/AWS::AppRunner::Service.IngressConfiguration" } }, "type": "object" }, "AWS::AppRunner::Service.ServiceObservabilityConfiguration": { "additionalProperties": false, "properties": { "ObservabilityConfigurationArn": { "type": "string" }, "ObservabilityEnabled": { "type": "boolean" } }, "required": [ "ObservabilityEnabled" ], "type": "object" }, "AWS::AppRunner::Service.SourceCodeVersion": { "additionalProperties": false, "properties": { "Type": { "type": "string" }, "Value": { "type": "string" } }, "required": [ "Type", "Value" ], "type": "object" }, "AWS::AppRunner::Service.SourceConfiguration": { "additionalProperties": false, "properties": { "AuthenticationConfiguration": { "$ref": "#/definitions/AWS::AppRunner::Service.AuthenticationConfiguration" }, "AutoDeploymentsEnabled": { "type": "boolean" }, "CodeRepository": { "$ref": "#/definitions/AWS::AppRunner::Service.CodeRepository" }, "ImageRepository": { "$ref": "#/definitions/AWS::AppRunner::Service.ImageRepository" } }, "type": "object" }, "AWS::AppRunner::VpcConnector": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "SecurityGroups": { "items": { "type": "string" }, "type": "array" }, "Subnets": { "items": { "type": "string" }, "type": "array" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "VpcConnectorName": { "type": "string" } }, "required": [ "Subnets" ], "type": "object" }, "Type": { "enum": [ "AWS::AppRunner::VpcConnector" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::AppRunner::VpcIngressConnection": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "IngressVpcConfiguration": { "$ref": "#/definitions/AWS::AppRunner::VpcIngressConnection.IngressVpcConfiguration" }, "ServiceArn": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "VpcIngressConnectionName": { "type": "string" } }, "required": [ "IngressVpcConfiguration", "ServiceArn" ], "type": "object" }, "Type": { "enum": [ "AWS::AppRunner::VpcIngressConnection" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::AppRunner::VpcIngressConnection.IngressVpcConfiguration": { "additionalProperties": false, "properties": { "VpcEndpointId": { "type": "string" }, "VpcId": { "type": "string" } }, "required": [ "VpcEndpointId", "VpcId" ], "type": "object" }, "AWS::AppStream::AppBlock": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "DisplayName": { "type": "string" }, "Name": { "type": "string" }, "PackagingType": { "type": "string" }, "PostSetupScriptDetails": { "$ref": "#/definitions/AWS::AppStream::AppBlock.ScriptDetails" }, "SetupScriptDetails": { "$ref": "#/definitions/AWS::AppStream::AppBlock.ScriptDetails" }, "SourceS3Location": { "$ref": "#/definitions/AWS::AppStream::AppBlock.S3Location" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "Name", "SourceS3Location" ], "type": "object" }, "Type": { "enum": [ "AWS::AppStream::AppBlock" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::AppStream::AppBlock.S3Location": { "additionalProperties": false, "properties": { "S3Bucket": { "type": "string" }, "S3Key": { "type": "string" } }, "required": [ "S3Bucket" ], "type": "object" }, "AWS::AppStream::AppBlock.ScriptDetails": { "additionalProperties": false, "properties": { "ExecutableParameters": { "type": "string" }, "ExecutablePath": { "type": "string" }, "ScriptS3Location": { "$ref": "#/definitions/AWS::AppStream::AppBlock.S3Location" }, "TimeoutInSeconds": { "type": "number" } }, "required": [ "ExecutablePath", "ScriptS3Location", "TimeoutInSeconds" ], "type": "object" }, "AWS::AppStream::AppBlockBuilder": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AccessEndpoints": { "items": { "$ref": "#/definitions/AWS::AppStream::AppBlockBuilder.AccessEndpoint" }, "type": "array" }, "AppBlockArns": { "items": { "type": "string" }, "type": "array" }, "Description": { "type": "string" }, "DisplayName": { "type": "string" }, "EnableDefaultInternetAccess": { "type": "boolean" }, "IamRoleArn": { "type": "string" }, "InstanceType": { "type": "string" }, "Name": { "type": "string" }, "Platform": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "VpcConfig": { "$ref": "#/definitions/AWS::AppStream::AppBlockBuilder.VpcConfig" } }, "required": [ "InstanceType", "Name", "Platform", "VpcConfig" ], "type": "object" }, "Type": { "enum": [ "AWS::AppStream::AppBlockBuilder" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::AppStream::AppBlockBuilder.AccessEndpoint": { "additionalProperties": false, "properties": { "EndpointType": { "type": "string" }, "VpceId": { "type": "string" } }, "required": [ "EndpointType", "VpceId" ], "type": "object" }, "AWS::AppStream::AppBlockBuilder.VpcConfig": { "additionalProperties": false, "properties": { "SecurityGroupIds": { "items": { "type": "string" }, "type": "array" }, "SubnetIds": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::AppStream::Application": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AppBlockArn": { "type": "string" }, "AttributesToDelete": { "items": { "type": "string" }, "type": "array" }, "Description": { "type": "string" }, "DisplayName": { "type": "string" }, "IconS3Location": { "$ref": "#/definitions/AWS::AppStream::Application.S3Location" }, "InstanceFamilies": { "items": { "type": "string" }, "type": "array" }, "LaunchParameters": { "type": "string" }, "LaunchPath": { "type": "string" }, "Name": { "type": "string" }, "Platforms": { "items": { "type": "string" }, "type": "array" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "WorkingDirectory": { "type": "string" } }, "required": [ "AppBlockArn", "IconS3Location", "InstanceFamilies", "LaunchPath", "Name", "Platforms" ], "type": "object" }, "Type": { "enum": [ "AWS::AppStream::Application" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::AppStream::Application.S3Location": { "additionalProperties": false, "properties": { "S3Bucket": { "type": "string" }, "S3Key": { "type": "string" } }, "required": [ "S3Bucket", "S3Key" ], "type": "object" }, "AWS::AppStream::ApplicationEntitlementAssociation": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ApplicationIdentifier": { "type": "string" }, "EntitlementName": { "type": "string" }, "StackName": { "type": "string" } }, "required": [ "ApplicationIdentifier", "EntitlementName", "StackName" ], "type": "object" }, "Type": { "enum": [ "AWS::AppStream::ApplicationEntitlementAssociation" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::AppStream::ApplicationFleetAssociation": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ApplicationArn": { "type": "string" }, "FleetName": { "type": "string" } }, "required": [ "ApplicationArn", "FleetName" ], "type": "object" }, "Type": { "enum": [ "AWS::AppStream::ApplicationFleetAssociation" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::AppStream::DirectoryConfig": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "CertificateBasedAuthProperties": { "$ref": "#/definitions/AWS::AppStream::DirectoryConfig.CertificateBasedAuthProperties" }, "DirectoryName": { "type": "string" }, "OrganizationalUnitDistinguishedNames": { "items": { "type": "string" }, "type": "array" }, "ServiceAccountCredentials": { "$ref": "#/definitions/AWS::AppStream::DirectoryConfig.ServiceAccountCredentials" } }, "required": [ "DirectoryName", "OrganizationalUnitDistinguishedNames", "ServiceAccountCredentials" ], "type": "object" }, "Type": { "enum": [ "AWS::AppStream::DirectoryConfig" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::AppStream::DirectoryConfig.CertificateBasedAuthProperties": { "additionalProperties": false, "properties": { "CertificateAuthorityArn": { "type": "string" }, "Status": { "type": "string" } }, "type": "object" }, "AWS::AppStream::DirectoryConfig.ServiceAccountCredentials": { "additionalProperties": false, "properties": { "AccountName": { "type": "string" }, "AccountPassword": { "type": "string" } }, "required": [ "AccountName", "AccountPassword" ], "type": "object" }, "AWS::AppStream::Entitlement": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AppVisibility": { "type": "string" }, "Attributes": { "items": { "$ref": "#/definitions/AWS::AppStream::Entitlement.Attribute" }, "type": "array" }, "Description": { "type": "string" }, "Name": { "type": "string" }, "StackName": { "type": "string" } }, "required": [ "AppVisibility", "Attributes", "Name", "StackName" ], "type": "object" }, "Type": { "enum": [ "AWS::AppStream::Entitlement" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::AppStream::Entitlement.Attribute": { "additionalProperties": false, "properties": { "Name": { "type": "string" }, "Value": { "type": "string" } }, "required": [ "Name", "Value" ], "type": "object" }, "AWS::AppStream::Fleet": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ComputeCapacity": { "$ref": "#/definitions/AWS::AppStream::Fleet.ComputeCapacity" }, "Description": { "type": "string" }, "DisconnectTimeoutInSeconds": { "type": "number" }, "DisplayName": { "type": "string" }, "DomainJoinInfo": { "$ref": "#/definitions/AWS::AppStream::Fleet.DomainJoinInfo" }, "EnableDefaultInternetAccess": { "type": "boolean" }, "FleetType": { "type": "string" }, "IamRoleArn": { "type": "string" }, "IdleDisconnectTimeoutInSeconds": { "type": "number" }, "ImageArn": { "type": "string" }, "ImageName": { "type": "string" }, "InstanceType": { "type": "string" }, "MaxConcurrentSessions": { "type": "number" }, "MaxUserDurationInSeconds": { "type": "number" }, "Name": { "type": "string" }, "Platform": { "type": "string" }, "SessionScriptS3Location": { "$ref": "#/definitions/AWS::AppStream::Fleet.S3Location" }, "StreamView": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "UsbDeviceFilterStrings": { "items": { "type": "string" }, "type": "array" }, "VpcConfig": { "$ref": "#/definitions/AWS::AppStream::Fleet.VpcConfig" } }, "required": [ "InstanceType", "Name" ], "type": "object" }, "Type": { "enum": [ "AWS::AppStream::Fleet" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::AppStream::Fleet.ComputeCapacity": { "additionalProperties": false, "properties": { "DesiredInstances": { "type": "number" } }, "required": [ "DesiredInstances" ], "type": "object" }, "AWS::AppStream::Fleet.DomainJoinInfo": { "additionalProperties": false, "properties": { "DirectoryName": { "type": "string" }, "OrganizationalUnitDistinguishedName": { "type": "string" } }, "type": "object" }, "AWS::AppStream::Fleet.S3Location": { "additionalProperties": false, "properties": { "S3Bucket": { "type": "string" }, "S3Key": { "type": "string" } }, "required": [ "S3Bucket", "S3Key" ], "type": "object" }, "AWS::AppStream::Fleet.VpcConfig": { "additionalProperties": false, "properties": { "SecurityGroupIds": { "items": { "type": "string" }, "type": "array" }, "SubnetIds": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::AppStream::ImageBuilder": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AccessEndpoints": { "items": { "$ref": "#/definitions/AWS::AppStream::ImageBuilder.AccessEndpoint" }, "type": "array" }, "AppstreamAgentVersion": { "type": "string" }, "Description": { "type": "string" }, "DisplayName": { "type": "string" }, "DomainJoinInfo": { "$ref": "#/definitions/AWS::AppStream::ImageBuilder.DomainJoinInfo" }, "EnableDefaultInternetAccess": { "type": "boolean" }, "IamRoleArn": { "type": "string" }, "ImageArn": { "type": "string" }, "ImageName": { "type": "string" }, "InstanceType": { "type": "string" }, "Name": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "VpcConfig": { "$ref": "#/definitions/AWS::AppStream::ImageBuilder.VpcConfig" } }, "required": [ "InstanceType", "Name" ], "type": "object" }, "Type": { "enum": [ "AWS::AppStream::ImageBuilder" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::AppStream::ImageBuilder.AccessEndpoint": { "additionalProperties": false, "properties": { "EndpointType": { "type": "string" }, "VpceId": { "type": "string" } }, "required": [ "EndpointType", "VpceId" ], "type": "object" }, "AWS::AppStream::ImageBuilder.DomainJoinInfo": { "additionalProperties": false, "properties": { "DirectoryName": { "type": "string" }, "OrganizationalUnitDistinguishedName": { "type": "string" } }, "type": "object" }, "AWS::AppStream::ImageBuilder.VpcConfig": { "additionalProperties": false, "properties": { "SecurityGroupIds": { "items": { "type": "string" }, "type": "array" }, "SubnetIds": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::AppStream::Stack": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AccessEndpoints": { "items": { "$ref": "#/definitions/AWS::AppStream::Stack.AccessEndpoint" }, "type": "array" }, "ApplicationSettings": { "$ref": "#/definitions/AWS::AppStream::Stack.ApplicationSettings" }, "AttributesToDelete": { "items": { "type": "string" }, "type": "array" }, "DeleteStorageConnectors": { "type": "boolean" }, "Description": { "type": "string" }, "DisplayName": { "type": "string" }, "EmbedHostDomains": { "items": { "type": "string" }, "type": "array" }, "FeedbackURL": { "type": "string" }, "Name": { "type": "string" }, "RedirectURL": { "type": "string" }, "StorageConnectors": { "items": { "$ref": "#/definitions/AWS::AppStream::Stack.StorageConnector" }, "type": "array" }, "StreamingExperienceSettings": { "$ref": "#/definitions/AWS::AppStream::Stack.StreamingExperienceSettings" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "UserSettings": { "items": { "$ref": "#/definitions/AWS::AppStream::Stack.UserSetting" }, "type": "array" } }, "type": "object" }, "Type": { "enum": [ "AWS::AppStream::Stack" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::AppStream::Stack.AccessEndpoint": { "additionalProperties": false, "properties": { "EndpointType": { "type": "string" }, "VpceId": { "type": "string" } }, "required": [ "EndpointType", "VpceId" ], "type": "object" }, "AWS::AppStream::Stack.ApplicationSettings": { "additionalProperties": false, "properties": { "Enabled": { "type": "boolean" }, "SettingsGroup": { "type": "string" } }, "required": [ "Enabled" ], "type": "object" }, "AWS::AppStream::Stack.StorageConnector": { "additionalProperties": false, "properties": { "ConnectorType": { "type": "string" }, "Domains": { "items": { "type": "string" }, "type": "array" }, "ResourceIdentifier": { "type": "string" } }, "required": [ "ConnectorType" ], "type": "object" }, "AWS::AppStream::Stack.StreamingExperienceSettings": { "additionalProperties": false, "properties": { "PreferredProtocol": { "type": "string" } }, "type": "object" }, "AWS::AppStream::Stack.UserSetting": { "additionalProperties": false, "properties": { "Action": { "type": "string" }, "Permission": { "type": "string" } }, "required": [ "Action", "Permission" ], "type": "object" }, "AWS::AppStream::StackFleetAssociation": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "FleetName": { "type": "string" }, "StackName": { "type": "string" } }, "required": [ "FleetName", "StackName" ], "type": "object" }, "Type": { "enum": [ "AWS::AppStream::StackFleetAssociation" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::AppStream::StackUserAssociation": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AuthenticationType": { "type": "string" }, "SendEmailNotification": { "type": "boolean" }, "StackName": { "type": "string" }, "UserName": { "type": "string" } }, "required": [ "AuthenticationType", "StackName", "UserName" ], "type": "object" }, "Type": { "enum": [ "AWS::AppStream::StackUserAssociation" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::AppStream::User": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AuthenticationType": { "type": "string" }, "FirstName": { "type": "string" }, "LastName": { "type": "string" }, "MessageAction": { "type": "string" }, "UserName": { "type": "string" } }, "required": [ "AuthenticationType", "UserName" ], "type": "object" }, "Type": { "enum": [ "AWS::AppStream::User" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::AppSync::ApiCache": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ApiCachingBehavior": { "type": "string" }, "ApiId": { "type": "string" }, "AtRestEncryptionEnabled": { "type": "boolean" }, "TransitEncryptionEnabled": { "type": "boolean" }, "Ttl": { "type": "number" }, "Type": { "type": "string" } }, "required": [ "ApiCachingBehavior", "ApiId", "Ttl", "Type" ], "type": "object" }, "Type": { "enum": [ "AWS::AppSync::ApiCache" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::AppSync::ApiKey": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ApiId": { "type": "string" }, "ApiKeyId": { "type": "string" }, "Description": { "type": "string" }, "Expires": { "type": "number" } }, "required": [ "ApiId" ], "type": "object" }, "Type": { "enum": [ "AWS::AppSync::ApiKey" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::AppSync::DataSource": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ApiId": { "type": "string" }, "Description": { "type": "string" }, "DynamoDBConfig": { "$ref": "#/definitions/AWS::AppSync::DataSource.DynamoDBConfig" }, "ElasticsearchConfig": { "$ref": "#/definitions/AWS::AppSync::DataSource.ElasticsearchConfig" }, "EventBridgeConfig": { "$ref": "#/definitions/AWS::AppSync::DataSource.EventBridgeConfig" }, "HttpConfig": { "$ref": "#/definitions/AWS::AppSync::DataSource.HttpConfig" }, "LambdaConfig": { "$ref": "#/definitions/AWS::AppSync::DataSource.LambdaConfig" }, "Name": { "type": "string" }, "OpenSearchServiceConfig": { "$ref": "#/definitions/AWS::AppSync::DataSource.OpenSearchServiceConfig" }, "RelationalDatabaseConfig": { "$ref": "#/definitions/AWS::AppSync::DataSource.RelationalDatabaseConfig" }, "ServiceRoleArn": { "type": "string" }, "Type": { "type": "string" } }, "required": [ "ApiId", "Name", "Type" ], "type": "object" }, "Type": { "enum": [ "AWS::AppSync::DataSource" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::AppSync::DataSource.AuthorizationConfig": { "additionalProperties": false, "properties": { "AuthorizationType": { "type": "string" }, "AwsIamConfig": { "$ref": "#/definitions/AWS::AppSync::DataSource.AwsIamConfig" } }, "required": [ "AuthorizationType" ], "type": "object" }, "AWS::AppSync::DataSource.AwsIamConfig": { "additionalProperties": false, "properties": { "SigningRegion": { "type": "string" }, "SigningServiceName": { "type": "string" } }, "type": "object" }, "AWS::AppSync::DataSource.DeltaSyncConfig": { "additionalProperties": false, "properties": { "BaseTableTTL": { "type": "string" }, "DeltaSyncTableName": { "type": "string" }, "DeltaSyncTableTTL": { "type": "string" } }, "required": [ "BaseTableTTL", "DeltaSyncTableName", "DeltaSyncTableTTL" ], "type": "object" }, "AWS::AppSync::DataSource.DynamoDBConfig": { "additionalProperties": false, "properties": { "AwsRegion": { "type": "string" }, "DeltaSyncConfig": { "$ref": "#/definitions/AWS::AppSync::DataSource.DeltaSyncConfig" }, "TableName": { "type": "string" }, "UseCallerCredentials": { "type": "boolean" }, "Versioned": { "type": "boolean" } }, "required": [ "AwsRegion", "TableName" ], "type": "object" }, "AWS::AppSync::DataSource.ElasticsearchConfig": { "additionalProperties": false, "properties": { "AwsRegion": { "type": "string" }, "Endpoint": { "type": "string" } }, "required": [ "AwsRegion", "Endpoint" ], "type": "object" }, "AWS::AppSync::DataSource.EventBridgeConfig": { "additionalProperties": false, "properties": { "EventBusArn": { "type": "string" } }, "required": [ "EventBusArn" ], "type": "object" }, "AWS::AppSync::DataSource.HttpConfig": { "additionalProperties": false, "properties": { "AuthorizationConfig": { "$ref": "#/definitions/AWS::AppSync::DataSource.AuthorizationConfig" }, "Endpoint": { "type": "string" } }, "required": [ "Endpoint" ], "type": "object" }, "AWS::AppSync::DataSource.LambdaConfig": { "additionalProperties": false, "properties": { "LambdaFunctionArn": { "type": "string" } }, "required": [ "LambdaFunctionArn" ], "type": "object" }, "AWS::AppSync::DataSource.OpenSearchServiceConfig": { "additionalProperties": false, "properties": { "AwsRegion": { "type": "string" }, "Endpoint": { "type": "string" } }, "required": [ "AwsRegion", "Endpoint" ], "type": "object" }, "AWS::AppSync::DataSource.RdsHttpEndpointConfig": { "additionalProperties": false, "properties": { "AwsRegion": { "type": "string" }, "AwsSecretStoreArn": { "type": "string" }, "DatabaseName": { "type": "string" }, "DbClusterIdentifier": { "type": "string" }, "Schema": { "type": "string" } }, "required": [ "AwsRegion", "AwsSecretStoreArn", "DbClusterIdentifier" ], "type": "object" }, "AWS::AppSync::DataSource.RelationalDatabaseConfig": { "additionalProperties": false, "properties": { "RdsHttpEndpointConfig": { "$ref": "#/definitions/AWS::AppSync::DataSource.RdsHttpEndpointConfig" }, "RelationalDatabaseSourceType": { "type": "string" } }, "required": [ "RelationalDatabaseSourceType" ], "type": "object" }, "AWS::AppSync::DomainName": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "CertificateArn": { "type": "string" }, "Description": { "type": "string" }, "DomainName": { "type": "string" } }, "required": [ "CertificateArn", "DomainName" ], "type": "object" }, "Type": { "enum": [ "AWS::AppSync::DomainName" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::AppSync::DomainNameApiAssociation": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ApiId": { "type": "string" }, "DomainName": { "type": "string" } }, "required": [ "ApiId", "DomainName" ], "type": "object" }, "Type": { "enum": [ "AWS::AppSync::DomainNameApiAssociation" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::AppSync::FunctionConfiguration": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ApiId": { "type": "string" }, "Code": { "type": "string" }, "CodeS3Location": { "type": "string" }, "DataSourceName": { "type": "string" }, "Description": { "type": "string" }, "FunctionVersion": { "type": "string" }, "MaxBatchSize": { "type": "number" }, "Name": { "type": "string" }, "RequestMappingTemplate": { "type": "string" }, "RequestMappingTemplateS3Location": { "type": "string" }, "ResponseMappingTemplate": { "type": "string" }, "ResponseMappingTemplateS3Location": { "type": "string" }, "Runtime": { "$ref": "#/definitions/AWS::AppSync::FunctionConfiguration.AppSyncRuntime" }, "SyncConfig": { "$ref": "#/definitions/AWS::AppSync::FunctionConfiguration.SyncConfig" } }, "required": [ "ApiId", "DataSourceName", "Name" ], "type": "object" }, "Type": { "enum": [ "AWS::AppSync::FunctionConfiguration" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::AppSync::FunctionConfiguration.AppSyncRuntime": { "additionalProperties": false, "properties": { "Name": { "type": "string" }, "RuntimeVersion": { "type": "string" } }, "required": [ "Name", "RuntimeVersion" ], "type": "object" }, "AWS::AppSync::FunctionConfiguration.LambdaConflictHandlerConfig": { "additionalProperties": false, "properties": { "LambdaConflictHandlerArn": { "type": "string" } }, "type": "object" }, "AWS::AppSync::FunctionConfiguration.SyncConfig": { "additionalProperties": false, "properties": { "ConflictDetection": { "type": "string" }, "ConflictHandler": { "type": "string" }, "LambdaConflictHandlerConfig": { "$ref": "#/definitions/AWS::AppSync::FunctionConfiguration.LambdaConflictHandlerConfig" } }, "required": [ "ConflictDetection" ], "type": "object" }, "AWS::AppSync::GraphQLApi": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AdditionalAuthenticationProviders": { "items": { "$ref": "#/definitions/AWS::AppSync::GraphQLApi.AdditionalAuthenticationProvider" }, "type": "array" }, "ApiType": { "type": "string" }, "AuthenticationType": { "type": "string" }, "LambdaAuthorizerConfig": { "$ref": "#/definitions/AWS::AppSync::GraphQLApi.LambdaAuthorizerConfig" }, "LogConfig": { "$ref": "#/definitions/AWS::AppSync::GraphQLApi.LogConfig" }, "MergedApiExecutionRoleArn": { "type": "string" }, "Name": { "type": "string" }, "OpenIDConnectConfig": { "$ref": "#/definitions/AWS::AppSync::GraphQLApi.OpenIDConnectConfig" }, "OwnerContact": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "UserPoolConfig": { "$ref": "#/definitions/AWS::AppSync::GraphQLApi.UserPoolConfig" }, "Visibility": { "type": "string" }, "XrayEnabled": { "type": "boolean" } }, "required": [ "AuthenticationType", "Name" ], "type": "object" }, "Type": { "enum": [ "AWS::AppSync::GraphQLApi" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::AppSync::GraphQLApi.AdditionalAuthenticationProvider": { "additionalProperties": false, "properties": { "AuthenticationType": { "type": "string" }, "LambdaAuthorizerConfig": { "$ref": "#/definitions/AWS::AppSync::GraphQLApi.LambdaAuthorizerConfig" }, "OpenIDConnectConfig": { "$ref": "#/definitions/AWS::AppSync::GraphQLApi.OpenIDConnectConfig" }, "UserPoolConfig": { "$ref": "#/definitions/AWS::AppSync::GraphQLApi.CognitoUserPoolConfig" } }, "required": [ "AuthenticationType" ], "type": "object" }, "AWS::AppSync::GraphQLApi.CognitoUserPoolConfig": { "additionalProperties": false, "properties": { "AppIdClientRegex": { "type": "string" }, "AwsRegion": { "type": "string" }, "UserPoolId": { "type": "string" } }, "type": "object" }, "AWS::AppSync::GraphQLApi.LambdaAuthorizerConfig": { "additionalProperties": false, "properties": { "AuthorizerResultTtlInSeconds": { "type": "number" }, "AuthorizerUri": { "type": "string" }, "IdentityValidationExpression": { "type": "string" } }, "type": "object" }, "AWS::AppSync::GraphQLApi.LogConfig": { "additionalProperties": false, "properties": { "CloudWatchLogsRoleArn": { "type": "string" }, "ExcludeVerboseContent": { "type": "boolean" }, "FieldLogLevel": { "type": "string" } }, "type": "object" }, "AWS::AppSync::GraphQLApi.OpenIDConnectConfig": { "additionalProperties": false, "properties": { "AuthTTL": { "type": "number" }, "ClientId": { "type": "string" }, "IatTTL": { "type": "number" }, "Issuer": { "type": "string" } }, "type": "object" }, "AWS::AppSync::GraphQLApi.UserPoolConfig": { "additionalProperties": false, "properties": { "AppIdClientRegex": { "type": "string" }, "AwsRegion": { "type": "string" }, "DefaultAction": { "type": "string" }, "UserPoolId": { "type": "string" } }, "type": "object" }, "AWS::AppSync::GraphQLSchema": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ApiId": { "type": "string" }, "Definition": { "type": "string" }, "DefinitionS3Location": { "type": "string" } }, "required": [ "ApiId" ], "type": "object" }, "Type": { "enum": [ "AWS::AppSync::GraphQLSchema" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::AppSync::Resolver": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ApiId": { "type": "string" }, "CachingConfig": { "$ref": "#/definitions/AWS::AppSync::Resolver.CachingConfig" }, "Code": { "type": "string" }, "CodeS3Location": { "type": "string" }, "DataSourceName": { "type": "string" }, "FieldName": { "type": "string" }, "Kind": { "type": "string" }, "MaxBatchSize": { "type": "number" }, "PipelineConfig": { "$ref": "#/definitions/AWS::AppSync::Resolver.PipelineConfig" }, "RequestMappingTemplate": { "type": "string" }, "RequestMappingTemplateS3Location": { "type": "string" }, "ResponseMappingTemplate": { "type": "string" }, "ResponseMappingTemplateS3Location": { "type": "string" }, "Runtime": { "$ref": "#/definitions/AWS::AppSync::Resolver.AppSyncRuntime" }, "SyncConfig": { "$ref": "#/definitions/AWS::AppSync::Resolver.SyncConfig" }, "TypeName": { "type": "string" } }, "required": [ "ApiId", "FieldName", "TypeName" ], "type": "object" }, "Type": { "enum": [ "AWS::AppSync::Resolver" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::AppSync::Resolver.AppSyncRuntime": { "additionalProperties": false, "properties": { "Name": { "type": "string" }, "RuntimeVersion": { "type": "string" } }, "required": [ "Name", "RuntimeVersion" ], "type": "object" }, "AWS::AppSync::Resolver.CachingConfig": { "additionalProperties": false, "properties": { "CachingKeys": { "items": { "type": "string" }, "type": "array" }, "Ttl": { "type": "number" } }, "required": [ "Ttl" ], "type": "object" }, "AWS::AppSync::Resolver.LambdaConflictHandlerConfig": { "additionalProperties": false, "properties": { "LambdaConflictHandlerArn": { "type": "string" } }, "type": "object" }, "AWS::AppSync::Resolver.PipelineConfig": { "additionalProperties": false, "properties": { "Functions": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::AppSync::Resolver.SyncConfig": { "additionalProperties": false, "properties": { "ConflictDetection": { "type": "string" }, "ConflictHandler": { "type": "string" }, "LambdaConflictHandlerConfig": { "$ref": "#/definitions/AWS::AppSync::Resolver.LambdaConflictHandlerConfig" } }, "required": [ "ConflictDetection" ], "type": "object" }, "AWS::AppSync::SourceApiAssociation": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "MergedApiIdentifier": { "type": "string" }, "SourceApiAssociationConfig": { "$ref": "#/definitions/AWS::AppSync::SourceApiAssociation.SourceApiAssociationConfig" }, "SourceApiIdentifier": { "type": "string" } }, "type": "object" }, "Type": { "enum": [ "AWS::AppSync::SourceApiAssociation" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::AppSync::SourceApiAssociation.SourceApiAssociationConfig": { "additionalProperties": false, "properties": { "MergeType": { "type": "string" } }, "type": "object" }, "AWS::ApplicationAutoScaling::ScalableTarget": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "MaxCapacity": { "type": "number" }, "MinCapacity": { "type": "number" }, "ResourceId": { "type": "string" }, "RoleARN": { "type": "string" }, "ScalableDimension": { "type": "string" }, "ScheduledActions": { "items": { "$ref": "#/definitions/AWS::ApplicationAutoScaling::ScalableTarget.ScheduledAction" }, "type": "array" }, "ServiceNamespace": { "type": "string" }, "SuspendedState": { "$ref": "#/definitions/AWS::ApplicationAutoScaling::ScalableTarget.SuspendedState" } }, "required": [ "MaxCapacity", "MinCapacity", "ResourceId", "ScalableDimension", "ServiceNamespace" ], "type": "object" }, "Type": { "enum": [ "AWS::ApplicationAutoScaling::ScalableTarget" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::ApplicationAutoScaling::ScalableTarget.ScalableTargetAction": { "additionalProperties": false, "properties": { "MaxCapacity": { "type": "number" }, "MinCapacity": { "type": "number" } }, "type": "object" }, "AWS::ApplicationAutoScaling::ScalableTarget.ScheduledAction": { "additionalProperties": false, "properties": { "EndTime": { "type": "string" }, "ScalableTargetAction": { "$ref": "#/definitions/AWS::ApplicationAutoScaling::ScalableTarget.ScalableTargetAction" }, "Schedule": { "type": "string" }, "ScheduledActionName": { "type": "string" }, "StartTime": { "type": "string" }, "Timezone": { "type": "string" } }, "required": [ "Schedule", "ScheduledActionName" ], "type": "object" }, "AWS::ApplicationAutoScaling::ScalableTarget.SuspendedState": { "additionalProperties": false, "properties": { "DynamicScalingInSuspended": { "type": "boolean" }, "DynamicScalingOutSuspended": { "type": "boolean" }, "ScheduledScalingSuspended": { "type": "boolean" } }, "type": "object" }, "AWS::ApplicationAutoScaling::ScalingPolicy": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "PolicyName": { "type": "string" }, "PolicyType": { "type": "string" }, "ResourceId": { "type": "string" }, "ScalableDimension": { "type": "string" }, "ScalingTargetId": { "type": "string" }, "ServiceNamespace": { "type": "string" }, "StepScalingPolicyConfiguration": { "$ref": "#/definitions/AWS::ApplicationAutoScaling::ScalingPolicy.StepScalingPolicyConfiguration" }, "TargetTrackingScalingPolicyConfiguration": { "$ref": "#/definitions/AWS::ApplicationAutoScaling::ScalingPolicy.TargetTrackingScalingPolicyConfiguration" } }, "required": [ "PolicyName", "PolicyType" ], "type": "object" }, "Type": { "enum": [ "AWS::ApplicationAutoScaling::ScalingPolicy" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::ApplicationAutoScaling::ScalingPolicy.CustomizedMetricSpecification": { "additionalProperties": false, "properties": { "Dimensions": { "items": { "$ref": "#/definitions/AWS::ApplicationAutoScaling::ScalingPolicy.MetricDimension" }, "type": "array" }, "MetricName": { "type": "string" }, "Namespace": { "type": "string" }, "Statistic": { "type": "string" }, "Unit": { "type": "string" } }, "required": [ "MetricName", "Namespace", "Statistic" ], "type": "object" }, "AWS::ApplicationAutoScaling::ScalingPolicy.MetricDimension": { "additionalProperties": false, "properties": { "Name": { "type": "string" }, "Value": { "type": "string" } }, "required": [ "Name", "Value" ], "type": "object" }, "AWS::ApplicationAutoScaling::ScalingPolicy.PredefinedMetricSpecification": { "additionalProperties": false, "properties": { "PredefinedMetricType": { "type": "string" }, "ResourceLabel": { "type": "string" } }, "required": [ "PredefinedMetricType" ], "type": "object" }, "AWS::ApplicationAutoScaling::ScalingPolicy.StepAdjustment": { "additionalProperties": false, "properties": { "MetricIntervalLowerBound": { "type": "number" }, "MetricIntervalUpperBound": { "type": "number" }, "ScalingAdjustment": { "type": "number" } }, "required": [ "ScalingAdjustment" ], "type": "object" }, "AWS::ApplicationAutoScaling::ScalingPolicy.StepScalingPolicyConfiguration": { "additionalProperties": false, "properties": { "AdjustmentType": { "type": "string" }, "Cooldown": { "type": "number" }, "MetricAggregationType": { "type": "string" }, "MinAdjustmentMagnitude": { "type": "number" }, "StepAdjustments": { "items": { "$ref": "#/definitions/AWS::ApplicationAutoScaling::ScalingPolicy.StepAdjustment" }, "type": "array" } }, "type": "object" }, "AWS::ApplicationAutoScaling::ScalingPolicy.TargetTrackingScalingPolicyConfiguration": { "additionalProperties": false, "properties": { "CustomizedMetricSpecification": { "$ref": "#/definitions/AWS::ApplicationAutoScaling::ScalingPolicy.CustomizedMetricSpecification" }, "DisableScaleIn": { "type": "boolean" }, "PredefinedMetricSpecification": { "$ref": "#/definitions/AWS::ApplicationAutoScaling::ScalingPolicy.PredefinedMetricSpecification" }, "ScaleInCooldown": { "type": "number" }, "ScaleOutCooldown": { "type": "number" }, "TargetValue": { "type": "number" } }, "required": [ "TargetValue" ], "type": "object" }, "AWS::ApplicationInsights::Application": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AutoConfigurationEnabled": { "type": "boolean" }, "CWEMonitorEnabled": { "type": "boolean" }, "ComponentMonitoringSettings": { "items": { "$ref": "#/definitions/AWS::ApplicationInsights::Application.ComponentMonitoringSetting" }, "type": "array" }, "CustomComponents": { "items": { "$ref": "#/definitions/AWS::ApplicationInsights::Application.CustomComponent" }, "type": "array" }, "GroupingType": { "type": "string" }, "LogPatternSets": { "items": { "$ref": "#/definitions/AWS::ApplicationInsights::Application.LogPatternSet" }, "type": "array" }, "OpsCenterEnabled": { "type": "boolean" }, "OpsItemSNSTopicArn": { "type": "string" }, "ResourceGroupName": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "ResourceGroupName" ], "type": "object" }, "Type": { "enum": [ "AWS::ApplicationInsights::Application" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::ApplicationInsights::Application.Alarm": { "additionalProperties": false, "properties": { "AlarmName": { "type": "string" }, "Severity": { "type": "string" } }, "required": [ "AlarmName" ], "type": "object" }, "AWS::ApplicationInsights::Application.AlarmMetric": { "additionalProperties": false, "properties": { "AlarmMetricName": { "type": "string" } }, "required": [ "AlarmMetricName" ], "type": "object" }, "AWS::ApplicationInsights::Application.ComponentConfiguration": { "additionalProperties": false, "properties": { "ConfigurationDetails": { "$ref": "#/definitions/AWS::ApplicationInsights::Application.ConfigurationDetails" }, "SubComponentTypeConfigurations": { "items": { "$ref": "#/definitions/AWS::ApplicationInsights::Application.SubComponentTypeConfiguration" }, "type": "array" } }, "type": "object" }, "AWS::ApplicationInsights::Application.ComponentMonitoringSetting": { "additionalProperties": false, "properties": { "ComponentARN": { "type": "string" }, "ComponentConfigurationMode": { "type": "string" }, "ComponentName": { "type": "string" }, "CustomComponentConfiguration": { "$ref": "#/definitions/AWS::ApplicationInsights::Application.ComponentConfiguration" }, "DefaultOverwriteComponentConfiguration": { "$ref": "#/definitions/AWS::ApplicationInsights::Application.ComponentConfiguration" }, "Tier": { "type": "string" } }, "required": [ "ComponentConfigurationMode", "Tier" ], "type": "object" }, "AWS::ApplicationInsights::Application.ConfigurationDetails": { "additionalProperties": false, "properties": { "AlarmMetrics": { "items": { "$ref": "#/definitions/AWS::ApplicationInsights::Application.AlarmMetric" }, "type": "array" }, "Alarms": { "items": { "$ref": "#/definitions/AWS::ApplicationInsights::Application.Alarm" }, "type": "array" }, "HAClusterPrometheusExporter": { "$ref": "#/definitions/AWS::ApplicationInsights::Application.HAClusterPrometheusExporter" }, "HANAPrometheusExporter": { "$ref": "#/definitions/AWS::ApplicationInsights::Application.HANAPrometheusExporter" }, "JMXPrometheusExporter": { "$ref": "#/definitions/AWS::ApplicationInsights::Application.JMXPrometheusExporter" }, "Logs": { "items": { "$ref": "#/definitions/AWS::ApplicationInsights::Application.Log" }, "type": "array" }, "WindowsEvents": { "items": { "$ref": "#/definitions/AWS::ApplicationInsights::Application.WindowsEvent" }, "type": "array" } }, "type": "object" }, "AWS::ApplicationInsights::Application.CustomComponent": { "additionalProperties": false, "properties": { "ComponentName": { "type": "string" }, "ResourceList": { "items": { "type": "string" }, "type": "array" } }, "required": [ "ComponentName", "ResourceList" ], "type": "object" }, "AWS::ApplicationInsights::Application.HAClusterPrometheusExporter": { "additionalProperties": false, "properties": { "PrometheusPort": { "type": "string" } }, "type": "object" }, "AWS::ApplicationInsights::Application.HANAPrometheusExporter": { "additionalProperties": false, "properties": { "AgreeToInstallHANADBClient": { "type": "boolean" }, "HANAPort": { "type": "string" }, "HANASID": { "type": "string" }, "HANASecretName": { "type": "string" }, "PrometheusPort": { "type": "string" } }, "required": [ "AgreeToInstallHANADBClient", "HANAPort", "HANASID", "HANASecretName" ], "type": "object" }, "AWS::ApplicationInsights::Application.JMXPrometheusExporter": { "additionalProperties": false, "properties": { "HostPort": { "type": "string" }, "JMXURL": { "type": "string" }, "PrometheusPort": { "type": "string" } }, "type": "object" }, "AWS::ApplicationInsights::Application.Log": { "additionalProperties": false, "properties": { "Encoding": { "type": "string" }, "LogGroupName": { "type": "string" }, "LogPath": { "type": "string" }, "LogType": { "type": "string" }, "PatternSet": { "type": "string" } }, "required": [ "LogType" ], "type": "object" }, "AWS::ApplicationInsights::Application.LogPattern": { "additionalProperties": false, "properties": { "Pattern": { "type": "string" }, "PatternName": { "type": "string" }, "Rank": { "type": "number" } }, "required": [ "Pattern", "PatternName", "Rank" ], "type": "object" }, "AWS::ApplicationInsights::Application.LogPatternSet": { "additionalProperties": false, "properties": { "LogPatterns": { "items": { "$ref": "#/definitions/AWS::ApplicationInsights::Application.LogPattern" }, "type": "array" }, "PatternSetName": { "type": "string" } }, "required": [ "LogPatterns", "PatternSetName" ], "type": "object" }, "AWS::ApplicationInsights::Application.SubComponentConfigurationDetails": { "additionalProperties": false, "properties": { "AlarmMetrics": { "items": { "$ref": "#/definitions/AWS::ApplicationInsights::Application.AlarmMetric" }, "type": "array" }, "Logs": { "items": { "$ref": "#/definitions/AWS::ApplicationInsights::Application.Log" }, "type": "array" }, "WindowsEvents": { "items": { "$ref": "#/definitions/AWS::ApplicationInsights::Application.WindowsEvent" }, "type": "array" } }, "type": "object" }, "AWS::ApplicationInsights::Application.SubComponentTypeConfiguration": { "additionalProperties": false, "properties": { "SubComponentConfigurationDetails": { "$ref": "#/definitions/AWS::ApplicationInsights::Application.SubComponentConfigurationDetails" }, "SubComponentType": { "type": "string" } }, "required": [ "SubComponentConfigurationDetails", "SubComponentType" ], "type": "object" }, "AWS::ApplicationInsights::Application.WindowsEvent": { "additionalProperties": false, "properties": { "EventLevels": { "items": { "type": "string" }, "type": "array" }, "EventName": { "type": "string" }, "LogGroupName": { "type": "string" }, "PatternSet": { "type": "string" } }, "required": [ "EventLevels", "EventName", "LogGroupName" ], "type": "object" }, "AWS::Athena::CapacityReservation": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "CapacityAssignmentConfiguration": { "$ref": "#/definitions/AWS::Athena::CapacityReservation.CapacityAssignmentConfiguration" }, "Name": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "TargetDpus": { "type": "number" } }, "required": [ "Name", "TargetDpus" ], "type": "object" }, "Type": { "enum": [ "AWS::Athena::CapacityReservation" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Athena::CapacityReservation.CapacityAssignment": { "additionalProperties": false, "properties": { "WorkgroupNames": { "items": { "type": "string" }, "type": "array" } }, "required": [ "WorkgroupNames" ], "type": "object" }, "AWS::Athena::CapacityReservation.CapacityAssignmentConfiguration": { "additionalProperties": false, "properties": { "CapacityAssignments": { "items": { "$ref": "#/definitions/AWS::Athena::CapacityReservation.CapacityAssignment" }, "type": "array" } }, "required": [ "CapacityAssignments" ], "type": "object" }, "AWS::Athena::DataCatalog": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "Name": { "type": "string" }, "Parameters": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "Type": { "type": "string" } }, "required": [ "Name", "Type" ], "type": "object" }, "Type": { "enum": [ "AWS::Athena::DataCatalog" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Athena::NamedQuery": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Database": { "type": "string" }, "Description": { "type": "string" }, "Name": { "type": "string" }, "QueryString": { "type": "string" }, "WorkGroup": { "type": "string" } }, "required": [ "Database", "QueryString" ], "type": "object" }, "Type": { "enum": [ "AWS::Athena::NamedQuery" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Athena::PreparedStatement": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "QueryStatement": { "type": "string" }, "StatementName": { "type": "string" }, "WorkGroup": { "type": "string" } }, "required": [ "QueryStatement", "StatementName", "WorkGroup" ], "type": "object" }, "Type": { "enum": [ "AWS::Athena::PreparedStatement" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Athena::WorkGroup": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "Name": { "type": "string" }, "RecursiveDeleteOption": { "type": "boolean" }, "State": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "WorkGroupConfiguration": { "$ref": "#/definitions/AWS::Athena::WorkGroup.WorkGroupConfiguration" } }, "required": [ "Name" ], "type": "object" }, "Type": { "enum": [ "AWS::Athena::WorkGroup" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Athena::WorkGroup.AclConfiguration": { "additionalProperties": false, "properties": { "S3AclOption": { "type": "string" } }, "required": [ "S3AclOption" ], "type": "object" }, "AWS::Athena::WorkGroup.CustomerContentEncryptionConfiguration": { "additionalProperties": false, "properties": { "KmsKey": { "type": "string" } }, "required": [ "KmsKey" ], "type": "object" }, "AWS::Athena::WorkGroup.EncryptionConfiguration": { "additionalProperties": false, "properties": { "EncryptionOption": { "type": "string" }, "KmsKey": { "type": "string" } }, "required": [ "EncryptionOption" ], "type": "object" }, "AWS::Athena::WorkGroup.EngineVersion": { "additionalProperties": false, "properties": { "EffectiveEngineVersion": { "type": "string" }, "SelectedEngineVersion": { "type": "string" } }, "type": "object" }, "AWS::Athena::WorkGroup.ResultConfiguration": { "additionalProperties": false, "properties": { "AclConfiguration": { "$ref": "#/definitions/AWS::Athena::WorkGroup.AclConfiguration" }, "EncryptionConfiguration": { "$ref": "#/definitions/AWS::Athena::WorkGroup.EncryptionConfiguration" }, "ExpectedBucketOwner": { "type": "string" }, "OutputLocation": { "type": "string" } }, "type": "object" }, "AWS::Athena::WorkGroup.WorkGroupConfiguration": { "additionalProperties": false, "properties": { "AdditionalConfiguration": { "type": "string" }, "BytesScannedCutoffPerQuery": { "type": "number" }, "CustomerContentEncryptionConfiguration": { "$ref": "#/definitions/AWS::Athena::WorkGroup.CustomerContentEncryptionConfiguration" }, "EnforceWorkGroupConfiguration": { "type": "boolean" }, "EngineVersion": { "$ref": "#/definitions/AWS::Athena::WorkGroup.EngineVersion" }, "ExecutionRole": { "type": "string" }, "PublishCloudWatchMetricsEnabled": { "type": "boolean" }, "RequesterPaysEnabled": { "type": "boolean" }, "ResultConfiguration": { "$ref": "#/definitions/AWS::Athena::WorkGroup.ResultConfiguration" } }, "type": "object" }, "AWS::AuditManager::Assessment": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AssessmentReportsDestination": { "$ref": "#/definitions/AWS::AuditManager::Assessment.AssessmentReportsDestination" }, "AwsAccount": { "$ref": "#/definitions/AWS::AuditManager::Assessment.AWSAccount" }, "Delegations": { "items": { "$ref": "#/definitions/AWS::AuditManager::Assessment.Delegation" }, "type": "array" }, "Description": { "type": "string" }, "FrameworkId": { "type": "string" }, "Name": { "type": "string" }, "Roles": { "items": { "$ref": "#/definitions/AWS::AuditManager::Assessment.Role" }, "type": "array" }, "Scope": { "$ref": "#/definitions/AWS::AuditManager::Assessment.Scope" }, "Status": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "type": "object" }, "Type": { "enum": [ "AWS::AuditManager::Assessment" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::AuditManager::Assessment.AWSAccount": { "additionalProperties": false, "properties": { "EmailAddress": { "type": "string" }, "Id": { "type": "string" }, "Name": { "type": "string" } }, "type": "object" }, "AWS::AuditManager::Assessment.AWSService": { "additionalProperties": false, "properties": { "ServiceName": { "type": "string" } }, "type": "object" }, "AWS::AuditManager::Assessment.AssessmentReportsDestination": { "additionalProperties": false, "properties": { "Destination": { "type": "string" }, "DestinationType": { "type": "string" } }, "type": "object" }, "AWS::AuditManager::Assessment.Delegation": { "additionalProperties": false, "properties": { "AssessmentId": { "type": "string" }, "AssessmentName": { "type": "string" }, "Comment": { "type": "string" }, "ControlSetId": { "type": "string" }, "CreatedBy": { "type": "string" }, "CreationTime": { "type": "number" }, "Id": { "type": "string" }, "LastUpdated": { "type": "number" }, "RoleArn": { "type": "string" }, "RoleType": { "type": "string" }, "Status": { "type": "string" } }, "type": "object" }, "AWS::AuditManager::Assessment.Role": { "additionalProperties": false, "properties": { "RoleArn": { "type": "string" }, "RoleType": { "type": "string" } }, "type": "object" }, "AWS::AuditManager::Assessment.Scope": { "additionalProperties": false, "properties": { "AwsAccounts": { "items": { "$ref": "#/definitions/AWS::AuditManager::Assessment.AWSAccount" }, "type": "array" }, "AwsServices": { "items": { "$ref": "#/definitions/AWS::AuditManager::Assessment.AWSService" }, "type": "array" } }, "type": "object" }, "AWS::AutoScaling::AutoScalingGroup": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "CreationPolicy": { "type": "object" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AutoScalingGroupName": { "type": "string" }, "AvailabilityZones": { "items": { "type": "string" }, "type": "array" }, "CapacityRebalance": { "type": "boolean" }, "Context": { "type": "string" }, "Cooldown": { "type": "string" }, "DefaultInstanceWarmup": { "type": "number" }, "DesiredCapacity": { "type": "string" }, "DesiredCapacityType": { "type": "string" }, "HealthCheckGracePeriod": { "type": "number" }, "HealthCheckType": { "type": "string" }, "InstanceId": { "type": "string" }, "LaunchConfigurationName": { "type": "string" }, "LaunchTemplate": { "$ref": "#/definitions/AWS::AutoScaling::AutoScalingGroup.LaunchTemplateSpecification" }, "LifecycleHookSpecificationList": { "items": { "$ref": "#/definitions/AWS::AutoScaling::AutoScalingGroup.LifecycleHookSpecification" }, "type": "array" }, "LoadBalancerNames": { "items": { "type": "string" }, "type": "array" }, "MaxInstanceLifetime": { "type": "number" }, "MaxSize": { "type": "string" }, "MetricsCollection": { "items": { "$ref": "#/definitions/AWS::AutoScaling::AutoScalingGroup.MetricsCollection" }, "type": "array" }, "MinSize": { "type": "string" }, "MixedInstancesPolicy": { "$ref": "#/definitions/AWS::AutoScaling::AutoScalingGroup.MixedInstancesPolicy" }, "NewInstancesProtectedFromScaleIn": { "type": "boolean" }, "NotificationConfigurations": { "items": { "$ref": "#/definitions/AWS::AutoScaling::AutoScalingGroup.NotificationConfiguration" }, "type": "array" }, "PlacementGroup": { "type": "string" }, "ServiceLinkedRoleARN": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/AWS::AutoScaling::AutoScalingGroup.TagProperty" }, "type": "array" }, "TargetGroupARNs": { "items": { "type": "string" }, "type": "array" }, "TerminationPolicies": { "items": { "type": "string" }, "type": "array" }, "VPCZoneIdentifier": { "items": { "type": "string" }, "type": "array" } }, "required": [ "MaxSize", "MinSize" ], "type": "object" }, "Type": { "enum": [ "AWS::AutoScaling::AutoScalingGroup" ], "type": "string" }, "UpdatePolicy": { "type": "object" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::AutoScaling::AutoScalingGroup.AcceleratorCountRequest": { "additionalProperties": false, "properties": { "Max": { "type": "number" }, "Min": { "type": "number" } }, "type": "object" }, "AWS::AutoScaling::AutoScalingGroup.AcceleratorTotalMemoryMiBRequest": { "additionalProperties": false, "properties": { "Max": { "type": "number" }, "Min": { "type": "number" } }, "type": "object" }, "AWS::AutoScaling::AutoScalingGroup.BaselineEbsBandwidthMbpsRequest": { "additionalProperties": false, "properties": { "Max": { "type": "number" }, "Min": { "type": "number" } }, "type": "object" }, "AWS::AutoScaling::AutoScalingGroup.InstanceRequirements": { "additionalProperties": false, "properties": { "AcceleratorCount": { "$ref": "#/definitions/AWS::AutoScaling::AutoScalingGroup.AcceleratorCountRequest" }, "AcceleratorManufacturers": { "items": { "type": "string" }, "type": "array" }, "AcceleratorNames": { "items": { "type": "string" }, "type": "array" }, "AcceleratorTotalMemoryMiB": { "$ref": "#/definitions/AWS::AutoScaling::AutoScalingGroup.AcceleratorTotalMemoryMiBRequest" }, "AcceleratorTypes": { "items": { "type": "string" }, "type": "array" }, "AllowedInstanceTypes": { "items": { "type": "string" }, "type": "array" }, "BareMetal": { "type": "string" }, "BaselineEbsBandwidthMbps": { "$ref": "#/definitions/AWS::AutoScaling::AutoScalingGroup.BaselineEbsBandwidthMbpsRequest" }, "BurstablePerformance": { "type": "string" }, "CpuManufacturers": { "items": { "type": "string" }, "type": "array" }, "ExcludedInstanceTypes": { "items": { "type": "string" }, "type": "array" }, "InstanceGenerations": { "items": { "type": "string" }, "type": "array" }, "LocalStorage": { "type": "string" }, "LocalStorageTypes": { "items": { "type": "string" }, "type": "array" }, "MemoryGiBPerVCpu": { "$ref": "#/definitions/AWS::AutoScaling::AutoScalingGroup.MemoryGiBPerVCpuRequest" }, "MemoryMiB": { "$ref": "#/definitions/AWS::AutoScaling::AutoScalingGroup.MemoryMiBRequest" }, "NetworkBandwidthGbps": { "$ref": "#/definitions/AWS::AutoScaling::AutoScalingGroup.NetworkBandwidthGbpsRequest" }, "NetworkInterfaceCount": { "$ref": "#/definitions/AWS::AutoScaling::AutoScalingGroup.NetworkInterfaceCountRequest" }, "OnDemandMaxPricePercentageOverLowestPrice": { "type": "number" }, "RequireHibernateSupport": { "type": "boolean" }, "SpotMaxPricePercentageOverLowestPrice": { "type": "number" }, "TotalLocalStorageGB": { "$ref": "#/definitions/AWS::AutoScaling::AutoScalingGroup.TotalLocalStorageGBRequest" }, "VCpuCount": { "$ref": "#/definitions/AWS::AutoScaling::AutoScalingGroup.VCpuCountRequest" } }, "type": "object" }, "AWS::AutoScaling::AutoScalingGroup.InstancesDistribution": { "additionalProperties": false, "properties": { "OnDemandAllocationStrategy": { "type": "string" }, "OnDemandBaseCapacity": { "type": "number" }, "OnDemandPercentageAboveBaseCapacity": { "type": "number" }, "SpotAllocationStrategy": { "type": "string" }, "SpotInstancePools": { "type": "number" }, "SpotMaxPrice": { "type": "string" } }, "type": "object" }, "AWS::AutoScaling::AutoScalingGroup.LaunchTemplate": { "additionalProperties": false, "properties": { "LaunchTemplateSpecification": { "$ref": "#/definitions/AWS::AutoScaling::AutoScalingGroup.LaunchTemplateSpecification" }, "Overrides": { "items": { "$ref": "#/definitions/AWS::AutoScaling::AutoScalingGroup.LaunchTemplateOverrides" }, "type": "array" } }, "required": [ "LaunchTemplateSpecification" ], "type": "object" }, "AWS::AutoScaling::AutoScalingGroup.LaunchTemplateOverrides": { "additionalProperties": false, "properties": { "InstanceRequirements": { "$ref": "#/definitions/AWS::AutoScaling::AutoScalingGroup.InstanceRequirements" }, "InstanceType": { "type": "string" }, "LaunchTemplateSpecification": { "$ref": "#/definitions/AWS::AutoScaling::AutoScalingGroup.LaunchTemplateSpecification" }, "WeightedCapacity": { "type": "string" } }, "type": "object" }, "AWS::AutoScaling::AutoScalingGroup.LaunchTemplateSpecification": { "additionalProperties": false, "properties": { "LaunchTemplateId": { "type": "string" }, "LaunchTemplateName": { "type": "string" }, "Version": { "type": "string" } }, "required": [ "Version" ], "type": "object" }, "AWS::AutoScaling::AutoScalingGroup.LifecycleHookSpecification": { "additionalProperties": false, "properties": { "DefaultResult": { "type": "string" }, "HeartbeatTimeout": { "type": "number" }, "LifecycleHookName": { "type": "string" }, "LifecycleTransition": { "type": "string" }, "NotificationMetadata": { "type": "string" }, "NotificationTargetARN": { "type": "string" }, "RoleARN": { "type": "string" } }, "required": [ "LifecycleHookName", "LifecycleTransition" ], "type": "object" }, "AWS::AutoScaling::AutoScalingGroup.MemoryGiBPerVCpuRequest": { "additionalProperties": false, "properties": { "Max": { "type": "number" }, "Min": { "type": "number" } }, "type": "object" }, "AWS::AutoScaling::AutoScalingGroup.MemoryMiBRequest": { "additionalProperties": false, "properties": { "Max": { "type": "number" }, "Min": { "type": "number" } }, "type": "object" }, "AWS::AutoScaling::AutoScalingGroup.MetricsCollection": { "additionalProperties": false, "properties": { "Granularity": { "type": "string" }, "Metrics": { "items": { "type": "string" }, "type": "array" } }, "required": [ "Granularity" ], "type": "object" }, "AWS::AutoScaling::AutoScalingGroup.MixedInstancesPolicy": { "additionalProperties": false, "properties": { "InstancesDistribution": { "$ref": "#/definitions/AWS::AutoScaling::AutoScalingGroup.InstancesDistribution" }, "LaunchTemplate": { "$ref": "#/definitions/AWS::AutoScaling::AutoScalingGroup.LaunchTemplate" } }, "required": [ "LaunchTemplate" ], "type": "object" }, "AWS::AutoScaling::AutoScalingGroup.NetworkBandwidthGbpsRequest": { "additionalProperties": false, "properties": { "Max": { "type": "number" }, "Min": { "type": "number" } }, "type": "object" }, "AWS::AutoScaling::AutoScalingGroup.NetworkInterfaceCountRequest": { "additionalProperties": false, "properties": { "Max": { "type": "number" }, "Min": { "type": "number" } }, "type": "object" }, "AWS::AutoScaling::AutoScalingGroup.NotificationConfiguration": { "additionalProperties": false, "properties": { "NotificationTypes": { "items": { "type": "string" }, "type": "array" }, "TopicARN": { "type": "string" } }, "required": [ "TopicARN" ], "type": "object" }, "AWS::AutoScaling::AutoScalingGroup.TagProperty": { "additionalProperties": false, "properties": { "Key": { "type": "string" }, "PropagateAtLaunch": { "type": "boolean" }, "Value": { "type": "string" } }, "required": [ "Key", "PropagateAtLaunch", "Value" ], "type": "object" }, "AWS::AutoScaling::AutoScalingGroup.TotalLocalStorageGBRequest": { "additionalProperties": false, "properties": { "Max": { "type": "number" }, "Min": { "type": "number" } }, "type": "object" }, "AWS::AutoScaling::AutoScalingGroup.VCpuCountRequest": { "additionalProperties": false, "properties": { "Max": { "type": "number" }, "Min": { "type": "number" } }, "type": "object" }, "AWS::AutoScaling::LaunchConfiguration": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AssociatePublicIpAddress": { "type": "boolean" }, "BlockDeviceMappings": { "items": { "$ref": "#/definitions/AWS::AutoScaling::LaunchConfiguration.BlockDeviceMapping" }, "type": "array" }, "ClassicLinkVPCId": { "type": "string" }, "ClassicLinkVPCSecurityGroups": { "items": { "type": "string" }, "type": "array" }, "EbsOptimized": { "type": "boolean" }, "IamInstanceProfile": { "type": "string" }, "ImageId": { "type": "string" }, "InstanceId": { "type": "string" }, "InstanceMonitoring": { "type": "boolean" }, "InstanceType": { "type": "string" }, "KernelId": { "type": "string" }, "KeyName": { "type": "string" }, "LaunchConfigurationName": { "type": "string" }, "MetadataOptions": { "$ref": "#/definitions/AWS::AutoScaling::LaunchConfiguration.MetadataOptions" }, "PlacementTenancy": { "type": "string" }, "RamDiskId": { "type": "string" }, "SecurityGroups": { "items": { "type": "string" }, "type": "array" }, "SpotPrice": { "type": "string" }, "UserData": { "type": "string" } }, "required": [ "ImageId", "InstanceType" ], "type": "object" }, "Type": { "enum": [ "AWS::AutoScaling::LaunchConfiguration" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::AutoScaling::LaunchConfiguration.BlockDevice": { "additionalProperties": false, "properties": { "DeleteOnTermination": { "type": "boolean" }, "Encrypted": { "type": "boolean" }, "Iops": { "type": "number" }, "SnapshotId": { "type": "string" }, "Throughput": { "type": "number" }, "VolumeSize": { "type": "number" }, "VolumeType": { "type": "string" } }, "type": "object" }, "AWS::AutoScaling::LaunchConfiguration.BlockDeviceMapping": { "additionalProperties": false, "properties": { "DeviceName": { "type": "string" }, "Ebs": { "$ref": "#/definitions/AWS::AutoScaling::LaunchConfiguration.BlockDevice" }, "NoDevice": { "type": "boolean" }, "VirtualName": { "type": "string" } }, "required": [ "DeviceName" ], "type": "object" }, "AWS::AutoScaling::LaunchConfiguration.MetadataOptions": { "additionalProperties": false, "properties": { "HttpEndpoint": { "type": "string" }, "HttpPutResponseHopLimit": { "type": "number" }, "HttpTokens": { "type": "string" } }, "type": "object" }, "AWS::AutoScaling::LifecycleHook": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AutoScalingGroupName": { "type": "string" }, "DefaultResult": { "type": "string" }, "HeartbeatTimeout": { "type": "number" }, "LifecycleHookName": { "type": "string" }, "LifecycleTransition": { "type": "string" }, "NotificationMetadata": { "type": "string" }, "NotificationTargetARN": { "type": "string" }, "RoleARN": { "type": "string" } }, "required": [ "AutoScalingGroupName", "LifecycleTransition" ], "type": "object" }, "Type": { "enum": [ "AWS::AutoScaling::LifecycleHook" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::AutoScaling::ScalingPolicy": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AdjustmentType": { "type": "string" }, "AutoScalingGroupName": { "type": "string" }, "Cooldown": { "type": "string" }, "EstimatedInstanceWarmup": { "type": "number" }, "MetricAggregationType": { "type": "string" }, "MinAdjustmentMagnitude": { "type": "number" }, "PolicyType": { "type": "string" }, "PredictiveScalingConfiguration": { "$ref": "#/definitions/AWS::AutoScaling::ScalingPolicy.PredictiveScalingConfiguration" }, "ScalingAdjustment": { "type": "number" }, "StepAdjustments": { "items": { "$ref": "#/definitions/AWS::AutoScaling::ScalingPolicy.StepAdjustment" }, "type": "array" }, "TargetTrackingConfiguration": { "$ref": "#/definitions/AWS::AutoScaling::ScalingPolicy.TargetTrackingConfiguration" } }, "required": [ "AutoScalingGroupName" ], "type": "object" }, "Type": { "enum": [ "AWS::AutoScaling::ScalingPolicy" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::AutoScaling::ScalingPolicy.CustomizedMetricSpecification": { "additionalProperties": false, "properties": { "Dimensions": { "items": { "$ref": "#/definitions/AWS::AutoScaling::ScalingPolicy.MetricDimension" }, "type": "array" }, "MetricName": { "type": "string" }, "Namespace": { "type": "string" }, "Statistic": { "type": "string" }, "Unit": { "type": "string" } }, "required": [ "MetricName", "Namespace", "Statistic" ], "type": "object" }, "AWS::AutoScaling::ScalingPolicy.Metric": { "additionalProperties": false, "properties": { "Dimensions": { "items": { "$ref": "#/definitions/AWS::AutoScaling::ScalingPolicy.MetricDimension" }, "type": "array" }, "MetricName": { "type": "string" }, "Namespace": { "type": "string" } }, "required": [ "MetricName", "Namespace" ], "type": "object" }, "AWS::AutoScaling::ScalingPolicy.MetricDataQuery": { "additionalProperties": false, "properties": { "Expression": { "type": "string" }, "Id": { "type": "string" }, "Label": { "type": "string" }, "MetricStat": { "$ref": "#/definitions/AWS::AutoScaling::ScalingPolicy.MetricStat" }, "ReturnData": { "type": "boolean" } }, "required": [ "Id" ], "type": "object" }, "AWS::AutoScaling::ScalingPolicy.MetricDimension": { "additionalProperties": false, "properties": { "Name": { "type": "string" }, "Value": { "type": "string" } }, "required": [ "Name", "Value" ], "type": "object" }, "AWS::AutoScaling::ScalingPolicy.MetricStat": { "additionalProperties": false, "properties": { "Metric": { "$ref": "#/definitions/AWS::AutoScaling::ScalingPolicy.Metric" }, "Stat": { "type": "string" }, "Unit": { "type": "string" } }, "required": [ "Metric", "Stat" ], "type": "object" }, "AWS::AutoScaling::ScalingPolicy.PredefinedMetricSpecification": { "additionalProperties": false, "properties": { "PredefinedMetricType": { "type": "string" }, "ResourceLabel": { "type": "string" } }, "required": [ "PredefinedMetricType" ], "type": "object" }, "AWS::AutoScaling::ScalingPolicy.PredictiveScalingConfiguration": { "additionalProperties": false, "properties": { "MaxCapacityBreachBehavior": { "type": "string" }, "MaxCapacityBuffer": { "type": "number" }, "MetricSpecifications": { "items": { "$ref": "#/definitions/AWS::AutoScaling::ScalingPolicy.PredictiveScalingMetricSpecification" }, "type": "array" }, "Mode": { "type": "string" }, "SchedulingBufferTime": { "type": "number" } }, "required": [ "MetricSpecifications" ], "type": "object" }, "AWS::AutoScaling::ScalingPolicy.PredictiveScalingCustomizedCapacityMetric": { "additionalProperties": false, "properties": { "MetricDataQueries": { "items": { "$ref": "#/definitions/AWS::AutoScaling::ScalingPolicy.MetricDataQuery" }, "type": "array" } }, "required": [ "MetricDataQueries" ], "type": "object" }, "AWS::AutoScaling::ScalingPolicy.PredictiveScalingCustomizedLoadMetric": { "additionalProperties": false, "properties": { "MetricDataQueries": { "items": { "$ref": "#/definitions/AWS::AutoScaling::ScalingPolicy.MetricDataQuery" }, "type": "array" } }, "required": [ "MetricDataQueries" ], "type": "object" }, "AWS::AutoScaling::ScalingPolicy.PredictiveScalingCustomizedScalingMetric": { "additionalProperties": false, "properties": { "MetricDataQueries": { "items": { "$ref": "#/definitions/AWS::AutoScaling::ScalingPolicy.MetricDataQuery" }, "type": "array" } }, "required": [ "MetricDataQueries" ], "type": "object" }, "AWS::AutoScaling::ScalingPolicy.PredictiveScalingMetricSpecification": { "additionalProperties": false, "properties": { "CustomizedCapacityMetricSpecification": { "$ref": "#/definitions/AWS::AutoScaling::ScalingPolicy.PredictiveScalingCustomizedCapacityMetric" }, "CustomizedLoadMetricSpecification": { "$ref": "#/definitions/AWS::AutoScaling::ScalingPolicy.PredictiveScalingCustomizedLoadMetric" }, "CustomizedScalingMetricSpecification": { "$ref": "#/definitions/AWS::AutoScaling::ScalingPolicy.PredictiveScalingCustomizedScalingMetric" }, "PredefinedLoadMetricSpecification": { "$ref": "#/definitions/AWS::AutoScaling::ScalingPolicy.PredictiveScalingPredefinedLoadMetric" }, "PredefinedMetricPairSpecification": { "$ref": "#/definitions/AWS::AutoScaling::ScalingPolicy.PredictiveScalingPredefinedMetricPair" }, "PredefinedScalingMetricSpecification": { "$ref": "#/definitions/AWS::AutoScaling::ScalingPolicy.PredictiveScalingPredefinedScalingMetric" }, "TargetValue": { "type": "number" } }, "required": [ "TargetValue" ], "type": "object" }, "AWS::AutoScaling::ScalingPolicy.PredictiveScalingPredefinedLoadMetric": { "additionalProperties": false, "properties": { "PredefinedMetricType": { "type": "string" }, "ResourceLabel": { "type": "string" } }, "required": [ "PredefinedMetricType" ], "type": "object" }, "AWS::AutoScaling::ScalingPolicy.PredictiveScalingPredefinedMetricPair": { "additionalProperties": false, "properties": { "PredefinedMetricType": { "type": "string" }, "ResourceLabel": { "type": "string" } }, "required": [ "PredefinedMetricType" ], "type": "object" }, "AWS::AutoScaling::ScalingPolicy.PredictiveScalingPredefinedScalingMetric": { "additionalProperties": false, "properties": { "PredefinedMetricType": { "type": "string" }, "ResourceLabel": { "type": "string" } }, "required": [ "PredefinedMetricType" ], "type": "object" }, "AWS::AutoScaling::ScalingPolicy.StepAdjustment": { "additionalProperties": false, "properties": { "MetricIntervalLowerBound": { "type": "number" }, "MetricIntervalUpperBound": { "type": "number" }, "ScalingAdjustment": { "type": "number" } }, "required": [ "ScalingAdjustment" ], "type": "object" }, "AWS::AutoScaling::ScalingPolicy.TargetTrackingConfiguration": { "additionalProperties": false, "properties": { "CustomizedMetricSpecification": { "$ref": "#/definitions/AWS::AutoScaling::ScalingPolicy.CustomizedMetricSpecification" }, "DisableScaleIn": { "type": "boolean" }, "PredefinedMetricSpecification": { "$ref": "#/definitions/AWS::AutoScaling::ScalingPolicy.PredefinedMetricSpecification" }, "TargetValue": { "type": "number" } }, "required": [ "TargetValue" ], "type": "object" }, "AWS::AutoScaling::ScheduledAction": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AutoScalingGroupName": { "type": "string" }, "DesiredCapacity": { "type": "number" }, "EndTime": { "type": "string" }, "MaxSize": { "type": "number" }, "MinSize": { "type": "number" }, "Recurrence": { "type": "string" }, "StartTime": { "type": "string" }, "TimeZone": { "type": "string" } }, "required": [ "AutoScalingGroupName" ], "type": "object" }, "Type": { "enum": [ "AWS::AutoScaling::ScheduledAction" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::AutoScaling::WarmPool": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AutoScalingGroupName": { "type": "string" }, "InstanceReusePolicy": { "$ref": "#/definitions/AWS::AutoScaling::WarmPool.InstanceReusePolicy" }, "MaxGroupPreparedCapacity": { "type": "number" }, "MinSize": { "type": "number" }, "PoolState": { "type": "string" } }, "required": [ "AutoScalingGroupName" ], "type": "object" }, "Type": { "enum": [ "AWS::AutoScaling::WarmPool" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::AutoScaling::WarmPool.InstanceReusePolicy": { "additionalProperties": false, "properties": { "ReuseOnScaleIn": { "type": "boolean" } }, "type": "object" }, "AWS::AutoScalingPlans::ScalingPlan": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ApplicationSource": { "$ref": "#/definitions/AWS::AutoScalingPlans::ScalingPlan.ApplicationSource" }, "ScalingInstructions": { "items": { "$ref": "#/definitions/AWS::AutoScalingPlans::ScalingPlan.ScalingInstruction" }, "type": "array" } }, "required": [ "ApplicationSource", "ScalingInstructions" ], "type": "object" }, "Type": { "enum": [ "AWS::AutoScalingPlans::ScalingPlan" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::AutoScalingPlans::ScalingPlan.ApplicationSource": { "additionalProperties": false, "properties": { "CloudFormationStackARN": { "type": "string" }, "TagFilters": { "items": { "$ref": "#/definitions/AWS::AutoScalingPlans::ScalingPlan.TagFilter" }, "type": "array" } }, "type": "object" }, "AWS::AutoScalingPlans::ScalingPlan.CustomizedLoadMetricSpecification": { "additionalProperties": false, "properties": { "Dimensions": { "items": { "$ref": "#/definitions/AWS::AutoScalingPlans::ScalingPlan.MetricDimension" }, "type": "array" }, "MetricName": { "type": "string" }, "Namespace": { "type": "string" }, "Statistic": { "type": "string" }, "Unit": { "type": "string" } }, "required": [ "MetricName", "Namespace", "Statistic" ], "type": "object" }, "AWS::AutoScalingPlans::ScalingPlan.CustomizedScalingMetricSpecification": { "additionalProperties": false, "properties": { "Dimensions": { "items": { "$ref": "#/definitions/AWS::AutoScalingPlans::ScalingPlan.MetricDimension" }, "type": "array" }, "MetricName": { "type": "string" }, "Namespace": { "type": "string" }, "Statistic": { "type": "string" }, "Unit": { "type": "string" } }, "required": [ "MetricName", "Namespace", "Statistic" ], "type": "object" }, "AWS::AutoScalingPlans::ScalingPlan.MetricDimension": { "additionalProperties": false, "properties": { "Name": { "type": "string" }, "Value": { "type": "string" } }, "required": [ "Name", "Value" ], "type": "object" }, "AWS::AutoScalingPlans::ScalingPlan.PredefinedLoadMetricSpecification": { "additionalProperties": false, "properties": { "PredefinedLoadMetricType": { "type": "string" }, "ResourceLabel": { "type": "string" } }, "required": [ "PredefinedLoadMetricType" ], "type": "object" }, "AWS::AutoScalingPlans::ScalingPlan.PredefinedScalingMetricSpecification": { "additionalProperties": false, "properties": { "PredefinedScalingMetricType": { "type": "string" }, "ResourceLabel": { "type": "string" } }, "required": [ "PredefinedScalingMetricType" ], "type": "object" }, "AWS::AutoScalingPlans::ScalingPlan.ScalingInstruction": { "additionalProperties": false, "properties": { "CustomizedLoadMetricSpecification": { "$ref": "#/definitions/AWS::AutoScalingPlans::ScalingPlan.CustomizedLoadMetricSpecification" }, "DisableDynamicScaling": { "type": "boolean" }, "MaxCapacity": { "type": "number" }, "MinCapacity": { "type": "number" }, "PredefinedLoadMetricSpecification": { "$ref": "#/definitions/AWS::AutoScalingPlans::ScalingPlan.PredefinedLoadMetricSpecification" }, "PredictiveScalingMaxCapacityBehavior": { "type": "string" }, "PredictiveScalingMaxCapacityBuffer": { "type": "number" }, "PredictiveScalingMode": { "type": "string" }, "ResourceId": { "type": "string" }, "ScalableDimension": { "type": "string" }, "ScalingPolicyUpdateBehavior": { "type": "string" }, "ScheduledActionBufferTime": { "type": "number" }, "ServiceNamespace": { "type": "string" }, "TargetTrackingConfigurations": { "items": { "$ref": "#/definitions/AWS::AutoScalingPlans::ScalingPlan.TargetTrackingConfiguration" }, "type": "array" } }, "required": [ "MaxCapacity", "MinCapacity", "ResourceId", "ScalableDimension", "ServiceNamespace", "TargetTrackingConfigurations" ], "type": "object" }, "AWS::AutoScalingPlans::ScalingPlan.TagFilter": { "additionalProperties": false, "properties": { "Key": { "type": "string" }, "Values": { "items": { "type": "string" }, "type": "array" } }, "required": [ "Key" ], "type": "object" }, "AWS::AutoScalingPlans::ScalingPlan.TargetTrackingConfiguration": { "additionalProperties": false, "properties": { "CustomizedScalingMetricSpecification": { "$ref": "#/definitions/AWS::AutoScalingPlans::ScalingPlan.CustomizedScalingMetricSpecification" }, "DisableScaleIn": { "type": "boolean" }, "EstimatedInstanceWarmup": { "type": "number" }, "PredefinedScalingMetricSpecification": { "$ref": "#/definitions/AWS::AutoScalingPlans::ScalingPlan.PredefinedScalingMetricSpecification" }, "ScaleInCooldown": { "type": "number" }, "ScaleOutCooldown": { "type": "number" }, "TargetValue": { "type": "number" } }, "required": [ "TargetValue" ], "type": "object" }, "AWS::Backup::BackupPlan": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "BackupPlan": { "$ref": "#/definitions/AWS::Backup::BackupPlan.BackupPlanResourceType" }, "BackupPlanTags": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" } }, "required": [ "BackupPlan" ], "type": "object" }, "Type": { "enum": [ "AWS::Backup::BackupPlan" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Backup::BackupPlan.AdvancedBackupSettingResourceType": { "additionalProperties": false, "properties": { "BackupOptions": { "type": "object" }, "ResourceType": { "type": "string" } }, "required": [ "BackupOptions", "ResourceType" ], "type": "object" }, "AWS::Backup::BackupPlan.BackupPlanResourceType": { "additionalProperties": false, "properties": { "AdvancedBackupSettings": { "items": { "$ref": "#/definitions/AWS::Backup::BackupPlan.AdvancedBackupSettingResourceType" }, "type": "array" }, "BackupPlanName": { "type": "string" }, "BackupPlanRule": { "items": { "$ref": "#/definitions/AWS::Backup::BackupPlan.BackupRuleResourceType" }, "type": "array" } }, "required": [ "BackupPlanName", "BackupPlanRule" ], "type": "object" }, "AWS::Backup::BackupPlan.BackupRuleResourceType": { "additionalProperties": false, "properties": { "CompletionWindowMinutes": { "type": "number" }, "CopyActions": { "items": { "$ref": "#/definitions/AWS::Backup::BackupPlan.CopyActionResourceType" }, "type": "array" }, "EnableContinuousBackup": { "type": "boolean" }, "Lifecycle": { "$ref": "#/definitions/AWS::Backup::BackupPlan.LifecycleResourceType" }, "RecoveryPointTags": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" }, "RuleName": { "type": "string" }, "ScheduleExpression": { "type": "string" }, "ScheduleExpressionTimezone": { "type": "string" }, "StartWindowMinutes": { "type": "number" }, "TargetBackupVault": { "type": "string" } }, "required": [ "RuleName", "TargetBackupVault" ], "type": "object" }, "AWS::Backup::BackupPlan.CopyActionResourceType": { "additionalProperties": false, "properties": { "DestinationBackupVaultArn": { "type": "string" }, "Lifecycle": { "$ref": "#/definitions/AWS::Backup::BackupPlan.LifecycleResourceType" } }, "required": [ "DestinationBackupVaultArn" ], "type": "object" }, "AWS::Backup::BackupPlan.LifecycleResourceType": { "additionalProperties": false, "properties": { "DeleteAfterDays": { "type": "number" }, "MoveToColdStorageAfterDays": { "type": "number" } }, "type": "object" }, "AWS::Backup::BackupSelection": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "BackupPlanId": { "type": "string" }, "BackupSelection": { "$ref": "#/definitions/AWS::Backup::BackupSelection.BackupSelectionResourceType" } }, "required": [ "BackupPlanId", "BackupSelection" ], "type": "object" }, "Type": { "enum": [ "AWS::Backup::BackupSelection" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Backup::BackupSelection.BackupSelectionResourceType": { "additionalProperties": false, "properties": { "Conditions": { "$ref": "#/definitions/AWS::Backup::BackupSelection.Conditions" }, "IamRoleArn": { "type": "string" }, "ListOfTags": { "items": { "$ref": "#/definitions/AWS::Backup::BackupSelection.ConditionResourceType" }, "type": "array" }, "NotResources": { "items": { "type": "string" }, "type": "array" }, "Resources": { "items": { "type": "string" }, "type": "array" }, "SelectionName": { "type": "string" } }, "required": [ "IamRoleArn", "SelectionName" ], "type": "object" }, "AWS::Backup::BackupSelection.ConditionParameter": { "additionalProperties": false, "properties": { "ConditionKey": { "type": "string" }, "ConditionValue": { "type": "string" } }, "type": "object" }, "AWS::Backup::BackupSelection.ConditionResourceType": { "additionalProperties": false, "properties": { "ConditionKey": { "type": "string" }, "ConditionType": { "type": "string" }, "ConditionValue": { "type": "string" } }, "required": [ "ConditionKey", "ConditionType", "ConditionValue" ], "type": "object" }, "AWS::Backup::BackupSelection.Conditions": { "additionalProperties": false, "properties": { "StringEquals": { "items": { "$ref": "#/definitions/AWS::Backup::BackupSelection.ConditionParameter" }, "type": "array" }, "StringLike": { "items": { "$ref": "#/definitions/AWS::Backup::BackupSelection.ConditionParameter" }, "type": "array" }, "StringNotEquals": { "items": { "$ref": "#/definitions/AWS::Backup::BackupSelection.ConditionParameter" }, "type": "array" }, "StringNotLike": { "items": { "$ref": "#/definitions/AWS::Backup::BackupSelection.ConditionParameter" }, "type": "array" } }, "type": "object" }, "AWS::Backup::BackupVault": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AccessPolicy": { "type": "object" }, "BackupVaultName": { "type": "string" }, "BackupVaultTags": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" }, "EncryptionKeyArn": { "type": "string" }, "LockConfiguration": { "$ref": "#/definitions/AWS::Backup::BackupVault.LockConfigurationType" }, "Notifications": { "$ref": "#/definitions/AWS::Backup::BackupVault.NotificationObjectType" } }, "required": [ "BackupVaultName" ], "type": "object" }, "Type": { "enum": [ "AWS::Backup::BackupVault" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Backup::BackupVault.LockConfigurationType": { "additionalProperties": false, "properties": { "ChangeableForDays": { "type": "number" }, "MaxRetentionDays": { "type": "number" }, "MinRetentionDays": { "type": "number" } }, "required": [ "MinRetentionDays" ], "type": "object" }, "AWS::Backup::BackupVault.NotificationObjectType": { "additionalProperties": false, "properties": { "BackupVaultEvents": { "items": { "type": "string" }, "type": "array" }, "SNSTopicArn": { "type": "string" } }, "required": [ "BackupVaultEvents", "SNSTopicArn" ], "type": "object" }, "AWS::Backup::Framework": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "FrameworkControls": { "items": { "$ref": "#/definitions/AWS::Backup::Framework.FrameworkControl" }, "type": "array" }, "FrameworkDescription": { "type": "string" }, "FrameworkName": { "type": "string" }, "FrameworkTags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "FrameworkControls" ], "type": "object" }, "Type": { "enum": [ "AWS::Backup::Framework" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Backup::Framework.ControlInputParameter": { "additionalProperties": false, "properties": { "ParameterName": { "type": "string" }, "ParameterValue": { "type": "string" } }, "required": [ "ParameterName", "ParameterValue" ], "type": "object" }, "AWS::Backup::Framework.ControlScope": { "additionalProperties": false, "properties": { "ComplianceResourceIds": { "items": { "type": "string" }, "type": "array" }, "ComplianceResourceTypes": { "items": { "type": "string" }, "type": "array" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "type": "object" }, "AWS::Backup::Framework.FrameworkControl": { "additionalProperties": false, "properties": { "ControlInputParameters": { "items": { "$ref": "#/definitions/AWS::Backup::Framework.ControlInputParameter" }, "type": "array" }, "ControlName": { "type": "string" }, "ControlScope": { "$ref": "#/definitions/AWS::Backup::Framework.ControlScope" } }, "required": [ "ControlName" ], "type": "object" }, "AWS::Backup::ReportPlan": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ReportDeliveryChannel": { "$ref": "#/definitions/AWS::Backup::ReportPlan.ReportDeliveryChannel" }, "ReportPlanDescription": { "type": "string" }, "ReportPlanName": { "type": "string" }, "ReportPlanTags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "ReportSetting": { "$ref": "#/definitions/AWS::Backup::ReportPlan.ReportSetting" } }, "required": [ "ReportDeliveryChannel", "ReportSetting" ], "type": "object" }, "Type": { "enum": [ "AWS::Backup::ReportPlan" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Backup::ReportPlan.ReportDeliveryChannel": { "additionalProperties": false, "properties": { "Formats": { "items": { "type": "string" }, "type": "array" }, "S3BucketName": { "type": "string" }, "S3KeyPrefix": { "type": "string" } }, "required": [ "S3BucketName" ], "type": "object" }, "AWS::Backup::ReportPlan.ReportSetting": { "additionalProperties": false, "properties": { "Accounts": { "items": { "type": "string" }, "type": "array" }, "FrameworkArns": { "items": { "type": "string" }, "type": "array" }, "OrganizationUnits": { "items": { "type": "string" }, "type": "array" }, "Regions": { "items": { "type": "string" }, "type": "array" }, "ReportTemplate": { "type": "string" } }, "required": [ "ReportTemplate" ], "type": "object" }, "AWS::BackupGateway::Hypervisor": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Host": { "type": "string" }, "KmsKeyArn": { "type": "string" }, "LogGroupArn": { "type": "string" }, "Name": { "type": "string" }, "Password": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "Username": { "type": "string" } }, "type": "object" }, "Type": { "enum": [ "AWS::BackupGateway::Hypervisor" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::Batch::ComputeEnvironment": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ComputeEnvironmentName": { "type": "string" }, "ComputeResources": { "$ref": "#/definitions/AWS::Batch::ComputeEnvironment.ComputeResources" }, "EksConfiguration": { "$ref": "#/definitions/AWS::Batch::ComputeEnvironment.EksConfiguration" }, "ReplaceComputeEnvironment": { "type": "boolean" }, "ServiceRole": { "type": "string" }, "State": { "type": "string" }, "Tags": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" }, "Type": { "type": "string" }, "UnmanagedvCpus": { "type": "number" }, "UpdatePolicy": { "$ref": "#/definitions/AWS::Batch::ComputeEnvironment.UpdatePolicy" } }, "required": [ "Type" ], "type": "object" }, "Type": { "enum": [ "AWS::Batch::ComputeEnvironment" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Batch::ComputeEnvironment.ComputeResources": { "additionalProperties": false, "properties": { "AllocationStrategy": { "type": "string" }, "BidPercentage": { "type": "number" }, "DesiredvCpus": { "type": "number" }, "Ec2Configuration": { "items": { "$ref": "#/definitions/AWS::Batch::ComputeEnvironment.Ec2ConfigurationObject" }, "type": "array" }, "Ec2KeyPair": { "type": "string" }, "ImageId": { "type": "string" }, "InstanceRole": { "type": "string" }, "InstanceTypes": { "items": { "type": "string" }, "type": "array" }, "LaunchTemplate": { "$ref": "#/definitions/AWS::Batch::ComputeEnvironment.LaunchTemplateSpecification" }, "MaxvCpus": { "type": "number" }, "MinvCpus": { "type": "number" }, "PlacementGroup": { "type": "string" }, "SecurityGroupIds": { "items": { "type": "string" }, "type": "array" }, "SpotIamFleetRole": { "type": "string" }, "Subnets": { "items": { "type": "string" }, "type": "array" }, "Tags": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" }, "Type": { "type": "string" }, "UpdateToLatestImageVersion": { "type": "boolean" } }, "required": [ "MaxvCpus", "Subnets", "Type" ], "type": "object" }, "AWS::Batch::ComputeEnvironment.Ec2ConfigurationObject": { "additionalProperties": false, "properties": { "ImageIdOverride": { "type": "string" }, "ImageKubernetesVersion": { "type": "string" }, "ImageType": { "type": "string" } }, "required": [ "ImageType" ], "type": "object" }, "AWS::Batch::ComputeEnvironment.EksConfiguration": { "additionalProperties": false, "properties": { "EksClusterArn": { "type": "string" }, "KubernetesNamespace": { "type": "string" } }, "required": [ "EksClusterArn", "KubernetesNamespace" ], "type": "object" }, "AWS::Batch::ComputeEnvironment.LaunchTemplateSpecification": { "additionalProperties": false, "properties": { "LaunchTemplateId": { "type": "string" }, "LaunchTemplateName": { "type": "string" }, "Version": { "type": "string" } }, "type": "object" }, "AWS::Batch::ComputeEnvironment.UpdatePolicy": { "additionalProperties": false, "properties": { "JobExecutionTimeoutMinutes": { "type": "number" }, "TerminateJobsOnUpdate": { "type": "boolean" } }, "type": "object" }, "AWS::Batch::JobDefinition": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ContainerProperties": { "$ref": "#/definitions/AWS::Batch::JobDefinition.ContainerProperties" }, "EksProperties": { "$ref": "#/definitions/AWS::Batch::JobDefinition.EksProperties" }, "JobDefinitionName": { "type": "string" }, "NodeProperties": { "$ref": "#/definitions/AWS::Batch::JobDefinition.NodeProperties" }, "Parameters": { "type": "object" }, "PlatformCapabilities": { "items": { "type": "string" }, "type": "array" }, "PropagateTags": { "type": "boolean" }, "RetryStrategy": { "$ref": "#/definitions/AWS::Batch::JobDefinition.RetryStrategy" }, "SchedulingPriority": { "type": "number" }, "Tags": { "type": "object" }, "Timeout": { "$ref": "#/definitions/AWS::Batch::JobDefinition.Timeout" }, "Type": { "type": "string" } }, "required": [ "Type" ], "type": "object" }, "Type": { "enum": [ "AWS::Batch::JobDefinition" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Batch::JobDefinition.AuthorizationConfig": { "additionalProperties": false, "properties": { "AccessPointId": { "type": "string" }, "Iam": { "type": "string" } }, "type": "object" }, "AWS::Batch::JobDefinition.ContainerProperties": { "additionalProperties": false, "properties": { "Command": { "items": { "type": "string" }, "type": "array" }, "Environment": { "items": { "$ref": "#/definitions/AWS::Batch::JobDefinition.Environment" }, "type": "array" }, "EphemeralStorage": { "$ref": "#/definitions/AWS::Batch::JobDefinition.EphemeralStorage" }, "ExecutionRoleArn": { "type": "string" }, "FargatePlatformConfiguration": { "$ref": "#/definitions/AWS::Batch::JobDefinition.FargatePlatformConfiguration" }, "Image": { "type": "string" }, "InstanceType": { "type": "string" }, "JobRoleArn": { "type": "string" }, "LinuxParameters": { "$ref": "#/definitions/AWS::Batch::JobDefinition.LinuxParameters" }, "LogConfiguration": { "$ref": "#/definitions/AWS::Batch::JobDefinition.LogConfiguration" }, "Memory": { "type": "number" }, "MountPoints": { "items": { "$ref": "#/definitions/AWS::Batch::JobDefinition.MountPoints" }, "type": "array" }, "NetworkConfiguration": { "$ref": "#/definitions/AWS::Batch::JobDefinition.NetworkConfiguration" }, "Privileged": { "type": "boolean" }, "ReadonlyRootFilesystem": { "type": "boolean" }, "ResourceRequirements": { "items": { "$ref": "#/definitions/AWS::Batch::JobDefinition.ResourceRequirement" }, "type": "array" }, "RuntimePlatform": { "$ref": "#/definitions/AWS::Batch::JobDefinition.RuntimePlatform" }, "Secrets": { "items": { "$ref": "#/definitions/AWS::Batch::JobDefinition.Secret" }, "type": "array" }, "Ulimits": { "items": { "$ref": "#/definitions/AWS::Batch::JobDefinition.Ulimit" }, "type": "array" }, "User": { "type": "string" }, "Vcpus": { "type": "number" }, "Volumes": { "items": { "$ref": "#/definitions/AWS::Batch::JobDefinition.Volumes" }, "type": "array" } }, "required": [ "Image" ], "type": "object" }, "AWS::Batch::JobDefinition.Device": { "additionalProperties": false, "properties": { "ContainerPath": { "type": "string" }, "HostPath": { "type": "string" }, "Permissions": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::Batch::JobDefinition.EfsVolumeConfiguration": { "additionalProperties": false, "properties": { "AuthorizationConfig": { "$ref": "#/definitions/AWS::Batch::JobDefinition.AuthorizationConfig" }, "FileSystemId": { "type": "string" }, "RootDirectory": { "type": "string" }, "TransitEncryption": { "type": "string" }, "TransitEncryptionPort": { "type": "number" } }, "required": [ "FileSystemId" ], "type": "object" }, "AWS::Batch::JobDefinition.EksContainer": { "additionalProperties": false, "properties": { "Args": { "items": { "type": "string" }, "type": "array" }, "Command": { "items": { "type": "string" }, "type": "array" }, "Env": { "items": { "$ref": "#/definitions/AWS::Batch::JobDefinition.EksContainerEnvironmentVariable" }, "type": "array" }, "Image": { "type": "string" }, "ImagePullPolicy": { "type": "string" }, "Name": { "type": "string" }, "Resources": { "$ref": "#/definitions/AWS::Batch::JobDefinition.EksContainerResourceRequirements" }, "SecurityContext": { "$ref": "#/definitions/AWS::Batch::JobDefinition.EksContainerSecurityContext" }, "VolumeMounts": { "items": { "$ref": "#/definitions/AWS::Batch::JobDefinition.EksContainerVolumeMount" }, "type": "array" } }, "required": [ "Image" ], "type": "object" }, "AWS::Batch::JobDefinition.EksContainerEnvironmentVariable": { "additionalProperties": false, "properties": { "Name": { "type": "string" }, "Value": { "type": "string" } }, "required": [ "Name" ], "type": "object" }, "AWS::Batch::JobDefinition.EksContainerResourceRequirements": { "additionalProperties": false, "properties": { "Limits": { "type": "object" }, "Requests": { "type": "object" } }, "type": "object" }, "AWS::Batch::JobDefinition.EksContainerSecurityContext": { "additionalProperties": false, "properties": { "Privileged": { "type": "boolean" }, "ReadOnlyRootFilesystem": { "type": "boolean" }, "RunAsGroup": { "type": "number" }, "RunAsNonRoot": { "type": "boolean" }, "RunAsUser": { "type": "number" } }, "type": "object" }, "AWS::Batch::JobDefinition.EksContainerVolumeMount": { "additionalProperties": false, "properties": { "MountPath": { "type": "string" }, "Name": { "type": "string" }, "ReadOnly": { "type": "boolean" } }, "type": "object" }, "AWS::Batch::JobDefinition.EksEmptyDir": { "additionalProperties": false, "properties": { "Medium": { "type": "string" }, "SizeLimit": { "type": "string" } }, "type": "object" }, "AWS::Batch::JobDefinition.EksHostPath": { "additionalProperties": false, "properties": { "Path": { "type": "string" } }, "type": "object" }, "AWS::Batch::JobDefinition.EksProperties": { "additionalProperties": false, "properties": { "PodProperties": { "$ref": "#/definitions/AWS::Batch::JobDefinition.PodProperties" } }, "type": "object" }, "AWS::Batch::JobDefinition.EksSecret": { "additionalProperties": false, "properties": { "Optional": { "type": "boolean" }, "SecretName": { "type": "string" } }, "required": [ "SecretName" ], "type": "object" }, "AWS::Batch::JobDefinition.EksVolume": { "additionalProperties": false, "properties": { "EmptyDir": { "$ref": "#/definitions/AWS::Batch::JobDefinition.EksEmptyDir" }, "HostPath": { "$ref": "#/definitions/AWS::Batch::JobDefinition.EksHostPath" }, "Name": { "type": "string" }, "Secret": { "$ref": "#/definitions/AWS::Batch::JobDefinition.EksSecret" } }, "required": [ "Name" ], "type": "object" }, "AWS::Batch::JobDefinition.Environment": { "additionalProperties": false, "properties": { "Name": { "type": "string" }, "Value": { "type": "string" } }, "type": "object" }, "AWS::Batch::JobDefinition.EphemeralStorage": { "additionalProperties": false, "properties": { "SizeInGiB": { "type": "number" } }, "required": [ "SizeInGiB" ], "type": "object" }, "AWS::Batch::JobDefinition.EvaluateOnExit": { "additionalProperties": false, "properties": { "Action": { "type": "string" }, "OnExitCode": { "type": "string" }, "OnReason": { "type": "string" }, "OnStatusReason": { "type": "string" } }, "required": [ "Action" ], "type": "object" }, "AWS::Batch::JobDefinition.FargatePlatformConfiguration": { "additionalProperties": false, "properties": { "PlatformVersion": { "type": "string" } }, "type": "object" }, "AWS::Batch::JobDefinition.LinuxParameters": { "additionalProperties": false, "properties": { "Devices": { "items": { "$ref": "#/definitions/AWS::Batch::JobDefinition.Device" }, "type": "array" }, "InitProcessEnabled": { "type": "boolean" }, "MaxSwap": { "type": "number" }, "SharedMemorySize": { "type": "number" }, "Swappiness": { "type": "number" }, "Tmpfs": { "items": { "$ref": "#/definitions/AWS::Batch::JobDefinition.Tmpfs" }, "type": "array" } }, "type": "object" }, "AWS::Batch::JobDefinition.LogConfiguration": { "additionalProperties": false, "properties": { "LogDriver": { "type": "string" }, "Options": { "type": "object" }, "SecretOptions": { "items": { "$ref": "#/definitions/AWS::Batch::JobDefinition.Secret" }, "type": "array" } }, "required": [ "LogDriver" ], "type": "object" }, "AWS::Batch::JobDefinition.Metadata": { "additionalProperties": false, "properties": { "Labels": { "type": "object" } }, "type": "object" }, "AWS::Batch::JobDefinition.MountPoints": { "additionalProperties": false, "properties": { "ContainerPath": { "type": "string" }, "ReadOnly": { "type": "boolean" }, "SourceVolume": { "type": "string" } }, "type": "object" }, "AWS::Batch::JobDefinition.NetworkConfiguration": { "additionalProperties": false, "properties": { "AssignPublicIp": { "type": "string" } }, "type": "object" }, "AWS::Batch::JobDefinition.NodeProperties": { "additionalProperties": false, "properties": { "MainNode": { "type": "number" }, "NodeRangeProperties": { "items": { "$ref": "#/definitions/AWS::Batch::JobDefinition.NodeRangeProperty" }, "type": "array" }, "NumNodes": { "type": "number" } }, "required": [ "MainNode", "NodeRangeProperties", "NumNodes" ], "type": "object" }, "AWS::Batch::JobDefinition.NodeRangeProperty": { "additionalProperties": false, "properties": { "Container": { "$ref": "#/definitions/AWS::Batch::JobDefinition.ContainerProperties" }, "TargetNodes": { "type": "string" } }, "required": [ "TargetNodes" ], "type": "object" }, "AWS::Batch::JobDefinition.PodProperties": { "additionalProperties": false, "properties": { "Containers": { "items": { "$ref": "#/definitions/AWS::Batch::JobDefinition.EksContainer" }, "type": "array" }, "DnsPolicy": { "type": "string" }, "HostNetwork": { "type": "boolean" }, "Metadata": { "$ref": "#/definitions/AWS::Batch::JobDefinition.Metadata" }, "ServiceAccountName": { "type": "string" }, "Volumes": { "items": { "$ref": "#/definitions/AWS::Batch::JobDefinition.EksVolume" }, "type": "array" } }, "type": "object" }, "AWS::Batch::JobDefinition.ResourceRequirement": { "additionalProperties": false, "properties": { "Type": { "type": "string" }, "Value": { "type": "string" } }, "type": "object" }, "AWS::Batch::JobDefinition.RetryStrategy": { "additionalProperties": false, "properties": { "Attempts": { "type": "number" }, "EvaluateOnExit": { "items": { "$ref": "#/definitions/AWS::Batch::JobDefinition.EvaluateOnExit" }, "type": "array" } }, "type": "object" }, "AWS::Batch::JobDefinition.RuntimePlatform": { "additionalProperties": false, "properties": { "CpuArchitecture": { "type": "string" }, "OperatingSystemFamily": { "type": "string" } }, "type": "object" }, "AWS::Batch::JobDefinition.Secret": { "additionalProperties": false, "properties": { "Name": { "type": "string" }, "ValueFrom": { "type": "string" } }, "required": [ "Name", "ValueFrom" ], "type": "object" }, "AWS::Batch::JobDefinition.Timeout": { "additionalProperties": false, "properties": { "AttemptDurationSeconds": { "type": "number" } }, "type": "object" }, "AWS::Batch::JobDefinition.Tmpfs": { "additionalProperties": false, "properties": { "ContainerPath": { "type": "string" }, "MountOptions": { "items": { "type": "string" }, "type": "array" }, "Size": { "type": "number" } }, "required": [ "ContainerPath", "Size" ], "type": "object" }, "AWS::Batch::JobDefinition.Ulimit": { "additionalProperties": false, "properties": { "HardLimit": { "type": "number" }, "Name": { "type": "string" }, "SoftLimit": { "type": "number" } }, "required": [ "HardLimit", "Name", "SoftLimit" ], "type": "object" }, "AWS::Batch::JobDefinition.Volumes": { "additionalProperties": false, "properties": { "EfsVolumeConfiguration": { "$ref": "#/definitions/AWS::Batch::JobDefinition.EfsVolumeConfiguration" }, "Host": { "$ref": "#/definitions/AWS::Batch::JobDefinition.VolumesHost" }, "Name": { "type": "string" } }, "type": "object" }, "AWS::Batch::JobDefinition.VolumesHost": { "additionalProperties": false, "properties": { "SourcePath": { "type": "string" } }, "type": "object" }, "AWS::Batch::JobQueue": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ComputeEnvironmentOrder": { "items": { "$ref": "#/definitions/AWS::Batch::JobQueue.ComputeEnvironmentOrder" }, "type": "array" }, "JobQueueName": { "type": "string" }, "Priority": { "type": "number" }, "SchedulingPolicyArn": { "type": "string" }, "State": { "type": "string" }, "Tags": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" } }, "required": [ "ComputeEnvironmentOrder", "Priority" ], "type": "object" }, "Type": { "enum": [ "AWS::Batch::JobQueue" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Batch::JobQueue.ComputeEnvironmentOrder": { "additionalProperties": false, "properties": { "ComputeEnvironment": { "type": "string" }, "Order": { "type": "number" } }, "required": [ "ComputeEnvironment", "Order" ], "type": "object" }, "AWS::Batch::SchedulingPolicy": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "FairsharePolicy": { "$ref": "#/definitions/AWS::Batch::SchedulingPolicy.FairsharePolicy" }, "Name": { "type": "string" }, "Tags": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" } }, "type": "object" }, "Type": { "enum": [ "AWS::Batch::SchedulingPolicy" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::Batch::SchedulingPolicy.FairsharePolicy": { "additionalProperties": false, "properties": { "ComputeReservation": { "type": "number" }, "ShareDecaySeconds": { "type": "number" }, "ShareDistribution": { "items": { "$ref": "#/definitions/AWS::Batch::SchedulingPolicy.ShareAttributes" }, "type": "array" } }, "type": "object" }, "AWS::Batch::SchedulingPolicy.ShareAttributes": { "additionalProperties": false, "properties": { "ShareIdentifier": { "type": "string" }, "WeightFactor": { "type": "number" } }, "type": "object" }, "AWS::BillingConductor::BillingGroup": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AccountGrouping": { "$ref": "#/definitions/AWS::BillingConductor::BillingGroup.AccountGrouping" }, "ComputationPreference": { "$ref": "#/definitions/AWS::BillingConductor::BillingGroup.ComputationPreference" }, "Description": { "type": "string" }, "Name": { "type": "string" }, "PrimaryAccountId": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "AccountGrouping", "ComputationPreference", "Name", "PrimaryAccountId" ], "type": "object" }, "Type": { "enum": [ "AWS::BillingConductor::BillingGroup" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::BillingConductor::BillingGroup.AccountGrouping": { "additionalProperties": false, "properties": { "AutoAssociate": { "type": "boolean" }, "LinkedAccountIds": { "items": { "type": "string" }, "type": "array" } }, "required": [ "LinkedAccountIds" ], "type": "object" }, "AWS::BillingConductor::BillingGroup.ComputationPreference": { "additionalProperties": false, "properties": { "PricingPlanArn": { "type": "string" } }, "required": [ "PricingPlanArn" ], "type": "object" }, "AWS::BillingConductor::CustomLineItem": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "BillingGroupArn": { "type": "string" }, "BillingPeriodRange": { "$ref": "#/definitions/AWS::BillingConductor::CustomLineItem.BillingPeriodRange" }, "CustomLineItemChargeDetails": { "$ref": "#/definitions/AWS::BillingConductor::CustomLineItem.CustomLineItemChargeDetails" }, "Description": { "type": "string" }, "Name": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "BillingGroupArn", "Name" ], "type": "object" }, "Type": { "enum": [ "AWS::BillingConductor::CustomLineItem" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::BillingConductor::CustomLineItem.BillingPeriodRange": { "additionalProperties": false, "properties": { "ExclusiveEndBillingPeriod": { "type": "string" }, "InclusiveStartBillingPeriod": { "type": "string" } }, "type": "object" }, "AWS::BillingConductor::CustomLineItem.CustomLineItemChargeDetails": { "additionalProperties": false, "properties": { "Flat": { "$ref": "#/definitions/AWS::BillingConductor::CustomLineItem.CustomLineItemFlatChargeDetails" }, "Percentage": { "$ref": "#/definitions/AWS::BillingConductor::CustomLineItem.CustomLineItemPercentageChargeDetails" }, "Type": { "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::BillingConductor::CustomLineItem.CustomLineItemFlatChargeDetails": { "additionalProperties": false, "properties": { "ChargeValue": { "type": "number" } }, "required": [ "ChargeValue" ], "type": "object" }, "AWS::BillingConductor::CustomLineItem.CustomLineItemPercentageChargeDetails": { "additionalProperties": false, "properties": { "ChildAssociatedResources": { "items": { "type": "string" }, "type": "array" }, "PercentageValue": { "type": "number" } }, "required": [ "PercentageValue" ], "type": "object" }, "AWS::BillingConductor::PricingPlan": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "Name": { "type": "string" }, "PricingRuleArns": { "items": { "type": "string" }, "type": "array" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "Name" ], "type": "object" }, "Type": { "enum": [ "AWS::BillingConductor::PricingPlan" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::BillingConductor::PricingRule": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "BillingEntity": { "type": "string" }, "Description": { "type": "string" }, "ModifierPercentage": { "type": "number" }, "Name": { "type": "string" }, "Operation": { "type": "string" }, "Scope": { "type": "string" }, "Service": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "Tiering": { "$ref": "#/definitions/AWS::BillingConductor::PricingRule.Tiering" }, "Type": { "type": "string" }, "UsageType": { "type": "string" } }, "required": [ "Name", "Scope", "Type" ], "type": "object" }, "Type": { "enum": [ "AWS::BillingConductor::PricingRule" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::BillingConductor::PricingRule.FreeTier": { "additionalProperties": false, "properties": { "Activated": { "type": "boolean" } }, "required": [ "Activated" ], "type": "object" }, "AWS::BillingConductor::PricingRule.Tiering": { "additionalProperties": false, "properties": { "FreeTier": { "$ref": "#/definitions/AWS::BillingConductor::PricingRule.FreeTier" } }, "type": "object" }, "AWS::Budgets::Budget": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Budget": { "$ref": "#/definitions/AWS::Budgets::Budget.BudgetData" }, "NotificationsWithSubscribers": { "items": { "$ref": "#/definitions/AWS::Budgets::Budget.NotificationWithSubscribers" }, "type": "array" } }, "required": [ "Budget" ], "type": "object" }, "Type": { "enum": [ "AWS::Budgets::Budget" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Budgets::Budget.AutoAdjustData": { "additionalProperties": false, "properties": { "AutoAdjustType": { "type": "string" }, "HistoricalOptions": { "$ref": "#/definitions/AWS::Budgets::Budget.HistoricalOptions" } }, "required": [ "AutoAdjustType" ], "type": "object" }, "AWS::Budgets::Budget.BudgetData": { "additionalProperties": false, "properties": { "AutoAdjustData": { "$ref": "#/definitions/AWS::Budgets::Budget.AutoAdjustData" }, "BudgetLimit": { "$ref": "#/definitions/AWS::Budgets::Budget.Spend" }, "BudgetName": { "type": "string" }, "BudgetType": { "type": "string" }, "CostFilters": { "type": "object" }, "CostTypes": { "$ref": "#/definitions/AWS::Budgets::Budget.CostTypes" }, "PlannedBudgetLimits": { "type": "object" }, "TimePeriod": { "$ref": "#/definitions/AWS::Budgets::Budget.TimePeriod" }, "TimeUnit": { "type": "string" } }, "required": [ "BudgetType", "TimeUnit" ], "type": "object" }, "AWS::Budgets::Budget.CostTypes": { "additionalProperties": false, "properties": { "IncludeCredit": { "type": "boolean" }, "IncludeDiscount": { "type": "boolean" }, "IncludeOtherSubscription": { "type": "boolean" }, "IncludeRecurring": { "type": "boolean" }, "IncludeRefund": { "type": "boolean" }, "IncludeSubscription": { "type": "boolean" }, "IncludeSupport": { "type": "boolean" }, "IncludeTax": { "type": "boolean" }, "IncludeUpfront": { "type": "boolean" }, "UseAmortized": { "type": "boolean" }, "UseBlended": { "type": "boolean" } }, "type": "object" }, "AWS::Budgets::Budget.HistoricalOptions": { "additionalProperties": false, "properties": { "BudgetAdjustmentPeriod": { "type": "number" } }, "required": [ "BudgetAdjustmentPeriod" ], "type": "object" }, "AWS::Budgets::Budget.Notification": { "additionalProperties": false, "properties": { "ComparisonOperator": { "type": "string" }, "NotificationType": { "type": "string" }, "Threshold": { "type": "number" }, "ThresholdType": { "type": "string" } }, "required": [ "ComparisonOperator", "NotificationType", "Threshold" ], "type": "object" }, "AWS::Budgets::Budget.NotificationWithSubscribers": { "additionalProperties": false, "properties": { "Notification": { "$ref": "#/definitions/AWS::Budgets::Budget.Notification" }, "Subscribers": { "items": { "$ref": "#/definitions/AWS::Budgets::Budget.Subscriber" }, "type": "array" } }, "required": [ "Notification", "Subscribers" ], "type": "object" }, "AWS::Budgets::Budget.Spend": { "additionalProperties": false, "properties": { "Amount": { "type": "number" }, "Unit": { "type": "string" } }, "required": [ "Amount", "Unit" ], "type": "object" }, "AWS::Budgets::Budget.Subscriber": { "additionalProperties": false, "properties": { "Address": { "type": "string" }, "SubscriptionType": { "type": "string" } }, "required": [ "Address", "SubscriptionType" ], "type": "object" }, "AWS::Budgets::Budget.TimePeriod": { "additionalProperties": false, "properties": { "End": { "type": "string" }, "Start": { "type": "string" } }, "type": "object" }, "AWS::Budgets::BudgetsAction": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ActionThreshold": { "$ref": "#/definitions/AWS::Budgets::BudgetsAction.ActionThreshold" }, "ActionType": { "type": "string" }, "ApprovalModel": { "type": "string" }, "BudgetName": { "type": "string" }, "Definition": { "$ref": "#/definitions/AWS::Budgets::BudgetsAction.Definition" }, "ExecutionRoleArn": { "type": "string" }, "NotificationType": { "type": "string" }, "Subscribers": { "items": { "$ref": "#/definitions/AWS::Budgets::BudgetsAction.Subscriber" }, "type": "array" } }, "required": [ "ActionThreshold", "ActionType", "BudgetName", "Definition", "ExecutionRoleArn", "NotificationType", "Subscribers" ], "type": "object" }, "Type": { "enum": [ "AWS::Budgets::BudgetsAction" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Budgets::BudgetsAction.ActionThreshold": { "additionalProperties": false, "properties": { "Type": { "type": "string" }, "Value": { "type": "number" } }, "required": [ "Type", "Value" ], "type": "object" }, "AWS::Budgets::BudgetsAction.Definition": { "additionalProperties": false, "properties": { "IamActionDefinition": { "$ref": "#/definitions/AWS::Budgets::BudgetsAction.IamActionDefinition" }, "ScpActionDefinition": { "$ref": "#/definitions/AWS::Budgets::BudgetsAction.ScpActionDefinition" }, "SsmActionDefinition": { "$ref": "#/definitions/AWS::Budgets::BudgetsAction.SsmActionDefinition" } }, "type": "object" }, "AWS::Budgets::BudgetsAction.IamActionDefinition": { "additionalProperties": false, "properties": { "Groups": { "items": { "type": "string" }, "type": "array" }, "PolicyArn": { "type": "string" }, "Roles": { "items": { "type": "string" }, "type": "array" }, "Users": { "items": { "type": "string" }, "type": "array" } }, "required": [ "PolicyArn" ], "type": "object" }, "AWS::Budgets::BudgetsAction.ScpActionDefinition": { "additionalProperties": false, "properties": { "PolicyId": { "type": "string" }, "TargetIds": { "items": { "type": "string" }, "type": "array" } }, "required": [ "PolicyId", "TargetIds" ], "type": "object" }, "AWS::Budgets::BudgetsAction.SsmActionDefinition": { "additionalProperties": false, "properties": { "InstanceIds": { "items": { "type": "string" }, "type": "array" }, "Region": { "type": "string" }, "Subtype": { "type": "string" } }, "required": [ "InstanceIds", "Region", "Subtype" ], "type": "object" }, "AWS::Budgets::BudgetsAction.Subscriber": { "additionalProperties": false, "properties": { "Address": { "type": "string" }, "Type": { "type": "string" } }, "required": [ "Address", "Type" ], "type": "object" }, "AWS::CE::AnomalyMonitor": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "MonitorDimension": { "type": "string" }, "MonitorName": { "type": "string" }, "MonitorSpecification": { "type": "string" }, "MonitorType": { "type": "string" }, "ResourceTags": { "items": { "$ref": "#/definitions/AWS::CE::AnomalyMonitor.ResourceTag" }, "type": "array" } }, "required": [ "MonitorName", "MonitorType" ], "type": "object" }, "Type": { "enum": [ "AWS::CE::AnomalyMonitor" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::CE::AnomalyMonitor.ResourceTag": { "additionalProperties": false, "properties": { "Key": { "type": "string" }, "Value": { "type": "string" } }, "required": [ "Key", "Value" ], "type": "object" }, "AWS::CE::AnomalySubscription": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Frequency": { "type": "string" }, "MonitorArnList": { "items": { "type": "string" }, "type": "array" }, "ResourceTags": { "items": { "$ref": "#/definitions/AWS::CE::AnomalySubscription.ResourceTag" }, "type": "array" }, "Subscribers": { "items": { "$ref": "#/definitions/AWS::CE::AnomalySubscription.Subscriber" }, "type": "array" }, "SubscriptionName": { "type": "string" }, "Threshold": { "type": "number" }, "ThresholdExpression": { "type": "string" } }, "required": [ "Frequency", "MonitorArnList", "Subscribers", "SubscriptionName" ], "type": "object" }, "Type": { "enum": [ "AWS::CE::AnomalySubscription" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::CE::AnomalySubscription.ResourceTag": { "additionalProperties": false, "properties": { "Key": { "type": "string" }, "Value": { "type": "string" } }, "required": [ "Key", "Value" ], "type": "object" }, "AWS::CE::AnomalySubscription.Subscriber": { "additionalProperties": false, "properties": { "Address": { "type": "string" }, "Status": { "type": "string" }, "Type": { "type": "string" } }, "required": [ "Address", "Type" ], "type": "object" }, "AWS::CE::CostCategory": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "DefaultValue": { "type": "string" }, "Name": { "type": "string" }, "RuleVersion": { "type": "string" }, "Rules": { "type": "string" }, "SplitChargeRules": { "type": "string" } }, "required": [ "Name", "RuleVersion", "Rules" ], "type": "object" }, "Type": { "enum": [ "AWS::CE::CostCategory" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::CUR::ReportDefinition": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AdditionalArtifacts": { "items": { "type": "string" }, "type": "array" }, "AdditionalSchemaElements": { "items": { "type": "string" }, "type": "array" }, "BillingViewArn": { "type": "string" }, "Compression": { "type": "string" }, "Format": { "type": "string" }, "RefreshClosedReports": { "type": "boolean" }, "ReportName": { "type": "string" }, "ReportVersioning": { "type": "string" }, "S3Bucket": { "type": "string" }, "S3Prefix": { "type": "string" }, "S3Region": { "type": "string" }, "TimeUnit": { "type": "string" } }, "required": [ "Compression", "Format", "RefreshClosedReports", "ReportName", "ReportVersioning", "S3Bucket", "S3Prefix", "S3Region", "TimeUnit" ], "type": "object" }, "Type": { "enum": [ "AWS::CUR::ReportDefinition" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Cassandra::Keyspace": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "KeyspaceName": { "type": "string" }, "ReplicationSpecification": { "$ref": "#/definitions/AWS::Cassandra::Keyspace.ReplicationSpecification" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "type": "object" }, "Type": { "enum": [ "AWS::Cassandra::Keyspace" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::Cassandra::Keyspace.ReplicationSpecification": { "additionalProperties": false, "properties": { "RegionList": { "items": { "type": "string" }, "type": "array" }, "ReplicationStrategy": { "type": "string" } }, "type": "object" }, "AWS::Cassandra::Table": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "BillingMode": { "$ref": "#/definitions/AWS::Cassandra::Table.BillingMode" }, "ClientSideTimestampsEnabled": { "type": "boolean" }, "ClusteringKeyColumns": { "items": { "$ref": "#/definitions/AWS::Cassandra::Table.ClusteringKeyColumn" }, "type": "array" }, "DefaultTimeToLive": { "type": "number" }, "EncryptionSpecification": { "$ref": "#/definitions/AWS::Cassandra::Table.EncryptionSpecification" }, "KeyspaceName": { "type": "string" }, "PartitionKeyColumns": { "items": { "$ref": "#/definitions/AWS::Cassandra::Table.Column" }, "type": "array" }, "PointInTimeRecoveryEnabled": { "type": "boolean" }, "RegularColumns": { "items": { "$ref": "#/definitions/AWS::Cassandra::Table.Column" }, "type": "array" }, "TableName": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "KeyspaceName", "PartitionKeyColumns" ], "type": "object" }, "Type": { "enum": [ "AWS::Cassandra::Table" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Cassandra::Table.BillingMode": { "additionalProperties": false, "properties": { "Mode": { "type": "string" }, "ProvisionedThroughput": { "$ref": "#/definitions/AWS::Cassandra::Table.ProvisionedThroughput" } }, "required": [ "Mode" ], "type": "object" }, "AWS::Cassandra::Table.ClusteringKeyColumn": { "additionalProperties": false, "properties": { "Column": { "$ref": "#/definitions/AWS::Cassandra::Table.Column" }, "OrderBy": { "type": "string" } }, "required": [ "Column" ], "type": "object" }, "AWS::Cassandra::Table.Column": { "additionalProperties": false, "properties": { "ColumnName": { "type": "string" }, "ColumnType": { "type": "string" } }, "required": [ "ColumnName", "ColumnType" ], "type": "object" }, "AWS::Cassandra::Table.EncryptionSpecification": { "additionalProperties": false, "properties": { "EncryptionType": { "type": "string" }, "KmsKeyIdentifier": { "type": "string" } }, "required": [ "EncryptionType" ], "type": "object" }, "AWS::Cassandra::Table.ProvisionedThroughput": { "additionalProperties": false, "properties": { "ReadCapacityUnits": { "type": "number" }, "WriteCapacityUnits": { "type": "number" } }, "required": [ "ReadCapacityUnits", "WriteCapacityUnits" ], "type": "object" }, "AWS::CertificateManager::Account": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ExpiryEventsConfiguration": { "$ref": "#/definitions/AWS::CertificateManager::Account.ExpiryEventsConfiguration" } }, "required": [ "ExpiryEventsConfiguration" ], "type": "object" }, "Type": { "enum": [ "AWS::CertificateManager::Account" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::CertificateManager::Account.ExpiryEventsConfiguration": { "additionalProperties": false, "properties": { "DaysBeforeExpiry": { "type": "number" } }, "type": "object" }, "AWS::CertificateManager::Certificate": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "CertificateAuthorityArn": { "type": "string" }, "CertificateTransparencyLoggingPreference": { "type": "string" }, "DomainName": { "type": "string" }, "DomainValidationOptions": { "items": { "$ref": "#/definitions/AWS::CertificateManager::Certificate.DomainValidationOption" }, "type": "array" }, "KeyAlgorithm": { "type": "string" }, "SubjectAlternativeNames": { "items": { "type": "string" }, "type": "array" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "ValidationMethod": { "type": "string" } }, "required": [ "DomainName" ], "type": "object" }, "Type": { "enum": [ "AWS::CertificateManager::Certificate" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::CertificateManager::Certificate.DomainValidationOption": { "additionalProperties": false, "properties": { "DomainName": { "type": "string" }, "HostedZoneId": { "type": "string" }, "ValidationDomain": { "type": "string" } }, "required": [ "DomainName" ], "type": "object" }, "AWS::Chatbot::MicrosoftTeamsChannelConfiguration": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ConfigurationName": { "type": "string" }, "GuardrailPolicies": { "items": { "type": "string" }, "type": "array" }, "IamRoleArn": { "type": "string" }, "LoggingLevel": { "type": "string" }, "SnsTopicArns": { "items": { "type": "string" }, "type": "array" }, "TeamId": { "type": "string" }, "TeamsChannelId": { "type": "string" }, "TeamsTenantId": { "type": "string" }, "UserRoleRequired": { "type": "boolean" } }, "required": [ "ConfigurationName", "IamRoleArn", "TeamId", "TeamsChannelId", "TeamsTenantId" ], "type": "object" }, "Type": { "enum": [ "AWS::Chatbot::MicrosoftTeamsChannelConfiguration" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Chatbot::SlackChannelConfiguration": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ConfigurationName": { "type": "string" }, "GuardrailPolicies": { "items": { "type": "string" }, "type": "array" }, "IamRoleArn": { "type": "string" }, "LoggingLevel": { "type": "string" }, "SlackChannelId": { "type": "string" }, "SlackWorkspaceId": { "type": "string" }, "SnsTopicArns": { "items": { "type": "string" }, "type": "array" }, "UserRoleRequired": { "type": "boolean" } }, "required": [ "ConfigurationName", "IamRoleArn", "SlackChannelId", "SlackWorkspaceId" ], "type": "object" }, "Type": { "enum": [ "AWS::Chatbot::SlackChannelConfiguration" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::CleanRooms::Collaboration": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "CreatorDisplayName": { "type": "string" }, "CreatorMemberAbilities": { "items": { "type": "string" }, "type": "array" }, "DataEncryptionMetadata": { "$ref": "#/definitions/AWS::CleanRooms::Collaboration.DataEncryptionMetadata" }, "Description": { "type": "string" }, "Members": { "items": { "$ref": "#/definitions/AWS::CleanRooms::Collaboration.MemberSpecification" }, "type": "array" }, "Name": { "type": "string" }, "QueryLogStatus": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "CreatorDisplayName", "CreatorMemberAbilities", "Description", "Members", "Name", "QueryLogStatus" ], "type": "object" }, "Type": { "enum": [ "AWS::CleanRooms::Collaboration" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::CleanRooms::Collaboration.DataEncryptionMetadata": { "additionalProperties": false, "properties": { "AllowCleartext": { "type": "boolean" }, "AllowDuplicates": { "type": "boolean" }, "AllowJoinsOnColumnsWithDifferentNames": { "type": "boolean" }, "PreserveNulls": { "type": "boolean" } }, "required": [ "AllowCleartext", "AllowDuplicates", "AllowJoinsOnColumnsWithDifferentNames", "PreserveNulls" ], "type": "object" }, "AWS::CleanRooms::Collaboration.MemberSpecification": { "additionalProperties": false, "properties": { "AccountId": { "type": "string" }, "DisplayName": { "type": "string" }, "MemberAbilities": { "items": { "type": "string" }, "type": "array" } }, "required": [ "AccountId", "DisplayName", "MemberAbilities" ], "type": "object" }, "AWS::CleanRooms::ConfiguredTable": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AllowedColumns": { "items": { "type": "string" }, "type": "array" }, "AnalysisMethod": { "type": "string" }, "AnalysisRules": { "items": { "$ref": "#/definitions/AWS::CleanRooms::ConfiguredTable.AnalysisRule" }, "type": "array" }, "Description": { "type": "string" }, "Name": { "type": "string" }, "TableReference": { "$ref": "#/definitions/AWS::CleanRooms::ConfiguredTable.TableReference" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "AllowedColumns", "AnalysisMethod", "Name", "TableReference" ], "type": "object" }, "Type": { "enum": [ "AWS::CleanRooms::ConfiguredTable" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::CleanRooms::ConfiguredTable.AggregateColumn": { "additionalProperties": false, "properties": { "ColumnNames": { "items": { "type": "string" }, "type": "array" }, "Function": { "type": "string" } }, "required": [ "ColumnNames", "Function" ], "type": "object" }, "AWS::CleanRooms::ConfiguredTable.AggregationConstraint": { "additionalProperties": false, "properties": { "ColumnName": { "type": "string" }, "Minimum": { "type": "number" }, "Type": { "type": "string" } }, "required": [ "ColumnName", "Minimum", "Type" ], "type": "object" }, "AWS::CleanRooms::ConfiguredTable.AnalysisRule": { "additionalProperties": false, "properties": { "Policy": { "$ref": "#/definitions/AWS::CleanRooms::ConfiguredTable.ConfiguredTableAnalysisRulePolicy" }, "Type": { "type": "string" } }, "required": [ "Policy", "Type" ], "type": "object" }, "AWS::CleanRooms::ConfiguredTable.AnalysisRuleAggregation": { "additionalProperties": false, "properties": { "AggregateColumns": { "items": { "$ref": "#/definitions/AWS::CleanRooms::ConfiguredTable.AggregateColumn" }, "type": "array" }, "AllowedJoinOperators": { "items": { "type": "string" }, "type": "array" }, "DimensionColumns": { "items": { "type": "string" }, "type": "array" }, "JoinColumns": { "items": { "type": "string" }, "type": "array" }, "JoinRequired": { "type": "string" }, "OutputConstraints": { "items": { "$ref": "#/definitions/AWS::CleanRooms::ConfiguredTable.AggregationConstraint" }, "type": "array" }, "ScalarFunctions": { "items": { "type": "string" }, "type": "array" } }, "required": [ "AggregateColumns", "DimensionColumns", "JoinColumns", "OutputConstraints", "ScalarFunctions" ], "type": "object" }, "AWS::CleanRooms::ConfiguredTable.AnalysisRuleList": { "additionalProperties": false, "properties": { "AllowedJoinOperators": { "items": { "type": "string" }, "type": "array" }, "JoinColumns": { "items": { "type": "string" }, "type": "array" }, "ListColumns": { "items": { "type": "string" }, "type": "array" } }, "required": [ "JoinColumns", "ListColumns" ], "type": "object" }, "AWS::CleanRooms::ConfiguredTable.ConfiguredTableAnalysisRulePolicy": { "additionalProperties": false, "properties": { "V1": { "$ref": "#/definitions/AWS::CleanRooms::ConfiguredTable.ConfiguredTableAnalysisRulePolicyV1" } }, "required": [ "V1" ], "type": "object" }, "AWS::CleanRooms::ConfiguredTable.ConfiguredTableAnalysisRulePolicyV1": { "additionalProperties": false, "properties": { "Aggregation": { "$ref": "#/definitions/AWS::CleanRooms::ConfiguredTable.AnalysisRuleAggregation" }, "List": { "$ref": "#/definitions/AWS::CleanRooms::ConfiguredTable.AnalysisRuleList" } }, "type": "object" }, "AWS::CleanRooms::ConfiguredTable.GlueTableReference": { "additionalProperties": false, "properties": { "DatabaseName": { "type": "string" }, "TableName": { "type": "string" } }, "required": [ "DatabaseName", "TableName" ], "type": "object" }, "AWS::CleanRooms::ConfiguredTable.TableReference": { "additionalProperties": false, "properties": { "Glue": { "$ref": "#/definitions/AWS::CleanRooms::ConfiguredTable.GlueTableReference" } }, "required": [ "Glue" ], "type": "object" }, "AWS::CleanRooms::ConfiguredTableAssociation": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ConfiguredTableIdentifier": { "type": "string" }, "Description": { "type": "string" }, "MembershipIdentifier": { "type": "string" }, "Name": { "type": "string" }, "RoleArn": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "ConfiguredTableIdentifier", "MembershipIdentifier", "Name", "RoleArn" ], "type": "object" }, "Type": { "enum": [ "AWS::CleanRooms::ConfiguredTableAssociation" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::CleanRooms::Membership": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "CollaborationIdentifier": { "type": "string" }, "QueryLogStatus": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "CollaborationIdentifier", "QueryLogStatus" ], "type": "object" }, "Type": { "enum": [ "AWS::CleanRooms::Membership" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Cloud9::EnvironmentEC2": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AutomaticStopTimeMinutes": { "type": "number" }, "ConnectionType": { "type": "string" }, "Description": { "type": "string" }, "ImageId": { "type": "string" }, "InstanceType": { "type": "string" }, "Name": { "type": "string" }, "OwnerArn": { "type": "string" }, "Repositories": { "items": { "$ref": "#/definitions/AWS::Cloud9::EnvironmentEC2.Repository" }, "type": "array" }, "SubnetId": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "InstanceType" ], "type": "object" }, "Type": { "enum": [ "AWS::Cloud9::EnvironmentEC2" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Cloud9::EnvironmentEC2.Repository": { "additionalProperties": false, "properties": { "PathComponent": { "type": "string" }, "RepositoryUrl": { "type": "string" } }, "required": [ "PathComponent", "RepositoryUrl" ], "type": "object" }, "AWS::CloudFormation::CustomResource": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ServiceToken": { "type": "string" } }, "required": [ "ServiceToken" ], "type": "object" }, "Type": { "enum": [ "AWS::CloudFormation::CustomResource" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::CloudFormation::HookDefaultVersion": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "TypeName": { "type": "string" }, "TypeVersionArn": { "type": "string" }, "VersionId": { "type": "string" } }, "type": "object" }, "Type": { "enum": [ "AWS::CloudFormation::HookDefaultVersion" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::CloudFormation::HookTypeConfig": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Configuration": { "type": "string" }, "ConfigurationAlias": { "type": "string" }, "TypeArn": { "type": "string" }, "TypeName": { "type": "string" } }, "required": [ "Configuration" ], "type": "object" }, "Type": { "enum": [ "AWS::CloudFormation::HookTypeConfig" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::CloudFormation::HookVersion": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ExecutionRoleArn": { "type": "string" }, "LoggingConfig": { "$ref": "#/definitions/AWS::CloudFormation::HookVersion.LoggingConfig" }, "SchemaHandlerPackage": { "type": "string" }, "TypeName": { "type": "string" } }, "required": [ "SchemaHandlerPackage", "TypeName" ], "type": "object" }, "Type": { "enum": [ "AWS::CloudFormation::HookVersion" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::CloudFormation::HookVersion.LoggingConfig": { "additionalProperties": false, "properties": { "LogGroupName": { "type": "string" }, "LogRoleArn": { "type": "string" } }, "type": "object" }, "AWS::CloudFormation::Macro": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "FunctionName": { "type": "string" }, "LogGroupName": { "type": "string" }, "LogRoleARN": { "type": "string" }, "Name": { "type": "string" } }, "required": [ "FunctionName", "Name" ], "type": "object" }, "Type": { "enum": [ "AWS::CloudFormation::Macro" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::CloudFormation::ModuleDefaultVersion": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Arn": { "type": "string" }, "ModuleName": { "type": "string" }, "VersionId": { "type": "string" } }, "type": "object" }, "Type": { "enum": [ "AWS::CloudFormation::ModuleDefaultVersion" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::CloudFormation::ModuleVersion": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ModuleName": { "type": "string" }, "ModulePackage": { "type": "string" } }, "required": [ "ModuleName", "ModulePackage" ], "type": "object" }, "Type": { "enum": [ "AWS::CloudFormation::ModuleVersion" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::CloudFormation::PublicTypeVersion": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Arn": { "type": "string" }, "LogDeliveryBucket": { "type": "string" }, "PublicVersionNumber": { "type": "string" }, "Type": { "type": "string" }, "TypeName": { "type": "string" } }, "type": "object" }, "Type": { "enum": [ "AWS::CloudFormation::PublicTypeVersion" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::CloudFormation::Publisher": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AcceptTermsAndConditions": { "type": "boolean" }, "ConnectionArn": { "type": "string" } }, "required": [ "AcceptTermsAndConditions" ], "type": "object" }, "Type": { "enum": [ "AWS::CloudFormation::Publisher" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::CloudFormation::ResourceDefaultVersion": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "TypeName": { "type": "string" }, "TypeVersionArn": { "type": "string" }, "VersionId": { "type": "string" } }, "type": "object" }, "Type": { "enum": [ "AWS::CloudFormation::ResourceDefaultVersion" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::CloudFormation::ResourceVersion": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ExecutionRoleArn": { "type": "string" }, "LoggingConfig": { "$ref": "#/definitions/AWS::CloudFormation::ResourceVersion.LoggingConfig" }, "SchemaHandlerPackage": { "type": "string" }, "TypeName": { "type": "string" } }, "required": [ "SchemaHandlerPackage", "TypeName" ], "type": "object" }, "Type": { "enum": [ "AWS::CloudFormation::ResourceVersion" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::CloudFormation::ResourceVersion.LoggingConfig": { "additionalProperties": false, "properties": { "LogGroupName": { "type": "string" }, "LogRoleArn": { "type": "string" } }, "type": "object" }, "AWS::CloudFormation::Stack": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "NotificationARNs": { "items": { "type": "string" }, "type": "array" }, "Parameters": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "TemplateURL": { "type": "string" }, "TimeoutInMinutes": { "type": "number" } }, "required": [ "TemplateURL" ], "type": "object" }, "Type": { "enum": [ "AWS::CloudFormation::Stack" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::CloudFormation::StackSet": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AdministrationRoleARN": { "type": "string" }, "AutoDeployment": { "$ref": "#/definitions/AWS::CloudFormation::StackSet.AutoDeployment" }, "CallAs": { "type": "string" }, "Capabilities": { "items": { "type": "string" }, "type": "array" }, "Description": { "type": "string" }, "ExecutionRoleName": { "type": "string" }, "ManagedExecution": { "$ref": "#/definitions/AWS::CloudFormation::StackSet.ManagedExecution" }, "OperationPreferences": { "$ref": "#/definitions/AWS::CloudFormation::StackSet.OperationPreferences" }, "Parameters": { "items": { "$ref": "#/definitions/AWS::CloudFormation::StackSet.Parameter" }, "type": "array" }, "PermissionModel": { "type": "string" }, "StackInstancesGroup": { "items": { "$ref": "#/definitions/AWS::CloudFormation::StackSet.StackInstances" }, "type": "array" }, "StackSetName": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "TemplateBody": { "type": "string" }, "TemplateURL": { "type": "string" } }, "required": [ "PermissionModel", "StackSetName" ], "type": "object" }, "Type": { "enum": [ "AWS::CloudFormation::StackSet" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::CloudFormation::StackSet.AutoDeployment": { "additionalProperties": false, "properties": { "Enabled": { "type": "boolean" }, "RetainStacksOnAccountRemoval": { "type": "boolean" } }, "type": "object" }, "AWS::CloudFormation::StackSet.DeploymentTargets": { "additionalProperties": false, "properties": { "AccountFilterType": { "type": "string" }, "Accounts": { "items": { "type": "string" }, "type": "array" }, "AccountsUrl": { "type": "string" }, "OrganizationalUnitIds": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::CloudFormation::StackSet.ManagedExecution": { "additionalProperties": false, "properties": { "Active": { "type": "boolean" } }, "type": "object" }, "AWS::CloudFormation::StackSet.OperationPreferences": { "additionalProperties": false, "properties": { "FailureToleranceCount": { "type": "number" }, "FailureTolerancePercentage": { "type": "number" }, "MaxConcurrentCount": { "type": "number" }, "MaxConcurrentPercentage": { "type": "number" }, "RegionConcurrencyType": { "type": "string" }, "RegionOrder": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::CloudFormation::StackSet.Parameter": { "additionalProperties": false, "properties": { "ParameterKey": { "type": "string" }, "ParameterValue": { "type": "string" } }, "required": [ "ParameterKey", "ParameterValue" ], "type": "object" }, "AWS::CloudFormation::StackSet.StackInstances": { "additionalProperties": false, "properties": { "DeploymentTargets": { "$ref": "#/definitions/AWS::CloudFormation::StackSet.DeploymentTargets" }, "ParameterOverrides": { "items": { "$ref": "#/definitions/AWS::CloudFormation::StackSet.Parameter" }, "type": "array" }, "Regions": { "items": { "type": "string" }, "type": "array" } }, "required": [ "DeploymentTargets", "Regions" ], "type": "object" }, "AWS::CloudFormation::TypeActivation": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AutoUpdate": { "type": "boolean" }, "ExecutionRoleArn": { "type": "string" }, "LoggingConfig": { "$ref": "#/definitions/AWS::CloudFormation::TypeActivation.LoggingConfig" }, "MajorVersion": { "type": "string" }, "PublicTypeArn": { "type": "string" }, "PublisherId": { "type": "string" }, "Type": { "type": "string" }, "TypeName": { "type": "string" }, "TypeNameAlias": { "type": "string" }, "VersionBump": { "type": "string" } }, "type": "object" }, "Type": { "enum": [ "AWS::CloudFormation::TypeActivation" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::CloudFormation::TypeActivation.LoggingConfig": { "additionalProperties": false, "properties": { "LogGroupName": { "type": "string" }, "LogRoleArn": { "type": "string" } }, "type": "object" }, "AWS::CloudFormation::WaitCondition": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "CreationPolicy": { "type": "object" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Count": { "type": "number" }, "Handle": { "type": "string" }, "Timeout": { "type": "string" } }, "type": "object" }, "Type": { "enum": [ "AWS::CloudFormation::WaitCondition" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::CloudFormation::WaitConditionHandle": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": {}, "type": "object" }, "Type": { "enum": [ "AWS::CloudFormation::WaitConditionHandle" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::CloudFront::CachePolicy": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "CachePolicyConfig": { "$ref": "#/definitions/AWS::CloudFront::CachePolicy.CachePolicyConfig" } }, "required": [ "CachePolicyConfig" ], "type": "object" }, "Type": { "enum": [ "AWS::CloudFront::CachePolicy" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::CloudFront::CachePolicy.CachePolicyConfig": { "additionalProperties": false, "properties": { "Comment": { "type": "string" }, "DefaultTTL": { "type": "number" }, "MaxTTL": { "type": "number" }, "MinTTL": { "type": "number" }, "Name": { "type": "string" }, "ParametersInCacheKeyAndForwardedToOrigin": { "$ref": "#/definitions/AWS::CloudFront::CachePolicy.ParametersInCacheKeyAndForwardedToOrigin" } }, "required": [ "DefaultTTL", "MaxTTL", "MinTTL", "Name", "ParametersInCacheKeyAndForwardedToOrigin" ], "type": "object" }, "AWS::CloudFront::CachePolicy.CookiesConfig": { "additionalProperties": false, "properties": { "CookieBehavior": { "type": "string" }, "Cookies": { "items": { "type": "string" }, "type": "array" } }, "required": [ "CookieBehavior" ], "type": "object" }, "AWS::CloudFront::CachePolicy.HeadersConfig": { "additionalProperties": false, "properties": { "HeaderBehavior": { "type": "string" }, "Headers": { "items": { "type": "string" }, "type": "array" } }, "required": [ "HeaderBehavior" ], "type": "object" }, "AWS::CloudFront::CachePolicy.ParametersInCacheKeyAndForwardedToOrigin": { "additionalProperties": false, "properties": { "CookiesConfig": { "$ref": "#/definitions/AWS::CloudFront::CachePolicy.CookiesConfig" }, "EnableAcceptEncodingBrotli": { "type": "boolean" }, "EnableAcceptEncodingGzip": { "type": "boolean" }, "HeadersConfig": { "$ref": "#/definitions/AWS::CloudFront::CachePolicy.HeadersConfig" }, "QueryStringsConfig": { "$ref": "#/definitions/AWS::CloudFront::CachePolicy.QueryStringsConfig" } }, "required": [ "CookiesConfig", "EnableAcceptEncodingGzip", "HeadersConfig", "QueryStringsConfig" ], "type": "object" }, "AWS::CloudFront::CachePolicy.QueryStringsConfig": { "additionalProperties": false, "properties": { "QueryStringBehavior": { "type": "string" }, "QueryStrings": { "items": { "type": "string" }, "type": "array" } }, "required": [ "QueryStringBehavior" ], "type": "object" }, "AWS::CloudFront::CloudFrontOriginAccessIdentity": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "CloudFrontOriginAccessIdentityConfig": { "$ref": "#/definitions/AWS::CloudFront::CloudFrontOriginAccessIdentity.CloudFrontOriginAccessIdentityConfig" } }, "required": [ "CloudFrontOriginAccessIdentityConfig" ], "type": "object" }, "Type": { "enum": [ "AWS::CloudFront::CloudFrontOriginAccessIdentity" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::CloudFront::CloudFrontOriginAccessIdentity.CloudFrontOriginAccessIdentityConfig": { "additionalProperties": false, "properties": { "Comment": { "type": "string" } }, "required": [ "Comment" ], "type": "object" }, "AWS::CloudFront::ContinuousDeploymentPolicy": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ContinuousDeploymentPolicyConfig": { "$ref": "#/definitions/AWS::CloudFront::ContinuousDeploymentPolicy.ContinuousDeploymentPolicyConfig" } }, "required": [ "ContinuousDeploymentPolicyConfig" ], "type": "object" }, "Type": { "enum": [ "AWS::CloudFront::ContinuousDeploymentPolicy" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::CloudFront::ContinuousDeploymentPolicy.ContinuousDeploymentPolicyConfig": { "additionalProperties": false, "properties": { "Enabled": { "type": "boolean" }, "StagingDistributionDnsNames": { "items": { "type": "string" }, "type": "array" }, "TrafficConfig": { "$ref": "#/definitions/AWS::CloudFront::ContinuousDeploymentPolicy.TrafficConfig" } }, "required": [ "Enabled", "StagingDistributionDnsNames" ], "type": "object" }, "AWS::CloudFront::ContinuousDeploymentPolicy.SessionStickinessConfig": { "additionalProperties": false, "properties": { "IdleTTL": { "type": "number" }, "MaximumTTL": { "type": "number" } }, "required": [ "IdleTTL", "MaximumTTL" ], "type": "object" }, "AWS::CloudFront::ContinuousDeploymentPolicy.SingleHeaderConfig": { "additionalProperties": false, "properties": { "Header": { "type": "string" }, "Value": { "type": "string" } }, "required": [ "Header", "Value" ], "type": "object" }, "AWS::CloudFront::ContinuousDeploymentPolicy.SingleWeightConfig": { "additionalProperties": false, "properties": { "SessionStickinessConfig": { "$ref": "#/definitions/AWS::CloudFront::ContinuousDeploymentPolicy.SessionStickinessConfig" }, "Weight": { "type": "number" } }, "required": [ "Weight" ], "type": "object" }, "AWS::CloudFront::ContinuousDeploymentPolicy.TrafficConfig": { "additionalProperties": false, "properties": { "SingleHeaderConfig": { "$ref": "#/definitions/AWS::CloudFront::ContinuousDeploymentPolicy.SingleHeaderConfig" }, "SingleWeightConfig": { "$ref": "#/definitions/AWS::CloudFront::ContinuousDeploymentPolicy.SingleWeightConfig" }, "Type": { "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::CloudFront::Distribution": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "DistributionConfig": { "$ref": "#/definitions/AWS::CloudFront::Distribution.DistributionConfig" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "DistributionConfig" ], "type": "object" }, "Type": { "enum": [ "AWS::CloudFront::Distribution" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::CloudFront::Distribution.CacheBehavior": { "additionalProperties": false, "properties": { "AllowedMethods": { "items": { "type": "string" }, "type": "array" }, "CachePolicyId": { "type": "string" }, "CachedMethods": { "items": { "type": "string" }, "type": "array" }, "Compress": { "type": "boolean" }, "DefaultTTL": { "type": "number" }, "FieldLevelEncryptionId": { "type": "string" }, "ForwardedValues": { "$ref": "#/definitions/AWS::CloudFront::Distribution.ForwardedValues" }, "FunctionAssociations": { "items": { "$ref": "#/definitions/AWS::CloudFront::Distribution.FunctionAssociation" }, "type": "array" }, "LambdaFunctionAssociations": { "items": { "$ref": "#/definitions/AWS::CloudFront::Distribution.LambdaFunctionAssociation" }, "type": "array" }, "MaxTTL": { "type": "number" }, "MinTTL": { "type": "number" }, "OriginRequestPolicyId": { "type": "string" }, "PathPattern": { "type": "string" }, "RealtimeLogConfigArn": { "type": "string" }, "ResponseHeadersPolicyId": { "type": "string" }, "SmoothStreaming": { "type": "boolean" }, "TargetOriginId": { "type": "string" }, "TrustedKeyGroups": { "items": { "type": "string" }, "type": "array" }, "TrustedSigners": { "items": { "type": "string" }, "type": "array" }, "ViewerProtocolPolicy": { "type": "string" } }, "required": [ "PathPattern", "TargetOriginId", "ViewerProtocolPolicy" ], "type": "object" }, "AWS::CloudFront::Distribution.Cookies": { "additionalProperties": false, "properties": { "Forward": { "type": "string" }, "WhitelistedNames": { "items": { "type": "string" }, "type": "array" } }, "required": [ "Forward" ], "type": "object" }, "AWS::CloudFront::Distribution.CustomErrorResponse": { "additionalProperties": false, "properties": { "ErrorCachingMinTTL": { "type": "number" }, "ErrorCode": { "type": "number" }, "ResponseCode": { "type": "number" }, "ResponsePagePath": { "type": "string" } }, "required": [ "ErrorCode" ], "type": "object" }, "AWS::CloudFront::Distribution.CustomOriginConfig": { "additionalProperties": false, "properties": { "HTTPPort": { "type": "number" }, "HTTPSPort": { "type": "number" }, "OriginKeepaliveTimeout": { "type": "number" }, "OriginProtocolPolicy": { "type": "string" }, "OriginReadTimeout": { "type": "number" }, "OriginSSLProtocols": { "items": { "type": "string" }, "type": "array" } }, "required": [ "OriginProtocolPolicy" ], "type": "object" }, "AWS::CloudFront::Distribution.DefaultCacheBehavior": { "additionalProperties": false, "properties": { "AllowedMethods": { "items": { "type": "string" }, "type": "array" }, "CachePolicyId": { "type": "string" }, "CachedMethods": { "items": { "type": "string" }, "type": "array" }, "Compress": { "type": "boolean" }, "DefaultTTL": { "type": "number" }, "FieldLevelEncryptionId": { "type": "string" }, "ForwardedValues": { "$ref": "#/definitions/AWS::CloudFront::Distribution.ForwardedValues" }, "FunctionAssociations": { "items": { "$ref": "#/definitions/AWS::CloudFront::Distribution.FunctionAssociation" }, "type": "array" }, "LambdaFunctionAssociations": { "items": { "$ref": "#/definitions/AWS::CloudFront::Distribution.LambdaFunctionAssociation" }, "type": "array" }, "MaxTTL": { "type": "number" }, "MinTTL": { "type": "number" }, "OriginRequestPolicyId": { "type": "string" }, "RealtimeLogConfigArn": { "type": "string" }, "ResponseHeadersPolicyId": { "type": "string" }, "SmoothStreaming": { "type": "boolean" }, "TargetOriginId": { "type": "string" }, "TrustedKeyGroups": { "items": { "type": "string" }, "type": "array" }, "TrustedSigners": { "items": { "type": "string" }, "type": "array" }, "ViewerProtocolPolicy": { "type": "string" } }, "required": [ "TargetOriginId", "ViewerProtocolPolicy" ], "type": "object" }, "AWS::CloudFront::Distribution.DistributionConfig": { "additionalProperties": false, "properties": { "Aliases": { "items": { "type": "string" }, "type": "array" }, "CNAMEs": { "items": { "type": "string" }, "type": "array" }, "CacheBehaviors": { "items": { "$ref": "#/definitions/AWS::CloudFront::Distribution.CacheBehavior" }, "type": "array" }, "Comment": { "type": "string" }, "ContinuousDeploymentPolicyId": { "type": "string" }, "CustomErrorResponses": { "items": { "$ref": "#/definitions/AWS::CloudFront::Distribution.CustomErrorResponse" }, "type": "array" }, "CustomOrigin": { "$ref": "#/definitions/AWS::CloudFront::Distribution.LegacyCustomOrigin" }, "DefaultCacheBehavior": { "$ref": "#/definitions/AWS::CloudFront::Distribution.DefaultCacheBehavior" }, "DefaultRootObject": { "type": "string" }, "Enabled": { "type": "boolean" }, "HttpVersion": { "type": "string" }, "IPV6Enabled": { "type": "boolean" }, "Logging": { "$ref": "#/definitions/AWS::CloudFront::Distribution.Logging" }, "OriginGroups": { "$ref": "#/definitions/AWS::CloudFront::Distribution.OriginGroups" }, "Origins": { "items": { "$ref": "#/definitions/AWS::CloudFront::Distribution.Origin" }, "type": "array" }, "PriceClass": { "type": "string" }, "Restrictions": { "$ref": "#/definitions/AWS::CloudFront::Distribution.Restrictions" }, "S3Origin": { "$ref": "#/definitions/AWS::CloudFront::Distribution.LegacyS3Origin" }, "Staging": { "type": "boolean" }, "ViewerCertificate": { "$ref": "#/definitions/AWS::CloudFront::Distribution.ViewerCertificate" }, "WebACLId": { "type": "string" } }, "required": [ "DefaultCacheBehavior", "Enabled" ], "type": "object" }, "AWS::CloudFront::Distribution.ForwardedValues": { "additionalProperties": false, "properties": { "Cookies": { "$ref": "#/definitions/AWS::CloudFront::Distribution.Cookies" }, "Headers": { "items": { "type": "string" }, "type": "array" }, "QueryString": { "type": "boolean" }, "QueryStringCacheKeys": { "items": { "type": "string" }, "type": "array" } }, "required": [ "QueryString" ], "type": "object" }, "AWS::CloudFront::Distribution.FunctionAssociation": { "additionalProperties": false, "properties": { "EventType": { "type": "string" }, "FunctionARN": { "type": "string" } }, "type": "object" }, "AWS::CloudFront::Distribution.GeoRestriction": { "additionalProperties": false, "properties": { "Locations": { "items": { "type": "string" }, "type": "array" }, "RestrictionType": { "type": "string" } }, "required": [ "RestrictionType" ], "type": "object" }, "AWS::CloudFront::Distribution.LambdaFunctionAssociation": { "additionalProperties": false, "properties": { "EventType": { "type": "string" }, "IncludeBody": { "type": "boolean" }, "LambdaFunctionARN": { "type": "string" } }, "type": "object" }, "AWS::CloudFront::Distribution.LegacyCustomOrigin": { "additionalProperties": false, "properties": { "DNSName": { "type": "string" }, "HTTPPort": { "type": "number" }, "HTTPSPort": { "type": "number" }, "OriginProtocolPolicy": { "type": "string" }, "OriginSSLProtocols": { "items": { "type": "string" }, "type": "array" } }, "required": [ "DNSName", "OriginProtocolPolicy", "OriginSSLProtocols" ], "type": "object" }, "AWS::CloudFront::Distribution.LegacyS3Origin": { "additionalProperties": false, "properties": { "DNSName": { "type": "string" }, "OriginAccessIdentity": { "type": "string" } }, "required": [ "DNSName" ], "type": "object" }, "AWS::CloudFront::Distribution.Logging": { "additionalProperties": false, "properties": { "Bucket": { "type": "string" }, "IncludeCookies": { "type": "boolean" }, "Prefix": { "type": "string" } }, "required": [ "Bucket" ], "type": "object" }, "AWS::CloudFront::Distribution.Origin": { "additionalProperties": false, "properties": { "ConnectionAttempts": { "type": "number" }, "ConnectionTimeout": { "type": "number" }, "CustomOriginConfig": { "$ref": "#/definitions/AWS::CloudFront::Distribution.CustomOriginConfig" }, "DomainName": { "type": "string" }, "Id": { "type": "string" }, "OriginAccessControlId": { "type": "string" }, "OriginCustomHeaders": { "items": { "$ref": "#/definitions/AWS::CloudFront::Distribution.OriginCustomHeader" }, "type": "array" }, "OriginPath": { "type": "string" }, "OriginShield": { "$ref": "#/definitions/AWS::CloudFront::Distribution.OriginShield" }, "S3OriginConfig": { "$ref": "#/definitions/AWS::CloudFront::Distribution.S3OriginConfig" } }, "required": [ "DomainName", "Id" ], "type": "object" }, "AWS::CloudFront::Distribution.OriginCustomHeader": { "additionalProperties": false, "properties": { "HeaderName": { "type": "string" }, "HeaderValue": { "type": "string" } }, "required": [ "HeaderName", "HeaderValue" ], "type": "object" }, "AWS::CloudFront::Distribution.OriginGroup": { "additionalProperties": false, "properties": { "FailoverCriteria": { "$ref": "#/definitions/AWS::CloudFront::Distribution.OriginGroupFailoverCriteria" }, "Id": { "type": "string" }, "Members": { "$ref": "#/definitions/AWS::CloudFront::Distribution.OriginGroupMembers" } }, "required": [ "FailoverCriteria", "Id", "Members" ], "type": "object" }, "AWS::CloudFront::Distribution.OriginGroupFailoverCriteria": { "additionalProperties": false, "properties": { "StatusCodes": { "$ref": "#/definitions/AWS::CloudFront::Distribution.StatusCodes" } }, "required": [ "StatusCodes" ], "type": "object" }, "AWS::CloudFront::Distribution.OriginGroupMember": { "additionalProperties": false, "properties": { "OriginId": { "type": "string" } }, "required": [ "OriginId" ], "type": "object" }, "AWS::CloudFront::Distribution.OriginGroupMembers": { "additionalProperties": false, "properties": { "Items": { "items": { "$ref": "#/definitions/AWS::CloudFront::Distribution.OriginGroupMember" }, "type": "array" }, "Quantity": { "type": "number" } }, "required": [ "Items", "Quantity" ], "type": "object" }, "AWS::CloudFront::Distribution.OriginGroups": { "additionalProperties": false, "properties": { "Items": { "items": { "$ref": "#/definitions/AWS::CloudFront::Distribution.OriginGroup" }, "type": "array" }, "Quantity": { "type": "number" } }, "required": [ "Quantity" ], "type": "object" }, "AWS::CloudFront::Distribution.OriginShield": { "additionalProperties": false, "properties": { "Enabled": { "type": "boolean" }, "OriginShieldRegion": { "type": "string" } }, "type": "object" }, "AWS::CloudFront::Distribution.Restrictions": { "additionalProperties": false, "properties": { "GeoRestriction": { "$ref": "#/definitions/AWS::CloudFront::Distribution.GeoRestriction" } }, "required": [ "GeoRestriction" ], "type": "object" }, "AWS::CloudFront::Distribution.S3OriginConfig": { "additionalProperties": false, "properties": { "OriginAccessIdentity": { "type": "string" } }, "type": "object" }, "AWS::CloudFront::Distribution.StatusCodes": { "additionalProperties": false, "properties": { "Items": { "items": { "type": "number" }, "type": "array" }, "Quantity": { "type": "number" } }, "required": [ "Items", "Quantity" ], "type": "object" }, "AWS::CloudFront::Distribution.ViewerCertificate": { "additionalProperties": false, "properties": { "AcmCertificateArn": { "type": "string" }, "CloudFrontDefaultCertificate": { "type": "boolean" }, "IamCertificateId": { "type": "string" }, "MinimumProtocolVersion": { "type": "string" }, "SslSupportMethod": { "type": "string" } }, "type": "object" }, "AWS::CloudFront::Function": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AutoPublish": { "type": "boolean" }, "FunctionCode": { "type": "string" }, "FunctionConfig": { "$ref": "#/definitions/AWS::CloudFront::Function.FunctionConfig" }, "FunctionMetadata": { "$ref": "#/definitions/AWS::CloudFront::Function.FunctionMetadata" }, "Name": { "type": "string" } }, "required": [ "FunctionCode", "FunctionConfig", "Name" ], "type": "object" }, "Type": { "enum": [ "AWS::CloudFront::Function" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::CloudFront::Function.FunctionConfig": { "additionalProperties": false, "properties": { "Comment": { "type": "string" }, "Runtime": { "type": "string" } }, "required": [ "Comment", "Runtime" ], "type": "object" }, "AWS::CloudFront::Function.FunctionMetadata": { "additionalProperties": false, "properties": { "FunctionARN": { "type": "string" } }, "type": "object" }, "AWS::CloudFront::KeyGroup": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "KeyGroupConfig": { "$ref": "#/definitions/AWS::CloudFront::KeyGroup.KeyGroupConfig" } }, "required": [ "KeyGroupConfig" ], "type": "object" }, "Type": { "enum": [ "AWS::CloudFront::KeyGroup" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::CloudFront::KeyGroup.KeyGroupConfig": { "additionalProperties": false, "properties": { "Comment": { "type": "string" }, "Items": { "items": { "type": "string" }, "type": "array" }, "Name": { "type": "string" } }, "required": [ "Items", "Name" ], "type": "object" }, "AWS::CloudFront::MonitoringSubscription": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "DistributionId": { "type": "string" }, "MonitoringSubscription": { "$ref": "#/definitions/AWS::CloudFront::MonitoringSubscription.MonitoringSubscription" } }, "required": [ "DistributionId", "MonitoringSubscription" ], "type": "object" }, "Type": { "enum": [ "AWS::CloudFront::MonitoringSubscription" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::CloudFront::MonitoringSubscription.MonitoringSubscription": { "additionalProperties": false, "properties": { "RealtimeMetricsSubscriptionConfig": { "$ref": "#/definitions/AWS::CloudFront::MonitoringSubscription.RealtimeMetricsSubscriptionConfig" } }, "type": "object" }, "AWS::CloudFront::MonitoringSubscription.RealtimeMetricsSubscriptionConfig": { "additionalProperties": false, "properties": { "RealtimeMetricsSubscriptionStatus": { "type": "string" } }, "required": [ "RealtimeMetricsSubscriptionStatus" ], "type": "object" }, "AWS::CloudFront::OriginAccessControl": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "OriginAccessControlConfig": { "$ref": "#/definitions/AWS::CloudFront::OriginAccessControl.OriginAccessControlConfig" } }, "required": [ "OriginAccessControlConfig" ], "type": "object" }, "Type": { "enum": [ "AWS::CloudFront::OriginAccessControl" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::CloudFront::OriginAccessControl.OriginAccessControlConfig": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "Name": { "type": "string" }, "OriginAccessControlOriginType": { "type": "string" }, "SigningBehavior": { "type": "string" }, "SigningProtocol": { "type": "string" } }, "required": [ "Name", "OriginAccessControlOriginType", "SigningBehavior", "SigningProtocol" ], "type": "object" }, "AWS::CloudFront::OriginRequestPolicy": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "OriginRequestPolicyConfig": { "$ref": "#/definitions/AWS::CloudFront::OriginRequestPolicy.OriginRequestPolicyConfig" } }, "required": [ "OriginRequestPolicyConfig" ], "type": "object" }, "Type": { "enum": [ "AWS::CloudFront::OriginRequestPolicy" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::CloudFront::OriginRequestPolicy.CookiesConfig": { "additionalProperties": false, "properties": { "CookieBehavior": { "type": "string" }, "Cookies": { "items": { "type": "string" }, "type": "array" } }, "required": [ "CookieBehavior" ], "type": "object" }, "AWS::CloudFront::OriginRequestPolicy.HeadersConfig": { "additionalProperties": false, "properties": { "HeaderBehavior": { "type": "string" }, "Headers": { "items": { "type": "string" }, "type": "array" } }, "required": [ "HeaderBehavior" ], "type": "object" }, "AWS::CloudFront::OriginRequestPolicy.OriginRequestPolicyConfig": { "additionalProperties": false, "properties": { "Comment": { "type": "string" }, "CookiesConfig": { "$ref": "#/definitions/AWS::CloudFront::OriginRequestPolicy.CookiesConfig" }, "HeadersConfig": { "$ref": "#/definitions/AWS::CloudFront::OriginRequestPolicy.HeadersConfig" }, "Name": { "type": "string" }, "QueryStringsConfig": { "$ref": "#/definitions/AWS::CloudFront::OriginRequestPolicy.QueryStringsConfig" } }, "required": [ "CookiesConfig", "HeadersConfig", "Name", "QueryStringsConfig" ], "type": "object" }, "AWS::CloudFront::OriginRequestPolicy.QueryStringsConfig": { "additionalProperties": false, "properties": { "QueryStringBehavior": { "type": "string" }, "QueryStrings": { "items": { "type": "string" }, "type": "array" } }, "required": [ "QueryStringBehavior" ], "type": "object" }, "AWS::CloudFront::PublicKey": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "PublicKeyConfig": { "$ref": "#/definitions/AWS::CloudFront::PublicKey.PublicKeyConfig" } }, "required": [ "PublicKeyConfig" ], "type": "object" }, "Type": { "enum": [ "AWS::CloudFront::PublicKey" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::CloudFront::PublicKey.PublicKeyConfig": { "additionalProperties": false, "properties": { "CallerReference": { "type": "string" }, "Comment": { "type": "string" }, "EncodedKey": { "type": "string" }, "Name": { "type": "string" } }, "required": [ "CallerReference", "EncodedKey", "Name" ], "type": "object" }, "AWS::CloudFront::RealtimeLogConfig": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "EndPoints": { "items": { "$ref": "#/definitions/AWS::CloudFront::RealtimeLogConfig.EndPoint" }, "type": "array" }, "Fields": { "items": { "type": "string" }, "type": "array" }, "Name": { "type": "string" }, "SamplingRate": { "type": "number" } }, "required": [ "EndPoints", "Fields", "Name", "SamplingRate" ], "type": "object" }, "Type": { "enum": [ "AWS::CloudFront::RealtimeLogConfig" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::CloudFront::RealtimeLogConfig.EndPoint": { "additionalProperties": false, "properties": { "KinesisStreamConfig": { "$ref": "#/definitions/AWS::CloudFront::RealtimeLogConfig.KinesisStreamConfig" }, "StreamType": { "type": "string" } }, "required": [ "KinesisStreamConfig", "StreamType" ], "type": "object" }, "AWS::CloudFront::RealtimeLogConfig.KinesisStreamConfig": { "additionalProperties": false, "properties": { "RoleArn": { "type": "string" }, "StreamArn": { "type": "string" } }, "required": [ "RoleArn", "StreamArn" ], "type": "object" }, "AWS::CloudFront::ResponseHeadersPolicy": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ResponseHeadersPolicyConfig": { "$ref": "#/definitions/AWS::CloudFront::ResponseHeadersPolicy.ResponseHeadersPolicyConfig" } }, "required": [ "ResponseHeadersPolicyConfig" ], "type": "object" }, "Type": { "enum": [ "AWS::CloudFront::ResponseHeadersPolicy" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::CloudFront::ResponseHeadersPolicy.AccessControlAllowHeaders": { "additionalProperties": false, "properties": { "Items": { "items": { "type": "string" }, "type": "array" } }, "required": [ "Items" ], "type": "object" }, "AWS::CloudFront::ResponseHeadersPolicy.AccessControlAllowMethods": { "additionalProperties": false, "properties": { "Items": { "items": { "type": "string" }, "type": "array" } }, "required": [ "Items" ], "type": "object" }, "AWS::CloudFront::ResponseHeadersPolicy.AccessControlAllowOrigins": { "additionalProperties": false, "properties": { "Items": { "items": { "type": "string" }, "type": "array" } }, "required": [ "Items" ], "type": "object" }, "AWS::CloudFront::ResponseHeadersPolicy.AccessControlExposeHeaders": { "additionalProperties": false, "properties": { "Items": { "items": { "type": "string" }, "type": "array" } }, "required": [ "Items" ], "type": "object" }, "AWS::CloudFront::ResponseHeadersPolicy.ContentSecurityPolicy": { "additionalProperties": false, "properties": { "ContentSecurityPolicy": { "type": "string" }, "Override": { "type": "boolean" } }, "required": [ "ContentSecurityPolicy", "Override" ], "type": "object" }, "AWS::CloudFront::ResponseHeadersPolicy.ContentTypeOptions": { "additionalProperties": false, "properties": { "Override": { "type": "boolean" } }, "required": [ "Override" ], "type": "object" }, "AWS::CloudFront::ResponseHeadersPolicy.CorsConfig": { "additionalProperties": false, "properties": { "AccessControlAllowCredentials": { "type": "boolean" }, "AccessControlAllowHeaders": { "$ref": "#/definitions/AWS::CloudFront::ResponseHeadersPolicy.AccessControlAllowHeaders" }, "AccessControlAllowMethods": { "$ref": "#/definitions/AWS::CloudFront::ResponseHeadersPolicy.AccessControlAllowMethods" }, "AccessControlAllowOrigins": { "$ref": "#/definitions/AWS::CloudFront::ResponseHeadersPolicy.AccessControlAllowOrigins" }, "AccessControlExposeHeaders": { "$ref": "#/definitions/AWS::CloudFront::ResponseHeadersPolicy.AccessControlExposeHeaders" }, "AccessControlMaxAgeSec": { "type": "number" }, "OriginOverride": { "type": "boolean" } }, "required": [ "AccessControlAllowCredentials", "AccessControlAllowHeaders", "AccessControlAllowMethods", "AccessControlAllowOrigins", "OriginOverride" ], "type": "object" }, "AWS::CloudFront::ResponseHeadersPolicy.CustomHeader": { "additionalProperties": false, "properties": { "Header": { "type": "string" }, "Override": { "type": "boolean" }, "Value": { "type": "string" } }, "required": [ "Header", "Override", "Value" ], "type": "object" }, "AWS::CloudFront::ResponseHeadersPolicy.CustomHeadersConfig": { "additionalProperties": false, "properties": { "Items": { "items": { "$ref": "#/definitions/AWS::CloudFront::ResponseHeadersPolicy.CustomHeader" }, "type": "array" } }, "required": [ "Items" ], "type": "object" }, "AWS::CloudFront::ResponseHeadersPolicy.FrameOptions": { "additionalProperties": false, "properties": { "FrameOption": { "type": "string" }, "Override": { "type": "boolean" } }, "required": [ "FrameOption", "Override" ], "type": "object" }, "AWS::CloudFront::ResponseHeadersPolicy.ReferrerPolicy": { "additionalProperties": false, "properties": { "Override": { "type": "boolean" }, "ReferrerPolicy": { "type": "string" } }, "required": [ "Override", "ReferrerPolicy" ], "type": "object" }, "AWS::CloudFront::ResponseHeadersPolicy.RemoveHeader": { "additionalProperties": false, "properties": { "Header": { "type": "string" } }, "required": [ "Header" ], "type": "object" }, "AWS::CloudFront::ResponseHeadersPolicy.RemoveHeadersConfig": { "additionalProperties": false, "properties": { "Items": { "items": { "$ref": "#/definitions/AWS::CloudFront::ResponseHeadersPolicy.RemoveHeader" }, "type": "array" } }, "required": [ "Items" ], "type": "object" }, "AWS::CloudFront::ResponseHeadersPolicy.ResponseHeadersPolicyConfig": { "additionalProperties": false, "properties": { "Comment": { "type": "string" }, "CorsConfig": { "$ref": "#/definitions/AWS::CloudFront::ResponseHeadersPolicy.CorsConfig" }, "CustomHeadersConfig": { "$ref": "#/definitions/AWS::CloudFront::ResponseHeadersPolicy.CustomHeadersConfig" }, "Name": { "type": "string" }, "RemoveHeadersConfig": { "$ref": "#/definitions/AWS::CloudFront::ResponseHeadersPolicy.RemoveHeadersConfig" }, "SecurityHeadersConfig": { "$ref": "#/definitions/AWS::CloudFront::ResponseHeadersPolicy.SecurityHeadersConfig" }, "ServerTimingHeadersConfig": { "$ref": "#/definitions/AWS::CloudFront::ResponseHeadersPolicy.ServerTimingHeadersConfig" } }, "required": [ "Name" ], "type": "object" }, "AWS::CloudFront::ResponseHeadersPolicy.SecurityHeadersConfig": { "additionalProperties": false, "properties": { "ContentSecurityPolicy": { "$ref": "#/definitions/AWS::CloudFront::ResponseHeadersPolicy.ContentSecurityPolicy" }, "ContentTypeOptions": { "$ref": "#/definitions/AWS::CloudFront::ResponseHeadersPolicy.ContentTypeOptions" }, "FrameOptions": { "$ref": "#/definitions/AWS::CloudFront::ResponseHeadersPolicy.FrameOptions" }, "ReferrerPolicy": { "$ref": "#/definitions/AWS::CloudFront::ResponseHeadersPolicy.ReferrerPolicy" }, "StrictTransportSecurity": { "$ref": "#/definitions/AWS::CloudFront::ResponseHeadersPolicy.StrictTransportSecurity" }, "XSSProtection": { "$ref": "#/definitions/AWS::CloudFront::ResponseHeadersPolicy.XSSProtection" } }, "type": "object" }, "AWS::CloudFront::ResponseHeadersPolicy.ServerTimingHeadersConfig": { "additionalProperties": false, "properties": { "Enabled": { "type": "boolean" }, "SamplingRate": { "type": "number" } }, "required": [ "Enabled" ], "type": "object" }, "AWS::CloudFront::ResponseHeadersPolicy.StrictTransportSecurity": { "additionalProperties": false, "properties": { "AccessControlMaxAgeSec": { "type": "number" }, "IncludeSubdomains": { "type": "boolean" }, "Override": { "type": "boolean" }, "Preload": { "type": "boolean" } }, "required": [ "AccessControlMaxAgeSec", "Override" ], "type": "object" }, "AWS::CloudFront::ResponseHeadersPolicy.XSSProtection": { "additionalProperties": false, "properties": { "ModeBlock": { "type": "boolean" }, "Override": { "type": "boolean" }, "Protection": { "type": "boolean" }, "ReportUri": { "type": "string" } }, "required": [ "Override", "Protection" ], "type": "object" }, "AWS::CloudFront::StreamingDistribution": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "StreamingDistributionConfig": { "$ref": "#/definitions/AWS::CloudFront::StreamingDistribution.StreamingDistributionConfig" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "StreamingDistributionConfig", "Tags" ], "type": "object" }, "Type": { "enum": [ "AWS::CloudFront::StreamingDistribution" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::CloudFront::StreamingDistribution.Logging": { "additionalProperties": false, "properties": { "Bucket": { "type": "string" }, "Enabled": { "type": "boolean" }, "Prefix": { "type": "string" } }, "required": [ "Bucket", "Enabled", "Prefix" ], "type": "object" }, "AWS::CloudFront::StreamingDistribution.S3Origin": { "additionalProperties": false, "properties": { "DomainName": { "type": "string" }, "OriginAccessIdentity": { "type": "string" } }, "required": [ "DomainName", "OriginAccessIdentity" ], "type": "object" }, "AWS::CloudFront::StreamingDistribution.StreamingDistributionConfig": { "additionalProperties": false, "properties": { "Aliases": { "items": { "type": "string" }, "type": "array" }, "Comment": { "type": "string" }, "Enabled": { "type": "boolean" }, "Logging": { "$ref": "#/definitions/AWS::CloudFront::StreamingDistribution.Logging" }, "PriceClass": { "type": "string" }, "S3Origin": { "$ref": "#/definitions/AWS::CloudFront::StreamingDistribution.S3Origin" }, "TrustedSigners": { "$ref": "#/definitions/AWS::CloudFront::StreamingDistribution.TrustedSigners" } }, "required": [ "Comment", "Enabled", "S3Origin", "TrustedSigners" ], "type": "object" }, "AWS::CloudFront::StreamingDistribution.TrustedSigners": { "additionalProperties": false, "properties": { "AwsAccountNumbers": { "items": { "type": "string" }, "type": "array" }, "Enabled": { "type": "boolean" } }, "required": [ "Enabled" ], "type": "object" }, "AWS::CloudTrail::Channel": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Destinations": { "items": { "$ref": "#/definitions/AWS::CloudTrail::Channel.Destination" }, "type": "array" }, "Name": { "type": "string" }, "Source": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "type": "object" }, "Type": { "enum": [ "AWS::CloudTrail::Channel" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::CloudTrail::Channel.Destination": { "additionalProperties": false, "properties": { "Location": { "type": "string" }, "Type": { "type": "string" } }, "required": [ "Location", "Type" ], "type": "object" }, "AWS::CloudTrail::EventDataStore": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AdvancedEventSelectors": { "items": { "$ref": "#/definitions/AWS::CloudTrail::EventDataStore.AdvancedEventSelector" }, "type": "array" }, "IngestionEnabled": { "type": "boolean" }, "KmsKeyId": { "type": "string" }, "MultiRegionEnabled": { "type": "boolean" }, "Name": { "type": "string" }, "OrganizationEnabled": { "type": "boolean" }, "RetentionPeriod": { "type": "number" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "TerminationProtectionEnabled": { "type": "boolean" } }, "type": "object" }, "Type": { "enum": [ "AWS::CloudTrail::EventDataStore" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::CloudTrail::EventDataStore.AdvancedEventSelector": { "additionalProperties": false, "properties": { "FieldSelectors": { "items": { "$ref": "#/definitions/AWS::CloudTrail::EventDataStore.AdvancedFieldSelector" }, "type": "array" }, "Name": { "type": "string" } }, "required": [ "FieldSelectors" ], "type": "object" }, "AWS::CloudTrail::EventDataStore.AdvancedFieldSelector": { "additionalProperties": false, "properties": { "EndsWith": { "items": { "type": "string" }, "type": "array" }, "Equals": { "items": { "type": "string" }, "type": "array" }, "Field": { "type": "string" }, "NotEndsWith": { "items": { "type": "string" }, "type": "array" }, "NotEquals": { "items": { "type": "string" }, "type": "array" }, "NotStartsWith": { "items": { "type": "string" }, "type": "array" }, "StartsWith": { "items": { "type": "string" }, "type": "array" } }, "required": [ "Field" ], "type": "object" }, "AWS::CloudTrail::ResourcePolicy": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ResourceArn": { "type": "string" }, "ResourcePolicy": { "type": "object" } }, "required": [ "ResourceArn", "ResourcePolicy" ], "type": "object" }, "Type": { "enum": [ "AWS::CloudTrail::ResourcePolicy" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::CloudTrail::Trail": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AdvancedEventSelectors": { "items": { "$ref": "#/definitions/AWS::CloudTrail::Trail.AdvancedEventSelector" }, "type": "array" }, "CloudWatchLogsLogGroupArn": { "type": "string" }, "CloudWatchLogsRoleArn": { "type": "string" }, "EnableLogFileValidation": { "type": "boolean" }, "EventSelectors": { "items": { "$ref": "#/definitions/AWS::CloudTrail::Trail.EventSelector" }, "type": "array" }, "IncludeGlobalServiceEvents": { "type": "boolean" }, "InsightSelectors": { "items": { "$ref": "#/definitions/AWS::CloudTrail::Trail.InsightSelector" }, "type": "array" }, "IsLogging": { "type": "boolean" }, "IsMultiRegionTrail": { "type": "boolean" }, "IsOrganizationTrail": { "type": "boolean" }, "KMSKeyId": { "type": "string" }, "S3BucketName": { "type": "string" }, "S3KeyPrefix": { "type": "string" }, "SnsTopicName": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "TrailName": { "type": "string" } }, "required": [ "IsLogging", "S3BucketName" ], "type": "object" }, "Type": { "enum": [ "AWS::CloudTrail::Trail" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::CloudTrail::Trail.AdvancedEventSelector": { "additionalProperties": false, "properties": { "FieldSelectors": { "items": { "$ref": "#/definitions/AWS::CloudTrail::Trail.AdvancedFieldSelector" }, "type": "array" }, "Name": { "type": "string" } }, "required": [ "FieldSelectors" ], "type": "object" }, "AWS::CloudTrail::Trail.AdvancedFieldSelector": { "additionalProperties": false, "properties": { "EndsWith": { "items": { "type": "string" }, "type": "array" }, "Equals": { "items": { "type": "string" }, "type": "array" }, "Field": { "type": "string" }, "NotEndsWith": { "items": { "type": "string" }, "type": "array" }, "NotEquals": { "items": { "type": "string" }, "type": "array" }, "NotStartsWith": { "items": { "type": "string" }, "type": "array" }, "StartsWith": { "items": { "type": "string" }, "type": "array" } }, "required": [ "Field" ], "type": "object" }, "AWS::CloudTrail::Trail.DataResource": { "additionalProperties": false, "properties": { "Type": { "type": "string" }, "Values": { "items": { "type": "string" }, "type": "array" } }, "required": [ "Type" ], "type": "object" }, "AWS::CloudTrail::Trail.EventSelector": { "additionalProperties": false, "properties": { "DataResources": { "items": { "$ref": "#/definitions/AWS::CloudTrail::Trail.DataResource" }, "type": "array" }, "ExcludeManagementEventSources": { "items": { "type": "string" }, "type": "array" }, "IncludeManagementEvents": { "type": "boolean" }, "ReadWriteType": { "type": "string" } }, "type": "object" }, "AWS::CloudTrail::Trail.InsightSelector": { "additionalProperties": false, "properties": { "InsightType": { "type": "string" } }, "type": "object" }, "AWS::CloudWatch::Alarm": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ActionsEnabled": { "type": "boolean" }, "AlarmActions": { "items": { "type": "string" }, "type": "array" }, "AlarmDescription": { "type": "string" }, "AlarmName": { "type": "string" }, "ComparisonOperator": { "type": "string" }, "DatapointsToAlarm": { "type": "number" }, "Dimensions": { "items": { "$ref": "#/definitions/AWS::CloudWatch::Alarm.Dimension" }, "type": "array" }, "EvaluateLowSampleCountPercentile": { "type": "string" }, "EvaluationPeriods": { "type": "number" }, "ExtendedStatistic": { "type": "string" }, "InsufficientDataActions": { "items": { "type": "string" }, "type": "array" }, "MetricName": { "type": "string" }, "Metrics": { "items": { "$ref": "#/definitions/AWS::CloudWatch::Alarm.MetricDataQuery" }, "type": "array" }, "Namespace": { "type": "string" }, "OKActions": { "items": { "type": "string" }, "type": "array" }, "Period": { "type": "number" }, "Statistic": { "type": "string" }, "Threshold": { "type": "number" }, "ThresholdMetricId": { "type": "string" }, "TreatMissingData": { "type": "string" }, "Unit": { "type": "string" } }, "required": [ "ComparisonOperator", "EvaluationPeriods" ], "type": "object" }, "Type": { "enum": [ "AWS::CloudWatch::Alarm" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::CloudWatch::Alarm.Dimension": { "additionalProperties": false, "properties": { "Name": { "type": "string" }, "Value": { "type": "string" } }, "required": [ "Name", "Value" ], "type": "object" }, "AWS::CloudWatch::Alarm.Metric": { "additionalProperties": false, "properties": { "Dimensions": { "items": { "$ref": "#/definitions/AWS::CloudWatch::Alarm.Dimension" }, "type": "array" }, "MetricName": { "type": "string" }, "Namespace": { "type": "string" } }, "type": "object" }, "AWS::CloudWatch::Alarm.MetricDataQuery": { "additionalProperties": false, "properties": { "AccountId": { "type": "string" }, "Expression": { "type": "string" }, "Id": { "type": "string" }, "Label": { "type": "string" }, "MetricStat": { "$ref": "#/definitions/AWS::CloudWatch::Alarm.MetricStat" }, "Period": { "type": "number" }, "ReturnData": { "type": "boolean" } }, "required": [ "Id" ], "type": "object" }, "AWS::CloudWatch::Alarm.MetricStat": { "additionalProperties": false, "properties": { "Metric": { "$ref": "#/definitions/AWS::CloudWatch::Alarm.Metric" }, "Period": { "type": "number" }, "Stat": { "type": "string" }, "Unit": { "type": "string" } }, "required": [ "Metric", "Period", "Stat" ], "type": "object" }, "AWS::CloudWatch::AnomalyDetector": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Configuration": { "$ref": "#/definitions/AWS::CloudWatch::AnomalyDetector.Configuration" }, "Dimensions": { "items": { "$ref": "#/definitions/AWS::CloudWatch::AnomalyDetector.Dimension" }, "type": "array" }, "MetricMathAnomalyDetector": { "$ref": "#/definitions/AWS::CloudWatch::AnomalyDetector.MetricMathAnomalyDetector" }, "MetricName": { "type": "string" }, "Namespace": { "type": "string" }, "SingleMetricAnomalyDetector": { "$ref": "#/definitions/AWS::CloudWatch::AnomalyDetector.SingleMetricAnomalyDetector" }, "Stat": { "type": "string" } }, "type": "object" }, "Type": { "enum": [ "AWS::CloudWatch::AnomalyDetector" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::CloudWatch::AnomalyDetector.Configuration": { "additionalProperties": false, "properties": { "ExcludedTimeRanges": { "items": { "$ref": "#/definitions/AWS::CloudWatch::AnomalyDetector.Range" }, "type": "array" }, "MetricTimeZone": { "type": "string" } }, "type": "object" }, "AWS::CloudWatch::AnomalyDetector.Dimension": { "additionalProperties": false, "properties": { "Name": { "type": "string" }, "Value": { "type": "string" } }, "required": [ "Name", "Value" ], "type": "object" }, "AWS::CloudWatch::AnomalyDetector.Metric": { "additionalProperties": false, "properties": { "Dimensions": { "items": { "$ref": "#/definitions/AWS::CloudWatch::AnomalyDetector.Dimension" }, "type": "array" }, "MetricName": { "type": "string" }, "Namespace": { "type": "string" } }, "required": [ "MetricName", "Namespace" ], "type": "object" }, "AWS::CloudWatch::AnomalyDetector.MetricDataQueries": { "additionalProperties": false, "properties": {}, "type": "object" }, "AWS::CloudWatch::AnomalyDetector.MetricDataQuery": { "additionalProperties": false, "properties": { "AccountId": { "type": "string" }, "Expression": { "type": "string" }, "Id": { "type": "string" }, "Label": { "type": "string" }, "MetricStat": { "$ref": "#/definitions/AWS::CloudWatch::AnomalyDetector.MetricStat" }, "Period": { "type": "number" }, "ReturnData": { "type": "boolean" } }, "required": [ "Id" ], "type": "object" }, "AWS::CloudWatch::AnomalyDetector.MetricMathAnomalyDetector": { "additionalProperties": false, "properties": { "MetricDataQueries": { "items": { "$ref": "#/definitions/AWS::CloudWatch::AnomalyDetector.MetricDataQuery" }, "type": "array" } }, "type": "object" }, "AWS::CloudWatch::AnomalyDetector.MetricStat": { "additionalProperties": false, "properties": { "Metric": { "$ref": "#/definitions/AWS::CloudWatch::AnomalyDetector.Metric" }, "Period": { "type": "number" }, "Stat": { "type": "string" }, "Unit": { "type": "string" } }, "required": [ "Metric", "Period", "Stat" ], "type": "object" }, "AWS::CloudWatch::AnomalyDetector.Range": { "additionalProperties": false, "properties": { "EndTime": { "type": "string" }, "StartTime": { "type": "string" } }, "required": [ "EndTime", "StartTime" ], "type": "object" }, "AWS::CloudWatch::AnomalyDetector.SingleMetricAnomalyDetector": { "additionalProperties": false, "properties": { "Dimensions": { "items": { "$ref": "#/definitions/AWS::CloudWatch::AnomalyDetector.Dimension" }, "type": "array" }, "MetricName": { "type": "string" }, "Namespace": { "type": "string" }, "Stat": { "type": "string" } }, "type": "object" }, "AWS::CloudWatch::CompositeAlarm": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ActionsEnabled": { "type": "boolean" }, "ActionsSuppressor": { "type": "string" }, "ActionsSuppressorExtensionPeriod": { "type": "number" }, "ActionsSuppressorWaitPeriod": { "type": "number" }, "AlarmActions": { "items": { "type": "string" }, "type": "array" }, "AlarmDescription": { "type": "string" }, "AlarmName": { "type": "string" }, "AlarmRule": { "type": "string" }, "InsufficientDataActions": { "items": { "type": "string" }, "type": "array" }, "OKActions": { "items": { "type": "string" }, "type": "array" } }, "required": [ "AlarmRule" ], "type": "object" }, "Type": { "enum": [ "AWS::CloudWatch::CompositeAlarm" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::CloudWatch::Dashboard": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "DashboardBody": { "type": "string" }, "DashboardName": { "type": "string" } }, "required": [ "DashboardBody" ], "type": "object" }, "Type": { "enum": [ "AWS::CloudWatch::Dashboard" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::CloudWatch::InsightRule": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "RuleBody": { "type": "string" }, "RuleName": { "type": "string" }, "RuleState": { "type": "string" }, "Tags": { "$ref": "#/definitions/AWS::CloudWatch::InsightRule.Tags" } }, "required": [ "RuleBody", "RuleName", "RuleState" ], "type": "object" }, "Type": { "enum": [ "AWS::CloudWatch::InsightRule" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::CloudWatch::InsightRule.Tags": { "additionalProperties": false, "properties": {}, "type": "object" }, "AWS::CloudWatch::MetricStream": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ExcludeFilters": { "items": { "$ref": "#/definitions/AWS::CloudWatch::MetricStream.MetricStreamFilter" }, "type": "array" }, "FirehoseArn": { "type": "string" }, "IncludeFilters": { "items": { "$ref": "#/definitions/AWS::CloudWatch::MetricStream.MetricStreamFilter" }, "type": "array" }, "IncludeLinkedAccountsMetrics": { "type": "boolean" }, "Name": { "type": "string" }, "OutputFormat": { "type": "string" }, "RoleArn": { "type": "string" }, "StatisticsConfigurations": { "items": { "$ref": "#/definitions/AWS::CloudWatch::MetricStream.MetricStreamStatisticsConfiguration" }, "type": "array" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "FirehoseArn", "OutputFormat", "RoleArn" ], "type": "object" }, "Type": { "enum": [ "AWS::CloudWatch::MetricStream" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::CloudWatch::MetricStream.MetricStreamFilter": { "additionalProperties": false, "properties": { "MetricNames": { "items": { "type": "string" }, "type": "array" }, "Namespace": { "type": "string" } }, "required": [ "Namespace" ], "type": "object" }, "AWS::CloudWatch::MetricStream.MetricStreamStatisticsConfiguration": { "additionalProperties": false, "properties": { "AdditionalStatistics": { "items": { "type": "string" }, "type": "array" }, "IncludeMetrics": { "items": { "$ref": "#/definitions/AWS::CloudWatch::MetricStream.MetricStreamStatisticsMetric" }, "type": "array" } }, "required": [ "AdditionalStatistics", "IncludeMetrics" ], "type": "object" }, "AWS::CloudWatch::MetricStream.MetricStreamStatisticsMetric": { "additionalProperties": false, "properties": { "MetricName": { "type": "string" }, "Namespace": { "type": "string" } }, "required": [ "MetricName", "Namespace" ], "type": "object" }, "AWS::CodeArtifact::Domain": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "DomainName": { "type": "string" }, "EncryptionKey": { "type": "string" }, "PermissionsPolicyDocument": { "type": "object" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "DomainName" ], "type": "object" }, "Type": { "enum": [ "AWS::CodeArtifact::Domain" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::CodeArtifact::Repository": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "DomainName": { "type": "string" }, "DomainOwner": { "type": "string" }, "ExternalConnections": { "items": { "type": "string" }, "type": "array" }, "PermissionsPolicyDocument": { "type": "object" }, "RepositoryName": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "Upstreams": { "items": { "type": "string" }, "type": "array" } }, "required": [ "DomainName", "RepositoryName" ], "type": "object" }, "Type": { "enum": [ "AWS::CodeArtifact::Repository" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::CodeBuild::Project": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Artifacts": { "$ref": "#/definitions/AWS::CodeBuild::Project.Artifacts" }, "BadgeEnabled": { "type": "boolean" }, "BuildBatchConfig": { "$ref": "#/definitions/AWS::CodeBuild::Project.ProjectBuildBatchConfig" }, "Cache": { "$ref": "#/definitions/AWS::CodeBuild::Project.ProjectCache" }, "ConcurrentBuildLimit": { "type": "number" }, "Description": { "type": "string" }, "EncryptionKey": { "type": "string" }, "Environment": { "$ref": "#/definitions/AWS::CodeBuild::Project.Environment" }, "FileSystemLocations": { "items": { "$ref": "#/definitions/AWS::CodeBuild::Project.ProjectFileSystemLocation" }, "type": "array" }, "LogsConfig": { "$ref": "#/definitions/AWS::CodeBuild::Project.LogsConfig" }, "Name": { "type": "string" }, "QueuedTimeoutInMinutes": { "type": "number" }, "ResourceAccessRole": { "type": "string" }, "SecondaryArtifacts": { "items": { "$ref": "#/definitions/AWS::CodeBuild::Project.Artifacts" }, "type": "array" }, "SecondarySourceVersions": { "items": { "$ref": "#/definitions/AWS::CodeBuild::Project.ProjectSourceVersion" }, "type": "array" }, "SecondarySources": { "items": { "$ref": "#/definitions/AWS::CodeBuild::Project.Source" }, "type": "array" }, "ServiceRole": { "type": "string" }, "Source": { "$ref": "#/definitions/AWS::CodeBuild::Project.Source" }, "SourceVersion": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "TimeoutInMinutes": { "type": "number" }, "Triggers": { "$ref": "#/definitions/AWS::CodeBuild::Project.ProjectTriggers" }, "Visibility": { "type": "string" }, "VpcConfig": { "$ref": "#/definitions/AWS::CodeBuild::Project.VpcConfig" } }, "required": [ "Artifacts", "Environment", "ServiceRole", "Source" ], "type": "object" }, "Type": { "enum": [ "AWS::CodeBuild::Project" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::CodeBuild::Project.Artifacts": { "additionalProperties": false, "properties": { "ArtifactIdentifier": { "type": "string" }, "EncryptionDisabled": { "type": "boolean" }, "Location": { "type": "string" }, "Name": { "type": "string" }, "NamespaceType": { "type": "string" }, "OverrideArtifactName": { "type": "boolean" }, "Packaging": { "type": "string" }, "Path": { "type": "string" }, "Type": { "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::CodeBuild::Project.BatchRestrictions": { "additionalProperties": false, "properties": { "ComputeTypesAllowed": { "items": { "type": "string" }, "type": "array" }, "MaximumBuildsAllowed": { "type": "number" } }, "type": "object" }, "AWS::CodeBuild::Project.BuildStatusConfig": { "additionalProperties": false, "properties": { "Context": { "type": "string" }, "TargetUrl": { "type": "string" } }, "type": "object" }, "AWS::CodeBuild::Project.CloudWatchLogsConfig": { "additionalProperties": false, "properties": { "GroupName": { "type": "string" }, "Status": { "type": "string" }, "StreamName": { "type": "string" } }, "required": [ "Status" ], "type": "object" }, "AWS::CodeBuild::Project.Environment": { "additionalProperties": false, "properties": { "Certificate": { "type": "string" }, "ComputeType": { "type": "string" }, "EnvironmentVariables": { "items": { "$ref": "#/definitions/AWS::CodeBuild::Project.EnvironmentVariable" }, "type": "array" }, "Image": { "type": "string" }, "ImagePullCredentialsType": { "type": "string" }, "PrivilegedMode": { "type": "boolean" }, "RegistryCredential": { "$ref": "#/definitions/AWS::CodeBuild::Project.RegistryCredential" }, "Type": { "type": "string" } }, "required": [ "ComputeType", "Image", "Type" ], "type": "object" }, "AWS::CodeBuild::Project.EnvironmentVariable": { "additionalProperties": false, "properties": { "Name": { "type": "string" }, "Type": { "type": "string" }, "Value": { "type": "string" } }, "required": [ "Name", "Value" ], "type": "object" }, "AWS::CodeBuild::Project.FilterGroup": { "additionalProperties": false, "properties": {}, "type": "object" }, "AWS::CodeBuild::Project.GitSubmodulesConfig": { "additionalProperties": false, "properties": { "FetchSubmodules": { "type": "boolean" } }, "required": [ "FetchSubmodules" ], "type": "object" }, "AWS::CodeBuild::Project.LogsConfig": { "additionalProperties": false, "properties": { "CloudWatchLogs": { "$ref": "#/definitions/AWS::CodeBuild::Project.CloudWatchLogsConfig" }, "S3Logs": { "$ref": "#/definitions/AWS::CodeBuild::Project.S3LogsConfig" } }, "type": "object" }, "AWS::CodeBuild::Project.ProjectBuildBatchConfig": { "additionalProperties": false, "properties": { "BatchReportMode": { "type": "string" }, "CombineArtifacts": { "type": "boolean" }, "Restrictions": { "$ref": "#/definitions/AWS::CodeBuild::Project.BatchRestrictions" }, "ServiceRole": { "type": "string" }, "TimeoutInMins": { "type": "number" } }, "type": "object" }, "AWS::CodeBuild::Project.ProjectCache": { "additionalProperties": false, "properties": { "Location": { "type": "string" }, "Modes": { "items": { "type": "string" }, "type": "array" }, "Type": { "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::CodeBuild::Project.ProjectFileSystemLocation": { "additionalProperties": false, "properties": { "Identifier": { "type": "string" }, "Location": { "type": "string" }, "MountOptions": { "type": "string" }, "MountPoint": { "type": "string" }, "Type": { "type": "string" } }, "required": [ "Identifier", "Location", "MountPoint", "Type" ], "type": "object" }, "AWS::CodeBuild::Project.ProjectSourceVersion": { "additionalProperties": false, "properties": { "SourceIdentifier": { "type": "string" }, "SourceVersion": { "type": "string" } }, "required": [ "SourceIdentifier" ], "type": "object" }, "AWS::CodeBuild::Project.ProjectTriggers": { "additionalProperties": false, "properties": { "BuildType": { "type": "string" }, "FilterGroups": { "items": { "$ref": "#/definitions/AWS::CodeBuild::Project.FilterGroup" }, "type": "array" }, "Webhook": { "type": "boolean" } }, "type": "object" }, "AWS::CodeBuild::Project.RegistryCredential": { "additionalProperties": false, "properties": { "Credential": { "type": "string" }, "CredentialProvider": { "type": "string" } }, "required": [ "Credential", "CredentialProvider" ], "type": "object" }, "AWS::CodeBuild::Project.S3LogsConfig": { "additionalProperties": false, "properties": { "EncryptionDisabled": { "type": "boolean" }, "Location": { "type": "string" }, "Status": { "type": "string" } }, "required": [ "Status" ], "type": "object" }, "AWS::CodeBuild::Project.Source": { "additionalProperties": false, "properties": { "Auth": { "$ref": "#/definitions/AWS::CodeBuild::Project.SourceAuth" }, "BuildSpec": { "type": "string" }, "BuildStatusConfig": { "$ref": "#/definitions/AWS::CodeBuild::Project.BuildStatusConfig" }, "GitCloneDepth": { "type": "number" }, "GitSubmodulesConfig": { "$ref": "#/definitions/AWS::CodeBuild::Project.GitSubmodulesConfig" }, "InsecureSsl": { "type": "boolean" }, "Location": { "type": "string" }, "ReportBuildStatus": { "type": "boolean" }, "SourceIdentifier": { "type": "string" }, "Type": { "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::CodeBuild::Project.SourceAuth": { "additionalProperties": false, "properties": { "Resource": { "type": "string" }, "Type": { "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::CodeBuild::Project.VpcConfig": { "additionalProperties": false, "properties": { "SecurityGroupIds": { "items": { "type": "string" }, "type": "array" }, "Subnets": { "items": { "type": "string" }, "type": "array" }, "VpcId": { "type": "string" } }, "type": "object" }, "AWS::CodeBuild::Project.WebhookFilter": { "additionalProperties": false, "properties": { "ExcludeMatchedPattern": { "type": "boolean" }, "Pattern": { "type": "string" }, "Type": { "type": "string" } }, "required": [ "Pattern", "Type" ], "type": "object" }, "AWS::CodeBuild::ReportGroup": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "DeleteReports": { "type": "boolean" }, "ExportConfig": { "$ref": "#/definitions/AWS::CodeBuild::ReportGroup.ReportExportConfig" }, "Name": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "Type": { "type": "string" } }, "required": [ "ExportConfig", "Type" ], "type": "object" }, "Type": { "enum": [ "AWS::CodeBuild::ReportGroup" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::CodeBuild::ReportGroup.ReportExportConfig": { "additionalProperties": false, "properties": { "ExportConfigType": { "type": "string" }, "S3Destination": { "$ref": "#/definitions/AWS::CodeBuild::ReportGroup.S3ReportExportConfig" } }, "required": [ "ExportConfigType" ], "type": "object" }, "AWS::CodeBuild::ReportGroup.S3ReportExportConfig": { "additionalProperties": false, "properties": { "Bucket": { "type": "string" }, "BucketOwner": { "type": "string" }, "EncryptionDisabled": { "type": "boolean" }, "EncryptionKey": { "type": "string" }, "Packaging": { "type": "string" }, "Path": { "type": "string" } }, "required": [ "Bucket" ], "type": "object" }, "AWS::CodeBuild::SourceCredential": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AuthType": { "type": "string" }, "ServerType": { "type": "string" }, "Token": { "type": "string" }, "Username": { "type": "string" } }, "required": [ "AuthType", "ServerType", "Token" ], "type": "object" }, "Type": { "enum": [ "AWS::CodeBuild::SourceCredential" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::CodeCommit::Repository": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Code": { "$ref": "#/definitions/AWS::CodeCommit::Repository.Code" }, "RepositoryDescription": { "type": "string" }, "RepositoryName": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "Triggers": { "items": { "$ref": "#/definitions/AWS::CodeCommit::Repository.RepositoryTrigger" }, "type": "array" } }, "required": [ "RepositoryName" ], "type": "object" }, "Type": { "enum": [ "AWS::CodeCommit::Repository" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::CodeCommit::Repository.Code": { "additionalProperties": false, "properties": { "BranchName": { "type": "string" }, "S3": { "$ref": "#/definitions/AWS::CodeCommit::Repository.S3" } }, "required": [ "S3" ], "type": "object" }, "AWS::CodeCommit::Repository.RepositoryTrigger": { "additionalProperties": false, "properties": { "Branches": { "items": { "type": "string" }, "type": "array" }, "CustomData": { "type": "string" }, "DestinationArn": { "type": "string" }, "Events": { "items": { "type": "string" }, "type": "array" }, "Name": { "type": "string" } }, "required": [ "DestinationArn", "Events", "Name" ], "type": "object" }, "AWS::CodeCommit::Repository.S3": { "additionalProperties": false, "properties": { "Bucket": { "type": "string" }, "Key": { "type": "string" }, "ObjectVersion": { "type": "string" } }, "required": [ "Bucket", "Key" ], "type": "object" }, "AWS::CodeDeploy::Application": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ApplicationName": { "type": "string" }, "ComputePlatform": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "type": "object" }, "Type": { "enum": [ "AWS::CodeDeploy::Application" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::CodeDeploy::DeploymentConfig": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ComputePlatform": { "type": "string" }, "DeploymentConfigName": { "type": "string" }, "MinimumHealthyHosts": { "$ref": "#/definitions/AWS::CodeDeploy::DeploymentConfig.MinimumHealthyHosts" }, "TrafficRoutingConfig": { "$ref": "#/definitions/AWS::CodeDeploy::DeploymentConfig.TrafficRoutingConfig" } }, "type": "object" }, "Type": { "enum": [ "AWS::CodeDeploy::DeploymentConfig" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::CodeDeploy::DeploymentConfig.MinimumHealthyHosts": { "additionalProperties": false, "properties": { "Type": { "type": "string" }, "Value": { "type": "number" } }, "required": [ "Type", "Value" ], "type": "object" }, "AWS::CodeDeploy::DeploymentConfig.TimeBasedCanary": { "additionalProperties": false, "properties": { "CanaryInterval": { "type": "number" }, "CanaryPercentage": { "type": "number" } }, "required": [ "CanaryInterval", "CanaryPercentage" ], "type": "object" }, "AWS::CodeDeploy::DeploymentConfig.TimeBasedLinear": { "additionalProperties": false, "properties": { "LinearInterval": { "type": "number" }, "LinearPercentage": { "type": "number" } }, "required": [ "LinearInterval", "LinearPercentage" ], "type": "object" }, "AWS::CodeDeploy::DeploymentConfig.TrafficRoutingConfig": { "additionalProperties": false, "properties": { "TimeBasedCanary": { "$ref": "#/definitions/AWS::CodeDeploy::DeploymentConfig.TimeBasedCanary" }, "TimeBasedLinear": { "$ref": "#/definitions/AWS::CodeDeploy::DeploymentConfig.TimeBasedLinear" }, "Type": { "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::CodeDeploy::DeploymentGroup": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AlarmConfiguration": { "$ref": "#/definitions/AWS::CodeDeploy::DeploymentGroup.AlarmConfiguration" }, "ApplicationName": { "type": "string" }, "AutoRollbackConfiguration": { "$ref": "#/definitions/AWS::CodeDeploy::DeploymentGroup.AutoRollbackConfiguration" }, "AutoScalingGroups": { "items": { "type": "string" }, "type": "array" }, "BlueGreenDeploymentConfiguration": { "$ref": "#/definitions/AWS::CodeDeploy::DeploymentGroup.BlueGreenDeploymentConfiguration" }, "Deployment": { "$ref": "#/definitions/AWS::CodeDeploy::DeploymentGroup.Deployment" }, "DeploymentConfigName": { "type": "string" }, "DeploymentGroupName": { "type": "string" }, "DeploymentStyle": { "$ref": "#/definitions/AWS::CodeDeploy::DeploymentGroup.DeploymentStyle" }, "ECSServices": { "items": { "$ref": "#/definitions/AWS::CodeDeploy::DeploymentGroup.ECSService" }, "type": "array" }, "Ec2TagFilters": { "items": { "$ref": "#/definitions/AWS::CodeDeploy::DeploymentGroup.EC2TagFilter" }, "type": "array" }, "Ec2TagSet": { "$ref": "#/definitions/AWS::CodeDeploy::DeploymentGroup.EC2TagSet" }, "LoadBalancerInfo": { "$ref": "#/definitions/AWS::CodeDeploy::DeploymentGroup.LoadBalancerInfo" }, "OnPremisesInstanceTagFilters": { "items": { "$ref": "#/definitions/AWS::CodeDeploy::DeploymentGroup.TagFilter" }, "type": "array" }, "OnPremisesTagSet": { "$ref": "#/definitions/AWS::CodeDeploy::DeploymentGroup.OnPremisesTagSet" }, "OutdatedInstancesStrategy": { "type": "string" }, "ServiceRoleArn": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "TriggerConfigurations": { "items": { "$ref": "#/definitions/AWS::CodeDeploy::DeploymentGroup.TriggerConfig" }, "type": "array" } }, "required": [ "ApplicationName", "ServiceRoleArn" ], "type": "object" }, "Type": { "enum": [ "AWS::CodeDeploy::DeploymentGroup" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::CodeDeploy::DeploymentGroup.Alarm": { "additionalProperties": false, "properties": { "Name": { "type": "string" } }, "type": "object" }, "AWS::CodeDeploy::DeploymentGroup.AlarmConfiguration": { "additionalProperties": false, "properties": { "Alarms": { "items": { "$ref": "#/definitions/AWS::CodeDeploy::DeploymentGroup.Alarm" }, "type": "array" }, "Enabled": { "type": "boolean" }, "IgnorePollAlarmFailure": { "type": "boolean" } }, "type": "object" }, "AWS::CodeDeploy::DeploymentGroup.AutoRollbackConfiguration": { "additionalProperties": false, "properties": { "Enabled": { "type": "boolean" }, "Events": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::CodeDeploy::DeploymentGroup.BlueGreenDeploymentConfiguration": { "additionalProperties": false, "properties": { "DeploymentReadyOption": { "$ref": "#/definitions/AWS::CodeDeploy::DeploymentGroup.DeploymentReadyOption" }, "GreenFleetProvisioningOption": { "$ref": "#/definitions/AWS::CodeDeploy::DeploymentGroup.GreenFleetProvisioningOption" }, "TerminateBlueInstancesOnDeploymentSuccess": { "$ref": "#/definitions/AWS::CodeDeploy::DeploymentGroup.BlueInstanceTerminationOption" } }, "type": "object" }, "AWS::CodeDeploy::DeploymentGroup.BlueInstanceTerminationOption": { "additionalProperties": false, "properties": { "Action": { "type": "string" }, "TerminationWaitTimeInMinutes": { "type": "number" } }, "type": "object" }, "AWS::CodeDeploy::DeploymentGroup.Deployment": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "IgnoreApplicationStopFailures": { "type": "boolean" }, "Revision": { "$ref": "#/definitions/AWS::CodeDeploy::DeploymentGroup.RevisionLocation" } }, "required": [ "Revision" ], "type": "object" }, "AWS::CodeDeploy::DeploymentGroup.DeploymentReadyOption": { "additionalProperties": false, "properties": { "ActionOnTimeout": { "type": "string" }, "WaitTimeInMinutes": { "type": "number" } }, "type": "object" }, "AWS::CodeDeploy::DeploymentGroup.DeploymentStyle": { "additionalProperties": false, "properties": { "DeploymentOption": { "type": "string" }, "DeploymentType": { "type": "string" } }, "type": "object" }, "AWS::CodeDeploy::DeploymentGroup.EC2TagFilter": { "additionalProperties": false, "properties": { "Key": { "type": "string" }, "Type": { "type": "string" }, "Value": { "type": "string" } }, "type": "object" }, "AWS::CodeDeploy::DeploymentGroup.EC2TagSet": { "additionalProperties": false, "properties": { "Ec2TagSetList": { "items": { "$ref": "#/definitions/AWS::CodeDeploy::DeploymentGroup.EC2TagSetListObject" }, "type": "array" } }, "type": "object" }, "AWS::CodeDeploy::DeploymentGroup.EC2TagSetListObject": { "additionalProperties": false, "properties": { "Ec2TagGroup": { "items": { "$ref": "#/definitions/AWS::CodeDeploy::DeploymentGroup.EC2TagFilter" }, "type": "array" } }, "type": "object" }, "AWS::CodeDeploy::DeploymentGroup.ECSService": { "additionalProperties": false, "properties": { "ClusterName": { "type": "string" }, "ServiceName": { "type": "string" } }, "required": [ "ClusterName", "ServiceName" ], "type": "object" }, "AWS::CodeDeploy::DeploymentGroup.ELBInfo": { "additionalProperties": false, "properties": { "Name": { "type": "string" } }, "type": "object" }, "AWS::CodeDeploy::DeploymentGroup.GitHubLocation": { "additionalProperties": false, "properties": { "CommitId": { "type": "string" }, "Repository": { "type": "string" } }, "required": [ "CommitId", "Repository" ], "type": "object" }, "AWS::CodeDeploy::DeploymentGroup.GreenFleetProvisioningOption": { "additionalProperties": false, "properties": { "Action": { "type": "string" } }, "type": "object" }, "AWS::CodeDeploy::DeploymentGroup.LoadBalancerInfo": { "additionalProperties": false, "properties": { "ElbInfoList": { "items": { "$ref": "#/definitions/AWS::CodeDeploy::DeploymentGroup.ELBInfo" }, "type": "array" }, "TargetGroupInfoList": { "items": { "$ref": "#/definitions/AWS::CodeDeploy::DeploymentGroup.TargetGroupInfo" }, "type": "array" }, "TargetGroupPairInfoList": { "items": { "$ref": "#/definitions/AWS::CodeDeploy::DeploymentGroup.TargetGroupPairInfo" }, "type": "array" } }, "type": "object" }, "AWS::CodeDeploy::DeploymentGroup.OnPremisesTagSet": { "additionalProperties": false, "properties": { "OnPremisesTagSetList": { "items": { "$ref": "#/definitions/AWS::CodeDeploy::DeploymentGroup.OnPremisesTagSetListObject" }, "type": "array" } }, "type": "object" }, "AWS::CodeDeploy::DeploymentGroup.OnPremisesTagSetListObject": { "additionalProperties": false, "properties": { "OnPremisesTagGroup": { "items": { "$ref": "#/definitions/AWS::CodeDeploy::DeploymentGroup.TagFilter" }, "type": "array" } }, "type": "object" }, "AWS::CodeDeploy::DeploymentGroup.RevisionLocation": { "additionalProperties": false, "properties": { "GitHubLocation": { "$ref": "#/definitions/AWS::CodeDeploy::DeploymentGroup.GitHubLocation" }, "RevisionType": { "type": "string" }, "S3Location": { "$ref": "#/definitions/AWS::CodeDeploy::DeploymentGroup.S3Location" } }, "type": "object" }, "AWS::CodeDeploy::DeploymentGroup.S3Location": { "additionalProperties": false, "properties": { "Bucket": { "type": "string" }, "BundleType": { "type": "string" }, "ETag": { "type": "string" }, "Key": { "type": "string" }, "Version": { "type": "string" } }, "required": [ "Bucket", "Key" ], "type": "object" }, "AWS::CodeDeploy::DeploymentGroup.TagFilter": { "additionalProperties": false, "properties": { "Key": { "type": "string" }, "Type": { "type": "string" }, "Value": { "type": "string" } }, "type": "object" }, "AWS::CodeDeploy::DeploymentGroup.TargetGroupInfo": { "additionalProperties": false, "properties": { "Name": { "type": "string" } }, "type": "object" }, "AWS::CodeDeploy::DeploymentGroup.TargetGroupPairInfo": { "additionalProperties": false, "properties": { "ProdTrafficRoute": { "$ref": "#/definitions/AWS::CodeDeploy::DeploymentGroup.TrafficRoute" }, "TargetGroups": { "items": { "$ref": "#/definitions/AWS::CodeDeploy::DeploymentGroup.TargetGroupInfo" }, "type": "array" }, "TestTrafficRoute": { "$ref": "#/definitions/AWS::CodeDeploy::DeploymentGroup.TrafficRoute" } }, "type": "object" }, "AWS::CodeDeploy::DeploymentGroup.TrafficRoute": { "additionalProperties": false, "properties": { "ListenerArns": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::CodeDeploy::DeploymentGroup.TriggerConfig": { "additionalProperties": false, "properties": { "TriggerEvents": { "items": { "type": "string" }, "type": "array" }, "TriggerName": { "type": "string" }, "TriggerTargetArn": { "type": "string" } }, "type": "object" }, "AWS::CodeGuruProfiler::ProfilingGroup": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AgentPermissions": { "$ref": "#/definitions/AWS::CodeGuruProfiler::ProfilingGroup.AgentPermissions" }, "AnomalyDetectionNotificationConfiguration": { "items": { "$ref": "#/definitions/AWS::CodeGuruProfiler::ProfilingGroup.Channel" }, "type": "array" }, "ComputePlatform": { "type": "string" }, "ProfilingGroupName": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "ProfilingGroupName" ], "type": "object" }, "Type": { "enum": [ "AWS::CodeGuruProfiler::ProfilingGroup" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::CodeGuruProfiler::ProfilingGroup.AgentPermissions": { "additionalProperties": false, "properties": { "Principals": { "items": { "type": "string" }, "type": "array" } }, "required": [ "Principals" ], "type": "object" }, "AWS::CodeGuruProfiler::ProfilingGroup.Channel": { "additionalProperties": false, "properties": { "channelId": { "type": "string" }, "channelUri": { "type": "string" } }, "required": [ "channelUri" ], "type": "object" }, "AWS::CodeGuruReviewer::RepositoryAssociation": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "BucketName": { "type": "string" }, "ConnectionArn": { "type": "string" }, "Name": { "type": "string" }, "Owner": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "Type": { "type": "string" } }, "required": [ "Name", "Type" ], "type": "object" }, "Type": { "enum": [ "AWS::CodeGuruReviewer::RepositoryAssociation" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::CodePipeline::CustomActionType": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Category": { "type": "string" }, "ConfigurationProperties": { "items": { "$ref": "#/definitions/AWS::CodePipeline::CustomActionType.ConfigurationProperties" }, "type": "array" }, "InputArtifactDetails": { "$ref": "#/definitions/AWS::CodePipeline::CustomActionType.ArtifactDetails" }, "OutputArtifactDetails": { "$ref": "#/definitions/AWS::CodePipeline::CustomActionType.ArtifactDetails" }, "Provider": { "type": "string" }, "Settings": { "$ref": "#/definitions/AWS::CodePipeline::CustomActionType.Settings" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "Version": { "type": "string" } }, "required": [ "Category", "InputArtifactDetails", "OutputArtifactDetails", "Provider", "Version" ], "type": "object" }, "Type": { "enum": [ "AWS::CodePipeline::CustomActionType" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::CodePipeline::CustomActionType.ArtifactDetails": { "additionalProperties": false, "properties": { "MaximumCount": { "type": "number" }, "MinimumCount": { "type": "number" } }, "required": [ "MaximumCount", "MinimumCount" ], "type": "object" }, "AWS::CodePipeline::CustomActionType.ConfigurationProperties": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "Key": { "type": "boolean" }, "Name": { "type": "string" }, "Queryable": { "type": "boolean" }, "Required": { "type": "boolean" }, "Secret": { "type": "boolean" }, "Type": { "type": "string" } }, "required": [ "Key", "Name", "Required", "Secret" ], "type": "object" }, "AWS::CodePipeline::CustomActionType.Settings": { "additionalProperties": false, "properties": { "EntityUrlTemplate": { "type": "string" }, "ExecutionUrlTemplate": { "type": "string" }, "RevisionUrlTemplate": { "type": "string" }, "ThirdPartyConfigurationUrl": { "type": "string" } }, "type": "object" }, "AWS::CodePipeline::Pipeline": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ArtifactStore": { "$ref": "#/definitions/AWS::CodePipeline::Pipeline.ArtifactStore" }, "ArtifactStores": { "items": { "$ref": "#/definitions/AWS::CodePipeline::Pipeline.ArtifactStoreMap" }, "type": "array" }, "DisableInboundStageTransitions": { "items": { "$ref": "#/definitions/AWS::CodePipeline::Pipeline.StageTransition" }, "type": "array" }, "Name": { "type": "string" }, "RestartExecutionOnUpdate": { "type": "boolean" }, "RoleArn": { "type": "string" }, "Stages": { "items": { "$ref": "#/definitions/AWS::CodePipeline::Pipeline.StageDeclaration" }, "type": "array" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "RoleArn", "Stages" ], "type": "object" }, "Type": { "enum": [ "AWS::CodePipeline::Pipeline" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::CodePipeline::Pipeline.ActionDeclaration": { "additionalProperties": false, "properties": { "ActionTypeId": { "$ref": "#/definitions/AWS::CodePipeline::Pipeline.ActionTypeId" }, "Configuration": { "type": "object" }, "InputArtifacts": { "items": { "$ref": "#/definitions/AWS::CodePipeline::Pipeline.InputArtifact" }, "type": "array" }, "Name": { "type": "string" }, "Namespace": { "type": "string" }, "OutputArtifacts": { "items": { "$ref": "#/definitions/AWS::CodePipeline::Pipeline.OutputArtifact" }, "type": "array" }, "Region": { "type": "string" }, "RoleArn": { "type": "string" }, "RunOrder": { "type": "number" } }, "required": [ "ActionTypeId", "Name" ], "type": "object" }, "AWS::CodePipeline::Pipeline.ActionTypeId": { "additionalProperties": false, "properties": { "Category": { "type": "string" }, "Owner": { "type": "string" }, "Provider": { "type": "string" }, "Version": { "type": "string" } }, "required": [ "Category", "Owner", "Provider", "Version" ], "type": "object" }, "AWS::CodePipeline::Pipeline.ArtifactStore": { "additionalProperties": false, "properties": { "EncryptionKey": { "$ref": "#/definitions/AWS::CodePipeline::Pipeline.EncryptionKey" }, "Location": { "type": "string" }, "Type": { "type": "string" } }, "required": [ "Location", "Type" ], "type": "object" }, "AWS::CodePipeline::Pipeline.ArtifactStoreMap": { "additionalProperties": false, "properties": { "ArtifactStore": { "$ref": "#/definitions/AWS::CodePipeline::Pipeline.ArtifactStore" }, "Region": { "type": "string" } }, "required": [ "ArtifactStore", "Region" ], "type": "object" }, "AWS::CodePipeline::Pipeline.BlockerDeclaration": { "additionalProperties": false, "properties": { "Name": { "type": "string" }, "Type": { "type": "string" } }, "required": [ "Name", "Type" ], "type": "object" }, "AWS::CodePipeline::Pipeline.EncryptionKey": { "additionalProperties": false, "properties": { "Id": { "type": "string" }, "Type": { "type": "string" } }, "required": [ "Id", "Type" ], "type": "object" }, "AWS::CodePipeline::Pipeline.InputArtifact": { "additionalProperties": false, "properties": { "Name": { "type": "string" } }, "required": [ "Name" ], "type": "object" }, "AWS::CodePipeline::Pipeline.OutputArtifact": { "additionalProperties": false, "properties": { "Name": { "type": "string" } }, "required": [ "Name" ], "type": "object" }, "AWS::CodePipeline::Pipeline.StageDeclaration": { "additionalProperties": false, "properties": { "Actions": { "items": { "$ref": "#/definitions/AWS::CodePipeline::Pipeline.ActionDeclaration" }, "type": "array" }, "Blockers": { "items": { "$ref": "#/definitions/AWS::CodePipeline::Pipeline.BlockerDeclaration" }, "type": "array" }, "Name": { "type": "string" } }, "required": [ "Actions", "Name" ], "type": "object" }, "AWS::CodePipeline::Pipeline.StageTransition": { "additionalProperties": false, "properties": { "Reason": { "type": "string" }, "StageName": { "type": "string" } }, "required": [ "Reason", "StageName" ], "type": "object" }, "AWS::CodePipeline::Webhook": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Authentication": { "type": "string" }, "AuthenticationConfiguration": { "$ref": "#/definitions/AWS::CodePipeline::Webhook.WebhookAuthConfiguration" }, "Filters": { "items": { "$ref": "#/definitions/AWS::CodePipeline::Webhook.WebhookFilterRule" }, "type": "array" }, "Name": { "type": "string" }, "RegisterWithThirdParty": { "type": "boolean" }, "TargetAction": { "type": "string" }, "TargetPipeline": { "type": "string" }, "TargetPipelineVersion": { "type": "number" } }, "required": [ "Authentication", "AuthenticationConfiguration", "Filters", "TargetAction", "TargetPipeline", "TargetPipelineVersion" ], "type": "object" }, "Type": { "enum": [ "AWS::CodePipeline::Webhook" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::CodePipeline::Webhook.WebhookAuthConfiguration": { "additionalProperties": false, "properties": { "AllowedIPRange": { "type": "string" }, "SecretToken": { "type": "string" } }, "type": "object" }, "AWS::CodePipeline::Webhook.WebhookFilterRule": { "additionalProperties": false, "properties": { "JsonPath": { "type": "string" }, "MatchEquals": { "type": "string" } }, "required": [ "JsonPath" ], "type": "object" }, "AWS::CodeStar::GitHubRepository": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Code": { "$ref": "#/definitions/AWS::CodeStar::GitHubRepository.Code" }, "ConnectionArn": { "type": "string" }, "EnableIssues": { "type": "boolean" }, "IsPrivate": { "type": "boolean" }, "RepositoryAccessToken": { "type": "string" }, "RepositoryDescription": { "type": "string" }, "RepositoryName": { "type": "string" }, "RepositoryOwner": { "type": "string" } }, "required": [ "RepositoryName", "RepositoryOwner" ], "type": "object" }, "Type": { "enum": [ "AWS::CodeStar::GitHubRepository" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::CodeStar::GitHubRepository.Code": { "additionalProperties": false, "properties": { "S3": { "$ref": "#/definitions/AWS::CodeStar::GitHubRepository.S3" } }, "required": [ "S3" ], "type": "object" }, "AWS::CodeStar::GitHubRepository.S3": { "additionalProperties": false, "properties": { "Bucket": { "type": "string" }, "Key": { "type": "string" }, "ObjectVersion": { "type": "string" } }, "required": [ "Bucket", "Key" ], "type": "object" }, "AWS::CodeStarConnections::Connection": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ConnectionName": { "type": "string" }, "HostArn": { "type": "string" }, "ProviderType": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "ConnectionName" ], "type": "object" }, "Type": { "enum": [ "AWS::CodeStarConnections::Connection" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::CodeStarNotifications::NotificationRule": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "CreatedBy": { "type": "string" }, "DetailType": { "type": "string" }, "EventTypeId": { "type": "string" }, "EventTypeIds": { "items": { "type": "string" }, "type": "array" }, "Name": { "type": "string" }, "Resource": { "type": "string" }, "Status": { "type": "string" }, "Tags": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" }, "TargetAddress": { "type": "string" }, "Targets": { "items": { "$ref": "#/definitions/AWS::CodeStarNotifications::NotificationRule.Target" }, "type": "array" } }, "required": [ "DetailType", "EventTypeIds", "Name", "Resource", "Targets" ], "type": "object" }, "Type": { "enum": [ "AWS::CodeStarNotifications::NotificationRule" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::CodeStarNotifications::NotificationRule.Target": { "additionalProperties": false, "properties": { "TargetAddress": { "type": "string" }, "TargetType": { "type": "string" } }, "required": [ "TargetAddress", "TargetType" ], "type": "object" }, "AWS::Cognito::IdentityPool": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AllowClassicFlow": { "type": "boolean" }, "AllowUnauthenticatedIdentities": { "type": "boolean" }, "CognitoEvents": { "type": "object" }, "CognitoIdentityProviders": { "items": { "$ref": "#/definitions/AWS::Cognito::IdentityPool.CognitoIdentityProvider" }, "type": "array" }, "CognitoStreams": { "$ref": "#/definitions/AWS::Cognito::IdentityPool.CognitoStreams" }, "DeveloperProviderName": { "type": "string" }, "IdentityPoolName": { "type": "string" }, "OpenIdConnectProviderARNs": { "items": { "type": "string" }, "type": "array" }, "PushSync": { "$ref": "#/definitions/AWS::Cognito::IdentityPool.PushSync" }, "SamlProviderARNs": { "items": { "type": "string" }, "type": "array" }, "SupportedLoginProviders": { "type": "object" } }, "required": [ "AllowUnauthenticatedIdentities" ], "type": "object" }, "Type": { "enum": [ "AWS::Cognito::IdentityPool" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Cognito::IdentityPool.CognitoIdentityProvider": { "additionalProperties": false, "properties": { "ClientId": { "type": "string" }, "ProviderName": { "type": "string" }, "ServerSideTokenCheck": { "type": "boolean" } }, "type": "object" }, "AWS::Cognito::IdentityPool.CognitoStreams": { "additionalProperties": false, "properties": { "RoleArn": { "type": "string" }, "StreamName": { "type": "string" }, "StreamingStatus": { "type": "string" } }, "type": "object" }, "AWS::Cognito::IdentityPool.PushSync": { "additionalProperties": false, "properties": { "ApplicationArns": { "items": { "type": "string" }, "type": "array" }, "RoleArn": { "type": "string" } }, "type": "object" }, "AWS::Cognito::IdentityPoolPrincipalTag": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "IdentityPoolId": { "type": "string" }, "IdentityProviderName": { "type": "string" }, "PrincipalTags": { "type": "object" }, "UseDefaults": { "type": "boolean" } }, "required": [ "IdentityPoolId", "IdentityProviderName" ], "type": "object" }, "Type": { "enum": [ "AWS::Cognito::IdentityPoolPrincipalTag" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Cognito::IdentityPoolRoleAttachment": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "IdentityPoolId": { "type": "string" }, "RoleMappings": { "type": "object" }, "Roles": { "type": "object" } }, "required": [ "IdentityPoolId" ], "type": "object" }, "Type": { "enum": [ "AWS::Cognito::IdentityPoolRoleAttachment" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Cognito::IdentityPoolRoleAttachment.MappingRule": { "additionalProperties": false, "properties": { "Claim": { "type": "string" }, "MatchType": { "type": "string" }, "RoleARN": { "type": "string" }, "Value": { "type": "string" } }, "required": [ "Claim", "MatchType", "RoleARN", "Value" ], "type": "object" }, "AWS::Cognito::IdentityPoolRoleAttachment.RoleMapping": { "additionalProperties": false, "properties": { "AmbiguousRoleResolution": { "type": "string" }, "IdentityProvider": { "type": "string" }, "RulesConfiguration": { "$ref": "#/definitions/AWS::Cognito::IdentityPoolRoleAttachment.RulesConfigurationType" }, "Type": { "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::Cognito::IdentityPoolRoleAttachment.RulesConfigurationType": { "additionalProperties": false, "properties": { "Rules": { "items": { "$ref": "#/definitions/AWS::Cognito::IdentityPoolRoleAttachment.MappingRule" }, "type": "array" } }, "required": [ "Rules" ], "type": "object" }, "AWS::Cognito::UserPool": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AccountRecoverySetting": { "$ref": "#/definitions/AWS::Cognito::UserPool.AccountRecoverySetting" }, "AdminCreateUserConfig": { "$ref": "#/definitions/AWS::Cognito::UserPool.AdminCreateUserConfig" }, "AliasAttributes": { "items": { "type": "string" }, "type": "array" }, "AutoVerifiedAttributes": { "items": { "type": "string" }, "type": "array" }, "DeletionProtection": { "type": "string" }, "DeviceConfiguration": { "$ref": "#/definitions/AWS::Cognito::UserPool.DeviceConfiguration" }, "EmailConfiguration": { "$ref": "#/definitions/AWS::Cognito::UserPool.EmailConfiguration" }, "EmailVerificationMessage": { "type": "string" }, "EmailVerificationSubject": { "type": "string" }, "EnabledMfas": { "items": { "type": "string" }, "type": "array" }, "LambdaConfig": { "$ref": "#/definitions/AWS::Cognito::UserPool.LambdaConfig" }, "MfaConfiguration": { "type": "string" }, "Policies": { "$ref": "#/definitions/AWS::Cognito::UserPool.Policies" }, "Schema": { "items": { "$ref": "#/definitions/AWS::Cognito::UserPool.SchemaAttribute" }, "type": "array" }, "SmsAuthenticationMessage": { "type": "string" }, "SmsConfiguration": { "$ref": "#/definitions/AWS::Cognito::UserPool.SmsConfiguration" }, "SmsVerificationMessage": { "type": "string" }, "UserAttributeUpdateSettings": { "$ref": "#/definitions/AWS::Cognito::UserPool.UserAttributeUpdateSettings" }, "UserPoolAddOns": { "$ref": "#/definitions/AWS::Cognito::UserPool.UserPoolAddOns" }, "UserPoolName": { "type": "string" }, "UserPoolTags": { "type": "object" }, "UsernameAttributes": { "items": { "type": "string" }, "type": "array" }, "UsernameConfiguration": { "$ref": "#/definitions/AWS::Cognito::UserPool.UsernameConfiguration" }, "VerificationMessageTemplate": { "$ref": "#/definitions/AWS::Cognito::UserPool.VerificationMessageTemplate" } }, "type": "object" }, "Type": { "enum": [ "AWS::Cognito::UserPool" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::Cognito::UserPool.AccountRecoverySetting": { "additionalProperties": false, "properties": { "RecoveryMechanisms": { "items": { "$ref": "#/definitions/AWS::Cognito::UserPool.RecoveryOption" }, "type": "array" } }, "type": "object" }, "AWS::Cognito::UserPool.AdminCreateUserConfig": { "additionalProperties": false, "properties": { "AllowAdminCreateUserOnly": { "type": "boolean" }, "InviteMessageTemplate": { "$ref": "#/definitions/AWS::Cognito::UserPool.InviteMessageTemplate" }, "UnusedAccountValidityDays": { "type": "number" } }, "type": "object" }, "AWS::Cognito::UserPool.CustomEmailSender": { "additionalProperties": false, "properties": { "LambdaArn": { "type": "string" }, "LambdaVersion": { "type": "string" } }, "type": "object" }, "AWS::Cognito::UserPool.CustomSMSSender": { "additionalProperties": false, "properties": { "LambdaArn": { "type": "string" }, "LambdaVersion": { "type": "string" } }, "type": "object" }, "AWS::Cognito::UserPool.DeviceConfiguration": { "additionalProperties": false, "properties": { "ChallengeRequiredOnNewDevice": { "type": "boolean" }, "DeviceOnlyRememberedOnUserPrompt": { "type": "boolean" } }, "type": "object" }, "AWS::Cognito::UserPool.EmailConfiguration": { "additionalProperties": false, "properties": { "ConfigurationSet": { "type": "string" }, "EmailSendingAccount": { "type": "string" }, "From": { "type": "string" }, "ReplyToEmailAddress": { "type": "string" }, "SourceArn": { "type": "string" } }, "type": "object" }, "AWS::Cognito::UserPool.InviteMessageTemplate": { "additionalProperties": false, "properties": { "EmailMessage": { "type": "string" }, "EmailSubject": { "type": "string" }, "SMSMessage": { "type": "string" } }, "type": "object" }, "AWS::Cognito::UserPool.LambdaConfig": { "additionalProperties": false, "properties": { "CreateAuthChallenge": { "type": "string" }, "CustomEmailSender": { "$ref": "#/definitions/AWS::Cognito::UserPool.CustomEmailSender" }, "CustomMessage": { "type": "string" }, "CustomSMSSender": { "$ref": "#/definitions/AWS::Cognito::UserPool.CustomSMSSender" }, "DefineAuthChallenge": { "type": "string" }, "KMSKeyID": { "type": "string" }, "PostAuthentication": { "type": "string" }, "PostConfirmation": { "type": "string" }, "PreAuthentication": { "type": "string" }, "PreSignUp": { "type": "string" }, "PreTokenGeneration": { "type": "string" }, "UserMigration": { "type": "string" }, "VerifyAuthChallengeResponse": { "type": "string" } }, "type": "object" }, "AWS::Cognito::UserPool.NumberAttributeConstraints": { "additionalProperties": false, "properties": { "MaxValue": { "type": "string" }, "MinValue": { "type": "string" } }, "type": "object" }, "AWS::Cognito::UserPool.PasswordPolicy": { "additionalProperties": false, "properties": { "MinimumLength": { "type": "number" }, "RequireLowercase": { "type": "boolean" }, "RequireNumbers": { "type": "boolean" }, "RequireSymbols": { "type": "boolean" }, "RequireUppercase": { "type": "boolean" }, "TemporaryPasswordValidityDays": { "type": "number" } }, "type": "object" }, "AWS::Cognito::UserPool.Policies": { "additionalProperties": false, "properties": { "PasswordPolicy": { "$ref": "#/definitions/AWS::Cognito::UserPool.PasswordPolicy" } }, "type": "object" }, "AWS::Cognito::UserPool.RecoveryOption": { "additionalProperties": false, "properties": { "Name": { "type": "string" }, "Priority": { "type": "number" } }, "type": "object" }, "AWS::Cognito::UserPool.SchemaAttribute": { "additionalProperties": false, "properties": { "AttributeDataType": { "type": "string" }, "DeveloperOnlyAttribute": { "type": "boolean" }, "Mutable": { "type": "boolean" }, "Name": { "type": "string" }, "NumberAttributeConstraints": { "$ref": "#/definitions/AWS::Cognito::UserPool.NumberAttributeConstraints" }, "Required": { "type": "boolean" }, "StringAttributeConstraints": { "$ref": "#/definitions/AWS::Cognito::UserPool.StringAttributeConstraints" } }, "type": "object" }, "AWS::Cognito::UserPool.SmsConfiguration": { "additionalProperties": false, "properties": { "ExternalId": { "type": "string" }, "SnsCallerArn": { "type": "string" }, "SnsRegion": { "type": "string" } }, "type": "object" }, "AWS::Cognito::UserPool.StringAttributeConstraints": { "additionalProperties": false, "properties": { "MaxLength": { "type": "string" }, "MinLength": { "type": "string" } }, "type": "object" }, "AWS::Cognito::UserPool.UserAttributeUpdateSettings": { "additionalProperties": false, "properties": { "AttributesRequireVerificationBeforeUpdate": { "items": { "type": "string" }, "type": "array" } }, "required": [ "AttributesRequireVerificationBeforeUpdate" ], "type": "object" }, "AWS::Cognito::UserPool.UserPoolAddOns": { "additionalProperties": false, "properties": { "AdvancedSecurityMode": { "type": "string" } }, "type": "object" }, "AWS::Cognito::UserPool.UsernameConfiguration": { "additionalProperties": false, "properties": { "CaseSensitive": { "type": "boolean" } }, "type": "object" }, "AWS::Cognito::UserPool.VerificationMessageTemplate": { "additionalProperties": false, "properties": { "DefaultEmailOption": { "type": "string" }, "EmailMessage": { "type": "string" }, "EmailMessageByLink": { "type": "string" }, "EmailSubject": { "type": "string" }, "EmailSubjectByLink": { "type": "string" }, "SmsMessage": { "type": "string" } }, "type": "object" }, "AWS::Cognito::UserPoolClient": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AccessTokenValidity": { "type": "number" }, "AllowedOAuthFlows": { "items": { "type": "string" }, "type": "array" }, "AllowedOAuthFlowsUserPoolClient": { "type": "boolean" }, "AllowedOAuthScopes": { "items": { "type": "string" }, "type": "array" }, "AnalyticsConfiguration": { "$ref": "#/definitions/AWS::Cognito::UserPoolClient.AnalyticsConfiguration" }, "AuthSessionValidity": { "type": "number" }, "CallbackURLs": { "items": { "type": "string" }, "type": "array" }, "ClientName": { "type": "string" }, "DefaultRedirectURI": { "type": "string" }, "EnablePropagateAdditionalUserContextData": { "type": "boolean" }, "EnableTokenRevocation": { "type": "boolean" }, "ExplicitAuthFlows": { "items": { "type": "string" }, "type": "array" }, "GenerateSecret": { "type": "boolean" }, "IdTokenValidity": { "type": "number" }, "LogoutURLs": { "items": { "type": "string" }, "type": "array" }, "PreventUserExistenceErrors": { "type": "string" }, "ReadAttributes": { "items": { "type": "string" }, "type": "array" }, "RefreshTokenValidity": { "type": "number" }, "SupportedIdentityProviders": { "items": { "type": "string" }, "type": "array" }, "TokenValidityUnits": { "$ref": "#/definitions/AWS::Cognito::UserPoolClient.TokenValidityUnits" }, "UserPoolId": { "type": "string" }, "WriteAttributes": { "items": { "type": "string" }, "type": "array" } }, "required": [ "UserPoolId" ], "type": "object" }, "Type": { "enum": [ "AWS::Cognito::UserPoolClient" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Cognito::UserPoolClient.AnalyticsConfiguration": { "additionalProperties": false, "properties": { "ApplicationArn": { "type": "string" }, "ApplicationId": { "type": "string" }, "ExternalId": { "type": "string" }, "RoleArn": { "type": "string" }, "UserDataShared": { "type": "boolean" } }, "type": "object" }, "AWS::Cognito::UserPoolClient.TokenValidityUnits": { "additionalProperties": false, "properties": { "AccessToken": { "type": "string" }, "IdToken": { "type": "string" }, "RefreshToken": { "type": "string" } }, "type": "object" }, "AWS::Cognito::UserPoolDomain": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "CustomDomainConfig": { "$ref": "#/definitions/AWS::Cognito::UserPoolDomain.CustomDomainConfigType" }, "Domain": { "type": "string" }, "UserPoolId": { "type": "string" } }, "required": [ "Domain", "UserPoolId" ], "type": "object" }, "Type": { "enum": [ "AWS::Cognito::UserPoolDomain" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Cognito::UserPoolDomain.CustomDomainConfigType": { "additionalProperties": false, "properties": { "CertificateArn": { "type": "string" } }, "type": "object" }, "AWS::Cognito::UserPoolGroup": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "GroupName": { "type": "string" }, "Precedence": { "type": "number" }, "RoleArn": { "type": "string" }, "UserPoolId": { "type": "string" } }, "required": [ "UserPoolId" ], "type": "object" }, "Type": { "enum": [ "AWS::Cognito::UserPoolGroup" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Cognito::UserPoolIdentityProvider": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AttributeMapping": { "type": "object" }, "IdpIdentifiers": { "items": { "type": "string" }, "type": "array" }, "ProviderDetails": { "type": "object" }, "ProviderName": { "type": "string" }, "ProviderType": { "type": "string" }, "UserPoolId": { "type": "string" } }, "required": [ "ProviderName", "ProviderType", "UserPoolId" ], "type": "object" }, "Type": { "enum": [ "AWS::Cognito::UserPoolIdentityProvider" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Cognito::UserPoolResourceServer": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Identifier": { "type": "string" }, "Name": { "type": "string" }, "Scopes": { "items": { "$ref": "#/definitions/AWS::Cognito::UserPoolResourceServer.ResourceServerScopeType" }, "type": "array" }, "UserPoolId": { "type": "string" } }, "required": [ "Identifier", "Name", "UserPoolId" ], "type": "object" }, "Type": { "enum": [ "AWS::Cognito::UserPoolResourceServer" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Cognito::UserPoolResourceServer.ResourceServerScopeType": { "additionalProperties": false, "properties": { "ScopeDescription": { "type": "string" }, "ScopeName": { "type": "string" } }, "required": [ "ScopeDescription", "ScopeName" ], "type": "object" }, "AWS::Cognito::UserPoolRiskConfigurationAttachment": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AccountTakeoverRiskConfiguration": { "$ref": "#/definitions/AWS::Cognito::UserPoolRiskConfigurationAttachment.AccountTakeoverRiskConfigurationType" }, "ClientId": { "type": "string" }, "CompromisedCredentialsRiskConfiguration": { "$ref": "#/definitions/AWS::Cognito::UserPoolRiskConfigurationAttachment.CompromisedCredentialsRiskConfigurationType" }, "RiskExceptionConfiguration": { "$ref": "#/definitions/AWS::Cognito::UserPoolRiskConfigurationAttachment.RiskExceptionConfigurationType" }, "UserPoolId": { "type": "string" } }, "required": [ "ClientId", "UserPoolId" ], "type": "object" }, "Type": { "enum": [ "AWS::Cognito::UserPoolRiskConfigurationAttachment" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Cognito::UserPoolRiskConfigurationAttachment.AccountTakeoverActionType": { "additionalProperties": false, "properties": { "EventAction": { "type": "string" }, "Notify": { "type": "boolean" } }, "required": [ "EventAction", "Notify" ], "type": "object" }, "AWS::Cognito::UserPoolRiskConfigurationAttachment.AccountTakeoverActionsType": { "additionalProperties": false, "properties": { "HighAction": { "$ref": "#/definitions/AWS::Cognito::UserPoolRiskConfigurationAttachment.AccountTakeoverActionType" }, "LowAction": { "$ref": "#/definitions/AWS::Cognito::UserPoolRiskConfigurationAttachment.AccountTakeoverActionType" }, "MediumAction": { "$ref": "#/definitions/AWS::Cognito::UserPoolRiskConfigurationAttachment.AccountTakeoverActionType" } }, "type": "object" }, "AWS::Cognito::UserPoolRiskConfigurationAttachment.AccountTakeoverRiskConfigurationType": { "additionalProperties": false, "properties": { "Actions": { "$ref": "#/definitions/AWS::Cognito::UserPoolRiskConfigurationAttachment.AccountTakeoverActionsType" }, "NotifyConfiguration": { "$ref": "#/definitions/AWS::Cognito::UserPoolRiskConfigurationAttachment.NotifyConfigurationType" } }, "required": [ "Actions" ], "type": "object" }, "AWS::Cognito::UserPoolRiskConfigurationAttachment.CompromisedCredentialsActionsType": { "additionalProperties": false, "properties": { "EventAction": { "type": "string" } }, "required": [ "EventAction" ], "type": "object" }, "AWS::Cognito::UserPoolRiskConfigurationAttachment.CompromisedCredentialsRiskConfigurationType": { "additionalProperties": false, "properties": { "Actions": { "$ref": "#/definitions/AWS::Cognito::UserPoolRiskConfigurationAttachment.CompromisedCredentialsActionsType" }, "EventFilter": { "items": { "type": "string" }, "type": "array" } }, "required": [ "Actions" ], "type": "object" }, "AWS::Cognito::UserPoolRiskConfigurationAttachment.NotifyConfigurationType": { "additionalProperties": false, "properties": { "BlockEmail": { "$ref": "#/definitions/AWS::Cognito::UserPoolRiskConfigurationAttachment.NotifyEmailType" }, "From": { "type": "string" }, "MfaEmail": { "$ref": "#/definitions/AWS::Cognito::UserPoolRiskConfigurationAttachment.NotifyEmailType" }, "NoActionEmail": { "$ref": "#/definitions/AWS::Cognito::UserPoolRiskConfigurationAttachment.NotifyEmailType" }, "ReplyTo": { "type": "string" }, "SourceArn": { "type": "string" } }, "required": [ "SourceArn" ], "type": "object" }, "AWS::Cognito::UserPoolRiskConfigurationAttachment.NotifyEmailType": { "additionalProperties": false, "properties": { "HtmlBody": { "type": "string" }, "Subject": { "type": "string" }, "TextBody": { "type": "string" } }, "required": [ "Subject" ], "type": "object" }, "AWS::Cognito::UserPoolRiskConfigurationAttachment.RiskExceptionConfigurationType": { "additionalProperties": false, "properties": { "BlockedIPRangeList": { "items": { "type": "string" }, "type": "array" }, "SkippedIPRangeList": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::Cognito::UserPoolUICustomizationAttachment": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "CSS": { "type": "string" }, "ClientId": { "type": "string" }, "UserPoolId": { "type": "string" } }, "required": [ "ClientId", "UserPoolId" ], "type": "object" }, "Type": { "enum": [ "AWS::Cognito::UserPoolUICustomizationAttachment" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Cognito::UserPoolUser": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ClientMetadata": { "type": "object" }, "DesiredDeliveryMediums": { "items": { "type": "string" }, "type": "array" }, "ForceAliasCreation": { "type": "boolean" }, "MessageAction": { "type": "string" }, "UserAttributes": { "items": { "$ref": "#/definitions/AWS::Cognito::UserPoolUser.AttributeType" }, "type": "array" }, "UserPoolId": { "type": "string" }, "Username": { "type": "string" }, "ValidationData": { "items": { "$ref": "#/definitions/AWS::Cognito::UserPoolUser.AttributeType" }, "type": "array" } }, "required": [ "UserPoolId" ], "type": "object" }, "Type": { "enum": [ "AWS::Cognito::UserPoolUser" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Cognito::UserPoolUser.AttributeType": { "additionalProperties": false, "properties": { "Name": { "type": "string" }, "Value": { "type": "string" } }, "type": "object" }, "AWS::Cognito::UserPoolUserToGroupAttachment": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "GroupName": { "type": "string" }, "UserPoolId": { "type": "string" }, "Username": { "type": "string" } }, "required": [ "GroupName", "UserPoolId", "Username" ], "type": "object" }, "Type": { "enum": [ "AWS::Cognito::UserPoolUserToGroupAttachment" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Comprehend::DocumentClassifier": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "DataAccessRoleArn": { "type": "string" }, "DocumentClassifierName": { "type": "string" }, "InputDataConfig": { "$ref": "#/definitions/AWS::Comprehend::DocumentClassifier.DocumentClassifierInputDataConfig" }, "LanguageCode": { "type": "string" }, "Mode": { "type": "string" }, "ModelKmsKeyId": { "type": "string" }, "ModelPolicy": { "type": "string" }, "OutputDataConfig": { "$ref": "#/definitions/AWS::Comprehend::DocumentClassifier.DocumentClassifierOutputDataConfig" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "VersionName": { "type": "string" }, "VolumeKmsKeyId": { "type": "string" }, "VpcConfig": { "$ref": "#/definitions/AWS::Comprehend::DocumentClassifier.VpcConfig" } }, "required": [ "DataAccessRoleArn", "DocumentClassifierName", "InputDataConfig", "LanguageCode" ], "type": "object" }, "Type": { "enum": [ "AWS::Comprehend::DocumentClassifier" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Comprehend::DocumentClassifier.AugmentedManifestsListItem": { "additionalProperties": false, "properties": { "AttributeNames": { "items": { "type": "string" }, "type": "array" }, "S3Uri": { "type": "string" }, "Split": { "type": "string" } }, "required": [ "AttributeNames", "S3Uri" ], "type": "object" }, "AWS::Comprehend::DocumentClassifier.DocumentClassifierDocuments": { "additionalProperties": false, "properties": { "S3Uri": { "type": "string" }, "TestS3Uri": { "type": "string" } }, "required": [ "S3Uri" ], "type": "object" }, "AWS::Comprehend::DocumentClassifier.DocumentClassifierInputDataConfig": { "additionalProperties": false, "properties": { "AugmentedManifests": { "items": { "$ref": "#/definitions/AWS::Comprehend::DocumentClassifier.AugmentedManifestsListItem" }, "type": "array" }, "DataFormat": { "type": "string" }, "DocumentReaderConfig": { "$ref": "#/definitions/AWS::Comprehend::DocumentClassifier.DocumentReaderConfig" }, "DocumentType": { "type": "string" }, "Documents": { "$ref": "#/definitions/AWS::Comprehend::DocumentClassifier.DocumentClassifierDocuments" }, "LabelDelimiter": { "type": "string" }, "S3Uri": { "type": "string" }, "TestS3Uri": { "type": "string" } }, "type": "object" }, "AWS::Comprehend::DocumentClassifier.DocumentClassifierOutputDataConfig": { "additionalProperties": false, "properties": { "KmsKeyId": { "type": "string" }, "S3Uri": { "type": "string" } }, "type": "object" }, "AWS::Comprehend::DocumentClassifier.DocumentReaderConfig": { "additionalProperties": false, "properties": { "DocumentReadAction": { "type": "string" }, "DocumentReadMode": { "type": "string" }, "FeatureTypes": { "items": { "type": "string" }, "type": "array" } }, "required": [ "DocumentReadAction" ], "type": "object" }, "AWS::Comprehend::DocumentClassifier.VpcConfig": { "additionalProperties": false, "properties": { "SecurityGroupIds": { "items": { "type": "string" }, "type": "array" }, "Subnets": { "items": { "type": "string" }, "type": "array" } }, "required": [ "SecurityGroupIds", "Subnets" ], "type": "object" }, "AWS::Comprehend::Flywheel": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ActiveModelArn": { "type": "string" }, "DataAccessRoleArn": { "type": "string" }, "DataLakeS3Uri": { "type": "string" }, "DataSecurityConfig": { "$ref": "#/definitions/AWS::Comprehend::Flywheel.DataSecurityConfig" }, "FlywheelName": { "type": "string" }, "ModelType": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "TaskConfig": { "$ref": "#/definitions/AWS::Comprehend::Flywheel.TaskConfig" } }, "required": [ "DataAccessRoleArn", "DataLakeS3Uri", "FlywheelName" ], "type": "object" }, "Type": { "enum": [ "AWS::Comprehend::Flywheel" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Comprehend::Flywheel.DataSecurityConfig": { "additionalProperties": false, "properties": { "DataLakeKmsKeyId": { "type": "string" }, "ModelKmsKeyId": { "type": "string" }, "VolumeKmsKeyId": { "type": "string" }, "VpcConfig": { "$ref": "#/definitions/AWS::Comprehend::Flywheel.VpcConfig" } }, "type": "object" }, "AWS::Comprehend::Flywheel.DocumentClassificationConfig": { "additionalProperties": false, "properties": { "Labels": { "items": { "type": "string" }, "type": "array" }, "Mode": { "type": "string" } }, "required": [ "Mode" ], "type": "object" }, "AWS::Comprehend::Flywheel.EntityRecognitionConfig": { "additionalProperties": false, "properties": { "EntityTypes": { "items": { "$ref": "#/definitions/AWS::Comprehend::Flywheel.EntityTypesListItem" }, "type": "array" } }, "type": "object" }, "AWS::Comprehend::Flywheel.EntityTypesListItem": { "additionalProperties": false, "properties": { "Type": { "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::Comprehend::Flywheel.TaskConfig": { "additionalProperties": false, "properties": { "DocumentClassificationConfig": { "$ref": "#/definitions/AWS::Comprehend::Flywheel.DocumentClassificationConfig" }, "EntityRecognitionConfig": { "$ref": "#/definitions/AWS::Comprehend::Flywheel.EntityRecognitionConfig" }, "LanguageCode": { "type": "string" } }, "required": [ "LanguageCode" ], "type": "object" }, "AWS::Comprehend::Flywheel.VpcConfig": { "additionalProperties": false, "properties": { "SecurityGroupIds": { "items": { "type": "string" }, "type": "array" }, "Subnets": { "items": { "type": "string" }, "type": "array" } }, "required": [ "SecurityGroupIds", "Subnets" ], "type": "object" }, "AWS::Config::AggregationAuthorization": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AuthorizedAccountId": { "type": "string" }, "AuthorizedAwsRegion": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "AuthorizedAccountId", "AuthorizedAwsRegion" ], "type": "object" }, "Type": { "enum": [ "AWS::Config::AggregationAuthorization" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Config::ConfigRule": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Compliance": { "$ref": "#/definitions/AWS::Config::ConfigRule.Compliance" }, "ConfigRuleName": { "type": "string" }, "Description": { "type": "string" }, "EvaluationModes": { "items": { "$ref": "#/definitions/AWS::Config::ConfigRule.EvaluationModeConfiguration" }, "type": "array" }, "InputParameters": { "type": "object" }, "MaximumExecutionFrequency": { "type": "string" }, "Scope": { "$ref": "#/definitions/AWS::Config::ConfigRule.Scope" }, "Source": { "$ref": "#/definitions/AWS::Config::ConfigRule.Source" } }, "required": [ "Source" ], "type": "object" }, "Type": { "enum": [ "AWS::Config::ConfigRule" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Config::ConfigRule.Compliance": { "additionalProperties": false, "properties": { "Type": { "type": "string" } }, "type": "object" }, "AWS::Config::ConfigRule.CustomPolicyDetails": { "additionalProperties": false, "properties": { "EnableDebugLogDelivery": { "type": "boolean" }, "PolicyRuntime": { "type": "string" }, "PolicyText": { "type": "string" } }, "type": "object" }, "AWS::Config::ConfigRule.EvaluationModeConfiguration": { "additionalProperties": false, "properties": { "Mode": { "type": "string" } }, "type": "object" }, "AWS::Config::ConfigRule.Scope": { "additionalProperties": false, "properties": { "ComplianceResourceId": { "type": "string" }, "ComplianceResourceTypes": { "items": { "type": "string" }, "type": "array" }, "TagKey": { "type": "string" }, "TagValue": { "type": "string" } }, "type": "object" }, "AWS::Config::ConfigRule.Source": { "additionalProperties": false, "properties": { "CustomPolicyDetails": { "$ref": "#/definitions/AWS::Config::ConfigRule.CustomPolicyDetails" }, "Owner": { "type": "string" }, "SourceDetails": { "items": { "$ref": "#/definitions/AWS::Config::ConfigRule.SourceDetail" }, "type": "array" }, "SourceIdentifier": { "type": "string" } }, "required": [ "Owner" ], "type": "object" }, "AWS::Config::ConfigRule.SourceDetail": { "additionalProperties": false, "properties": { "EventSource": { "type": "string" }, "MaximumExecutionFrequency": { "type": "string" }, "MessageType": { "type": "string" } }, "required": [ "EventSource", "MessageType" ], "type": "object" }, "AWS::Config::ConfigurationAggregator": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AccountAggregationSources": { "items": { "$ref": "#/definitions/AWS::Config::ConfigurationAggregator.AccountAggregationSource" }, "type": "array" }, "ConfigurationAggregatorName": { "type": "string" }, "OrganizationAggregationSource": { "$ref": "#/definitions/AWS::Config::ConfigurationAggregator.OrganizationAggregationSource" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "type": "object" }, "Type": { "enum": [ "AWS::Config::ConfigurationAggregator" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::Config::ConfigurationAggregator.AccountAggregationSource": { "additionalProperties": false, "properties": { "AccountIds": { "items": { "type": "string" }, "type": "array" }, "AllAwsRegions": { "type": "boolean" }, "AwsRegions": { "items": { "type": "string" }, "type": "array" } }, "required": [ "AccountIds" ], "type": "object" }, "AWS::Config::ConfigurationAggregator.OrganizationAggregationSource": { "additionalProperties": false, "properties": { "AllAwsRegions": { "type": "boolean" }, "AwsRegions": { "items": { "type": "string" }, "type": "array" }, "RoleArn": { "type": "string" } }, "required": [ "RoleArn" ], "type": "object" }, "AWS::Config::ConfigurationRecorder": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Name": { "type": "string" }, "RecordingGroup": { "$ref": "#/definitions/AWS::Config::ConfigurationRecorder.RecordingGroup" }, "RoleARN": { "type": "string" } }, "required": [ "RoleARN" ], "type": "object" }, "Type": { "enum": [ "AWS::Config::ConfigurationRecorder" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Config::ConfigurationRecorder.ExclusionByResourceTypes": { "additionalProperties": false, "properties": { "ResourceTypes": { "items": { "type": "string" }, "type": "array" } }, "required": [ "ResourceTypes" ], "type": "object" }, "AWS::Config::ConfigurationRecorder.RecordingGroup": { "additionalProperties": false, "properties": { "AllSupported": { "type": "boolean" }, "ExclusionByResourceTypes": { "$ref": "#/definitions/AWS::Config::ConfigurationRecorder.ExclusionByResourceTypes" }, "IncludeGlobalResourceTypes": { "type": "boolean" }, "RecordingStrategy": { "$ref": "#/definitions/AWS::Config::ConfigurationRecorder.RecordingStrategy" }, "ResourceTypes": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::Config::ConfigurationRecorder.RecordingStrategy": { "additionalProperties": false, "properties": { "UseOnly": { "type": "string" } }, "required": [ "UseOnly" ], "type": "object" }, "AWS::Config::ConformancePack": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ConformancePackInputParameters": { "items": { "$ref": "#/definitions/AWS::Config::ConformancePack.ConformancePackInputParameter" }, "type": "array" }, "ConformancePackName": { "type": "string" }, "DeliveryS3Bucket": { "type": "string" }, "DeliveryS3KeyPrefix": { "type": "string" }, "TemplateBody": { "type": "string" }, "TemplateS3Uri": { "type": "string" }, "TemplateSSMDocumentDetails": { "$ref": "#/definitions/AWS::Config::ConformancePack.TemplateSSMDocumentDetails" } }, "required": [ "ConformancePackName" ], "type": "object" }, "Type": { "enum": [ "AWS::Config::ConformancePack" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Config::ConformancePack.ConformancePackInputParameter": { "additionalProperties": false, "properties": { "ParameterName": { "type": "string" }, "ParameterValue": { "type": "string" } }, "required": [ "ParameterName", "ParameterValue" ], "type": "object" }, "AWS::Config::ConformancePack.TemplateSSMDocumentDetails": { "additionalProperties": false, "properties": { "DocumentName": { "type": "string" }, "DocumentVersion": { "type": "string" } }, "type": "object" }, "AWS::Config::DeliveryChannel": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ConfigSnapshotDeliveryProperties": { "$ref": "#/definitions/AWS::Config::DeliveryChannel.ConfigSnapshotDeliveryProperties" }, "Name": { "type": "string" }, "S3BucketName": { "type": "string" }, "S3KeyPrefix": { "type": "string" }, "S3KmsKeyArn": { "type": "string" }, "SnsTopicARN": { "type": "string" } }, "required": [ "S3BucketName" ], "type": "object" }, "Type": { "enum": [ "AWS::Config::DeliveryChannel" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Config::DeliveryChannel.ConfigSnapshotDeliveryProperties": { "additionalProperties": false, "properties": { "DeliveryFrequency": { "type": "string" } }, "type": "object" }, "AWS::Config::OrganizationConfigRule": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ExcludedAccounts": { "items": { "type": "string" }, "type": "array" }, "OrganizationConfigRuleName": { "type": "string" }, "OrganizationCustomPolicyRuleMetadata": { "$ref": "#/definitions/AWS::Config::OrganizationConfigRule.OrganizationCustomPolicyRuleMetadata" }, "OrganizationCustomRuleMetadata": { "$ref": "#/definitions/AWS::Config::OrganizationConfigRule.OrganizationCustomRuleMetadata" }, "OrganizationManagedRuleMetadata": { "$ref": "#/definitions/AWS::Config::OrganizationConfigRule.OrganizationManagedRuleMetadata" } }, "required": [ "OrganizationConfigRuleName" ], "type": "object" }, "Type": { "enum": [ "AWS::Config::OrganizationConfigRule" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Config::OrganizationConfigRule.OrganizationCustomPolicyRuleMetadata": { "additionalProperties": false, "properties": { "DebugLogDeliveryAccounts": { "items": { "type": "string" }, "type": "array" }, "Description": { "type": "string" }, "InputParameters": { "type": "string" }, "MaximumExecutionFrequency": { "type": "string" }, "OrganizationConfigRuleTriggerTypes": { "items": { "type": "string" }, "type": "array" }, "PolicyText": { "type": "string" }, "ResourceIdScope": { "type": "string" }, "ResourceTypesScope": { "items": { "type": "string" }, "type": "array" }, "Runtime": { "type": "string" }, "TagKeyScope": { "type": "string" }, "TagValueScope": { "type": "string" } }, "required": [ "PolicyText", "Runtime" ], "type": "object" }, "AWS::Config::OrganizationConfigRule.OrganizationCustomRuleMetadata": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "InputParameters": { "type": "string" }, "LambdaFunctionArn": { "type": "string" }, "MaximumExecutionFrequency": { "type": "string" }, "OrganizationConfigRuleTriggerTypes": { "items": { "type": "string" }, "type": "array" }, "ResourceIdScope": { "type": "string" }, "ResourceTypesScope": { "items": { "type": "string" }, "type": "array" }, "TagKeyScope": { "type": "string" }, "TagValueScope": { "type": "string" } }, "required": [ "LambdaFunctionArn", "OrganizationConfigRuleTriggerTypes" ], "type": "object" }, "AWS::Config::OrganizationConfigRule.OrganizationManagedRuleMetadata": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "InputParameters": { "type": "string" }, "MaximumExecutionFrequency": { "type": "string" }, "ResourceIdScope": { "type": "string" }, "ResourceTypesScope": { "items": { "type": "string" }, "type": "array" }, "RuleIdentifier": { "type": "string" }, "TagKeyScope": { "type": "string" }, "TagValueScope": { "type": "string" } }, "required": [ "RuleIdentifier" ], "type": "object" }, "AWS::Config::OrganizationConformancePack": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ConformancePackInputParameters": { "items": { "$ref": "#/definitions/AWS::Config::OrganizationConformancePack.ConformancePackInputParameter" }, "type": "array" }, "DeliveryS3Bucket": { "type": "string" }, "DeliveryS3KeyPrefix": { "type": "string" }, "ExcludedAccounts": { "items": { "type": "string" }, "type": "array" }, "OrganizationConformancePackName": { "type": "string" }, "TemplateBody": { "type": "string" }, "TemplateS3Uri": { "type": "string" } }, "required": [ "OrganizationConformancePackName" ], "type": "object" }, "Type": { "enum": [ "AWS::Config::OrganizationConformancePack" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Config::OrganizationConformancePack.ConformancePackInputParameter": { "additionalProperties": false, "properties": { "ParameterName": { "type": "string" }, "ParameterValue": { "type": "string" } }, "required": [ "ParameterName", "ParameterValue" ], "type": "object" }, "AWS::Config::RemediationConfiguration": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Automatic": { "type": "boolean" }, "ConfigRuleName": { "type": "string" }, "ExecutionControls": { "$ref": "#/definitions/AWS::Config::RemediationConfiguration.ExecutionControls" }, "MaximumAutomaticAttempts": { "type": "number" }, "Parameters": { "type": "object" }, "ResourceType": { "type": "string" }, "RetryAttemptSeconds": { "type": "number" }, "TargetId": { "type": "string" }, "TargetType": { "type": "string" }, "TargetVersion": { "type": "string" } }, "required": [ "ConfigRuleName", "TargetId", "TargetType" ], "type": "object" }, "Type": { "enum": [ "AWS::Config::RemediationConfiguration" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Config::RemediationConfiguration.ExecutionControls": { "additionalProperties": false, "properties": { "SsmControls": { "$ref": "#/definitions/AWS::Config::RemediationConfiguration.SsmControls" } }, "type": "object" }, "AWS::Config::RemediationConfiguration.RemediationParameterValue": { "additionalProperties": false, "properties": { "ResourceValue": { "$ref": "#/definitions/AWS::Config::RemediationConfiguration.ResourceValue" }, "StaticValue": { "$ref": "#/definitions/AWS::Config::RemediationConfiguration.StaticValue" } }, "type": "object" }, "AWS::Config::RemediationConfiguration.ResourceValue": { "additionalProperties": false, "properties": { "Value": { "type": "string" } }, "type": "object" }, "AWS::Config::RemediationConfiguration.SsmControls": { "additionalProperties": false, "properties": { "ConcurrentExecutionRatePercentage": { "type": "number" }, "ErrorPercentage": { "type": "number" } }, "type": "object" }, "AWS::Config::RemediationConfiguration.StaticValue": { "additionalProperties": false, "properties": { "Values": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::Config::StoredQuery": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "QueryDescription": { "type": "string" }, "QueryExpression": { "type": "string" }, "QueryName": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "QueryExpression", "QueryName" ], "type": "object" }, "Type": { "enum": [ "AWS::Config::StoredQuery" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Connect::ApprovedOrigin": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "InstanceId": { "type": "string" }, "Origin": { "type": "string" } }, "required": [ "InstanceId", "Origin" ], "type": "object" }, "Type": { "enum": [ "AWS::Connect::ApprovedOrigin" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Connect::ContactFlow": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Content": { "type": "string" }, "Description": { "type": "string" }, "InstanceArn": { "type": "string" }, "Name": { "type": "string" }, "State": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "Type": { "type": "string" } }, "required": [ "Content", "InstanceArn", "Name", "Type" ], "type": "object" }, "Type": { "enum": [ "AWS::Connect::ContactFlow" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Connect::ContactFlowModule": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Content": { "type": "string" }, "Description": { "type": "string" }, "InstanceArn": { "type": "string" }, "Name": { "type": "string" }, "State": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "Content", "InstanceArn", "Name" ], "type": "object" }, "Type": { "enum": [ "AWS::Connect::ContactFlowModule" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Connect::EvaluationForm": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "InstanceArn": { "type": "string" }, "Items": { "items": { "$ref": "#/definitions/AWS::Connect::EvaluationForm.EvaluationFormBaseItem" }, "type": "array" }, "ScoringStrategy": { "$ref": "#/definitions/AWS::Connect::EvaluationForm.ScoringStrategy" }, "Status": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "Title": { "type": "string" } }, "required": [ "InstanceArn", "Items", "Status", "Title" ], "type": "object" }, "Type": { "enum": [ "AWS::Connect::EvaluationForm" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Connect::EvaluationForm.EvaluationFormBaseItem": { "additionalProperties": false, "properties": { "Section": { "$ref": "#/definitions/AWS::Connect::EvaluationForm.EvaluationFormSection" } }, "required": [ "Section" ], "type": "object" }, "AWS::Connect::EvaluationForm.EvaluationFormItem": { "additionalProperties": false, "properties": { "Question": { "$ref": "#/definitions/AWS::Connect::EvaluationForm.EvaluationFormQuestion" }, "Section": { "$ref": "#/definitions/AWS::Connect::EvaluationForm.EvaluationFormSection" } }, "type": "object" }, "AWS::Connect::EvaluationForm.EvaluationFormNumericQuestionAutomation": { "additionalProperties": false, "properties": { "PropertyValue": { "$ref": "#/definitions/AWS::Connect::EvaluationForm.NumericQuestionPropertyValueAutomation" } }, "required": [ "PropertyValue" ], "type": "object" }, "AWS::Connect::EvaluationForm.EvaluationFormNumericQuestionOption": { "additionalProperties": false, "properties": { "AutomaticFail": { "type": "boolean" }, "MaxValue": { "type": "number" }, "MinValue": { "type": "number" }, "Score": { "type": "number" } }, "required": [ "MaxValue", "MinValue" ], "type": "object" }, "AWS::Connect::EvaluationForm.EvaluationFormNumericQuestionProperties": { "additionalProperties": false, "properties": { "Automation": { "$ref": "#/definitions/AWS::Connect::EvaluationForm.EvaluationFormNumericQuestionAutomation" }, "MaxValue": { "type": "number" }, "MinValue": { "type": "number" }, "Options": { "items": { "$ref": "#/definitions/AWS::Connect::EvaluationForm.EvaluationFormNumericQuestionOption" }, "type": "array" } }, "required": [ "MaxValue", "MinValue" ], "type": "object" }, "AWS::Connect::EvaluationForm.EvaluationFormQuestion": { "additionalProperties": false, "properties": { "Instructions": { "type": "string" }, "NotApplicableEnabled": { "type": "boolean" }, "QuestionType": { "type": "string" }, "QuestionTypeProperties": { "$ref": "#/definitions/AWS::Connect::EvaluationForm.EvaluationFormQuestionTypeProperties" }, "RefId": { "type": "string" }, "Title": { "type": "string" }, "Weight": { "type": "number" } }, "required": [ "QuestionType", "RefId", "Title" ], "type": "object" }, "AWS::Connect::EvaluationForm.EvaluationFormQuestionTypeProperties": { "additionalProperties": false, "properties": { "Numeric": { "$ref": "#/definitions/AWS::Connect::EvaluationForm.EvaluationFormNumericQuestionProperties" }, "SingleSelect": { "$ref": "#/definitions/AWS::Connect::EvaluationForm.EvaluationFormSingleSelectQuestionProperties" } }, "type": "object" }, "AWS::Connect::EvaluationForm.EvaluationFormSection": { "additionalProperties": false, "properties": { "Instructions": { "type": "string" }, "Items": { "items": { "$ref": "#/definitions/AWS::Connect::EvaluationForm.EvaluationFormItem" }, "type": "array" }, "RefId": { "type": "string" }, "Title": { "type": "string" }, "Weight": { "type": "number" } }, "required": [ "RefId", "Title" ], "type": "object" }, "AWS::Connect::EvaluationForm.EvaluationFormSingleSelectQuestionAutomation": { "additionalProperties": false, "properties": { "DefaultOptionRefId": { "type": "string" }, "Options": { "items": { "$ref": "#/definitions/AWS::Connect::EvaluationForm.EvaluationFormSingleSelectQuestionAutomationOption" }, "type": "array" } }, "required": [ "Options" ], "type": "object" }, "AWS::Connect::EvaluationForm.EvaluationFormSingleSelectQuestionAutomationOption": { "additionalProperties": false, "properties": { "RuleCategory": { "$ref": "#/definitions/AWS::Connect::EvaluationForm.SingleSelectQuestionRuleCategoryAutomation" } }, "required": [ "RuleCategory" ], "type": "object" }, "AWS::Connect::EvaluationForm.EvaluationFormSingleSelectQuestionOption": { "additionalProperties": false, "properties": { "AutomaticFail": { "type": "boolean" }, "RefId": { "type": "string" }, "Score": { "type": "number" }, "Text": { "type": "string" } }, "required": [ "RefId", "Text" ], "type": "object" }, "AWS::Connect::EvaluationForm.EvaluationFormSingleSelectQuestionProperties": { "additionalProperties": false, "properties": { "Automation": { "$ref": "#/definitions/AWS::Connect::EvaluationForm.EvaluationFormSingleSelectQuestionAutomation" }, "DisplayAs": { "type": "string" }, "Options": { "items": { "$ref": "#/definitions/AWS::Connect::EvaluationForm.EvaluationFormSingleSelectQuestionOption" }, "type": "array" } }, "required": [ "Options" ], "type": "object" }, "AWS::Connect::EvaluationForm.NumericQuestionPropertyValueAutomation": { "additionalProperties": false, "properties": { "Label": { "type": "string" } }, "required": [ "Label" ], "type": "object" }, "AWS::Connect::EvaluationForm.ScoringStrategy": { "additionalProperties": false, "properties": { "Mode": { "type": "string" }, "Status": { "type": "string" } }, "required": [ "Mode", "Status" ], "type": "object" }, "AWS::Connect::EvaluationForm.SingleSelectQuestionRuleCategoryAutomation": { "additionalProperties": false, "properties": { "Category": { "type": "string" }, "Condition": { "type": "string" }, "OptionRefId": { "type": "string" } }, "required": [ "Category", "Condition", "OptionRefId" ], "type": "object" }, "AWS::Connect::HoursOfOperation": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Config": { "items": { "$ref": "#/definitions/AWS::Connect::HoursOfOperation.HoursOfOperationConfig" }, "type": "array" }, "Description": { "type": "string" }, "InstanceArn": { "type": "string" }, "Name": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "TimeZone": { "type": "string" } }, "required": [ "Config", "InstanceArn", "Name", "TimeZone" ], "type": "object" }, "Type": { "enum": [ "AWS::Connect::HoursOfOperation" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Connect::HoursOfOperation.HoursOfOperationConfig": { "additionalProperties": false, "properties": { "Day": { "type": "string" }, "EndTime": { "$ref": "#/definitions/AWS::Connect::HoursOfOperation.HoursOfOperationTimeSlice" }, "StartTime": { "$ref": "#/definitions/AWS::Connect::HoursOfOperation.HoursOfOperationTimeSlice" } }, "required": [ "Day", "EndTime", "StartTime" ], "type": "object" }, "AWS::Connect::HoursOfOperation.HoursOfOperationTimeSlice": { "additionalProperties": false, "properties": { "Hours": { "type": "number" }, "Minutes": { "type": "number" } }, "required": [ "Hours", "Minutes" ], "type": "object" }, "AWS::Connect::Instance": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Attributes": { "$ref": "#/definitions/AWS::Connect::Instance.Attributes" }, "DirectoryId": { "type": "string" }, "IdentityManagementType": { "type": "string" }, "InstanceAlias": { "type": "string" } }, "required": [ "Attributes", "IdentityManagementType" ], "type": "object" }, "Type": { "enum": [ "AWS::Connect::Instance" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Connect::Instance.Attributes": { "additionalProperties": false, "properties": { "AutoResolveBestVoices": { "type": "boolean" }, "ContactLens": { "type": "boolean" }, "ContactflowLogs": { "type": "boolean" }, "EarlyMedia": { "type": "boolean" }, "InboundCalls": { "type": "boolean" }, "OutboundCalls": { "type": "boolean" }, "UseCustomTTSVoices": { "type": "boolean" } }, "required": [ "InboundCalls", "OutboundCalls" ], "type": "object" }, "AWS::Connect::InstanceStorageConfig": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "InstanceArn": { "type": "string" }, "KinesisFirehoseConfig": { "$ref": "#/definitions/AWS::Connect::InstanceStorageConfig.KinesisFirehoseConfig" }, "KinesisStreamConfig": { "$ref": "#/definitions/AWS::Connect::InstanceStorageConfig.KinesisStreamConfig" }, "KinesisVideoStreamConfig": { "$ref": "#/definitions/AWS::Connect::InstanceStorageConfig.KinesisVideoStreamConfig" }, "ResourceType": { "type": "string" }, "S3Config": { "$ref": "#/definitions/AWS::Connect::InstanceStorageConfig.S3Config" }, "StorageType": { "type": "string" } }, "required": [ "InstanceArn", "ResourceType", "StorageType" ], "type": "object" }, "Type": { "enum": [ "AWS::Connect::InstanceStorageConfig" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Connect::InstanceStorageConfig.EncryptionConfig": { "additionalProperties": false, "properties": { "EncryptionType": { "type": "string" }, "KeyId": { "type": "string" } }, "required": [ "EncryptionType", "KeyId" ], "type": "object" }, "AWS::Connect::InstanceStorageConfig.KinesisFirehoseConfig": { "additionalProperties": false, "properties": { "FirehoseArn": { "type": "string" } }, "required": [ "FirehoseArn" ], "type": "object" }, "AWS::Connect::InstanceStorageConfig.KinesisStreamConfig": { "additionalProperties": false, "properties": { "StreamArn": { "type": "string" } }, "required": [ "StreamArn" ], "type": "object" }, "AWS::Connect::InstanceStorageConfig.KinesisVideoStreamConfig": { "additionalProperties": false, "properties": { "EncryptionConfig": { "$ref": "#/definitions/AWS::Connect::InstanceStorageConfig.EncryptionConfig" }, "Prefix": { "type": "string" }, "RetentionPeriodHours": { "type": "number" } }, "required": [ "Prefix", "RetentionPeriodHours" ], "type": "object" }, "AWS::Connect::InstanceStorageConfig.S3Config": { "additionalProperties": false, "properties": { "BucketName": { "type": "string" }, "BucketPrefix": { "type": "string" }, "EncryptionConfig": { "$ref": "#/definitions/AWS::Connect::InstanceStorageConfig.EncryptionConfig" } }, "required": [ "BucketName", "BucketPrefix" ], "type": "object" }, "AWS::Connect::IntegrationAssociation": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "InstanceId": { "type": "string" }, "IntegrationArn": { "type": "string" }, "IntegrationType": { "type": "string" } }, "required": [ "InstanceId", "IntegrationArn", "IntegrationType" ], "type": "object" }, "Type": { "enum": [ "AWS::Connect::IntegrationAssociation" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Connect::PhoneNumber": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "CountryCode": { "type": "string" }, "Description": { "type": "string" }, "Prefix": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "TargetArn": { "type": "string" }, "Type": { "type": "string" } }, "required": [ "CountryCode", "TargetArn", "Type" ], "type": "object" }, "Type": { "enum": [ "AWS::Connect::PhoneNumber" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Connect::Prompt": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "InstanceArn": { "type": "string" }, "Name": { "type": "string" }, "S3Uri": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "InstanceArn", "Name" ], "type": "object" }, "Type": { "enum": [ "AWS::Connect::Prompt" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Connect::Queue": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "HoursOfOperationArn": { "type": "string" }, "InstanceArn": { "type": "string" }, "MaxContacts": { "type": "number" }, "Name": { "type": "string" }, "OutboundCallerConfig": { "$ref": "#/definitions/AWS::Connect::Queue.OutboundCallerConfig" }, "QuickConnectArns": { "items": { "type": "string" }, "type": "array" }, "Status": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "HoursOfOperationArn", "InstanceArn", "Name" ], "type": "object" }, "Type": { "enum": [ "AWS::Connect::Queue" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Connect::Queue.OutboundCallerConfig": { "additionalProperties": false, "properties": { "OutboundCallerIdName": { "type": "string" }, "OutboundCallerIdNumberArn": { "type": "string" }, "OutboundFlowArn": { "type": "string" } }, "type": "object" }, "AWS::Connect::QuickConnect": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "InstanceArn": { "type": "string" }, "Name": { "type": "string" }, "QuickConnectConfig": { "$ref": "#/definitions/AWS::Connect::QuickConnect.QuickConnectConfig" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "InstanceArn", "Name", "QuickConnectConfig" ], "type": "object" }, "Type": { "enum": [ "AWS::Connect::QuickConnect" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Connect::QuickConnect.PhoneNumberQuickConnectConfig": { "additionalProperties": false, "properties": { "PhoneNumber": { "type": "string" } }, "required": [ "PhoneNumber" ], "type": "object" }, "AWS::Connect::QuickConnect.QueueQuickConnectConfig": { "additionalProperties": false, "properties": { "ContactFlowArn": { "type": "string" }, "QueueArn": { "type": "string" } }, "required": [ "ContactFlowArn", "QueueArn" ], "type": "object" }, "AWS::Connect::QuickConnect.QuickConnectConfig": { "additionalProperties": false, "properties": { "PhoneConfig": { "$ref": "#/definitions/AWS::Connect::QuickConnect.PhoneNumberQuickConnectConfig" }, "QueueConfig": { "$ref": "#/definitions/AWS::Connect::QuickConnect.QueueQuickConnectConfig" }, "QuickConnectType": { "type": "string" }, "UserConfig": { "$ref": "#/definitions/AWS::Connect::QuickConnect.UserQuickConnectConfig" } }, "required": [ "QuickConnectType" ], "type": "object" }, "AWS::Connect::QuickConnect.UserQuickConnectConfig": { "additionalProperties": false, "properties": { "ContactFlowArn": { "type": "string" }, "UserArn": { "type": "string" } }, "required": [ "ContactFlowArn", "UserArn" ], "type": "object" }, "AWS::Connect::RoutingProfile": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "DefaultOutboundQueueArn": { "type": "string" }, "Description": { "type": "string" }, "InstanceArn": { "type": "string" }, "MediaConcurrencies": { "items": { "$ref": "#/definitions/AWS::Connect::RoutingProfile.MediaConcurrency" }, "type": "array" }, "Name": { "type": "string" }, "QueueConfigs": { "items": { "$ref": "#/definitions/AWS::Connect::RoutingProfile.RoutingProfileQueueConfig" }, "type": "array" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "DefaultOutboundQueueArn", "Description", "InstanceArn", "MediaConcurrencies", "Name" ], "type": "object" }, "Type": { "enum": [ "AWS::Connect::RoutingProfile" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Connect::RoutingProfile.CrossChannelBehavior": { "additionalProperties": false, "properties": { "BehaviorType": { "type": "string" } }, "required": [ "BehaviorType" ], "type": "object" }, "AWS::Connect::RoutingProfile.MediaConcurrency": { "additionalProperties": false, "properties": { "Channel": { "type": "string" }, "Concurrency": { "type": "number" }, "CrossChannelBehavior": { "$ref": "#/definitions/AWS::Connect::RoutingProfile.CrossChannelBehavior" } }, "required": [ "Channel", "Concurrency" ], "type": "object" }, "AWS::Connect::RoutingProfile.RoutingProfileQueueConfig": { "additionalProperties": false, "properties": { "Delay": { "type": "number" }, "Priority": { "type": "number" }, "QueueReference": { "$ref": "#/definitions/AWS::Connect::RoutingProfile.RoutingProfileQueueReference" } }, "required": [ "Delay", "Priority", "QueueReference" ], "type": "object" }, "AWS::Connect::RoutingProfile.RoutingProfileQueueReference": { "additionalProperties": false, "properties": { "Channel": { "type": "string" }, "QueueArn": { "type": "string" } }, "required": [ "Channel", "QueueArn" ], "type": "object" }, "AWS::Connect::Rule": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Actions": { "$ref": "#/definitions/AWS::Connect::Rule.Actions" }, "Function": { "type": "string" }, "InstanceArn": { "type": "string" }, "Name": { "type": "string" }, "PublishStatus": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "TriggerEventSource": { "$ref": "#/definitions/AWS::Connect::Rule.RuleTriggerEventSource" } }, "required": [ "Actions", "Function", "InstanceArn", "Name", "PublishStatus", "TriggerEventSource" ], "type": "object" }, "Type": { "enum": [ "AWS::Connect::Rule" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Connect::Rule.Actions": { "additionalProperties": false, "properties": { "AssignContactCategoryActions": { "items": { "type": "object" }, "type": "array" }, "EventBridgeActions": { "items": { "$ref": "#/definitions/AWS::Connect::Rule.EventBridgeAction" }, "type": "array" }, "SendNotificationActions": { "items": { "$ref": "#/definitions/AWS::Connect::Rule.SendNotificationAction" }, "type": "array" }, "TaskActions": { "items": { "$ref": "#/definitions/AWS::Connect::Rule.TaskAction" }, "type": "array" } }, "type": "object" }, "AWS::Connect::Rule.EventBridgeAction": { "additionalProperties": false, "properties": { "Name": { "type": "string" } }, "required": [ "Name" ], "type": "object" }, "AWS::Connect::Rule.NotificationRecipientType": { "additionalProperties": false, "properties": { "UserArns": { "items": { "type": "string" }, "type": "array" }, "UserTags": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" } }, "type": "object" }, "AWS::Connect::Rule.Reference": { "additionalProperties": false, "properties": { "Type": { "type": "string" }, "Value": { "type": "string" } }, "required": [ "Type", "Value" ], "type": "object" }, "AWS::Connect::Rule.RuleTriggerEventSource": { "additionalProperties": false, "properties": { "EventSourceName": { "type": "string" }, "IntegrationAssociationArn": { "type": "string" } }, "required": [ "EventSourceName" ], "type": "object" }, "AWS::Connect::Rule.SendNotificationAction": { "additionalProperties": false, "properties": { "Content": { "type": "string" }, "ContentType": { "type": "string" }, "DeliveryMethod": { "type": "string" }, "Recipient": { "$ref": "#/definitions/AWS::Connect::Rule.NotificationRecipientType" }, "Subject": { "type": "string" } }, "required": [ "Content", "ContentType", "DeliveryMethod", "Recipient" ], "type": "object" }, "AWS::Connect::Rule.TaskAction": { "additionalProperties": false, "properties": { "ContactFlowArn": { "type": "string" }, "Description": { "type": "string" }, "Name": { "type": "string" }, "References": { "additionalProperties": false, "patternProperties": { "^[a-zA-Z0-9]+$": { "$ref": "#/definitions/AWS::Connect::Rule.Reference" } }, "type": "object" } }, "required": [ "ContactFlowArn", "Name" ], "type": "object" }, "AWS::Connect::SecurityKey": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "InstanceId": { "type": "string" }, "Key": { "type": "string" } }, "required": [ "InstanceId", "Key" ], "type": "object" }, "Type": { "enum": [ "AWS::Connect::SecurityKey" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Connect::TaskTemplate": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ClientToken": { "type": "string" }, "Constraints": { "$ref": "#/definitions/AWS::Connect::TaskTemplate.Constraints" }, "ContactFlowArn": { "type": "string" }, "Defaults": { "items": { "$ref": "#/definitions/AWS::Connect::TaskTemplate.DefaultFieldValue" }, "type": "array" }, "Description": { "type": "string" }, "Fields": { "items": { "$ref": "#/definitions/AWS::Connect::TaskTemplate.Field" }, "type": "array" }, "InstanceArn": { "type": "string" }, "Name": { "type": "string" }, "Status": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "InstanceArn" ], "type": "object" }, "Type": { "enum": [ "AWS::Connect::TaskTemplate" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Connect::TaskTemplate.Constraints": { "additionalProperties": false, "properties": { "InvisibleFields": { "items": { "$ref": "#/definitions/AWS::Connect::TaskTemplate.InvisibleFieldInfo" }, "type": "array" }, "ReadOnlyFields": { "items": { "$ref": "#/definitions/AWS::Connect::TaskTemplate.ReadOnlyFieldInfo" }, "type": "array" }, "RequiredFields": { "items": { "$ref": "#/definitions/AWS::Connect::TaskTemplate.RequiredFieldInfo" }, "type": "array" } }, "type": "object" }, "AWS::Connect::TaskTemplate.DefaultFieldValue": { "additionalProperties": false, "properties": { "DefaultValue": { "type": "string" }, "Id": { "$ref": "#/definitions/AWS::Connect::TaskTemplate.FieldIdentifier" } }, "required": [ "DefaultValue", "Id" ], "type": "object" }, "AWS::Connect::TaskTemplate.Field": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "Id": { "$ref": "#/definitions/AWS::Connect::TaskTemplate.FieldIdentifier" }, "SingleSelectOptions": { "items": { "type": "string" }, "type": "array" }, "Type": { "type": "string" } }, "required": [ "Id", "Type" ], "type": "object" }, "AWS::Connect::TaskTemplate.FieldIdentifier": { "additionalProperties": false, "properties": { "Name": { "type": "string" } }, "required": [ "Name" ], "type": "object" }, "AWS::Connect::TaskTemplate.InvisibleFieldInfo": { "additionalProperties": false, "properties": { "Id": { "$ref": "#/definitions/AWS::Connect::TaskTemplate.FieldIdentifier" } }, "required": [ "Id" ], "type": "object" }, "AWS::Connect::TaskTemplate.ReadOnlyFieldInfo": { "additionalProperties": false, "properties": { "Id": { "$ref": "#/definitions/AWS::Connect::TaskTemplate.FieldIdentifier" } }, "required": [ "Id" ], "type": "object" }, "AWS::Connect::TaskTemplate.RequiredFieldInfo": { "additionalProperties": false, "properties": { "Id": { "$ref": "#/definitions/AWS::Connect::TaskTemplate.FieldIdentifier" } }, "required": [ "Id" ], "type": "object" }, "AWS::Connect::TrafficDistributionGroup": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "InstanceArn": { "type": "string" }, "Name": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "InstanceArn", "Name" ], "type": "object" }, "Type": { "enum": [ "AWS::Connect::TrafficDistributionGroup" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Connect::User": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "DirectoryUserId": { "type": "string" }, "HierarchyGroupArn": { "type": "string" }, "IdentityInfo": { "$ref": "#/definitions/AWS::Connect::User.UserIdentityInfo" }, "InstanceArn": { "type": "string" }, "Password": { "type": "string" }, "PhoneConfig": { "$ref": "#/definitions/AWS::Connect::User.UserPhoneConfig" }, "RoutingProfileArn": { "type": "string" }, "SecurityProfileArns": { "items": { "type": "string" }, "type": "array" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "Username": { "type": "string" } }, "required": [ "InstanceArn", "PhoneConfig", "RoutingProfileArn", "SecurityProfileArns", "Username" ], "type": "object" }, "Type": { "enum": [ "AWS::Connect::User" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Connect::User.UserIdentityInfo": { "additionalProperties": false, "properties": { "Email": { "type": "string" }, "FirstName": { "type": "string" }, "LastName": { "type": "string" }, "Mobile": { "type": "string" }, "SecondaryEmail": { "type": "string" } }, "type": "object" }, "AWS::Connect::User.UserPhoneConfig": { "additionalProperties": false, "properties": { "AfterContactWorkTimeLimit": { "type": "number" }, "AutoAccept": { "type": "boolean" }, "DeskPhoneNumber": { "type": "string" }, "PhoneType": { "type": "string" } }, "required": [ "PhoneType" ], "type": "object" }, "AWS::Connect::UserHierarchyGroup": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "InstanceArn": { "type": "string" }, "Name": { "type": "string" }, "ParentGroupArn": { "type": "string" } }, "required": [ "InstanceArn", "Name" ], "type": "object" }, "Type": { "enum": [ "AWS::Connect::UserHierarchyGroup" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::ConnectCampaigns::Campaign": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ConnectInstanceArn": { "type": "string" }, "DialerConfig": { "$ref": "#/definitions/AWS::ConnectCampaigns::Campaign.DialerConfig" }, "Name": { "type": "string" }, "OutboundCallConfig": { "$ref": "#/definitions/AWS::ConnectCampaigns::Campaign.OutboundCallConfig" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "ConnectInstanceArn", "DialerConfig", "Name", "OutboundCallConfig" ], "type": "object" }, "Type": { "enum": [ "AWS::ConnectCampaigns::Campaign" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::ConnectCampaigns::Campaign.AnswerMachineDetectionConfig": { "additionalProperties": false, "properties": { "EnableAnswerMachineDetection": { "type": "boolean" } }, "required": [ "EnableAnswerMachineDetection" ], "type": "object" }, "AWS::ConnectCampaigns::Campaign.DialerConfig": { "additionalProperties": false, "properties": { "PredictiveDialerConfig": { "$ref": "#/definitions/AWS::ConnectCampaigns::Campaign.PredictiveDialerConfig" }, "ProgressiveDialerConfig": { "$ref": "#/definitions/AWS::ConnectCampaigns::Campaign.ProgressiveDialerConfig" } }, "type": "object" }, "AWS::ConnectCampaigns::Campaign.OutboundCallConfig": { "additionalProperties": false, "properties": { "AnswerMachineDetectionConfig": { "$ref": "#/definitions/AWS::ConnectCampaigns::Campaign.AnswerMachineDetectionConfig" }, "ConnectContactFlowArn": { "type": "string" }, "ConnectQueueArn": { "type": "string" }, "ConnectSourcePhoneNumber": { "type": "string" } }, "required": [ "ConnectContactFlowArn", "ConnectQueueArn" ], "type": "object" }, "AWS::ConnectCampaigns::Campaign.PredictiveDialerConfig": { "additionalProperties": false, "properties": { "BandwidthAllocation": { "type": "number" } }, "required": [ "BandwidthAllocation" ], "type": "object" }, "AWS::ConnectCampaigns::Campaign.ProgressiveDialerConfig": { "additionalProperties": false, "properties": { "BandwidthAllocation": { "type": "number" } }, "required": [ "BandwidthAllocation" ], "type": "object" }, "AWS::ControlTower::EnabledControl": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ControlIdentifier": { "type": "string" }, "TargetIdentifier": { "type": "string" } }, "required": [ "ControlIdentifier", "TargetIdentifier" ], "type": "object" }, "Type": { "enum": [ "AWS::ControlTower::EnabledControl" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::CustomerProfiles::CalculatedAttributeDefinition": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AttributeDetails": { "$ref": "#/definitions/AWS::CustomerProfiles::CalculatedAttributeDefinition.AttributeDetails" }, "CalculatedAttributeName": { "type": "string" }, "Conditions": { "$ref": "#/definitions/AWS::CustomerProfiles::CalculatedAttributeDefinition.Conditions" }, "Description": { "type": "string" }, "DisplayName": { "type": "string" }, "DomainName": { "type": "string" }, "Statistic": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "AttributeDetails", "CalculatedAttributeName", "DomainName", "Statistic" ], "type": "object" }, "Type": { "enum": [ "AWS::CustomerProfiles::CalculatedAttributeDefinition" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::CustomerProfiles::CalculatedAttributeDefinition.AttributeDetails": { "additionalProperties": false, "properties": { "Attributes": { "items": { "$ref": "#/definitions/AWS::CustomerProfiles::CalculatedAttributeDefinition.AttributeItem" }, "type": "array" }, "Expression": { "type": "string" } }, "required": [ "Attributes", "Expression" ], "type": "object" }, "AWS::CustomerProfiles::CalculatedAttributeDefinition.AttributeItem": { "additionalProperties": false, "properties": { "Name": { "type": "string" } }, "required": [ "Name" ], "type": "object" }, "AWS::CustomerProfiles::CalculatedAttributeDefinition.Conditions": { "additionalProperties": false, "properties": { "ObjectCount": { "type": "number" }, "Range": { "$ref": "#/definitions/AWS::CustomerProfiles::CalculatedAttributeDefinition.Range" }, "Threshold": { "$ref": "#/definitions/AWS::CustomerProfiles::CalculatedAttributeDefinition.Threshold" } }, "type": "object" }, "AWS::CustomerProfiles::CalculatedAttributeDefinition.Range": { "additionalProperties": false, "properties": { "Unit": { "type": "string" }, "Value": { "type": "number" } }, "required": [ "Unit", "Value" ], "type": "object" }, "AWS::CustomerProfiles::CalculatedAttributeDefinition.Threshold": { "additionalProperties": false, "properties": { "Operator": { "type": "string" }, "Value": { "type": "string" } }, "required": [ "Operator", "Value" ], "type": "object" }, "AWS::CustomerProfiles::Domain": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "DeadLetterQueueUrl": { "type": "string" }, "DefaultEncryptionKey": { "type": "string" }, "DefaultExpirationDays": { "type": "number" }, "DomainName": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "DomainName" ], "type": "object" }, "Type": { "enum": [ "AWS::CustomerProfiles::Domain" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::CustomerProfiles::EventStream": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "DomainName": { "type": "string" }, "EventStreamName": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "Uri": { "type": "string" } }, "required": [ "DomainName", "EventStreamName", "Uri" ], "type": "object" }, "Type": { "enum": [ "AWS::CustomerProfiles::EventStream" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::CustomerProfiles::EventStream.DestinationDetails": { "additionalProperties": false, "properties": { "Status": { "type": "string" }, "Uri": { "type": "string" } }, "required": [ "Status", "Uri" ], "type": "object" }, "AWS::CustomerProfiles::Integration": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "DomainName": { "type": "string" }, "FlowDefinition": { "$ref": "#/definitions/AWS::CustomerProfiles::Integration.FlowDefinition" }, "ObjectTypeName": { "type": "string" }, "ObjectTypeNames": { "items": { "$ref": "#/definitions/AWS::CustomerProfiles::Integration.ObjectTypeMapping" }, "type": "array" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "Uri": { "type": "string" } }, "required": [ "DomainName" ], "type": "object" }, "Type": { "enum": [ "AWS::CustomerProfiles::Integration" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::CustomerProfiles::Integration.ConnectorOperator": { "additionalProperties": false, "properties": { "Marketo": { "type": "string" }, "S3": { "type": "string" }, "Salesforce": { "type": "string" }, "ServiceNow": { "type": "string" }, "Zendesk": { "type": "string" } }, "type": "object" }, "AWS::CustomerProfiles::Integration.FlowDefinition": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "FlowName": { "type": "string" }, "KmsArn": { "type": "string" }, "SourceFlowConfig": { "$ref": "#/definitions/AWS::CustomerProfiles::Integration.SourceFlowConfig" }, "Tasks": { "items": { "$ref": "#/definitions/AWS::CustomerProfiles::Integration.Task" }, "type": "array" }, "TriggerConfig": { "$ref": "#/definitions/AWS::CustomerProfiles::Integration.TriggerConfig" } }, "required": [ "FlowName", "KmsArn", "SourceFlowConfig", "Tasks", "TriggerConfig" ], "type": "object" }, "AWS::CustomerProfiles::Integration.IncrementalPullConfig": { "additionalProperties": false, "properties": { "DatetimeTypeFieldName": { "type": "string" } }, "type": "object" }, "AWS::CustomerProfiles::Integration.MarketoSourceProperties": { "additionalProperties": false, "properties": { "Object": { "type": "string" } }, "required": [ "Object" ], "type": "object" }, "AWS::CustomerProfiles::Integration.ObjectTypeMapping": { "additionalProperties": false, "properties": { "Key": { "type": "string" }, "Value": { "type": "string" } }, "required": [ "Key", "Value" ], "type": "object" }, "AWS::CustomerProfiles::Integration.S3SourceProperties": { "additionalProperties": false, "properties": { "BucketName": { "type": "string" }, "BucketPrefix": { "type": "string" } }, "required": [ "BucketName" ], "type": "object" }, "AWS::CustomerProfiles::Integration.SalesforceSourceProperties": { "additionalProperties": false, "properties": { "EnableDynamicFieldUpdate": { "type": "boolean" }, "IncludeDeletedRecords": { "type": "boolean" }, "Object": { "type": "string" } }, "required": [ "Object" ], "type": "object" }, "AWS::CustomerProfiles::Integration.ScheduledTriggerProperties": { "additionalProperties": false, "properties": { "DataPullMode": { "type": "string" }, "FirstExecutionFrom": { "type": "number" }, "ScheduleEndTime": { "type": "number" }, "ScheduleExpression": { "type": "string" }, "ScheduleOffset": { "type": "number" }, "ScheduleStartTime": { "type": "number" }, "Timezone": { "type": "string" } }, "required": [ "ScheduleExpression" ], "type": "object" }, "AWS::CustomerProfiles::Integration.ServiceNowSourceProperties": { "additionalProperties": false, "properties": { "Object": { "type": "string" } }, "required": [ "Object" ], "type": "object" }, "AWS::CustomerProfiles::Integration.SourceConnectorProperties": { "additionalProperties": false, "properties": { "Marketo": { "$ref": "#/definitions/AWS::CustomerProfiles::Integration.MarketoSourceProperties" }, "S3": { "$ref": "#/definitions/AWS::CustomerProfiles::Integration.S3SourceProperties" }, "Salesforce": { "$ref": "#/definitions/AWS::CustomerProfiles::Integration.SalesforceSourceProperties" }, "ServiceNow": { "$ref": "#/definitions/AWS::CustomerProfiles::Integration.ServiceNowSourceProperties" }, "Zendesk": { "$ref": "#/definitions/AWS::CustomerProfiles::Integration.ZendeskSourceProperties" } }, "type": "object" }, "AWS::CustomerProfiles::Integration.SourceFlowConfig": { "additionalProperties": false, "properties": { "ConnectorProfileName": { "type": "string" }, "ConnectorType": { "type": "string" }, "IncrementalPullConfig": { "$ref": "#/definitions/AWS::CustomerProfiles::Integration.IncrementalPullConfig" }, "SourceConnectorProperties": { "$ref": "#/definitions/AWS::CustomerProfiles::Integration.SourceConnectorProperties" } }, "required": [ "ConnectorType", "SourceConnectorProperties" ], "type": "object" }, "AWS::CustomerProfiles::Integration.Task": { "additionalProperties": false, "properties": { "ConnectorOperator": { "$ref": "#/definitions/AWS::CustomerProfiles::Integration.ConnectorOperator" }, "DestinationField": { "type": "string" }, "SourceFields": { "items": { "type": "string" }, "type": "array" }, "TaskProperties": { "items": { "$ref": "#/definitions/AWS::CustomerProfiles::Integration.TaskPropertiesMap" }, "type": "array" }, "TaskType": { "type": "string" } }, "required": [ "SourceFields", "TaskType" ], "type": "object" }, "AWS::CustomerProfiles::Integration.TaskPropertiesMap": { "additionalProperties": false, "properties": { "OperatorPropertyKey": { "type": "string" }, "Property": { "type": "string" } }, "required": [ "OperatorPropertyKey", "Property" ], "type": "object" }, "AWS::CustomerProfiles::Integration.TriggerConfig": { "additionalProperties": false, "properties": { "TriggerProperties": { "$ref": "#/definitions/AWS::CustomerProfiles::Integration.TriggerProperties" }, "TriggerType": { "type": "string" } }, "required": [ "TriggerType" ], "type": "object" }, "AWS::CustomerProfiles::Integration.TriggerProperties": { "additionalProperties": false, "properties": { "Scheduled": { "$ref": "#/definitions/AWS::CustomerProfiles::Integration.ScheduledTriggerProperties" } }, "type": "object" }, "AWS::CustomerProfiles::Integration.ZendeskSourceProperties": { "additionalProperties": false, "properties": { "Object": { "type": "string" } }, "required": [ "Object" ], "type": "object" }, "AWS::CustomerProfiles::ObjectType": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AllowProfileCreation": { "type": "boolean" }, "Description": { "type": "string" }, "DomainName": { "type": "string" }, "EncryptionKey": { "type": "string" }, "ExpirationDays": { "type": "number" }, "Fields": { "items": { "$ref": "#/definitions/AWS::CustomerProfiles::ObjectType.FieldMap" }, "type": "array" }, "Keys": { "items": { "$ref": "#/definitions/AWS::CustomerProfiles::ObjectType.KeyMap" }, "type": "array" }, "ObjectTypeName": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "TemplateId": { "type": "string" } }, "required": [ "DomainName" ], "type": "object" }, "Type": { "enum": [ "AWS::CustomerProfiles::ObjectType" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::CustomerProfiles::ObjectType.FieldMap": { "additionalProperties": false, "properties": { "Name": { "type": "string" }, "ObjectTypeField": { "$ref": "#/definitions/AWS::CustomerProfiles::ObjectType.ObjectTypeField" } }, "type": "object" }, "AWS::CustomerProfiles::ObjectType.KeyMap": { "additionalProperties": false, "properties": { "Name": { "type": "string" }, "ObjectTypeKeyList": { "items": { "$ref": "#/definitions/AWS::CustomerProfiles::ObjectType.ObjectTypeKey" }, "type": "array" } }, "type": "object" }, "AWS::CustomerProfiles::ObjectType.ObjectTypeField": { "additionalProperties": false, "properties": { "ContentType": { "type": "string" }, "Source": { "type": "string" }, "Target": { "type": "string" } }, "type": "object" }, "AWS::CustomerProfiles::ObjectType.ObjectTypeKey": { "additionalProperties": false, "properties": { "FieldNames": { "items": { "type": "string" }, "type": "array" }, "StandardIdentifiers": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::DAX::Cluster": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AvailabilityZones": { "items": { "type": "string" }, "type": "array" }, "ClusterEndpointEncryptionType": { "type": "string" }, "ClusterName": { "type": "string" }, "Description": { "type": "string" }, "IAMRoleARN": { "type": "string" }, "NodeType": { "type": "string" }, "NotificationTopicARN": { "type": "string" }, "ParameterGroupName": { "type": "string" }, "PreferredMaintenanceWindow": { "type": "string" }, "ReplicationFactor": { "type": "number" }, "SSESpecification": { "$ref": "#/definitions/AWS::DAX::Cluster.SSESpecification" }, "SecurityGroupIds": { "items": { "type": "string" }, "type": "array" }, "SubnetGroupName": { "type": "string" }, "Tags": { "type": "object" } }, "required": [ "IAMRoleARN", "NodeType", "ReplicationFactor" ], "type": "object" }, "Type": { "enum": [ "AWS::DAX::Cluster" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::DAX::Cluster.SSESpecification": { "additionalProperties": false, "properties": { "SSEEnabled": { "type": "boolean" } }, "type": "object" }, "AWS::DAX::ParameterGroup": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "ParameterGroupName": { "type": "string" }, "ParameterNameValues": { "type": "object" } }, "type": "object" }, "Type": { "enum": [ "AWS::DAX::ParameterGroup" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::DAX::SubnetGroup": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "SubnetGroupName": { "type": "string" }, "SubnetIds": { "items": { "type": "string" }, "type": "array" } }, "required": [ "SubnetIds" ], "type": "object" }, "Type": { "enum": [ "AWS::DAX::SubnetGroup" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::DLM::LifecyclePolicy": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "ExecutionRoleArn": { "type": "string" }, "PolicyDetails": { "$ref": "#/definitions/AWS::DLM::LifecyclePolicy.PolicyDetails" }, "State": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "type": "object" }, "Type": { "enum": [ "AWS::DLM::LifecyclePolicy" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::DLM::LifecyclePolicy.Action": { "additionalProperties": false, "properties": { "CrossRegionCopy": { "items": { "$ref": "#/definitions/AWS::DLM::LifecyclePolicy.CrossRegionCopyAction" }, "type": "array" }, "Name": { "type": "string" } }, "required": [ "CrossRegionCopy", "Name" ], "type": "object" }, "AWS::DLM::LifecyclePolicy.ArchiveRetainRule": { "additionalProperties": false, "properties": { "RetentionArchiveTier": { "$ref": "#/definitions/AWS::DLM::LifecyclePolicy.RetentionArchiveTier" } }, "required": [ "RetentionArchiveTier" ], "type": "object" }, "AWS::DLM::LifecyclePolicy.ArchiveRule": { "additionalProperties": false, "properties": { "RetainRule": { "$ref": "#/definitions/AWS::DLM::LifecyclePolicy.ArchiveRetainRule" } }, "required": [ "RetainRule" ], "type": "object" }, "AWS::DLM::LifecyclePolicy.CreateRule": { "additionalProperties": false, "properties": { "CronExpression": { "type": "string" }, "Interval": { "type": "number" }, "IntervalUnit": { "type": "string" }, "Location": { "type": "string" }, "Times": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::DLM::LifecyclePolicy.CrossRegionCopyAction": { "additionalProperties": false, "properties": { "EncryptionConfiguration": { "$ref": "#/definitions/AWS::DLM::LifecyclePolicy.EncryptionConfiguration" }, "RetainRule": { "$ref": "#/definitions/AWS::DLM::LifecyclePolicy.CrossRegionCopyRetainRule" }, "Target": { "type": "string" } }, "required": [ "EncryptionConfiguration", "Target" ], "type": "object" }, "AWS::DLM::LifecyclePolicy.CrossRegionCopyDeprecateRule": { "additionalProperties": false, "properties": { "Interval": { "type": "number" }, "IntervalUnit": { "type": "string" } }, "required": [ "Interval", "IntervalUnit" ], "type": "object" }, "AWS::DLM::LifecyclePolicy.CrossRegionCopyRetainRule": { "additionalProperties": false, "properties": { "Interval": { "type": "number" }, "IntervalUnit": { "type": "string" } }, "required": [ "Interval", "IntervalUnit" ], "type": "object" }, "AWS::DLM::LifecyclePolicy.CrossRegionCopyRule": { "additionalProperties": false, "properties": { "CmkArn": { "type": "string" }, "CopyTags": { "type": "boolean" }, "DeprecateRule": { "$ref": "#/definitions/AWS::DLM::LifecyclePolicy.CrossRegionCopyDeprecateRule" }, "Encrypted": { "type": "boolean" }, "RetainRule": { "$ref": "#/definitions/AWS::DLM::LifecyclePolicy.CrossRegionCopyRetainRule" }, "Target": { "type": "string" }, "TargetRegion": { "type": "string" } }, "required": [ "Encrypted" ], "type": "object" }, "AWS::DLM::LifecyclePolicy.DeprecateRule": { "additionalProperties": false, "properties": { "Count": { "type": "number" }, "Interval": { "type": "number" }, "IntervalUnit": { "type": "string" } }, "type": "object" }, "AWS::DLM::LifecyclePolicy.EncryptionConfiguration": { "additionalProperties": false, "properties": { "CmkArn": { "type": "string" }, "Encrypted": { "type": "boolean" } }, "required": [ "Encrypted" ], "type": "object" }, "AWS::DLM::LifecyclePolicy.EventParameters": { "additionalProperties": false, "properties": { "DescriptionRegex": { "type": "string" }, "EventType": { "type": "string" }, "SnapshotOwner": { "items": { "type": "string" }, "type": "array" } }, "required": [ "EventType", "SnapshotOwner" ], "type": "object" }, "AWS::DLM::LifecyclePolicy.EventSource": { "additionalProperties": false, "properties": { "Parameters": { "$ref": "#/definitions/AWS::DLM::LifecyclePolicy.EventParameters" }, "Type": { "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::DLM::LifecyclePolicy.FastRestoreRule": { "additionalProperties": false, "properties": { "AvailabilityZones": { "items": { "type": "string" }, "type": "array" }, "Count": { "type": "number" }, "Interval": { "type": "number" }, "IntervalUnit": { "type": "string" } }, "type": "object" }, "AWS::DLM::LifecyclePolicy.Parameters": { "additionalProperties": false, "properties": { "ExcludeBootVolume": { "type": "boolean" }, "ExcludeDataVolumeTags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "NoReboot": { "type": "boolean" } }, "type": "object" }, "AWS::DLM::LifecyclePolicy.PolicyDetails": { "additionalProperties": false, "properties": { "Actions": { "items": { "$ref": "#/definitions/AWS::DLM::LifecyclePolicy.Action" }, "type": "array" }, "EventSource": { "$ref": "#/definitions/AWS::DLM::LifecyclePolicy.EventSource" }, "Parameters": { "$ref": "#/definitions/AWS::DLM::LifecyclePolicy.Parameters" }, "PolicyType": { "type": "string" }, "ResourceLocations": { "items": { "type": "string" }, "type": "array" }, "ResourceTypes": { "items": { "type": "string" }, "type": "array" }, "Schedules": { "items": { "$ref": "#/definitions/AWS::DLM::LifecyclePolicy.Schedule" }, "type": "array" }, "TargetTags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "type": "object" }, "AWS::DLM::LifecyclePolicy.RetainRule": { "additionalProperties": false, "properties": { "Count": { "type": "number" }, "Interval": { "type": "number" }, "IntervalUnit": { "type": "string" } }, "type": "object" }, "AWS::DLM::LifecyclePolicy.RetentionArchiveTier": { "additionalProperties": false, "properties": { "Count": { "type": "number" }, "Interval": { "type": "number" }, "IntervalUnit": { "type": "string" } }, "type": "object" }, "AWS::DLM::LifecyclePolicy.Schedule": { "additionalProperties": false, "properties": { "ArchiveRule": { "$ref": "#/definitions/AWS::DLM::LifecyclePolicy.ArchiveRule" }, "CopyTags": { "type": "boolean" }, "CreateRule": { "$ref": "#/definitions/AWS::DLM::LifecyclePolicy.CreateRule" }, "CrossRegionCopyRules": { "items": { "$ref": "#/definitions/AWS::DLM::LifecyclePolicy.CrossRegionCopyRule" }, "type": "array" }, "DeprecateRule": { "$ref": "#/definitions/AWS::DLM::LifecyclePolicy.DeprecateRule" }, "FastRestoreRule": { "$ref": "#/definitions/AWS::DLM::LifecyclePolicy.FastRestoreRule" }, "Name": { "type": "string" }, "RetainRule": { "$ref": "#/definitions/AWS::DLM::LifecyclePolicy.RetainRule" }, "ShareRules": { "items": { "$ref": "#/definitions/AWS::DLM::LifecyclePolicy.ShareRule" }, "type": "array" }, "TagsToAdd": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "VariableTags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "type": "object" }, "AWS::DLM::LifecyclePolicy.ShareRule": { "additionalProperties": false, "properties": { "TargetAccounts": { "items": { "type": "string" }, "type": "array" }, "UnshareInterval": { "type": "number" }, "UnshareIntervalUnit": { "type": "string" } }, "type": "object" }, "AWS::DMS::Certificate": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "CertificateIdentifier": { "type": "string" }, "CertificatePem": { "type": "string" }, "CertificateWallet": { "type": "string" } }, "type": "object" }, "Type": { "enum": [ "AWS::DMS::Certificate" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::DMS::Endpoint": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "CertificateArn": { "type": "string" }, "DatabaseName": { "type": "string" }, "DocDbSettings": { "$ref": "#/definitions/AWS::DMS::Endpoint.DocDbSettings" }, "DynamoDbSettings": { "$ref": "#/definitions/AWS::DMS::Endpoint.DynamoDbSettings" }, "ElasticsearchSettings": { "$ref": "#/definitions/AWS::DMS::Endpoint.ElasticsearchSettings" }, "EndpointIdentifier": { "type": "string" }, "EndpointType": { "type": "string" }, "EngineName": { "type": "string" }, "ExtraConnectionAttributes": { "type": "string" }, "GcpMySQLSettings": { "$ref": "#/definitions/AWS::DMS::Endpoint.GcpMySQLSettings" }, "IbmDb2Settings": { "$ref": "#/definitions/AWS::DMS::Endpoint.IbmDb2Settings" }, "KafkaSettings": { "$ref": "#/definitions/AWS::DMS::Endpoint.KafkaSettings" }, "KinesisSettings": { "$ref": "#/definitions/AWS::DMS::Endpoint.KinesisSettings" }, "KmsKeyId": { "type": "string" }, "MicrosoftSqlServerSettings": { "$ref": "#/definitions/AWS::DMS::Endpoint.MicrosoftSqlServerSettings" }, "MongoDbSettings": { "$ref": "#/definitions/AWS::DMS::Endpoint.MongoDbSettings" }, "MySqlSettings": { "$ref": "#/definitions/AWS::DMS::Endpoint.MySqlSettings" }, "NeptuneSettings": { "$ref": "#/definitions/AWS::DMS::Endpoint.NeptuneSettings" }, "OracleSettings": { "$ref": "#/definitions/AWS::DMS::Endpoint.OracleSettings" }, "Password": { "type": "string" }, "Port": { "type": "number" }, "PostgreSqlSettings": { "$ref": "#/definitions/AWS::DMS::Endpoint.PostgreSqlSettings" }, "RedisSettings": { "$ref": "#/definitions/AWS::DMS::Endpoint.RedisSettings" }, "RedshiftSettings": { "$ref": "#/definitions/AWS::DMS::Endpoint.RedshiftSettings" }, "ResourceIdentifier": { "type": "string" }, "S3Settings": { "$ref": "#/definitions/AWS::DMS::Endpoint.S3Settings" }, "ServerName": { "type": "string" }, "SslMode": { "type": "string" }, "SybaseSettings": { "$ref": "#/definitions/AWS::DMS::Endpoint.SybaseSettings" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "Username": { "type": "string" } }, "required": [ "EndpointType", "EngineName" ], "type": "object" }, "Type": { "enum": [ "AWS::DMS::Endpoint" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::DMS::Endpoint.DocDbSettings": { "additionalProperties": false, "properties": { "DocsToInvestigate": { "type": "number" }, "ExtractDocId": { "type": "boolean" }, "NestingLevel": { "type": "string" }, "SecretsManagerAccessRoleArn": { "type": "string" }, "SecretsManagerSecretId": { "type": "string" } }, "type": "object" }, "AWS::DMS::Endpoint.DynamoDbSettings": { "additionalProperties": false, "properties": { "ServiceAccessRoleArn": { "type": "string" } }, "type": "object" }, "AWS::DMS::Endpoint.ElasticsearchSettings": { "additionalProperties": false, "properties": { "EndpointUri": { "type": "string" }, "ErrorRetryDuration": { "type": "number" }, "FullLoadErrorPercentage": { "type": "number" }, "ServiceAccessRoleArn": { "type": "string" } }, "type": "object" }, "AWS::DMS::Endpoint.GcpMySQLSettings": { "additionalProperties": false, "properties": { "AfterConnectScript": { "type": "string" }, "CleanSourceMetadataOnMismatch": { "type": "boolean" }, "DatabaseName": { "type": "string" }, "EventsPollInterval": { "type": "number" }, "MaxFileSize": { "type": "number" }, "ParallelLoadThreads": { "type": "number" }, "Password": { "type": "string" }, "Port": { "type": "number" }, "SecretsManagerAccessRoleArn": { "type": "string" }, "SecretsManagerSecretId": { "type": "string" }, "ServerName": { "type": "string" }, "ServerTimezone": { "type": "string" }, "Username": { "type": "string" } }, "type": "object" }, "AWS::DMS::Endpoint.IbmDb2Settings": { "additionalProperties": false, "properties": { "CurrentLsn": { "type": "string" }, "MaxKBytesPerRead": { "type": "number" }, "SecretsManagerAccessRoleArn": { "type": "string" }, "SecretsManagerSecretId": { "type": "string" }, "SetDataCaptureChanges": { "type": "boolean" } }, "type": "object" }, "AWS::DMS::Endpoint.KafkaSettings": { "additionalProperties": false, "properties": { "Broker": { "type": "string" }, "IncludeControlDetails": { "type": "boolean" }, "IncludeNullAndEmpty": { "type": "boolean" }, "IncludePartitionValue": { "type": "boolean" }, "IncludeTableAlterOperations": { "type": "boolean" }, "IncludeTransactionDetails": { "type": "boolean" }, "MessageFormat": { "type": "string" }, "MessageMaxBytes": { "type": "number" }, "NoHexPrefix": { "type": "boolean" }, "PartitionIncludeSchemaTable": { "type": "boolean" }, "SaslPassword": { "type": "string" }, "SaslUserName": { "type": "string" }, "SecurityProtocol": { "type": "string" }, "SslCaCertificateArn": { "type": "string" }, "SslClientCertificateArn": { "type": "string" }, "SslClientKeyArn": { "type": "string" }, "SslClientKeyPassword": { "type": "string" }, "Topic": { "type": "string" } }, "type": "object" }, "AWS::DMS::Endpoint.KinesisSettings": { "additionalProperties": false, "properties": { "IncludeControlDetails": { "type": "boolean" }, "IncludeNullAndEmpty": { "type": "boolean" }, "IncludePartitionValue": { "type": "boolean" }, "IncludeTableAlterOperations": { "type": "boolean" }, "IncludeTransactionDetails": { "type": "boolean" }, "MessageFormat": { "type": "string" }, "NoHexPrefix": { "type": "boolean" }, "PartitionIncludeSchemaTable": { "type": "boolean" }, "ServiceAccessRoleArn": { "type": "string" }, "StreamArn": { "type": "string" } }, "type": "object" }, "AWS::DMS::Endpoint.MicrosoftSqlServerSettings": { "additionalProperties": false, "properties": { "BcpPacketSize": { "type": "number" }, "ControlTablesFileGroup": { "type": "string" }, "QuerySingleAlwaysOnNode": { "type": "boolean" }, "ReadBackupOnly": { "type": "boolean" }, "SafeguardPolicy": { "type": "string" }, "SecretsManagerAccessRoleArn": { "type": "string" }, "SecretsManagerSecretId": { "type": "string" }, "UseBcpFullLoad": { "type": "boolean" }, "UseThirdPartyBackupDevice": { "type": "boolean" } }, "type": "object" }, "AWS::DMS::Endpoint.MongoDbSettings": { "additionalProperties": false, "properties": { "AuthMechanism": { "type": "string" }, "AuthSource": { "type": "string" }, "AuthType": { "type": "string" }, "DatabaseName": { "type": "string" }, "DocsToInvestigate": { "type": "string" }, "ExtractDocId": { "type": "string" }, "NestingLevel": { "type": "string" }, "Password": { "type": "string" }, "Port": { "type": "number" }, "SecretsManagerAccessRoleArn": { "type": "string" }, "SecretsManagerSecretId": { "type": "string" }, "ServerName": { "type": "string" }, "Username": { "type": "string" } }, "type": "object" }, "AWS::DMS::Endpoint.MySqlSettings": { "additionalProperties": false, "properties": { "AfterConnectScript": { "type": "string" }, "CleanSourceMetadataOnMismatch": { "type": "boolean" }, "EventsPollInterval": { "type": "number" }, "MaxFileSize": { "type": "number" }, "ParallelLoadThreads": { "type": "number" }, "SecretsManagerAccessRoleArn": { "type": "string" }, "SecretsManagerSecretId": { "type": "string" }, "ServerTimezone": { "type": "string" }, "TargetDbType": { "type": "string" } }, "type": "object" }, "AWS::DMS::Endpoint.NeptuneSettings": { "additionalProperties": false, "properties": { "ErrorRetryDuration": { "type": "number" }, "IamAuthEnabled": { "type": "boolean" }, "MaxFileSize": { "type": "number" }, "MaxRetryCount": { "type": "number" }, "S3BucketFolder": { "type": "string" }, "S3BucketName": { "type": "string" }, "ServiceAccessRoleArn": { "type": "string" } }, "type": "object" }, "AWS::DMS::Endpoint.OracleSettings": { "additionalProperties": false, "properties": { "AccessAlternateDirectly": { "type": "boolean" }, "AddSupplementalLogging": { "type": "boolean" }, "AdditionalArchivedLogDestId": { "type": "number" }, "AllowSelectNestedTables": { "type": "boolean" }, "ArchivedLogDestId": { "type": "number" }, "ArchivedLogsOnly": { "type": "boolean" }, "AsmPassword": { "type": "string" }, "AsmServer": { "type": "string" }, "AsmUser": { "type": "string" }, "CharLengthSemantics": { "type": "string" }, "DirectPathNoLog": { "type": "boolean" }, "DirectPathParallelLoad": { "type": "boolean" }, "EnableHomogenousTablespace": { "type": "boolean" }, "ExtraArchivedLogDestIds": { "items": { "type": "number" }, "type": "array" }, "FailTasksOnLobTruncation": { "type": "boolean" }, "NumberDatatypeScale": { "type": "number" }, "OraclePathPrefix": { "type": "string" }, "ParallelAsmReadThreads": { "type": "number" }, "ReadAheadBlocks": { "type": "number" }, "ReadTableSpaceName": { "type": "boolean" }, "ReplacePathPrefix": { "type": "boolean" }, "RetryInterval": { "type": "number" }, "SecretsManagerAccessRoleArn": { "type": "string" }, "SecretsManagerOracleAsmAccessRoleArn": { "type": "string" }, "SecretsManagerOracleAsmSecretId": { "type": "string" }, "SecretsManagerSecretId": { "type": "string" }, "SecurityDbEncryption": { "type": "string" }, "SecurityDbEncryptionName": { "type": "string" }, "SpatialDataOptionToGeoJsonFunctionName": { "type": "string" }, "StandbyDelayTime": { "type": "number" }, "UseAlternateFolderForOnline": { "type": "boolean" }, "UseBFile": { "type": "boolean" }, "UseDirectPathFullLoad": { "type": "boolean" }, "UseLogminerReader": { "type": "boolean" }, "UsePathPrefix": { "type": "string" } }, "type": "object" }, "AWS::DMS::Endpoint.PostgreSqlSettings": { "additionalProperties": false, "properties": { "AfterConnectScript": { "type": "string" }, "CaptureDdls": { "type": "boolean" }, "DdlArtifactsSchema": { "type": "string" }, "ExecuteTimeout": { "type": "number" }, "FailTasksOnLobTruncation": { "type": "boolean" }, "HeartbeatEnable": { "type": "boolean" }, "HeartbeatFrequency": { "type": "number" }, "HeartbeatSchema": { "type": "string" }, "MapBooleanAsBoolean": { "type": "boolean" }, "MaxFileSize": { "type": "number" }, "PluginName": { "type": "string" }, "SecretsManagerAccessRoleArn": { "type": "string" }, "SecretsManagerSecretId": { "type": "string" }, "SlotName": { "type": "string" } }, "type": "object" }, "AWS::DMS::Endpoint.RedisSettings": { "additionalProperties": false, "properties": { "AuthPassword": { "type": "string" }, "AuthType": { "type": "string" }, "AuthUserName": { "type": "string" }, "Port": { "type": "number" }, "ServerName": { "type": "string" }, "SslCaCertificateArn": { "type": "string" }, "SslSecurityProtocol": { "type": "string" } }, "type": "object" }, "AWS::DMS::Endpoint.RedshiftSettings": { "additionalProperties": false, "properties": { "AcceptAnyDate": { "type": "boolean" }, "AfterConnectScript": { "type": "string" }, "BucketFolder": { "type": "string" }, "BucketName": { "type": "string" }, "CaseSensitiveNames": { "type": "boolean" }, "CompUpdate": { "type": "boolean" }, "ConnectionTimeout": { "type": "number" }, "DateFormat": { "type": "string" }, "EmptyAsNull": { "type": "boolean" }, "EncryptionMode": { "type": "string" }, "ExplicitIds": { "type": "boolean" }, "FileTransferUploadStreams": { "type": "number" }, "LoadTimeout": { "type": "number" }, "MapBooleanAsBoolean": { "type": "boolean" }, "MaxFileSize": { "type": "number" }, "RemoveQuotes": { "type": "boolean" }, "ReplaceChars": { "type": "string" }, "ReplaceInvalidChars": { "type": "string" }, "SecretsManagerAccessRoleArn": { "type": "string" }, "SecretsManagerSecretId": { "type": "string" }, "ServerSideEncryptionKmsKeyId": { "type": "string" }, "ServiceAccessRoleArn": { "type": "string" }, "TimeFormat": { "type": "string" }, "TrimBlanks": { "type": "boolean" }, "TruncateColumns": { "type": "boolean" }, "WriteBufferSize": { "type": "number" } }, "type": "object" }, "AWS::DMS::Endpoint.S3Settings": { "additionalProperties": false, "properties": { "AddColumnName": { "type": "boolean" }, "BucketFolder": { "type": "string" }, "BucketName": { "type": "string" }, "CannedAclForObjects": { "type": "string" }, "CdcInsertsAndUpdates": { "type": "boolean" }, "CdcInsertsOnly": { "type": "boolean" }, "CdcMaxBatchInterval": { "type": "number" }, "CdcMinFileSize": { "type": "number" }, "CdcPath": { "type": "string" }, "CompressionType": { "type": "string" }, "CsvDelimiter": { "type": "string" }, "CsvNoSupValue": { "type": "string" }, "CsvNullValue": { "type": "string" }, "CsvRowDelimiter": { "type": "string" }, "DataFormat": { "type": "string" }, "DataPageSize": { "type": "number" }, "DatePartitionDelimiter": { "type": "string" }, "DatePartitionEnabled": { "type": "boolean" }, "DatePartitionSequence": { "type": "string" }, "DatePartitionTimezone": { "type": "string" }, "DictPageSizeLimit": { "type": "number" }, "EnableStatistics": { "type": "boolean" }, "EncodingType": { "type": "string" }, "EncryptionMode": { "type": "string" }, "ExternalTableDefinition": { "type": "string" }, "IgnoreHeaderRows": { "type": "number" }, "IncludeOpForFullLoad": { "type": "boolean" }, "MaxFileSize": { "type": "number" }, "ParquetTimestampInMillisecond": { "type": "boolean" }, "ParquetVersion": { "type": "string" }, "PreserveTransactions": { "type": "boolean" }, "Rfc4180": { "type": "boolean" }, "RowGroupLength": { "type": "number" }, "ServerSideEncryptionKmsKeyId": { "type": "string" }, "ServiceAccessRoleArn": { "type": "string" }, "TimestampColumnName": { "type": "string" }, "UseCsvNoSupValue": { "type": "boolean" }, "UseTaskStartTimeForFullLoadTimestamp": { "type": "boolean" } }, "type": "object" }, "AWS::DMS::Endpoint.SybaseSettings": { "additionalProperties": false, "properties": { "SecretsManagerAccessRoleArn": { "type": "string" }, "SecretsManagerSecretId": { "type": "string" } }, "type": "object" }, "AWS::DMS::EventSubscription": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Enabled": { "type": "boolean" }, "EventCategories": { "items": { "type": "string" }, "type": "array" }, "SnsTopicArn": { "type": "string" }, "SourceIds": { "items": { "type": "string" }, "type": "array" }, "SourceType": { "type": "string" }, "SubscriptionName": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "SnsTopicArn" ], "type": "object" }, "Type": { "enum": [ "AWS::DMS::EventSubscription" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::DMS::ReplicationConfig": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ComputeConfig": { "$ref": "#/definitions/AWS::DMS::ReplicationConfig.ComputeConfig" }, "ReplicationConfigArn": { "type": "string" }, "ReplicationConfigIdentifier": { "type": "string" }, "ReplicationSettings": { "type": "object" }, "ReplicationType": { "type": "string" }, "ResourceIdentifier": { "type": "string" }, "SourceEndpointArn": { "type": "string" }, "SupplementalSettings": { "type": "object" }, "TableMappings": { "type": "object" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "TargetEndpointArn": { "type": "string" } }, "type": "object" }, "Type": { "enum": [ "AWS::DMS::ReplicationConfig" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::DMS::ReplicationConfig.ComputeConfig": { "additionalProperties": false, "properties": { "AvailabilityZone": { "type": "string" }, "DnsNameServers": { "type": "string" }, "KmsKeyId": { "type": "string" }, "MaxCapacityUnits": { "type": "number" }, "MinCapacityUnits": { "type": "number" }, "MultiAZ": { "type": "boolean" }, "PreferredMaintenanceWindow": { "type": "string" }, "ReplicationSubnetGroupId": { "type": "string" }, "VpcSecurityGroupIds": { "items": { "type": "string" }, "type": "array" } }, "required": [ "MaxCapacityUnits" ], "type": "object" }, "AWS::DMS::ReplicationInstance": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AllocatedStorage": { "type": "number" }, "AllowMajorVersionUpgrade": { "type": "boolean" }, "AutoMinorVersionUpgrade": { "type": "boolean" }, "AvailabilityZone": { "type": "string" }, "EngineVersion": { "type": "string" }, "KmsKeyId": { "type": "string" }, "MultiAZ": { "type": "boolean" }, "PreferredMaintenanceWindow": { "type": "string" }, "PubliclyAccessible": { "type": "boolean" }, "ReplicationInstanceClass": { "type": "string" }, "ReplicationInstanceIdentifier": { "type": "string" }, "ReplicationSubnetGroupIdentifier": { "type": "string" }, "ResourceIdentifier": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "VpcSecurityGroupIds": { "items": { "type": "string" }, "type": "array" } }, "required": [ "ReplicationInstanceClass" ], "type": "object" }, "Type": { "enum": [ "AWS::DMS::ReplicationInstance" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::DMS::ReplicationSubnetGroup": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ReplicationSubnetGroupDescription": { "type": "string" }, "ReplicationSubnetGroupIdentifier": { "type": "string" }, "SubnetIds": { "items": { "type": "string" }, "type": "array" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "ReplicationSubnetGroupDescription", "SubnetIds" ], "type": "object" }, "Type": { "enum": [ "AWS::DMS::ReplicationSubnetGroup" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::DMS::ReplicationTask": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "CdcStartPosition": { "type": "string" }, "CdcStartTime": { "type": "number" }, "CdcStopPosition": { "type": "string" }, "MigrationType": { "type": "string" }, "ReplicationInstanceArn": { "type": "string" }, "ReplicationTaskIdentifier": { "type": "string" }, "ReplicationTaskSettings": { "type": "string" }, "ResourceIdentifier": { "type": "string" }, "SourceEndpointArn": { "type": "string" }, "TableMappings": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "TargetEndpointArn": { "type": "string" }, "TaskData": { "type": "string" } }, "required": [ "MigrationType", "ReplicationInstanceArn", "SourceEndpointArn", "TableMappings", "TargetEndpointArn" ], "type": "object" }, "Type": { "enum": [ "AWS::DMS::ReplicationTask" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::DataBrew::Dataset": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Format": { "type": "string" }, "FormatOptions": { "$ref": "#/definitions/AWS::DataBrew::Dataset.FormatOptions" }, "Input": { "$ref": "#/definitions/AWS::DataBrew::Dataset.Input" }, "Name": { "type": "string" }, "PathOptions": { "$ref": "#/definitions/AWS::DataBrew::Dataset.PathOptions" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "Input", "Name" ], "type": "object" }, "Type": { "enum": [ "AWS::DataBrew::Dataset" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::DataBrew::Dataset.CsvOptions": { "additionalProperties": false, "properties": { "Delimiter": { "type": "string" }, "HeaderRow": { "type": "boolean" } }, "type": "object" }, "AWS::DataBrew::Dataset.DataCatalogInputDefinition": { "additionalProperties": false, "properties": { "CatalogId": { "type": "string" }, "DatabaseName": { "type": "string" }, "TableName": { "type": "string" }, "TempDirectory": { "$ref": "#/definitions/AWS::DataBrew::Dataset.S3Location" } }, "type": "object" }, "AWS::DataBrew::Dataset.DatabaseInputDefinition": { "additionalProperties": false, "properties": { "DatabaseTableName": { "type": "string" }, "GlueConnectionName": { "type": "string" }, "QueryString": { "type": "string" }, "TempDirectory": { "$ref": "#/definitions/AWS::DataBrew::Dataset.S3Location" } }, "required": [ "GlueConnectionName" ], "type": "object" }, "AWS::DataBrew::Dataset.DatasetParameter": { "additionalProperties": false, "properties": { "CreateColumn": { "type": "boolean" }, "DatetimeOptions": { "$ref": "#/definitions/AWS::DataBrew::Dataset.DatetimeOptions" }, "Filter": { "$ref": "#/definitions/AWS::DataBrew::Dataset.FilterExpression" }, "Name": { "type": "string" }, "Type": { "type": "string" } }, "required": [ "Name", "Type" ], "type": "object" }, "AWS::DataBrew::Dataset.DatetimeOptions": { "additionalProperties": false, "properties": { "Format": { "type": "string" }, "LocaleCode": { "type": "string" }, "TimezoneOffset": { "type": "string" } }, "required": [ "Format" ], "type": "object" }, "AWS::DataBrew::Dataset.ExcelOptions": { "additionalProperties": false, "properties": { "HeaderRow": { "type": "boolean" }, "SheetIndexes": { "items": { "type": "number" }, "type": "array" }, "SheetNames": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::DataBrew::Dataset.FilesLimit": { "additionalProperties": false, "properties": { "MaxFiles": { "type": "number" }, "Order": { "type": "string" }, "OrderedBy": { "type": "string" } }, "required": [ "MaxFiles" ], "type": "object" }, "AWS::DataBrew::Dataset.FilterExpression": { "additionalProperties": false, "properties": { "Expression": { "type": "string" }, "ValuesMap": { "items": { "$ref": "#/definitions/AWS::DataBrew::Dataset.FilterValue" }, "type": "array" } }, "required": [ "Expression", "ValuesMap" ], "type": "object" }, "AWS::DataBrew::Dataset.FilterValue": { "additionalProperties": false, "properties": { "Value": { "type": "string" }, "ValueReference": { "type": "string" } }, "required": [ "Value", "ValueReference" ], "type": "object" }, "AWS::DataBrew::Dataset.FormatOptions": { "additionalProperties": false, "properties": { "Csv": { "$ref": "#/definitions/AWS::DataBrew::Dataset.CsvOptions" }, "Excel": { "$ref": "#/definitions/AWS::DataBrew::Dataset.ExcelOptions" }, "Json": { "$ref": "#/definitions/AWS::DataBrew::Dataset.JsonOptions" } }, "type": "object" }, "AWS::DataBrew::Dataset.Input": { "additionalProperties": false, "properties": { "DataCatalogInputDefinition": { "$ref": "#/definitions/AWS::DataBrew::Dataset.DataCatalogInputDefinition" }, "DatabaseInputDefinition": { "$ref": "#/definitions/AWS::DataBrew::Dataset.DatabaseInputDefinition" }, "Metadata": { "$ref": "#/definitions/AWS::DataBrew::Dataset.Metadata" }, "S3InputDefinition": { "$ref": "#/definitions/AWS::DataBrew::Dataset.S3Location" } }, "type": "object" }, "AWS::DataBrew::Dataset.JsonOptions": { "additionalProperties": false, "properties": { "MultiLine": { "type": "boolean" } }, "type": "object" }, "AWS::DataBrew::Dataset.Metadata": { "additionalProperties": false, "properties": { "SourceArn": { "type": "string" } }, "type": "object" }, "AWS::DataBrew::Dataset.PathOptions": { "additionalProperties": false, "properties": { "FilesLimit": { "$ref": "#/definitions/AWS::DataBrew::Dataset.FilesLimit" }, "LastModifiedDateCondition": { "$ref": "#/definitions/AWS::DataBrew::Dataset.FilterExpression" }, "Parameters": { "items": { "$ref": "#/definitions/AWS::DataBrew::Dataset.PathParameter" }, "type": "array" } }, "type": "object" }, "AWS::DataBrew::Dataset.PathParameter": { "additionalProperties": false, "properties": { "DatasetParameter": { "$ref": "#/definitions/AWS::DataBrew::Dataset.DatasetParameter" }, "PathParameterName": { "type": "string" } }, "required": [ "DatasetParameter", "PathParameterName" ], "type": "object" }, "AWS::DataBrew::Dataset.S3Location": { "additionalProperties": false, "properties": { "Bucket": { "type": "string" }, "Key": { "type": "string" } }, "required": [ "Bucket" ], "type": "object" }, "AWS::DataBrew::Job": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "DataCatalogOutputs": { "items": { "$ref": "#/definitions/AWS::DataBrew::Job.DataCatalogOutput" }, "type": "array" }, "DatabaseOutputs": { "items": { "$ref": "#/definitions/AWS::DataBrew::Job.DatabaseOutput" }, "type": "array" }, "DatasetName": { "type": "string" }, "EncryptionKeyArn": { "type": "string" }, "EncryptionMode": { "type": "string" }, "JobSample": { "$ref": "#/definitions/AWS::DataBrew::Job.JobSample" }, "LogSubscription": { "type": "string" }, "MaxCapacity": { "type": "number" }, "MaxRetries": { "type": "number" }, "Name": { "type": "string" }, "OutputLocation": { "$ref": "#/definitions/AWS::DataBrew::Job.OutputLocation" }, "Outputs": { "items": { "$ref": "#/definitions/AWS::DataBrew::Job.Output" }, "type": "array" }, "ProfileConfiguration": { "$ref": "#/definitions/AWS::DataBrew::Job.ProfileConfiguration" }, "ProjectName": { "type": "string" }, "Recipe": { "$ref": "#/definitions/AWS::DataBrew::Job.Recipe" }, "RoleArn": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "Timeout": { "type": "number" }, "Type": { "type": "string" }, "ValidationConfigurations": { "items": { "$ref": "#/definitions/AWS::DataBrew::Job.ValidationConfiguration" }, "type": "array" } }, "required": [ "Name", "RoleArn", "Type" ], "type": "object" }, "Type": { "enum": [ "AWS::DataBrew::Job" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::DataBrew::Job.AllowedStatistics": { "additionalProperties": false, "properties": { "Statistics": { "items": { "type": "string" }, "type": "array" } }, "required": [ "Statistics" ], "type": "object" }, "AWS::DataBrew::Job.ColumnSelector": { "additionalProperties": false, "properties": { "Name": { "type": "string" }, "Regex": { "type": "string" } }, "type": "object" }, "AWS::DataBrew::Job.ColumnStatisticsConfiguration": { "additionalProperties": false, "properties": { "Selectors": { "items": { "$ref": "#/definitions/AWS::DataBrew::Job.ColumnSelector" }, "type": "array" }, "Statistics": { "$ref": "#/definitions/AWS::DataBrew::Job.StatisticsConfiguration" } }, "required": [ "Statistics" ], "type": "object" }, "AWS::DataBrew::Job.CsvOutputOptions": { "additionalProperties": false, "properties": { "Delimiter": { "type": "string" } }, "type": "object" }, "AWS::DataBrew::Job.DataCatalogOutput": { "additionalProperties": false, "properties": { "CatalogId": { "type": "string" }, "DatabaseName": { "type": "string" }, "DatabaseOptions": { "$ref": "#/definitions/AWS::DataBrew::Job.DatabaseTableOutputOptions" }, "Overwrite": { "type": "boolean" }, "S3Options": { "$ref": "#/definitions/AWS::DataBrew::Job.S3TableOutputOptions" }, "TableName": { "type": "string" } }, "required": [ "DatabaseName", "TableName" ], "type": "object" }, "AWS::DataBrew::Job.DatabaseOutput": { "additionalProperties": false, "properties": { "DatabaseOptions": { "$ref": "#/definitions/AWS::DataBrew::Job.DatabaseTableOutputOptions" }, "DatabaseOutputMode": { "type": "string" }, "GlueConnectionName": { "type": "string" } }, "required": [ "DatabaseOptions", "GlueConnectionName" ], "type": "object" }, "AWS::DataBrew::Job.DatabaseTableOutputOptions": { "additionalProperties": false, "properties": { "TableName": { "type": "string" }, "TempDirectory": { "$ref": "#/definitions/AWS::DataBrew::Job.S3Location" } }, "required": [ "TableName" ], "type": "object" }, "AWS::DataBrew::Job.EntityDetectorConfiguration": { "additionalProperties": false, "properties": { "AllowedStatistics": { "$ref": "#/definitions/AWS::DataBrew::Job.AllowedStatistics" }, "EntityTypes": { "items": { "type": "string" }, "type": "array" } }, "required": [ "EntityTypes" ], "type": "object" }, "AWS::DataBrew::Job.JobSample": { "additionalProperties": false, "properties": { "Mode": { "type": "string" }, "Size": { "type": "number" } }, "type": "object" }, "AWS::DataBrew::Job.Output": { "additionalProperties": false, "properties": { "CompressionFormat": { "type": "string" }, "Format": { "type": "string" }, "FormatOptions": { "$ref": "#/definitions/AWS::DataBrew::Job.OutputFormatOptions" }, "Location": { "$ref": "#/definitions/AWS::DataBrew::Job.S3Location" }, "MaxOutputFiles": { "type": "number" }, "Overwrite": { "type": "boolean" }, "PartitionColumns": { "items": { "type": "string" }, "type": "array" } }, "required": [ "Location" ], "type": "object" }, "AWS::DataBrew::Job.OutputFormatOptions": { "additionalProperties": false, "properties": { "Csv": { "$ref": "#/definitions/AWS::DataBrew::Job.CsvOutputOptions" } }, "type": "object" }, "AWS::DataBrew::Job.OutputLocation": { "additionalProperties": false, "properties": { "Bucket": { "type": "string" }, "BucketOwner": { "type": "string" }, "Key": { "type": "string" } }, "required": [ "Bucket" ], "type": "object" }, "AWS::DataBrew::Job.ProfileConfiguration": { "additionalProperties": false, "properties": { "ColumnStatisticsConfigurations": { "items": { "$ref": "#/definitions/AWS::DataBrew::Job.ColumnStatisticsConfiguration" }, "type": "array" }, "DatasetStatisticsConfiguration": { "$ref": "#/definitions/AWS::DataBrew::Job.StatisticsConfiguration" }, "EntityDetectorConfiguration": { "$ref": "#/definitions/AWS::DataBrew::Job.EntityDetectorConfiguration" }, "ProfileColumns": { "items": { "$ref": "#/definitions/AWS::DataBrew::Job.ColumnSelector" }, "type": "array" } }, "type": "object" }, "AWS::DataBrew::Job.Recipe": { "additionalProperties": false, "properties": { "Name": { "type": "string" }, "Version": { "type": "string" } }, "required": [ "Name" ], "type": "object" }, "AWS::DataBrew::Job.S3Location": { "additionalProperties": false, "properties": { "Bucket": { "type": "string" }, "BucketOwner": { "type": "string" }, "Key": { "type": "string" } }, "required": [ "Bucket" ], "type": "object" }, "AWS::DataBrew::Job.S3TableOutputOptions": { "additionalProperties": false, "properties": { "Location": { "$ref": "#/definitions/AWS::DataBrew::Job.S3Location" } }, "required": [ "Location" ], "type": "object" }, "AWS::DataBrew::Job.StatisticOverride": { "additionalProperties": false, "properties": { "Parameters": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" }, "Statistic": { "type": "string" } }, "required": [ "Parameters", "Statistic" ], "type": "object" }, "AWS::DataBrew::Job.StatisticsConfiguration": { "additionalProperties": false, "properties": { "IncludedStatistics": { "items": { "type": "string" }, "type": "array" }, "Overrides": { "items": { "$ref": "#/definitions/AWS::DataBrew::Job.StatisticOverride" }, "type": "array" } }, "type": "object" }, "AWS::DataBrew::Job.ValidationConfiguration": { "additionalProperties": false, "properties": { "RulesetArn": { "type": "string" }, "ValidationMode": { "type": "string" } }, "required": [ "RulesetArn" ], "type": "object" }, "AWS::DataBrew::Project": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "DatasetName": { "type": "string" }, "Name": { "type": "string" }, "RecipeName": { "type": "string" }, "RoleArn": { "type": "string" }, "Sample": { "$ref": "#/definitions/AWS::DataBrew::Project.Sample" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "DatasetName", "Name", "RecipeName", "RoleArn" ], "type": "object" }, "Type": { "enum": [ "AWS::DataBrew::Project" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::DataBrew::Project.Sample": { "additionalProperties": false, "properties": { "Size": { "type": "number" }, "Type": { "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::DataBrew::Recipe": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "Name": { "type": "string" }, "Steps": { "items": { "$ref": "#/definitions/AWS::DataBrew::Recipe.RecipeStep" }, "type": "array" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "Name", "Steps" ], "type": "object" }, "Type": { "enum": [ "AWS::DataBrew::Recipe" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::DataBrew::Recipe.Action": { "additionalProperties": false, "properties": { "Operation": { "type": "string" }, "Parameters": { "$ref": "#/definitions/AWS::DataBrew::Recipe.RecipeParameters" } }, "required": [ "Operation" ], "type": "object" }, "AWS::DataBrew::Recipe.ConditionExpression": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "TargetColumn": { "type": "string" }, "Value": { "type": "string" } }, "required": [ "Condition", "TargetColumn" ], "type": "object" }, "AWS::DataBrew::Recipe.DataCatalogInputDefinition": { "additionalProperties": false, "properties": { "CatalogId": { "type": "string" }, "DatabaseName": { "type": "string" }, "TableName": { "type": "string" }, "TempDirectory": { "$ref": "#/definitions/AWS::DataBrew::Recipe.S3Location" } }, "type": "object" }, "AWS::DataBrew::Recipe.Input": { "additionalProperties": false, "properties": { "DataCatalogInputDefinition": { "$ref": "#/definitions/AWS::DataBrew::Recipe.DataCatalogInputDefinition" }, "S3InputDefinition": { "$ref": "#/definitions/AWS::DataBrew::Recipe.S3Location" } }, "type": "object" }, "AWS::DataBrew::Recipe.RecipeParameters": { "additionalProperties": false, "properties": { "AggregateFunction": { "type": "string" }, "Base": { "type": "string" }, "CaseStatement": { "type": "string" }, "CategoryMap": { "type": "string" }, "CharsToRemove": { "type": "string" }, "CollapseConsecutiveWhitespace": { "type": "string" }, "ColumnDataType": { "type": "string" }, "ColumnRange": { "type": "string" }, "Count": { "type": "string" }, "CustomCharacters": { "type": "string" }, "CustomStopWords": { "type": "string" }, "CustomValue": { "type": "string" }, "DatasetsColumns": { "type": "string" }, "DateAddValue": { "type": "string" }, "DateTimeFormat": { "type": "string" }, "DateTimeParameters": { "type": "string" }, "DeleteOtherRows": { "type": "string" }, "Delimiter": { "type": "string" }, "EndPattern": { "type": "string" }, "EndPosition": { "type": "string" }, "EndValue": { "type": "string" }, "ExpandContractions": { "type": "string" }, "Exponent": { "type": "string" }, "FalseString": { "type": "string" }, "GroupByAggFunctionOptions": { "type": "string" }, "GroupByColumns": { "type": "string" }, "HiddenColumns": { "type": "string" }, "IgnoreCase": { "type": "string" }, "IncludeInSplit": { "type": "string" }, "Input": { "$ref": "#/definitions/AWS::DataBrew::Recipe.Input" }, "Interval": { "type": "string" }, "IsText": { "type": "string" }, "JoinKeys": { "type": "string" }, "JoinType": { "type": "string" }, "LeftColumns": { "type": "string" }, "Limit": { "type": "string" }, "LowerBound": { "type": "string" }, "MapType": { "type": "string" }, "ModeType": { "type": "string" }, "MultiLine": { "type": "boolean" }, "NumRows": { "type": "string" }, "NumRowsAfter": { "type": "string" }, "NumRowsBefore": { "type": "string" }, "OrderByColumn": { "type": "string" }, "OrderByColumns": { "type": "string" }, "Other": { "type": "string" }, "Pattern": { "type": "string" }, "PatternOption1": { "type": "string" }, "PatternOption2": { "type": "string" }, "PatternOptions": { "type": "string" }, "Period": { "type": "string" }, "Position": { "type": "string" }, "RemoveAllPunctuation": { "type": "string" }, "RemoveAllQuotes": { "type": "string" }, "RemoveAllWhitespace": { "type": "string" }, "RemoveCustomCharacters": { "type": "string" }, "RemoveCustomValue": { "type": "string" }, "RemoveLeadingAndTrailingPunctuation": { "type": "string" }, "RemoveLeadingAndTrailingQuotes": { "type": "string" }, "RemoveLeadingAndTrailingWhitespace": { "type": "string" }, "RemoveLetters": { "type": "string" }, "RemoveNumbers": { "type": "string" }, "RemoveSourceColumn": { "type": "string" }, "RemoveSpecialCharacters": { "type": "string" }, "RightColumns": { "type": "string" }, "SampleSize": { "type": "string" }, "SampleType": { "type": "string" }, "SecondInput": { "type": "string" }, "SecondaryInputs": { "items": { "$ref": "#/definitions/AWS::DataBrew::Recipe.SecondaryInput" }, "type": "array" }, "SheetIndexes": { "items": { "type": "number" }, "type": "array" }, "SheetNames": { "items": { "type": "string" }, "type": "array" }, "SourceColumn": { "type": "string" }, "SourceColumn1": { "type": "string" }, "SourceColumn2": { "type": "string" }, "SourceColumns": { "type": "string" }, "StartColumnIndex": { "type": "string" }, "StartPattern": { "type": "string" }, "StartPosition": { "type": "string" }, "StartValue": { "type": "string" }, "StemmingMode": { "type": "string" }, "StepCount": { "type": "string" }, "StepIndex": { "type": "string" }, "StopWordsMode": { "type": "string" }, "Strategy": { "type": "string" }, "TargetColumn": { "type": "string" }, "TargetColumnNames": { "type": "string" }, "TargetDateFormat": { "type": "string" }, "TargetIndex": { "type": "string" }, "TimeZone": { "type": "string" }, "TokenizerPattern": { "type": "string" }, "TrueString": { "type": "string" }, "UdfLang": { "type": "string" }, "Units": { "type": "string" }, "UnpivotColumn": { "type": "string" }, "UpperBound": { "type": "string" }, "UseNewDataFrame": { "type": "string" }, "Value": { "type": "string" }, "Value1": { "type": "string" }, "Value2": { "type": "string" }, "ValueColumn": { "type": "string" }, "ViewFrame": { "type": "string" } }, "type": "object" }, "AWS::DataBrew::Recipe.RecipeStep": { "additionalProperties": false, "properties": { "Action": { "$ref": "#/definitions/AWS::DataBrew::Recipe.Action" }, "ConditionExpressions": { "items": { "$ref": "#/definitions/AWS::DataBrew::Recipe.ConditionExpression" }, "type": "array" } }, "required": [ "Action" ], "type": "object" }, "AWS::DataBrew::Recipe.S3Location": { "additionalProperties": false, "properties": { "Bucket": { "type": "string" }, "Key": { "type": "string" } }, "required": [ "Bucket" ], "type": "object" }, "AWS::DataBrew::Recipe.SecondaryInput": { "additionalProperties": false, "properties": { "DataCatalogInputDefinition": { "$ref": "#/definitions/AWS::DataBrew::Recipe.DataCatalogInputDefinition" }, "S3InputDefinition": { "$ref": "#/definitions/AWS::DataBrew::Recipe.S3Location" } }, "type": "object" }, "AWS::DataBrew::Ruleset": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "Name": { "type": "string" }, "Rules": { "items": { "$ref": "#/definitions/AWS::DataBrew::Ruleset.Rule" }, "type": "array" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "TargetArn": { "type": "string" } }, "required": [ "Name", "Rules", "TargetArn" ], "type": "object" }, "Type": { "enum": [ "AWS::DataBrew::Ruleset" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::DataBrew::Ruleset.ColumnSelector": { "additionalProperties": false, "properties": { "Name": { "type": "string" }, "Regex": { "type": "string" } }, "type": "object" }, "AWS::DataBrew::Ruleset.Rule": { "additionalProperties": false, "properties": { "CheckExpression": { "type": "string" }, "ColumnSelectors": { "items": { "$ref": "#/definitions/AWS::DataBrew::Ruleset.ColumnSelector" }, "type": "array" }, "Disabled": { "type": "boolean" }, "Name": { "type": "string" }, "SubstitutionMap": { "items": { "$ref": "#/definitions/AWS::DataBrew::Ruleset.SubstitutionValue" }, "type": "array" }, "Threshold": { "$ref": "#/definitions/AWS::DataBrew::Ruleset.Threshold" } }, "required": [ "CheckExpression", "Name" ], "type": "object" }, "AWS::DataBrew::Ruleset.SubstitutionValue": { "additionalProperties": false, "properties": { "Value": { "type": "string" }, "ValueReference": { "type": "string" } }, "required": [ "Value", "ValueReference" ], "type": "object" }, "AWS::DataBrew::Ruleset.Threshold": { "additionalProperties": false, "properties": { "Type": { "type": "string" }, "Unit": { "type": "string" }, "Value": { "type": "number" } }, "required": [ "Value" ], "type": "object" }, "AWS::DataBrew::Schedule": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "CronExpression": { "type": "string" }, "JobNames": { "items": { "type": "string" }, "type": "array" }, "Name": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "CronExpression", "Name" ], "type": "object" }, "Type": { "enum": [ "AWS::DataBrew::Schedule" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::DataPipeline::Pipeline": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Activate": { "type": "boolean" }, "Description": { "type": "string" }, "Name": { "type": "string" }, "ParameterObjects": { "items": { "$ref": "#/definitions/AWS::DataPipeline::Pipeline.ParameterObject" }, "type": "array" }, "ParameterValues": { "items": { "$ref": "#/definitions/AWS::DataPipeline::Pipeline.ParameterValue" }, "type": "array" }, "PipelineObjects": { "items": { "$ref": "#/definitions/AWS::DataPipeline::Pipeline.PipelineObject" }, "type": "array" }, "PipelineTags": { "items": { "$ref": "#/definitions/AWS::DataPipeline::Pipeline.PipelineTag" }, "type": "array" } }, "required": [ "Name" ], "type": "object" }, "Type": { "enum": [ "AWS::DataPipeline::Pipeline" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::DataPipeline::Pipeline.Field": { "additionalProperties": false, "properties": { "Key": { "type": "string" }, "RefValue": { "type": "string" }, "StringValue": { "type": "string" } }, "required": [ "Key" ], "type": "object" }, "AWS::DataPipeline::Pipeline.ParameterAttribute": { "additionalProperties": false, "properties": { "Key": { "type": "string" }, "StringValue": { "type": "string" } }, "required": [ "Key", "StringValue" ], "type": "object" }, "AWS::DataPipeline::Pipeline.ParameterObject": { "additionalProperties": false, "properties": { "Attributes": { "items": { "$ref": "#/definitions/AWS::DataPipeline::Pipeline.ParameterAttribute" }, "type": "array" }, "Id": { "type": "string" } }, "required": [ "Attributes", "Id" ], "type": "object" }, "AWS::DataPipeline::Pipeline.ParameterValue": { "additionalProperties": false, "properties": { "Id": { "type": "string" }, "StringValue": { "type": "string" } }, "required": [ "Id", "StringValue" ], "type": "object" }, "AWS::DataPipeline::Pipeline.PipelineObject": { "additionalProperties": false, "properties": { "Fields": { "items": { "$ref": "#/definitions/AWS::DataPipeline::Pipeline.Field" }, "type": "array" }, "Id": { "type": "string" }, "Name": { "type": "string" } }, "required": [ "Fields", "Id", "Name" ], "type": "object" }, "AWS::DataPipeline::Pipeline.PipelineTag": { "additionalProperties": false, "properties": { "Key": { "type": "string" }, "Value": { "type": "string" } }, "required": [ "Key", "Value" ], "type": "object" }, "AWS::DataSync::Agent": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ActivationKey": { "type": "string" }, "AgentName": { "type": "string" }, "SecurityGroupArns": { "items": { "type": "string" }, "type": "array" }, "SubnetArns": { "items": { "type": "string" }, "type": "array" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "VpcEndpointId": { "type": "string" } }, "type": "object" }, "Type": { "enum": [ "AWS::DataSync::Agent" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::DataSync::LocationAzureBlob": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AgentArns": { "items": { "type": "string" }, "type": "array" }, "AzureAccessTier": { "type": "string" }, "AzureBlobAuthenticationType": { "type": "string" }, "AzureBlobContainerUrl": { "type": "string" }, "AzureBlobSasConfiguration": { "$ref": "#/definitions/AWS::DataSync::LocationAzureBlob.AzureBlobSasConfiguration" }, "AzureBlobType": { "type": "string" }, "Subdirectory": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "AgentArns", "AzureBlobAuthenticationType" ], "type": "object" }, "Type": { "enum": [ "AWS::DataSync::LocationAzureBlob" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::DataSync::LocationAzureBlob.AzureBlobSasConfiguration": { "additionalProperties": false, "properties": { "AzureBlobSasToken": { "type": "string" } }, "required": [ "AzureBlobSasToken" ], "type": "object" }, "AWS::DataSync::LocationEFS": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AccessPointArn": { "type": "string" }, "Ec2Config": { "$ref": "#/definitions/AWS::DataSync::LocationEFS.Ec2Config" }, "EfsFilesystemArn": { "type": "string" }, "FileSystemAccessRoleArn": { "type": "string" }, "InTransitEncryption": { "type": "string" }, "Subdirectory": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "Ec2Config" ], "type": "object" }, "Type": { "enum": [ "AWS::DataSync::LocationEFS" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::DataSync::LocationEFS.Ec2Config": { "additionalProperties": false, "properties": { "SecurityGroupArns": { "items": { "type": "string" }, "type": "array" }, "SubnetArn": { "type": "string" } }, "required": [ "SecurityGroupArns", "SubnetArn" ], "type": "object" }, "AWS::DataSync::LocationFSxLustre": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "FsxFilesystemArn": { "type": "string" }, "SecurityGroupArns": { "items": { "type": "string" }, "type": "array" }, "Subdirectory": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "SecurityGroupArns" ], "type": "object" }, "Type": { "enum": [ "AWS::DataSync::LocationFSxLustre" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::DataSync::LocationFSxONTAP": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Protocol": { "$ref": "#/definitions/AWS::DataSync::LocationFSxONTAP.Protocol" }, "SecurityGroupArns": { "items": { "type": "string" }, "type": "array" }, "StorageVirtualMachineArn": { "type": "string" }, "Subdirectory": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "SecurityGroupArns", "StorageVirtualMachineArn" ], "type": "object" }, "Type": { "enum": [ "AWS::DataSync::LocationFSxONTAP" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::DataSync::LocationFSxONTAP.NFS": { "additionalProperties": false, "properties": { "MountOptions": { "$ref": "#/definitions/AWS::DataSync::LocationFSxONTAP.NfsMountOptions" } }, "required": [ "MountOptions" ], "type": "object" }, "AWS::DataSync::LocationFSxONTAP.NfsMountOptions": { "additionalProperties": false, "properties": { "Version": { "type": "string" } }, "type": "object" }, "AWS::DataSync::LocationFSxONTAP.Protocol": { "additionalProperties": false, "properties": { "NFS": { "$ref": "#/definitions/AWS::DataSync::LocationFSxONTAP.NFS" }, "SMB": { "$ref": "#/definitions/AWS::DataSync::LocationFSxONTAP.SMB" } }, "type": "object" }, "AWS::DataSync::LocationFSxONTAP.SMB": { "additionalProperties": false, "properties": { "Domain": { "type": "string" }, "MountOptions": { "$ref": "#/definitions/AWS::DataSync::LocationFSxONTAP.SmbMountOptions" }, "Password": { "type": "string" }, "User": { "type": "string" } }, "required": [ "MountOptions", "Password", "User" ], "type": "object" }, "AWS::DataSync::LocationFSxONTAP.SmbMountOptions": { "additionalProperties": false, "properties": { "Version": { "type": "string" } }, "type": "object" }, "AWS::DataSync::LocationFSxOpenZFS": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "FsxFilesystemArn": { "type": "string" }, "Protocol": { "$ref": "#/definitions/AWS::DataSync::LocationFSxOpenZFS.Protocol" }, "SecurityGroupArns": { "items": { "type": "string" }, "type": "array" }, "Subdirectory": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "Protocol", "SecurityGroupArns" ], "type": "object" }, "Type": { "enum": [ "AWS::DataSync::LocationFSxOpenZFS" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::DataSync::LocationFSxOpenZFS.MountOptions": { "additionalProperties": false, "properties": { "Version": { "type": "string" } }, "type": "object" }, "AWS::DataSync::LocationFSxOpenZFS.NFS": { "additionalProperties": false, "properties": { "MountOptions": { "$ref": "#/definitions/AWS::DataSync::LocationFSxOpenZFS.MountOptions" } }, "required": [ "MountOptions" ], "type": "object" }, "AWS::DataSync::LocationFSxOpenZFS.Protocol": { "additionalProperties": false, "properties": { "NFS": { "$ref": "#/definitions/AWS::DataSync::LocationFSxOpenZFS.NFS" } }, "type": "object" }, "AWS::DataSync::LocationFSxWindows": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Domain": { "type": "string" }, "FsxFilesystemArn": { "type": "string" }, "Password": { "type": "string" }, "SecurityGroupArns": { "items": { "type": "string" }, "type": "array" }, "Subdirectory": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "User": { "type": "string" } }, "required": [ "SecurityGroupArns", "User" ], "type": "object" }, "Type": { "enum": [ "AWS::DataSync::LocationFSxWindows" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::DataSync::LocationHDFS": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AgentArns": { "items": { "type": "string" }, "type": "array" }, "AuthenticationType": { "type": "string" }, "BlockSize": { "type": "number" }, "KerberosKeytab": { "type": "string" }, "KerberosKrb5Conf": { "type": "string" }, "KerberosPrincipal": { "type": "string" }, "KmsKeyProviderUri": { "type": "string" }, "NameNodes": { "items": { "$ref": "#/definitions/AWS::DataSync::LocationHDFS.NameNode" }, "type": "array" }, "QopConfiguration": { "$ref": "#/definitions/AWS::DataSync::LocationHDFS.QopConfiguration" }, "ReplicationFactor": { "type": "number" }, "SimpleUser": { "type": "string" }, "Subdirectory": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "AgentArns", "AuthenticationType", "NameNodes" ], "type": "object" }, "Type": { "enum": [ "AWS::DataSync::LocationHDFS" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::DataSync::LocationHDFS.NameNode": { "additionalProperties": false, "properties": { "Hostname": { "type": "string" }, "Port": { "type": "number" } }, "required": [ "Hostname", "Port" ], "type": "object" }, "AWS::DataSync::LocationHDFS.QopConfiguration": { "additionalProperties": false, "properties": { "DataTransferProtection": { "type": "string" }, "RpcProtection": { "type": "string" } }, "type": "object" }, "AWS::DataSync::LocationNFS": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "MountOptions": { "$ref": "#/definitions/AWS::DataSync::LocationNFS.MountOptions" }, "OnPremConfig": { "$ref": "#/definitions/AWS::DataSync::LocationNFS.OnPremConfig" }, "ServerHostname": { "type": "string" }, "Subdirectory": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "OnPremConfig" ], "type": "object" }, "Type": { "enum": [ "AWS::DataSync::LocationNFS" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::DataSync::LocationNFS.MountOptions": { "additionalProperties": false, "properties": { "Version": { "type": "string" } }, "type": "object" }, "AWS::DataSync::LocationNFS.OnPremConfig": { "additionalProperties": false, "properties": { "AgentArns": { "items": { "type": "string" }, "type": "array" } }, "required": [ "AgentArns" ], "type": "object" }, "AWS::DataSync::LocationObjectStorage": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AccessKey": { "type": "string" }, "AgentArns": { "items": { "type": "string" }, "type": "array" }, "BucketName": { "type": "string" }, "SecretKey": { "type": "string" }, "ServerCertificate": { "type": "string" }, "ServerHostname": { "type": "string" }, "ServerPort": { "type": "number" }, "ServerProtocol": { "type": "string" }, "Subdirectory": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "AgentArns" ], "type": "object" }, "Type": { "enum": [ "AWS::DataSync::LocationObjectStorage" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::DataSync::LocationS3": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "S3BucketArn": { "type": "string" }, "S3Config": { "$ref": "#/definitions/AWS::DataSync::LocationS3.S3Config" }, "S3StorageClass": { "type": "string" }, "Subdirectory": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "S3Config" ], "type": "object" }, "Type": { "enum": [ "AWS::DataSync::LocationS3" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::DataSync::LocationS3.S3Config": { "additionalProperties": false, "properties": { "BucketAccessRoleArn": { "type": "string" } }, "required": [ "BucketAccessRoleArn" ], "type": "object" }, "AWS::DataSync::LocationSMB": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AgentArns": { "items": { "type": "string" }, "type": "array" }, "Domain": { "type": "string" }, "MountOptions": { "$ref": "#/definitions/AWS::DataSync::LocationSMB.MountOptions" }, "Password": { "type": "string" }, "ServerHostname": { "type": "string" }, "Subdirectory": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "User": { "type": "string" } }, "required": [ "AgentArns", "User" ], "type": "object" }, "Type": { "enum": [ "AWS::DataSync::LocationSMB" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::DataSync::LocationSMB.MountOptions": { "additionalProperties": false, "properties": { "Version": { "type": "string" } }, "type": "object" }, "AWS::DataSync::StorageSystem": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AgentArns": { "items": { "type": "string" }, "type": "array" }, "CloudWatchLogGroupArn": { "type": "string" }, "Name": { "type": "string" }, "ServerConfiguration": { "$ref": "#/definitions/AWS::DataSync::StorageSystem.ServerConfiguration" }, "ServerCredentials": { "$ref": "#/definitions/AWS::DataSync::StorageSystem.ServerCredentials" }, "SystemType": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "AgentArns", "ServerConfiguration", "SystemType" ], "type": "object" }, "Type": { "enum": [ "AWS::DataSync::StorageSystem" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::DataSync::StorageSystem.ServerConfiguration": { "additionalProperties": false, "properties": { "ServerHostname": { "type": "string" }, "ServerPort": { "type": "number" } }, "required": [ "ServerHostname" ], "type": "object" }, "AWS::DataSync::StorageSystem.ServerCredentials": { "additionalProperties": false, "properties": { "Password": { "type": "string" }, "Username": { "type": "string" } }, "required": [ "Password", "Username" ], "type": "object" }, "AWS::DataSync::Task": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "CloudWatchLogGroupArn": { "type": "string" }, "DestinationLocationArn": { "type": "string" }, "Excludes": { "items": { "$ref": "#/definitions/AWS::DataSync::Task.FilterRule" }, "type": "array" }, "Includes": { "items": { "$ref": "#/definitions/AWS::DataSync::Task.FilterRule" }, "type": "array" }, "Name": { "type": "string" }, "Options": { "$ref": "#/definitions/AWS::DataSync::Task.Options" }, "Schedule": { "$ref": "#/definitions/AWS::DataSync::Task.TaskSchedule" }, "SourceLocationArn": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "DestinationLocationArn", "SourceLocationArn" ], "type": "object" }, "Type": { "enum": [ "AWS::DataSync::Task" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::DataSync::Task.FilterRule": { "additionalProperties": false, "properties": { "FilterType": { "type": "string" }, "Value": { "type": "string" } }, "type": "object" }, "AWS::DataSync::Task.Options": { "additionalProperties": false, "properties": { "Atime": { "type": "string" }, "BytesPerSecond": { "type": "number" }, "Gid": { "type": "string" }, "LogLevel": { "type": "string" }, "Mtime": { "type": "string" }, "ObjectTags": { "type": "string" }, "OverwriteMode": { "type": "string" }, "PosixPermissions": { "type": "string" }, "PreserveDeletedFiles": { "type": "string" }, "PreserveDevices": { "type": "string" }, "SecurityDescriptorCopyFlags": { "type": "string" }, "TaskQueueing": { "type": "string" }, "TransferMode": { "type": "string" }, "Uid": { "type": "string" }, "VerifyMode": { "type": "string" } }, "type": "object" }, "AWS::DataSync::Task.TaskSchedule": { "additionalProperties": false, "properties": { "ScheduleExpression": { "type": "string" } }, "required": [ "ScheduleExpression" ], "type": "object" }, "AWS::Detective::Graph": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AutoEnableMembers": { "type": "boolean" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "type": "object" }, "Type": { "enum": [ "AWS::Detective::Graph" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::Detective::MemberInvitation": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "DisableEmailNotification": { "type": "boolean" }, "GraphArn": { "type": "string" }, "MemberEmailAddress": { "type": "string" }, "MemberId": { "type": "string" }, "Message": { "type": "string" } }, "required": [ "GraphArn", "MemberEmailAddress", "MemberId" ], "type": "object" }, "Type": { "enum": [ "AWS::Detective::MemberInvitation" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Detective::OrganizationAdmin": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AccountId": { "type": "string" } }, "required": [ "AccountId" ], "type": "object" }, "Type": { "enum": [ "AWS::Detective::OrganizationAdmin" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::DevOpsGuru::LogAnomalyDetectionIntegration": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": {}, "type": "object" }, "Type": { "enum": [ "AWS::DevOpsGuru::LogAnomalyDetectionIntegration" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::DevOpsGuru::NotificationChannel": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Config": { "$ref": "#/definitions/AWS::DevOpsGuru::NotificationChannel.NotificationChannelConfig" } }, "required": [ "Config" ], "type": "object" }, "Type": { "enum": [ "AWS::DevOpsGuru::NotificationChannel" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::DevOpsGuru::NotificationChannel.NotificationChannelConfig": { "additionalProperties": false, "properties": { "Filters": { "$ref": "#/definitions/AWS::DevOpsGuru::NotificationChannel.NotificationFilterConfig" }, "Sns": { "$ref": "#/definitions/AWS::DevOpsGuru::NotificationChannel.SnsChannelConfig" } }, "type": "object" }, "AWS::DevOpsGuru::NotificationChannel.NotificationFilterConfig": { "additionalProperties": false, "properties": { "MessageTypes": { "items": { "type": "string" }, "type": "array" }, "Severities": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::DevOpsGuru::NotificationChannel.SnsChannelConfig": { "additionalProperties": false, "properties": { "TopicArn": { "type": "string" } }, "type": "object" }, "AWS::DevOpsGuru::ResourceCollection": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ResourceCollectionFilter": { "$ref": "#/definitions/AWS::DevOpsGuru::ResourceCollection.ResourceCollectionFilter" } }, "required": [ "ResourceCollectionFilter" ], "type": "object" }, "Type": { "enum": [ "AWS::DevOpsGuru::ResourceCollection" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::DevOpsGuru::ResourceCollection.CloudFormationCollectionFilter": { "additionalProperties": false, "properties": { "StackNames": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::DevOpsGuru::ResourceCollection.ResourceCollectionFilter": { "additionalProperties": false, "properties": { "CloudFormation": { "$ref": "#/definitions/AWS::DevOpsGuru::ResourceCollection.CloudFormationCollectionFilter" }, "Tags": { "items": { "$ref": "#/definitions/AWS::DevOpsGuru::ResourceCollection.TagCollection" }, "type": "array" } }, "type": "object" }, "AWS::DevOpsGuru::ResourceCollection.TagCollection": { "additionalProperties": false, "properties": { "AppBoundaryKey": { "type": "string" }, "TagValues": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::DirectoryService::MicrosoftAD": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "CreateAlias": { "type": "boolean" }, "Edition": { "type": "string" }, "EnableSso": { "type": "boolean" }, "Name": { "type": "string" }, "Password": { "type": "string" }, "ShortName": { "type": "string" }, "VpcSettings": { "$ref": "#/definitions/AWS::DirectoryService::MicrosoftAD.VpcSettings" } }, "required": [ "Name", "Password", "VpcSettings" ], "type": "object" }, "Type": { "enum": [ "AWS::DirectoryService::MicrosoftAD" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::DirectoryService::MicrosoftAD.VpcSettings": { "additionalProperties": false, "properties": { "SubnetIds": { "items": { "type": "string" }, "type": "array" }, "VpcId": { "type": "string" } }, "required": [ "SubnetIds", "VpcId" ], "type": "object" }, "AWS::DirectoryService::SimpleAD": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "CreateAlias": { "type": "boolean" }, "Description": { "type": "string" }, "EnableSso": { "type": "boolean" }, "Name": { "type": "string" }, "Password": { "type": "string" }, "ShortName": { "type": "string" }, "Size": { "type": "string" }, "VpcSettings": { "$ref": "#/definitions/AWS::DirectoryService::SimpleAD.VpcSettings" } }, "required": [ "Name", "Size", "VpcSettings" ], "type": "object" }, "Type": { "enum": [ "AWS::DirectoryService::SimpleAD" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::DirectoryService::SimpleAD.VpcSettings": { "additionalProperties": false, "properties": { "SubnetIds": { "items": { "type": "string" }, "type": "array" }, "VpcId": { "type": "string" } }, "required": [ "SubnetIds", "VpcId" ], "type": "object" }, "AWS::DocDB::DBCluster": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AvailabilityZones": { "items": { "type": "string" }, "type": "array" }, "BackupRetentionPeriod": { "type": "number" }, "CopyTagsToSnapshot": { "type": "boolean" }, "DBClusterIdentifier": { "type": "string" }, "DBClusterParameterGroupName": { "type": "string" }, "DBSubnetGroupName": { "type": "string" }, "DeletionProtection": { "type": "boolean" }, "EnableCloudwatchLogsExports": { "items": { "type": "string" }, "type": "array" }, "EngineVersion": { "type": "string" }, "KmsKeyId": { "type": "string" }, "MasterUserPassword": { "type": "string" }, "MasterUsername": { "type": "string" }, "Port": { "type": "number" }, "PreferredBackupWindow": { "type": "string" }, "PreferredMaintenanceWindow": { "type": "string" }, "RestoreToTime": { "type": "string" }, "RestoreType": { "type": "string" }, "SnapshotIdentifier": { "type": "string" }, "SourceDBClusterIdentifier": { "type": "string" }, "StorageEncrypted": { "type": "boolean" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "UseLatestRestorableTime": { "type": "boolean" }, "VpcSecurityGroupIds": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "Type": { "enum": [ "AWS::DocDB::DBCluster" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::DocDB::DBClusterParameterGroup": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "Family": { "type": "string" }, "Name": { "type": "string" }, "Parameters": { "type": "object" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "Description", "Family", "Parameters" ], "type": "object" }, "Type": { "enum": [ "AWS::DocDB::DBClusterParameterGroup" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::DocDB::DBInstance": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AutoMinorVersionUpgrade": { "type": "boolean" }, "AvailabilityZone": { "type": "string" }, "DBClusterIdentifier": { "type": "string" }, "DBInstanceClass": { "type": "string" }, "DBInstanceIdentifier": { "type": "string" }, "EnablePerformanceInsights": { "type": "boolean" }, "PreferredMaintenanceWindow": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "DBClusterIdentifier", "DBInstanceClass" ], "type": "object" }, "Type": { "enum": [ "AWS::DocDB::DBInstance" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::DocDB::DBSubnetGroup": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "DBSubnetGroupDescription": { "type": "string" }, "DBSubnetGroupName": { "type": "string" }, "SubnetIds": { "items": { "type": "string" }, "type": "array" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "DBSubnetGroupDescription", "SubnetIds" ], "type": "object" }, "Type": { "enum": [ "AWS::DocDB::DBSubnetGroup" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::DocDBElastic::Cluster": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AdminUserName": { "type": "string" }, "AdminUserPassword": { "type": "string" }, "AuthType": { "type": "string" }, "ClusterName": { "type": "string" }, "KmsKeyId": { "type": "string" }, "PreferredMaintenanceWindow": { "type": "string" }, "ShardCapacity": { "type": "number" }, "ShardCount": { "type": "number" }, "SubnetIds": { "items": { "type": "string" }, "type": "array" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "VpcSecurityGroupIds": { "items": { "type": "string" }, "type": "array" } }, "required": [ "AdminUserName", "AuthType", "ClusterName", "ShardCapacity", "ShardCount" ], "type": "object" }, "Type": { "enum": [ "AWS::DocDBElastic::Cluster" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::DynamoDB::GlobalTable": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AttributeDefinitions": { "items": { "$ref": "#/definitions/AWS::DynamoDB::GlobalTable.AttributeDefinition" }, "type": "array" }, "BillingMode": { "type": "string" }, "GlobalSecondaryIndexes": { "items": { "$ref": "#/definitions/AWS::DynamoDB::GlobalTable.GlobalSecondaryIndex" }, "type": "array" }, "KeySchema": { "items": { "$ref": "#/definitions/AWS::DynamoDB::GlobalTable.KeySchema" }, "type": "array" }, "LocalSecondaryIndexes": { "items": { "$ref": "#/definitions/AWS::DynamoDB::GlobalTable.LocalSecondaryIndex" }, "type": "array" }, "Replicas": { "items": { "$ref": "#/definitions/AWS::DynamoDB::GlobalTable.ReplicaSpecification" }, "type": "array" }, "SSESpecification": { "$ref": "#/definitions/AWS::DynamoDB::GlobalTable.SSESpecification" }, "StreamSpecification": { "$ref": "#/definitions/AWS::DynamoDB::GlobalTable.StreamSpecification" }, "TableName": { "type": "string" }, "TimeToLiveSpecification": { "$ref": "#/definitions/AWS::DynamoDB::GlobalTable.TimeToLiveSpecification" }, "WriteProvisionedThroughputSettings": { "$ref": "#/definitions/AWS::DynamoDB::GlobalTable.WriteProvisionedThroughputSettings" } }, "required": [ "AttributeDefinitions", "KeySchema", "Replicas" ], "type": "object" }, "Type": { "enum": [ "AWS::DynamoDB::GlobalTable" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::DynamoDB::GlobalTable.AttributeDefinition": { "additionalProperties": false, "properties": { "AttributeName": { "type": "string" }, "AttributeType": { "type": "string" } }, "required": [ "AttributeName", "AttributeType" ], "type": "object" }, "AWS::DynamoDB::GlobalTable.CapacityAutoScalingSettings": { "additionalProperties": false, "properties": { "MaxCapacity": { "type": "number" }, "MinCapacity": { "type": "number" }, "SeedCapacity": { "type": "number" }, "TargetTrackingScalingPolicyConfiguration": { "$ref": "#/definitions/AWS::DynamoDB::GlobalTable.TargetTrackingScalingPolicyConfiguration" } }, "required": [ "MaxCapacity", "MinCapacity", "TargetTrackingScalingPolicyConfiguration" ], "type": "object" }, "AWS::DynamoDB::GlobalTable.ContributorInsightsSpecification": { "additionalProperties": false, "properties": { "Enabled": { "type": "boolean" } }, "required": [ "Enabled" ], "type": "object" }, "AWS::DynamoDB::GlobalTable.GlobalSecondaryIndex": { "additionalProperties": false, "properties": { "IndexName": { "type": "string" }, "KeySchema": { "items": { "$ref": "#/definitions/AWS::DynamoDB::GlobalTable.KeySchema" }, "type": "array" }, "Projection": { "$ref": "#/definitions/AWS::DynamoDB::GlobalTable.Projection" }, "WriteProvisionedThroughputSettings": { "$ref": "#/definitions/AWS::DynamoDB::GlobalTable.WriteProvisionedThroughputSettings" } }, "required": [ "IndexName", "KeySchema", "Projection" ], "type": "object" }, "AWS::DynamoDB::GlobalTable.KeySchema": { "additionalProperties": false, "properties": { "AttributeName": { "type": "string" }, "KeyType": { "type": "string" } }, "required": [ "AttributeName", "KeyType" ], "type": "object" }, "AWS::DynamoDB::GlobalTable.KinesisStreamSpecification": { "additionalProperties": false, "properties": { "StreamArn": { "type": "string" } }, "required": [ "StreamArn" ], "type": "object" }, "AWS::DynamoDB::GlobalTable.LocalSecondaryIndex": { "additionalProperties": false, "properties": { "IndexName": { "type": "string" }, "KeySchema": { "items": { "$ref": "#/definitions/AWS::DynamoDB::GlobalTable.KeySchema" }, "type": "array" }, "Projection": { "$ref": "#/definitions/AWS::DynamoDB::GlobalTable.Projection" } }, "required": [ "IndexName", "KeySchema", "Projection" ], "type": "object" }, "AWS::DynamoDB::GlobalTable.PointInTimeRecoverySpecification": { "additionalProperties": false, "properties": { "PointInTimeRecoveryEnabled": { "type": "boolean" } }, "type": "object" }, "AWS::DynamoDB::GlobalTable.Projection": { "additionalProperties": false, "properties": { "NonKeyAttributes": { "items": { "type": "string" }, "type": "array" }, "ProjectionType": { "type": "string" } }, "type": "object" }, "AWS::DynamoDB::GlobalTable.ReadProvisionedThroughputSettings": { "additionalProperties": false, "properties": { "ReadCapacityAutoScalingSettings": { "$ref": "#/definitions/AWS::DynamoDB::GlobalTable.CapacityAutoScalingSettings" }, "ReadCapacityUnits": { "type": "number" } }, "type": "object" }, "AWS::DynamoDB::GlobalTable.ReplicaGlobalSecondaryIndexSpecification": { "additionalProperties": false, "properties": { "ContributorInsightsSpecification": { "$ref": "#/definitions/AWS::DynamoDB::GlobalTable.ContributorInsightsSpecification" }, "IndexName": { "type": "string" }, "ReadProvisionedThroughputSettings": { "$ref": "#/definitions/AWS::DynamoDB::GlobalTable.ReadProvisionedThroughputSettings" } }, "required": [ "IndexName" ], "type": "object" }, "AWS::DynamoDB::GlobalTable.ReplicaSSESpecification": { "additionalProperties": false, "properties": { "KMSMasterKeyId": { "type": "string" } }, "required": [ "KMSMasterKeyId" ], "type": "object" }, "AWS::DynamoDB::GlobalTable.ReplicaSpecification": { "additionalProperties": false, "properties": { "ContributorInsightsSpecification": { "$ref": "#/definitions/AWS::DynamoDB::GlobalTable.ContributorInsightsSpecification" }, "DeletionProtectionEnabled": { "type": "boolean" }, "GlobalSecondaryIndexes": { "items": { "$ref": "#/definitions/AWS::DynamoDB::GlobalTable.ReplicaGlobalSecondaryIndexSpecification" }, "type": "array" }, "KinesisStreamSpecification": { "$ref": "#/definitions/AWS::DynamoDB::GlobalTable.KinesisStreamSpecification" }, "PointInTimeRecoverySpecification": { "$ref": "#/definitions/AWS::DynamoDB::GlobalTable.PointInTimeRecoverySpecification" }, "ReadProvisionedThroughputSettings": { "$ref": "#/definitions/AWS::DynamoDB::GlobalTable.ReadProvisionedThroughputSettings" }, "Region": { "type": "string" }, "SSESpecification": { "$ref": "#/definitions/AWS::DynamoDB::GlobalTable.ReplicaSSESpecification" }, "TableClass": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "Region" ], "type": "object" }, "AWS::DynamoDB::GlobalTable.SSESpecification": { "additionalProperties": false, "properties": { "SSEEnabled": { "type": "boolean" }, "SSEType": { "type": "string" } }, "required": [ "SSEEnabled" ], "type": "object" }, "AWS::DynamoDB::GlobalTable.StreamSpecification": { "additionalProperties": false, "properties": { "StreamViewType": { "type": "string" } }, "required": [ "StreamViewType" ], "type": "object" }, "AWS::DynamoDB::GlobalTable.TargetTrackingScalingPolicyConfiguration": { "additionalProperties": false, "properties": { "DisableScaleIn": { "type": "boolean" }, "ScaleInCooldown": { "type": "number" }, "ScaleOutCooldown": { "type": "number" }, "TargetValue": { "type": "number" } }, "required": [ "TargetValue" ], "type": "object" }, "AWS::DynamoDB::GlobalTable.TimeToLiveSpecification": { "additionalProperties": false, "properties": { "AttributeName": { "type": "string" }, "Enabled": { "type": "boolean" } }, "required": [ "Enabled" ], "type": "object" }, "AWS::DynamoDB::GlobalTable.WriteProvisionedThroughputSettings": { "additionalProperties": false, "properties": { "WriteCapacityAutoScalingSettings": { "$ref": "#/definitions/AWS::DynamoDB::GlobalTable.CapacityAutoScalingSettings" } }, "type": "object" }, "AWS::DynamoDB::Table": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AttributeDefinitions": { "items": { "$ref": "#/definitions/AWS::DynamoDB::Table.AttributeDefinition" }, "type": "array" }, "BillingMode": { "type": "string" }, "ContributorInsightsSpecification": { "$ref": "#/definitions/AWS::DynamoDB::Table.ContributorInsightsSpecification" }, "DeletionProtectionEnabled": { "type": "boolean" }, "GlobalSecondaryIndexes": { "items": { "$ref": "#/definitions/AWS::DynamoDB::Table.GlobalSecondaryIndex" }, "type": "array" }, "ImportSourceSpecification": { "$ref": "#/definitions/AWS::DynamoDB::Table.ImportSourceSpecification" }, "KeySchema": { "items": { "$ref": "#/definitions/AWS::DynamoDB::Table.KeySchema" }, "type": "array" }, "KinesisStreamSpecification": { "$ref": "#/definitions/AWS::DynamoDB::Table.KinesisStreamSpecification" }, "LocalSecondaryIndexes": { "items": { "$ref": "#/definitions/AWS::DynamoDB::Table.LocalSecondaryIndex" }, "type": "array" }, "PointInTimeRecoverySpecification": { "$ref": "#/definitions/AWS::DynamoDB::Table.PointInTimeRecoverySpecification" }, "ProvisionedThroughput": { "$ref": "#/definitions/AWS::DynamoDB::Table.ProvisionedThroughput" }, "SSESpecification": { "$ref": "#/definitions/AWS::DynamoDB::Table.SSESpecification" }, "StreamSpecification": { "$ref": "#/definitions/AWS::DynamoDB::Table.StreamSpecification" }, "TableClass": { "type": "string" }, "TableName": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "TimeToLiveSpecification": { "$ref": "#/definitions/AWS::DynamoDB::Table.TimeToLiveSpecification" } }, "required": [ "KeySchema" ], "type": "object" }, "Type": { "enum": [ "AWS::DynamoDB::Table" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::DynamoDB::Table.AttributeDefinition": { "additionalProperties": false, "properties": { "AttributeName": { "type": "string" }, "AttributeType": { "type": "string" } }, "required": [ "AttributeName", "AttributeType" ], "type": "object" }, "AWS::DynamoDB::Table.ContributorInsightsSpecification": { "additionalProperties": false, "properties": { "Enabled": { "type": "boolean" } }, "required": [ "Enabled" ], "type": "object" }, "AWS::DynamoDB::Table.Csv": { "additionalProperties": false, "properties": { "Delimiter": { "type": "string" }, "HeaderList": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::DynamoDB::Table.GlobalSecondaryIndex": { "additionalProperties": false, "properties": { "ContributorInsightsSpecification": { "$ref": "#/definitions/AWS::DynamoDB::Table.ContributorInsightsSpecification" }, "IndexName": { "type": "string" }, "KeySchema": { "items": { "$ref": "#/definitions/AWS::DynamoDB::Table.KeySchema" }, "type": "array" }, "Projection": { "$ref": "#/definitions/AWS::DynamoDB::Table.Projection" }, "ProvisionedThroughput": { "$ref": "#/definitions/AWS::DynamoDB::Table.ProvisionedThroughput" } }, "required": [ "IndexName", "KeySchema", "Projection" ], "type": "object" }, "AWS::DynamoDB::Table.ImportSourceSpecification": { "additionalProperties": false, "properties": { "InputCompressionType": { "type": "string" }, "InputFormat": { "type": "string" }, "InputFormatOptions": { "$ref": "#/definitions/AWS::DynamoDB::Table.InputFormatOptions" }, "S3BucketSource": { "$ref": "#/definitions/AWS::DynamoDB::Table.S3BucketSource" } }, "required": [ "InputFormat", "S3BucketSource" ], "type": "object" }, "AWS::DynamoDB::Table.InputFormatOptions": { "additionalProperties": false, "properties": { "Csv": { "$ref": "#/definitions/AWS::DynamoDB::Table.Csv" } }, "type": "object" }, "AWS::DynamoDB::Table.KeySchema": { "additionalProperties": false, "properties": { "AttributeName": { "type": "string" }, "KeyType": { "type": "string" } }, "required": [ "AttributeName", "KeyType" ], "type": "object" }, "AWS::DynamoDB::Table.KinesisStreamSpecification": { "additionalProperties": false, "properties": { "StreamArn": { "type": "string" } }, "required": [ "StreamArn" ], "type": "object" }, "AWS::DynamoDB::Table.LocalSecondaryIndex": { "additionalProperties": false, "properties": { "IndexName": { "type": "string" }, "KeySchema": { "items": { "$ref": "#/definitions/AWS::DynamoDB::Table.KeySchema" }, "type": "array" }, "Projection": { "$ref": "#/definitions/AWS::DynamoDB::Table.Projection" } }, "required": [ "IndexName", "KeySchema", "Projection" ], "type": "object" }, "AWS::DynamoDB::Table.PointInTimeRecoverySpecification": { "additionalProperties": false, "properties": { "PointInTimeRecoveryEnabled": { "type": "boolean" } }, "type": "object" }, "AWS::DynamoDB::Table.Projection": { "additionalProperties": false, "properties": { "NonKeyAttributes": { "items": { "type": "string" }, "type": "array" }, "ProjectionType": { "type": "string" } }, "type": "object" }, "AWS::DynamoDB::Table.ProvisionedThroughput": { "additionalProperties": false, "properties": { "ReadCapacityUnits": { "type": "number" }, "WriteCapacityUnits": { "type": "number" } }, "required": [ "ReadCapacityUnits", "WriteCapacityUnits" ], "type": "object" }, "AWS::DynamoDB::Table.S3BucketSource": { "additionalProperties": false, "properties": { "S3Bucket": { "type": "string" }, "S3BucketOwner": { "type": "string" }, "S3KeyPrefix": { "type": "string" } }, "required": [ "S3Bucket" ], "type": "object" }, "AWS::DynamoDB::Table.SSESpecification": { "additionalProperties": false, "properties": { "KMSMasterKeyId": { "type": "string" }, "SSEEnabled": { "type": "boolean" }, "SSEType": { "type": "string" } }, "required": [ "SSEEnabled" ], "type": "object" }, "AWS::DynamoDB::Table.StreamSpecification": { "additionalProperties": false, "properties": { "StreamViewType": { "type": "string" } }, "required": [ "StreamViewType" ], "type": "object" }, "AWS::DynamoDB::Table.TimeToLiveSpecification": { "additionalProperties": false, "properties": { "AttributeName": { "type": "string" }, "Enabled": { "type": "boolean" } }, "required": [ "Enabled" ], "type": "object" }, "AWS::EC2::CapacityReservation": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AvailabilityZone": { "type": "string" }, "EbsOptimized": { "type": "boolean" }, "EndDate": { "type": "string" }, "EndDateType": { "type": "string" }, "EphemeralStorage": { "type": "boolean" }, "InstanceCount": { "type": "number" }, "InstanceMatchCriteria": { "type": "string" }, "InstancePlatform": { "type": "string" }, "InstanceType": { "type": "string" }, "OutPostArn": { "type": "string" }, "PlacementGroupArn": { "type": "string" }, "TagSpecifications": { "items": { "$ref": "#/definitions/AWS::EC2::CapacityReservation.TagSpecification" }, "type": "array" }, "Tenancy": { "type": "string" } }, "required": [ "AvailabilityZone", "InstanceCount", "InstancePlatform", "InstanceType" ], "type": "object" }, "Type": { "enum": [ "AWS::EC2::CapacityReservation" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::EC2::CapacityReservation.TagSpecification": { "additionalProperties": false, "properties": { "ResourceType": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "type": "object" }, "AWS::EC2::CapacityReservationFleet": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AllocationStrategy": { "type": "string" }, "EndDate": { "type": "string" }, "InstanceMatchCriteria": { "type": "string" }, "InstanceTypeSpecifications": { "items": { "$ref": "#/definitions/AWS::EC2::CapacityReservationFleet.InstanceTypeSpecification" }, "type": "array" }, "NoRemoveEndDate": { "type": "boolean" }, "RemoveEndDate": { "type": "boolean" }, "TagSpecifications": { "items": { "$ref": "#/definitions/AWS::EC2::CapacityReservationFleet.TagSpecification" }, "type": "array" }, "Tenancy": { "type": "string" }, "TotalTargetCapacity": { "type": "number" } }, "type": "object" }, "Type": { "enum": [ "AWS::EC2::CapacityReservationFleet" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::EC2::CapacityReservationFleet.InstanceTypeSpecification": { "additionalProperties": false, "properties": { "AvailabilityZone": { "type": "string" }, "AvailabilityZoneId": { "type": "string" }, "EbsOptimized": { "type": "boolean" }, "InstancePlatform": { "type": "string" }, "InstanceType": { "type": "string" }, "Priority": { "type": "number" }, "Weight": { "type": "number" } }, "type": "object" }, "AWS::EC2::CapacityReservationFleet.TagSpecification": { "additionalProperties": false, "properties": { "ResourceType": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "type": "object" }, "AWS::EC2::CarrierGateway": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "VpcId": { "type": "string" } }, "required": [ "VpcId" ], "type": "object" }, "Type": { "enum": [ "AWS::EC2::CarrierGateway" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::EC2::ClientVpnAuthorizationRule": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AccessGroupId": { "type": "string" }, "AuthorizeAllGroups": { "type": "boolean" }, "ClientVpnEndpointId": { "type": "string" }, "Description": { "type": "string" }, "TargetNetworkCidr": { "type": "string" } }, "required": [ "ClientVpnEndpointId", "TargetNetworkCidr" ], "type": "object" }, "Type": { "enum": [ "AWS::EC2::ClientVpnAuthorizationRule" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::EC2::ClientVpnEndpoint": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AuthenticationOptions": { "items": { "$ref": "#/definitions/AWS::EC2::ClientVpnEndpoint.ClientAuthenticationRequest" }, "type": "array" }, "ClientCidrBlock": { "type": "string" }, "ClientConnectOptions": { "$ref": "#/definitions/AWS::EC2::ClientVpnEndpoint.ClientConnectOptions" }, "ClientLoginBannerOptions": { "$ref": "#/definitions/AWS::EC2::ClientVpnEndpoint.ClientLoginBannerOptions" }, "ConnectionLogOptions": { "$ref": "#/definitions/AWS::EC2::ClientVpnEndpoint.ConnectionLogOptions" }, "Description": { "type": "string" }, "DnsServers": { "items": { "type": "string" }, "type": "array" }, "SecurityGroupIds": { "items": { "type": "string" }, "type": "array" }, "SelfServicePortal": { "type": "string" }, "ServerCertificateArn": { "type": "string" }, "SessionTimeoutHours": { "type": "number" }, "SplitTunnel": { "type": "boolean" }, "TagSpecifications": { "items": { "$ref": "#/definitions/AWS::EC2::ClientVpnEndpoint.TagSpecification" }, "type": "array" }, "TransportProtocol": { "type": "string" }, "VpcId": { "type": "string" }, "VpnPort": { "type": "number" } }, "required": [ "AuthenticationOptions", "ClientCidrBlock", "ConnectionLogOptions", "ServerCertificateArn" ], "type": "object" }, "Type": { "enum": [ "AWS::EC2::ClientVpnEndpoint" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::EC2::ClientVpnEndpoint.CertificateAuthenticationRequest": { "additionalProperties": false, "properties": { "ClientRootCertificateChainArn": { "type": "string" } }, "required": [ "ClientRootCertificateChainArn" ], "type": "object" }, "AWS::EC2::ClientVpnEndpoint.ClientAuthenticationRequest": { "additionalProperties": false, "properties": { "ActiveDirectory": { "$ref": "#/definitions/AWS::EC2::ClientVpnEndpoint.DirectoryServiceAuthenticationRequest" }, "FederatedAuthentication": { "$ref": "#/definitions/AWS::EC2::ClientVpnEndpoint.FederatedAuthenticationRequest" }, "MutualAuthentication": { "$ref": "#/definitions/AWS::EC2::ClientVpnEndpoint.CertificateAuthenticationRequest" }, "Type": { "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::EC2::ClientVpnEndpoint.ClientConnectOptions": { "additionalProperties": false, "properties": { "Enabled": { "type": "boolean" }, "LambdaFunctionArn": { "type": "string" } }, "required": [ "Enabled" ], "type": "object" }, "AWS::EC2::ClientVpnEndpoint.ClientLoginBannerOptions": { "additionalProperties": false, "properties": { "BannerText": { "type": "string" }, "Enabled": { "type": "boolean" } }, "required": [ "Enabled" ], "type": "object" }, "AWS::EC2::ClientVpnEndpoint.ConnectionLogOptions": { "additionalProperties": false, "properties": { "CloudwatchLogGroup": { "type": "string" }, "CloudwatchLogStream": { "type": "string" }, "Enabled": { "type": "boolean" } }, "required": [ "Enabled" ], "type": "object" }, "AWS::EC2::ClientVpnEndpoint.DirectoryServiceAuthenticationRequest": { "additionalProperties": false, "properties": { "DirectoryId": { "type": "string" } }, "required": [ "DirectoryId" ], "type": "object" }, "AWS::EC2::ClientVpnEndpoint.FederatedAuthenticationRequest": { "additionalProperties": false, "properties": { "SAMLProviderArn": { "type": "string" }, "SelfServiceSAMLProviderArn": { "type": "string" } }, "required": [ "SAMLProviderArn" ], "type": "object" }, "AWS::EC2::ClientVpnEndpoint.TagSpecification": { "additionalProperties": false, "properties": { "ResourceType": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "ResourceType", "Tags" ], "type": "object" }, "AWS::EC2::ClientVpnRoute": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ClientVpnEndpointId": { "type": "string" }, "Description": { "type": "string" }, "DestinationCidrBlock": { "type": "string" }, "TargetVpcSubnetId": { "type": "string" } }, "required": [ "ClientVpnEndpointId", "DestinationCidrBlock", "TargetVpcSubnetId" ], "type": "object" }, "Type": { "enum": [ "AWS::EC2::ClientVpnRoute" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::EC2::ClientVpnTargetNetworkAssociation": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ClientVpnEndpointId": { "type": "string" }, "SubnetId": { "type": "string" } }, "required": [ "ClientVpnEndpointId", "SubnetId" ], "type": "object" }, "Type": { "enum": [ "AWS::EC2::ClientVpnTargetNetworkAssociation" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::EC2::CustomerGateway": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "BgpAsn": { "type": "number" }, "DeviceName": { "type": "string" }, "IpAddress": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "Type": { "type": "string" } }, "required": [ "BgpAsn", "IpAddress", "Type" ], "type": "object" }, "Type": { "enum": [ "AWS::EC2::CustomerGateway" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::EC2::DHCPOptions": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "DomainName": { "type": "string" }, "DomainNameServers": { "items": { "type": "string" }, "type": "array" }, "NetbiosNameServers": { "items": { "type": "string" }, "type": "array" }, "NetbiosNodeType": { "type": "number" }, "NtpServers": { "items": { "type": "string" }, "type": "array" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "type": "object" }, "Type": { "enum": [ "AWS::EC2::DHCPOptions" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::EC2::EC2Fleet": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Context": { "type": "string" }, "ExcessCapacityTerminationPolicy": { "type": "string" }, "LaunchTemplateConfigs": { "items": { "$ref": "#/definitions/AWS::EC2::EC2Fleet.FleetLaunchTemplateConfigRequest" }, "type": "array" }, "OnDemandOptions": { "$ref": "#/definitions/AWS::EC2::EC2Fleet.OnDemandOptionsRequest" }, "ReplaceUnhealthyInstances": { "type": "boolean" }, "SpotOptions": { "$ref": "#/definitions/AWS::EC2::EC2Fleet.SpotOptionsRequest" }, "TagSpecifications": { "items": { "$ref": "#/definitions/AWS::EC2::EC2Fleet.TagSpecification" }, "type": "array" }, "TargetCapacitySpecification": { "$ref": "#/definitions/AWS::EC2::EC2Fleet.TargetCapacitySpecificationRequest" }, "TerminateInstancesWithExpiration": { "type": "boolean" }, "Type": { "type": "string" }, "ValidFrom": { "type": "string" }, "ValidUntil": { "type": "string" } }, "required": [ "LaunchTemplateConfigs", "TargetCapacitySpecification" ], "type": "object" }, "Type": { "enum": [ "AWS::EC2::EC2Fleet" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::EC2::EC2Fleet.AcceleratorCountRequest": { "additionalProperties": false, "properties": { "Max": { "type": "number" }, "Min": { "type": "number" } }, "type": "object" }, "AWS::EC2::EC2Fleet.AcceleratorTotalMemoryMiBRequest": { "additionalProperties": false, "properties": { "Max": { "type": "number" }, "Min": { "type": "number" } }, "type": "object" }, "AWS::EC2::EC2Fleet.BaselineEbsBandwidthMbpsRequest": { "additionalProperties": false, "properties": { "Max": { "type": "number" }, "Min": { "type": "number" } }, "type": "object" }, "AWS::EC2::EC2Fleet.CapacityRebalance": { "additionalProperties": false, "properties": { "ReplacementStrategy": { "type": "string" }, "TerminationDelay": { "type": "number" } }, "type": "object" }, "AWS::EC2::EC2Fleet.CapacityReservationOptionsRequest": { "additionalProperties": false, "properties": { "UsageStrategy": { "type": "string" } }, "type": "object" }, "AWS::EC2::EC2Fleet.FleetLaunchTemplateConfigRequest": { "additionalProperties": false, "properties": { "LaunchTemplateSpecification": { "$ref": "#/definitions/AWS::EC2::EC2Fleet.FleetLaunchTemplateSpecificationRequest" }, "Overrides": { "items": { "$ref": "#/definitions/AWS::EC2::EC2Fleet.FleetLaunchTemplateOverridesRequest" }, "type": "array" } }, "type": "object" }, "AWS::EC2::EC2Fleet.FleetLaunchTemplateOverridesRequest": { "additionalProperties": false, "properties": { "AvailabilityZone": { "type": "string" }, "InstanceRequirements": { "$ref": "#/definitions/AWS::EC2::EC2Fleet.InstanceRequirementsRequest" }, "InstanceType": { "type": "string" }, "MaxPrice": { "type": "string" }, "Placement": { "$ref": "#/definitions/AWS::EC2::EC2Fleet.Placement" }, "Priority": { "type": "number" }, "SubnetId": { "type": "string" }, "WeightedCapacity": { "type": "number" } }, "type": "object" }, "AWS::EC2::EC2Fleet.FleetLaunchTemplateSpecificationRequest": { "additionalProperties": false, "properties": { "LaunchTemplateId": { "type": "string" }, "LaunchTemplateName": { "type": "string" }, "Version": { "type": "string" } }, "required": [ "Version" ], "type": "object" }, "AWS::EC2::EC2Fleet.InstanceRequirementsRequest": { "additionalProperties": false, "properties": { "AcceleratorCount": { "$ref": "#/definitions/AWS::EC2::EC2Fleet.AcceleratorCountRequest" }, "AcceleratorManufacturers": { "items": { "type": "string" }, "type": "array" }, "AcceleratorNames": { "items": { "type": "string" }, "type": "array" }, "AcceleratorTotalMemoryMiB": { "$ref": "#/definitions/AWS::EC2::EC2Fleet.AcceleratorTotalMemoryMiBRequest" }, "AcceleratorTypes": { "items": { "type": "string" }, "type": "array" }, "AllowedInstanceTypes": { "items": { "type": "string" }, "type": "array" }, "BareMetal": { "type": "string" }, "BaselineEbsBandwidthMbps": { "$ref": "#/definitions/AWS::EC2::EC2Fleet.BaselineEbsBandwidthMbpsRequest" }, "BurstablePerformance": { "type": "string" }, "CpuManufacturers": { "items": { "type": "string" }, "type": "array" }, "ExcludedInstanceTypes": { "items": { "type": "string" }, "type": "array" }, "InstanceGenerations": { "items": { "type": "string" }, "type": "array" }, "LocalStorage": { "type": "string" }, "LocalStorageTypes": { "items": { "type": "string" }, "type": "array" }, "MemoryGiBPerVCpu": { "$ref": "#/definitions/AWS::EC2::EC2Fleet.MemoryGiBPerVCpuRequest" }, "MemoryMiB": { "$ref": "#/definitions/AWS::EC2::EC2Fleet.MemoryMiBRequest" }, "NetworkBandwidthGbps": { "$ref": "#/definitions/AWS::EC2::EC2Fleet.NetworkBandwidthGbpsRequest" }, "NetworkInterfaceCount": { "$ref": "#/definitions/AWS::EC2::EC2Fleet.NetworkInterfaceCountRequest" }, "OnDemandMaxPricePercentageOverLowestPrice": { "type": "number" }, "RequireHibernateSupport": { "type": "boolean" }, "SpotMaxPricePercentageOverLowestPrice": { "type": "number" }, "TotalLocalStorageGB": { "$ref": "#/definitions/AWS::EC2::EC2Fleet.TotalLocalStorageGBRequest" }, "VCpuCount": { "$ref": "#/definitions/AWS::EC2::EC2Fleet.VCpuCountRangeRequest" } }, "type": "object" }, "AWS::EC2::EC2Fleet.MaintenanceStrategies": { "additionalProperties": false, "properties": { "CapacityRebalance": { "$ref": "#/definitions/AWS::EC2::EC2Fleet.CapacityRebalance" } }, "type": "object" }, "AWS::EC2::EC2Fleet.MemoryGiBPerVCpuRequest": { "additionalProperties": false, "properties": { "Max": { "type": "number" }, "Min": { "type": "number" } }, "type": "object" }, "AWS::EC2::EC2Fleet.MemoryMiBRequest": { "additionalProperties": false, "properties": { "Max": { "type": "number" }, "Min": { "type": "number" } }, "type": "object" }, "AWS::EC2::EC2Fleet.NetworkBandwidthGbpsRequest": { "additionalProperties": false, "properties": { "Max": { "type": "number" }, "Min": { "type": "number" } }, "type": "object" }, "AWS::EC2::EC2Fleet.NetworkInterfaceCountRequest": { "additionalProperties": false, "properties": { "Max": { "type": "number" }, "Min": { "type": "number" } }, "type": "object" }, "AWS::EC2::EC2Fleet.OnDemandOptionsRequest": { "additionalProperties": false, "properties": { "AllocationStrategy": { "type": "string" }, "CapacityReservationOptions": { "$ref": "#/definitions/AWS::EC2::EC2Fleet.CapacityReservationOptionsRequest" }, "MaxTotalPrice": { "type": "string" }, "MinTargetCapacity": { "type": "number" }, "SingleAvailabilityZone": { "type": "boolean" }, "SingleInstanceType": { "type": "boolean" } }, "type": "object" }, "AWS::EC2::EC2Fleet.Placement": { "additionalProperties": false, "properties": { "Affinity": { "type": "string" }, "AvailabilityZone": { "type": "string" }, "GroupName": { "type": "string" }, "HostId": { "type": "string" }, "HostResourceGroupArn": { "type": "string" }, "PartitionNumber": { "type": "number" }, "SpreadDomain": { "type": "string" }, "Tenancy": { "type": "string" } }, "type": "object" }, "AWS::EC2::EC2Fleet.SpotOptionsRequest": { "additionalProperties": false, "properties": { "AllocationStrategy": { "type": "string" }, "InstanceInterruptionBehavior": { "type": "string" }, "InstancePoolsToUseCount": { "type": "number" }, "MaintenanceStrategies": { "$ref": "#/definitions/AWS::EC2::EC2Fleet.MaintenanceStrategies" }, "MaxTotalPrice": { "type": "string" }, "MinTargetCapacity": { "type": "number" }, "SingleAvailabilityZone": { "type": "boolean" }, "SingleInstanceType": { "type": "boolean" } }, "type": "object" }, "AWS::EC2::EC2Fleet.TagSpecification": { "additionalProperties": false, "properties": { "ResourceType": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "type": "object" }, "AWS::EC2::EC2Fleet.TargetCapacitySpecificationRequest": { "additionalProperties": false, "properties": { "DefaultTargetCapacityType": { "type": "string" }, "OnDemandTargetCapacity": { "type": "number" }, "SpotTargetCapacity": { "type": "number" }, "TargetCapacityUnitType": { "type": "string" }, "TotalTargetCapacity": { "type": "number" } }, "required": [ "TotalTargetCapacity" ], "type": "object" }, "AWS::EC2::EC2Fleet.TotalLocalStorageGBRequest": { "additionalProperties": false, "properties": { "Max": { "type": "number" }, "Min": { "type": "number" } }, "type": "object" }, "AWS::EC2::EC2Fleet.VCpuCountRangeRequest": { "additionalProperties": false, "properties": { "Max": { "type": "number" }, "Min": { "type": "number" } }, "type": "object" }, "AWS::EC2::EIP": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Domain": { "type": "string" }, "InstanceId": { "type": "string" }, "NetworkBorderGroup": { "type": "string" }, "PublicIpv4Pool": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "TransferAddress": { "type": "string" } }, "type": "object" }, "Type": { "enum": [ "AWS::EC2::EIP" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::EC2::EIPAssociation": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AllocationId": { "type": "string" }, "EIP": { "type": "string" }, "InstanceId": { "type": "string" }, "NetworkInterfaceId": { "type": "string" }, "PrivateIpAddress": { "type": "string" } }, "type": "object" }, "Type": { "enum": [ "AWS::EC2::EIPAssociation" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::EC2::EgressOnlyInternetGateway": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "VpcId": { "type": "string" } }, "required": [ "VpcId" ], "type": "object" }, "Type": { "enum": [ "AWS::EC2::EgressOnlyInternetGateway" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::EC2::EnclaveCertificateIamRoleAssociation": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "CertificateArn": { "type": "string" }, "RoleArn": { "type": "string" } }, "required": [ "CertificateArn", "RoleArn" ], "type": "object" }, "Type": { "enum": [ "AWS::EC2::EnclaveCertificateIamRoleAssociation" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::EC2::FlowLog": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "DeliverLogsPermissionArn": { "type": "string" }, "DestinationOptions": { "$ref": "#/definitions/AWS::EC2::FlowLog.DestinationOptions" }, "LogDestination": { "type": "string" }, "LogDestinationType": { "type": "string" }, "LogFormat": { "type": "string" }, "LogGroupName": { "type": "string" }, "MaxAggregationInterval": { "type": "number" }, "ResourceId": { "type": "string" }, "ResourceType": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "TrafficType": { "type": "string" } }, "required": [ "ResourceId", "ResourceType" ], "type": "object" }, "Type": { "enum": [ "AWS::EC2::FlowLog" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::EC2::FlowLog.DestinationOptions": { "additionalProperties": false, "properties": { "FileFormat": { "type": "string" }, "HiveCompatiblePartitions": { "type": "boolean" }, "PerHourPartition": { "type": "boolean" } }, "required": [ "FileFormat", "HiveCompatiblePartitions", "PerHourPartition" ], "type": "object" }, "AWS::EC2::GatewayRouteTableAssociation": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "GatewayId": { "type": "string" }, "RouteTableId": { "type": "string" } }, "required": [ "GatewayId", "RouteTableId" ], "type": "object" }, "Type": { "enum": [ "AWS::EC2::GatewayRouteTableAssociation" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::EC2::Host": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AssetId": { "type": "string" }, "AutoPlacement": { "type": "string" }, "AvailabilityZone": { "type": "string" }, "HostMaintenance": { "type": "string" }, "HostRecovery": { "type": "string" }, "InstanceFamily": { "type": "string" }, "InstanceType": { "type": "string" }, "OutpostArn": { "type": "string" } }, "required": [ "AvailabilityZone" ], "type": "object" }, "Type": { "enum": [ "AWS::EC2::Host" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::EC2::IPAM": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "DefaultResourceDiscoveryAssociationId": { "type": "string" }, "DefaultResourceDiscoveryId": { "type": "string" }, "Description": { "type": "string" }, "OperatingRegions": { "items": { "$ref": "#/definitions/AWS::EC2::IPAM.IpamOperatingRegion" }, "type": "array" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "type": "object" }, "Type": { "enum": [ "AWS::EC2::IPAM" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::EC2::IPAM.IpamOperatingRegion": { "additionalProperties": false, "properties": { "RegionName": { "type": "string" } }, "required": [ "RegionName" ], "type": "object" }, "AWS::EC2::IPAMAllocation": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Cidr": { "type": "string" }, "Description": { "type": "string" }, "IpamPoolId": { "type": "string" }, "NetmaskLength": { "type": "number" } }, "required": [ "IpamPoolId" ], "type": "object" }, "Type": { "enum": [ "AWS::EC2::IPAMAllocation" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::EC2::IPAMPool": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AddressFamily": { "type": "string" }, "AllocationDefaultNetmaskLength": { "type": "number" }, "AllocationMaxNetmaskLength": { "type": "number" }, "AllocationMinNetmaskLength": { "type": "number" }, "AllocationResourceTags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "AutoImport": { "type": "boolean" }, "AwsService": { "type": "string" }, "Description": { "type": "string" }, "IpamScopeId": { "type": "string" }, "Locale": { "type": "string" }, "ProvisionedCidrs": { "items": { "$ref": "#/definitions/AWS::EC2::IPAMPool.ProvisionedCidr" }, "type": "array" }, "PublicIpSource": { "type": "string" }, "PubliclyAdvertisable": { "type": "boolean" }, "SourceIpamPoolId": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "AddressFamily", "IpamScopeId" ], "type": "object" }, "Type": { "enum": [ "AWS::EC2::IPAMPool" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::EC2::IPAMPool.ProvisionedCidr": { "additionalProperties": false, "properties": { "Cidr": { "type": "string" } }, "required": [ "Cidr" ], "type": "object" }, "AWS::EC2::IPAMPoolCidr": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Cidr": { "type": "string" }, "IpamPoolId": { "type": "string" }, "NetmaskLength": { "type": "number" } }, "required": [ "IpamPoolId" ], "type": "object" }, "Type": { "enum": [ "AWS::EC2::IPAMPoolCidr" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::EC2::IPAMResourceDiscovery": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "OperatingRegions": { "items": { "$ref": "#/definitions/AWS::EC2::IPAMResourceDiscovery.IpamOperatingRegion" }, "type": "array" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "type": "object" }, "Type": { "enum": [ "AWS::EC2::IPAMResourceDiscovery" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::EC2::IPAMResourceDiscovery.IpamOperatingRegion": { "additionalProperties": false, "properties": { "RegionName": { "type": "string" } }, "required": [ "RegionName" ], "type": "object" }, "AWS::EC2::IPAMResourceDiscoveryAssociation": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "IpamId": { "type": "string" }, "IpamResourceDiscoveryId": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "IpamId", "IpamResourceDiscoveryId" ], "type": "object" }, "Type": { "enum": [ "AWS::EC2::IPAMResourceDiscoveryAssociation" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::EC2::IPAMScope": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "IpamId": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "IpamId" ], "type": "object" }, "Type": { "enum": [ "AWS::EC2::IPAMScope" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::EC2::Instance": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "CreationPolicy": { "type": "object" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AdditionalInfo": { "type": "string" }, "Affinity": { "type": "string" }, "AvailabilityZone": { "type": "string" }, "BlockDeviceMappings": { "items": { "$ref": "#/definitions/AWS::EC2::Instance.BlockDeviceMapping" }, "type": "array" }, "CpuOptions": { "$ref": "#/definitions/AWS::EC2::Instance.CpuOptions" }, "CreditSpecification": { "$ref": "#/definitions/AWS::EC2::Instance.CreditSpecification" }, "DisableApiTermination": { "type": "boolean" }, "EbsOptimized": { "type": "boolean" }, "ElasticGpuSpecifications": { "items": { "$ref": "#/definitions/AWS::EC2::Instance.ElasticGpuSpecification" }, "type": "array" }, "ElasticInferenceAccelerators": { "items": { "$ref": "#/definitions/AWS::EC2::Instance.ElasticInferenceAccelerator" }, "type": "array" }, "EnclaveOptions": { "$ref": "#/definitions/AWS::EC2::Instance.EnclaveOptions" }, "HibernationOptions": { "$ref": "#/definitions/AWS::EC2::Instance.HibernationOptions" }, "HostId": { "type": "string" }, "HostResourceGroupArn": { "type": "string" }, "IamInstanceProfile": { "type": "string" }, "ImageId": { "type": "string" }, "InstanceInitiatedShutdownBehavior": { "type": "string" }, "InstanceType": { "type": "string" }, "Ipv6AddressCount": { "type": "number" }, "Ipv6Addresses": { "items": { "$ref": "#/definitions/AWS::EC2::Instance.InstanceIpv6Address" }, "type": "array" }, "KernelId": { "type": "string" }, "KeyName": { "type": "string" }, "LaunchTemplate": { "$ref": "#/definitions/AWS::EC2::Instance.LaunchTemplateSpecification" }, "LicenseSpecifications": { "items": { "$ref": "#/definitions/AWS::EC2::Instance.LicenseSpecification" }, "type": "array" }, "Monitoring": { "type": "boolean" }, "NetworkInterfaces": { "items": { "$ref": "#/definitions/AWS::EC2::Instance.NetworkInterface" }, "type": "array" }, "PlacementGroupName": { "type": "string" }, "PrivateDnsNameOptions": { "$ref": "#/definitions/AWS::EC2::Instance.PrivateDnsNameOptions" }, "PrivateIpAddress": { "type": "string" }, "PropagateTagsToVolumeOnCreation": { "type": "boolean" }, "RamdiskId": { "type": "string" }, "SecurityGroupIds": { "items": { "type": "string" }, "type": "array" }, "SecurityGroups": { "items": { "type": "string" }, "type": "array" }, "SourceDestCheck": { "type": "boolean" }, "SsmAssociations": { "items": { "$ref": "#/definitions/AWS::EC2::Instance.SsmAssociation" }, "type": "array" }, "SubnetId": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "Tenancy": { "type": "string" }, "UserData": { "type": "string" }, "Volumes": { "items": { "$ref": "#/definitions/AWS::EC2::Instance.Volume" }, "type": "array" } }, "type": "object" }, "Type": { "enum": [ "AWS::EC2::Instance" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::EC2::Instance.AssociationParameter": { "additionalProperties": false, "properties": { "Key": { "type": "string" }, "Value": { "items": { "type": "string" }, "type": "array" } }, "required": [ "Key", "Value" ], "type": "object" }, "AWS::EC2::Instance.BlockDeviceMapping": { "additionalProperties": false, "properties": { "DeviceName": { "type": "string" }, "Ebs": { "$ref": "#/definitions/AWS::EC2::Instance.Ebs" }, "NoDevice": { "$ref": "#/definitions/AWS::EC2::Instance.NoDevice" }, "VirtualName": { "type": "string" } }, "required": [ "DeviceName" ], "type": "object" }, "AWS::EC2::Instance.CpuOptions": { "additionalProperties": false, "properties": { "CoreCount": { "type": "number" }, "ThreadsPerCore": { "type": "number" } }, "type": "object" }, "AWS::EC2::Instance.CreditSpecification": { "additionalProperties": false, "properties": { "CPUCredits": { "type": "string" } }, "type": "object" }, "AWS::EC2::Instance.Ebs": { "additionalProperties": false, "properties": { "DeleteOnTermination": { "type": "boolean" }, "Encrypted": { "type": "boolean" }, "Iops": { "type": "number" }, "KmsKeyId": { "type": "string" }, "SnapshotId": { "type": "string" }, "VolumeSize": { "type": "number" }, "VolumeType": { "type": "string" } }, "type": "object" }, "AWS::EC2::Instance.ElasticGpuSpecification": { "additionalProperties": false, "properties": { "Type": { "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::EC2::Instance.ElasticInferenceAccelerator": { "additionalProperties": false, "properties": { "Count": { "type": "number" }, "Type": { "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::EC2::Instance.EnclaveOptions": { "additionalProperties": false, "properties": { "Enabled": { "type": "boolean" } }, "type": "object" }, "AWS::EC2::Instance.HibernationOptions": { "additionalProperties": false, "properties": { "Configured": { "type": "boolean" } }, "type": "object" }, "AWS::EC2::Instance.InstanceIpv6Address": { "additionalProperties": false, "properties": { "Ipv6Address": { "type": "string" } }, "required": [ "Ipv6Address" ], "type": "object" }, "AWS::EC2::Instance.LaunchTemplateSpecification": { "additionalProperties": false, "properties": { "LaunchTemplateId": { "type": "string" }, "LaunchTemplateName": { "type": "string" }, "Version": { "type": "string" } }, "required": [ "Version" ], "type": "object" }, "AWS::EC2::Instance.LicenseSpecification": { "additionalProperties": false, "properties": { "LicenseConfigurationArn": { "type": "string" } }, "required": [ "LicenseConfigurationArn" ], "type": "object" }, "AWS::EC2::Instance.NetworkInterface": { "additionalProperties": false, "properties": { "AssociateCarrierIpAddress": { "type": "boolean" }, "AssociatePublicIpAddress": { "type": "boolean" }, "DeleteOnTermination": { "type": "boolean" }, "Description": { "type": "string" }, "DeviceIndex": { "type": "string" }, "GroupSet": { "items": { "type": "string" }, "type": "array" }, "Ipv6AddressCount": { "type": "number" }, "Ipv6Addresses": { "items": { "$ref": "#/definitions/AWS::EC2::Instance.InstanceIpv6Address" }, "type": "array" }, "NetworkInterfaceId": { "type": "string" }, "PrivateIpAddress": { "type": "string" }, "PrivateIpAddresses": { "items": { "$ref": "#/definitions/AWS::EC2::Instance.PrivateIpAddressSpecification" }, "type": "array" }, "SecondaryPrivateIpAddressCount": { "type": "number" }, "SubnetId": { "type": "string" } }, "required": [ "DeviceIndex" ], "type": "object" }, "AWS::EC2::Instance.NoDevice": { "additionalProperties": false, "properties": {}, "type": "object" }, "AWS::EC2::Instance.PrivateDnsNameOptions": { "additionalProperties": false, "properties": { "EnableResourceNameDnsAAAARecord": { "type": "boolean" }, "EnableResourceNameDnsARecord": { "type": "boolean" }, "HostnameType": { "type": "string" } }, "type": "object" }, "AWS::EC2::Instance.PrivateIpAddressSpecification": { "additionalProperties": false, "properties": { "Primary": { "type": "boolean" }, "PrivateIpAddress": { "type": "string" } }, "required": [ "Primary", "PrivateIpAddress" ], "type": "object" }, "AWS::EC2::Instance.SsmAssociation": { "additionalProperties": false, "properties": { "AssociationParameters": { "items": { "$ref": "#/definitions/AWS::EC2::Instance.AssociationParameter" }, "type": "array" }, "DocumentName": { "type": "string" } }, "required": [ "DocumentName" ], "type": "object" }, "AWS::EC2::Instance.Volume": { "additionalProperties": false, "properties": { "Device": { "type": "string" }, "VolumeId": { "type": "string" } }, "required": [ "Device", "VolumeId" ], "type": "object" }, "AWS::EC2::InstanceConnectEndpoint": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ClientToken": { "type": "string" }, "PreserveClientIp": { "type": "boolean" }, "SecurityGroupIds": { "items": { "type": "string" }, "type": "array" }, "SubnetId": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "SubnetId" ], "type": "object" }, "Type": { "enum": [ "AWS::EC2::InstanceConnectEndpoint" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::EC2::InternetGateway": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "type": "object" }, "Type": { "enum": [ "AWS::EC2::InternetGateway" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::EC2::KeyPair": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "KeyFormat": { "type": "string" }, "KeyName": { "type": "string" }, "KeyType": { "type": "string" }, "PublicKeyMaterial": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "KeyName" ], "type": "object" }, "Type": { "enum": [ "AWS::EC2::KeyPair" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::EC2::LaunchTemplate": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "LaunchTemplateData": { "$ref": "#/definitions/AWS::EC2::LaunchTemplate.LaunchTemplateData" }, "LaunchTemplateName": { "type": "string" }, "TagSpecifications": { "items": { "$ref": "#/definitions/AWS::EC2::LaunchTemplate.LaunchTemplateTagSpecification" }, "type": "array" }, "VersionDescription": { "type": "string" } }, "required": [ "LaunchTemplateData" ], "type": "object" }, "Type": { "enum": [ "AWS::EC2::LaunchTemplate" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::EC2::LaunchTemplate.AcceleratorCount": { "additionalProperties": false, "properties": { "Max": { "type": "number" }, "Min": { "type": "number" } }, "type": "object" }, "AWS::EC2::LaunchTemplate.AcceleratorTotalMemoryMiB": { "additionalProperties": false, "properties": { "Max": { "type": "number" }, "Min": { "type": "number" } }, "type": "object" }, "AWS::EC2::LaunchTemplate.BaselineEbsBandwidthMbps": { "additionalProperties": false, "properties": { "Max": { "type": "number" }, "Min": { "type": "number" } }, "type": "object" }, "AWS::EC2::LaunchTemplate.BlockDeviceMapping": { "additionalProperties": false, "properties": { "DeviceName": { "type": "string" }, "Ebs": { "$ref": "#/definitions/AWS::EC2::LaunchTemplate.Ebs" }, "NoDevice": { "type": "string" }, "VirtualName": { "type": "string" } }, "type": "object" }, "AWS::EC2::LaunchTemplate.CapacityReservationSpecification": { "additionalProperties": false, "properties": { "CapacityReservationPreference": { "type": "string" }, "CapacityReservationTarget": { "$ref": "#/definitions/AWS::EC2::LaunchTemplate.CapacityReservationTarget" } }, "type": "object" }, "AWS::EC2::LaunchTemplate.CapacityReservationTarget": { "additionalProperties": false, "properties": { "CapacityReservationId": { "type": "string" }, "CapacityReservationResourceGroupArn": { "type": "string" } }, "type": "object" }, "AWS::EC2::LaunchTemplate.CpuOptions": { "additionalProperties": false, "properties": { "AmdSevSnp": { "type": "string" }, "CoreCount": { "type": "number" }, "ThreadsPerCore": { "type": "number" } }, "type": "object" }, "AWS::EC2::LaunchTemplate.CreditSpecification": { "additionalProperties": false, "properties": { "CpuCredits": { "type": "string" } }, "type": "object" }, "AWS::EC2::LaunchTemplate.Ebs": { "additionalProperties": false, "properties": { "DeleteOnTermination": { "type": "boolean" }, "Encrypted": { "type": "boolean" }, "Iops": { "type": "number" }, "KmsKeyId": { "type": "string" }, "SnapshotId": { "type": "string" }, "Throughput": { "type": "number" }, "VolumeSize": { "type": "number" }, "VolumeType": { "type": "string" } }, "type": "object" }, "AWS::EC2::LaunchTemplate.ElasticGpuSpecification": { "additionalProperties": false, "properties": { "Type": { "type": "string" } }, "type": "object" }, "AWS::EC2::LaunchTemplate.EnclaveOptions": { "additionalProperties": false, "properties": { "Enabled": { "type": "boolean" } }, "type": "object" }, "AWS::EC2::LaunchTemplate.HibernationOptions": { "additionalProperties": false, "properties": { "Configured": { "type": "boolean" } }, "type": "object" }, "AWS::EC2::LaunchTemplate.IamInstanceProfile": { "additionalProperties": false, "properties": { "Arn": { "type": "string" }, "Name": { "type": "string" } }, "type": "object" }, "AWS::EC2::LaunchTemplate.InstanceMarketOptions": { "additionalProperties": false, "properties": { "MarketType": { "type": "string" }, "SpotOptions": { "$ref": "#/definitions/AWS::EC2::LaunchTemplate.SpotOptions" } }, "type": "object" }, "AWS::EC2::LaunchTemplate.InstanceRequirements": { "additionalProperties": false, "properties": { "AcceleratorCount": { "$ref": "#/definitions/AWS::EC2::LaunchTemplate.AcceleratorCount" }, "AcceleratorManufacturers": { "items": { "type": "string" }, "type": "array" }, "AcceleratorNames": { "items": { "type": "string" }, "type": "array" }, "AcceleratorTotalMemoryMiB": { "$ref": "#/definitions/AWS::EC2::LaunchTemplate.AcceleratorTotalMemoryMiB" }, "AcceleratorTypes": { "items": { "type": "string" }, "type": "array" }, "AllowedInstanceTypes": { "items": { "type": "string" }, "type": "array" }, "BareMetal": { "type": "string" }, "BaselineEbsBandwidthMbps": { "$ref": "#/definitions/AWS::EC2::LaunchTemplate.BaselineEbsBandwidthMbps" }, "BurstablePerformance": { "type": "string" }, "CpuManufacturers": { "items": { "type": "string" }, "type": "array" }, "ExcludedInstanceTypes": { "items": { "type": "string" }, "type": "array" }, "InstanceGenerations": { "items": { "type": "string" }, "type": "array" }, "LocalStorage": { "type": "string" }, "LocalStorageTypes": { "items": { "type": "string" }, "type": "array" }, "MemoryGiBPerVCpu": { "$ref": "#/definitions/AWS::EC2::LaunchTemplate.MemoryGiBPerVCpu" }, "MemoryMiB": { "$ref": "#/definitions/AWS::EC2::LaunchTemplate.MemoryMiB" }, "NetworkBandwidthGbps": { "$ref": "#/definitions/AWS::EC2::LaunchTemplate.NetworkBandwidthGbps" }, "NetworkInterfaceCount": { "$ref": "#/definitions/AWS::EC2::LaunchTemplate.NetworkInterfaceCount" }, "OnDemandMaxPricePercentageOverLowestPrice": { "type": "number" }, "RequireHibernateSupport": { "type": "boolean" }, "SpotMaxPricePercentageOverLowestPrice": { "type": "number" }, "TotalLocalStorageGB": { "$ref": "#/definitions/AWS::EC2::LaunchTemplate.TotalLocalStorageGB" }, "VCpuCount": { "$ref": "#/definitions/AWS::EC2::LaunchTemplate.VCpuCount" } }, "type": "object" }, "AWS::EC2::LaunchTemplate.Ipv4PrefixSpecification": { "additionalProperties": false, "properties": { "Ipv4Prefix": { "type": "string" } }, "type": "object" }, "AWS::EC2::LaunchTemplate.Ipv6Add": { "additionalProperties": false, "properties": { "Ipv6Address": { "type": "string" } }, "type": "object" }, "AWS::EC2::LaunchTemplate.Ipv6PrefixSpecification": { "additionalProperties": false, "properties": { "Ipv6Prefix": { "type": "string" } }, "type": "object" }, "AWS::EC2::LaunchTemplate.LaunchTemplateData": { "additionalProperties": false, "properties": { "BlockDeviceMappings": { "items": { "$ref": "#/definitions/AWS::EC2::LaunchTemplate.BlockDeviceMapping" }, "type": "array" }, "CapacityReservationSpecification": { "$ref": "#/definitions/AWS::EC2::LaunchTemplate.CapacityReservationSpecification" }, "CpuOptions": { "$ref": "#/definitions/AWS::EC2::LaunchTemplate.CpuOptions" }, "CreditSpecification": { "$ref": "#/definitions/AWS::EC2::LaunchTemplate.CreditSpecification" }, "DisableApiStop": { "type": "boolean" }, "DisableApiTermination": { "type": "boolean" }, "EbsOptimized": { "type": "boolean" }, "ElasticGpuSpecifications": { "items": { "$ref": "#/definitions/AWS::EC2::LaunchTemplate.ElasticGpuSpecification" }, "type": "array" }, "ElasticInferenceAccelerators": { "items": { "$ref": "#/definitions/AWS::EC2::LaunchTemplate.LaunchTemplateElasticInferenceAccelerator" }, "type": "array" }, "EnclaveOptions": { "$ref": "#/definitions/AWS::EC2::LaunchTemplate.EnclaveOptions" }, "HibernationOptions": { "$ref": "#/definitions/AWS::EC2::LaunchTemplate.HibernationOptions" }, "IamInstanceProfile": { "$ref": "#/definitions/AWS::EC2::LaunchTemplate.IamInstanceProfile" }, "ImageId": { "type": "string" }, "InstanceInitiatedShutdownBehavior": { "type": "string" }, "InstanceMarketOptions": { "$ref": "#/definitions/AWS::EC2::LaunchTemplate.InstanceMarketOptions" }, "InstanceRequirements": { "$ref": "#/definitions/AWS::EC2::LaunchTemplate.InstanceRequirements" }, "InstanceType": { "type": "string" }, "KernelId": { "type": "string" }, "KeyName": { "type": "string" }, "LicenseSpecifications": { "items": { "$ref": "#/definitions/AWS::EC2::LaunchTemplate.LicenseSpecification" }, "type": "array" }, "MaintenanceOptions": { "$ref": "#/definitions/AWS::EC2::LaunchTemplate.MaintenanceOptions" }, "MetadataOptions": { "$ref": "#/definitions/AWS::EC2::LaunchTemplate.MetadataOptions" }, "Monitoring": { "$ref": "#/definitions/AWS::EC2::LaunchTemplate.Monitoring" }, "NetworkInterfaces": { "items": { "$ref": "#/definitions/AWS::EC2::LaunchTemplate.NetworkInterface" }, "type": "array" }, "Placement": { "$ref": "#/definitions/AWS::EC2::LaunchTemplate.Placement" }, "PrivateDnsNameOptions": { "$ref": "#/definitions/AWS::EC2::LaunchTemplate.PrivateDnsNameOptions" }, "RamDiskId": { "type": "string" }, "SecurityGroupIds": { "items": { "type": "string" }, "type": "array" }, "SecurityGroups": { "items": { "type": "string" }, "type": "array" }, "TagSpecifications": { "items": { "$ref": "#/definitions/AWS::EC2::LaunchTemplate.TagSpecification" }, "type": "array" }, "UserData": { "type": "string" } }, "type": "object" }, "AWS::EC2::LaunchTemplate.LaunchTemplateElasticInferenceAccelerator": { "additionalProperties": false, "properties": { "Count": { "type": "number" }, "Type": { "type": "string" } }, "type": "object" }, "AWS::EC2::LaunchTemplate.LaunchTemplateTagSpecification": { "additionalProperties": false, "properties": { "ResourceType": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "type": "object" }, "AWS::EC2::LaunchTemplate.LicenseSpecification": { "additionalProperties": false, "properties": { "LicenseConfigurationArn": { "type": "string" } }, "type": "object" }, "AWS::EC2::LaunchTemplate.MaintenanceOptions": { "additionalProperties": false, "properties": { "AutoRecovery": { "type": "string" } }, "type": "object" }, "AWS::EC2::LaunchTemplate.MemoryGiBPerVCpu": { "additionalProperties": false, "properties": { "Max": { "type": "number" }, "Min": { "type": "number" } }, "type": "object" }, "AWS::EC2::LaunchTemplate.MemoryMiB": { "additionalProperties": false, "properties": { "Max": { "type": "number" }, "Min": { "type": "number" } }, "type": "object" }, "AWS::EC2::LaunchTemplate.MetadataOptions": { "additionalProperties": false, "properties": { "HttpEndpoint": { "type": "string" }, "HttpProtocolIpv6": { "type": "string" }, "HttpPutResponseHopLimit": { "type": "number" }, "HttpTokens": { "type": "string" }, "InstanceMetadataTags": { "type": "string" } }, "type": "object" }, "AWS::EC2::LaunchTemplate.Monitoring": { "additionalProperties": false, "properties": { "Enabled": { "type": "boolean" } }, "type": "object" }, "AWS::EC2::LaunchTemplate.NetworkBandwidthGbps": { "additionalProperties": false, "properties": { "Max": { "type": "number" }, "Min": { "type": "number" } }, "type": "object" }, "AWS::EC2::LaunchTemplate.NetworkInterface": { "additionalProperties": false, "properties": { "AssociateCarrierIpAddress": { "type": "boolean" }, "AssociatePublicIpAddress": { "type": "boolean" }, "DeleteOnTermination": { "type": "boolean" }, "Description": { "type": "string" }, "DeviceIndex": { "type": "number" }, "Groups": { "items": { "type": "string" }, "type": "array" }, "InterfaceType": { "type": "string" }, "Ipv4PrefixCount": { "type": "number" }, "Ipv4Prefixes": { "items": { "$ref": "#/definitions/AWS::EC2::LaunchTemplate.Ipv4PrefixSpecification" }, "type": "array" }, "Ipv6AddressCount": { "type": "number" }, "Ipv6Addresses": { "items": { "$ref": "#/definitions/AWS::EC2::LaunchTemplate.Ipv6Add" }, "type": "array" }, "Ipv6PrefixCount": { "type": "number" }, "Ipv6Prefixes": { "items": { "$ref": "#/definitions/AWS::EC2::LaunchTemplate.Ipv6PrefixSpecification" }, "type": "array" }, "NetworkCardIndex": { "type": "number" }, "NetworkInterfaceId": { "type": "string" }, "PrivateIpAddress": { "type": "string" }, "PrivateIpAddresses": { "items": { "$ref": "#/definitions/AWS::EC2::LaunchTemplate.PrivateIpAdd" }, "type": "array" }, "SecondaryPrivateIpAddressCount": { "type": "number" }, "SubnetId": { "type": "string" } }, "type": "object" }, "AWS::EC2::LaunchTemplate.NetworkInterfaceCount": { "additionalProperties": false, "properties": { "Max": { "type": "number" }, "Min": { "type": "number" } }, "type": "object" }, "AWS::EC2::LaunchTemplate.Placement": { "additionalProperties": false, "properties": { "Affinity": { "type": "string" }, "AvailabilityZone": { "type": "string" }, "GroupId": { "type": "string" }, "GroupName": { "type": "string" }, "HostId": { "type": "string" }, "HostResourceGroupArn": { "type": "string" }, "PartitionNumber": { "type": "number" }, "SpreadDomain": { "type": "string" }, "Tenancy": { "type": "string" } }, "type": "object" }, "AWS::EC2::LaunchTemplate.PrivateDnsNameOptions": { "additionalProperties": false, "properties": { "EnableResourceNameDnsAAAARecord": { "type": "boolean" }, "EnableResourceNameDnsARecord": { "type": "boolean" }, "HostnameType": { "type": "string" } }, "type": "object" }, "AWS::EC2::LaunchTemplate.PrivateIpAdd": { "additionalProperties": false, "properties": { "Primary": { "type": "boolean" }, "PrivateIpAddress": { "type": "string" } }, "type": "object" }, "AWS::EC2::LaunchTemplate.SpotOptions": { "additionalProperties": false, "properties": { "BlockDurationMinutes": { "type": "number" }, "InstanceInterruptionBehavior": { "type": "string" }, "MaxPrice": { "type": "string" }, "SpotInstanceType": { "type": "string" }, "ValidUntil": { "type": "string" } }, "type": "object" }, "AWS::EC2::LaunchTemplate.TagSpecification": { "additionalProperties": false, "properties": { "ResourceType": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "type": "object" }, "AWS::EC2::LaunchTemplate.TotalLocalStorageGB": { "additionalProperties": false, "properties": { "Max": { "type": "number" }, "Min": { "type": "number" } }, "type": "object" }, "AWS::EC2::LaunchTemplate.VCpuCount": { "additionalProperties": false, "properties": { "Max": { "type": "number" }, "Min": { "type": "number" } }, "type": "object" }, "AWS::EC2::LocalGatewayRoute": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "DestinationCidrBlock": { "type": "string" }, "LocalGatewayRouteTableId": { "type": "string" }, "LocalGatewayVirtualInterfaceGroupId": { "type": "string" }, "NetworkInterfaceId": { "type": "string" } }, "required": [ "DestinationCidrBlock", "LocalGatewayRouteTableId" ], "type": "object" }, "Type": { "enum": [ "AWS::EC2::LocalGatewayRoute" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::EC2::LocalGatewayRouteTable": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "LocalGatewayId": { "type": "string" }, "Mode": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "LocalGatewayId" ], "type": "object" }, "Type": { "enum": [ "AWS::EC2::LocalGatewayRouteTable" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::EC2::LocalGatewayRouteTableVPCAssociation": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "LocalGatewayRouteTableId": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "VpcId": { "type": "string" } }, "required": [ "LocalGatewayRouteTableId", "VpcId" ], "type": "object" }, "Type": { "enum": [ "AWS::EC2::LocalGatewayRouteTableVPCAssociation" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::EC2::LocalGatewayRouteTableVirtualInterfaceGroupAssociation": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "LocalGatewayRouteTableId": { "type": "string" }, "LocalGatewayVirtualInterfaceGroupId": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "LocalGatewayRouteTableId", "LocalGatewayVirtualInterfaceGroupId" ], "type": "object" }, "Type": { "enum": [ "AWS::EC2::LocalGatewayRouteTableVirtualInterfaceGroupAssociation" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::EC2::NatGateway": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AllocationId": { "type": "string" }, "ConnectivityType": { "type": "string" }, "MaxDrainDurationSeconds": { "type": "number" }, "PrivateIpAddress": { "type": "string" }, "SecondaryAllocationIds": { "items": { "type": "string" }, "type": "array" }, "SecondaryPrivateIpAddressCount": { "type": "number" }, "SecondaryPrivateIpAddresses": { "items": { "type": "string" }, "type": "array" }, "SubnetId": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "SubnetId" ], "type": "object" }, "Type": { "enum": [ "AWS::EC2::NatGateway" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::EC2::NetworkAcl": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "VpcId": { "type": "string" } }, "required": [ "VpcId" ], "type": "object" }, "Type": { "enum": [ "AWS::EC2::NetworkAcl" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::EC2::NetworkAclEntry": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "CidrBlock": { "type": "string" }, "Egress": { "type": "boolean" }, "Icmp": { "$ref": "#/definitions/AWS::EC2::NetworkAclEntry.Icmp" }, "Ipv6CidrBlock": { "type": "string" }, "NetworkAclId": { "type": "string" }, "PortRange": { "$ref": "#/definitions/AWS::EC2::NetworkAclEntry.PortRange" }, "Protocol": { "type": "number" }, "RuleAction": { "type": "string" }, "RuleNumber": { "type": "number" } }, "required": [ "NetworkAclId", "Protocol", "RuleAction", "RuleNumber" ], "type": "object" }, "Type": { "enum": [ "AWS::EC2::NetworkAclEntry" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::EC2::NetworkAclEntry.Icmp": { "additionalProperties": false, "properties": { "Code": { "type": "number" }, "Type": { "type": "number" } }, "type": "object" }, "AWS::EC2::NetworkAclEntry.PortRange": { "additionalProperties": false, "properties": { "From": { "type": "number" }, "To": { "type": "number" } }, "type": "object" }, "AWS::EC2::NetworkInsightsAccessScope": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ExcludePaths": { "items": { "$ref": "#/definitions/AWS::EC2::NetworkInsightsAccessScope.AccessScopePathRequest" }, "type": "array" }, "MatchPaths": { "items": { "$ref": "#/definitions/AWS::EC2::NetworkInsightsAccessScope.AccessScopePathRequest" }, "type": "array" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "type": "object" }, "Type": { "enum": [ "AWS::EC2::NetworkInsightsAccessScope" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::EC2::NetworkInsightsAccessScope.AccessScopePathRequest": { "additionalProperties": false, "properties": { "Destination": { "$ref": "#/definitions/AWS::EC2::NetworkInsightsAccessScope.PathStatementRequest" }, "Source": { "$ref": "#/definitions/AWS::EC2::NetworkInsightsAccessScope.PathStatementRequest" }, "ThroughResources": { "items": { "$ref": "#/definitions/AWS::EC2::NetworkInsightsAccessScope.ThroughResourcesStatementRequest" }, "type": "array" } }, "type": "object" }, "AWS::EC2::NetworkInsightsAccessScope.PacketHeaderStatementRequest": { "additionalProperties": false, "properties": { "DestinationAddresses": { "items": { "type": "string" }, "type": "array" }, "DestinationPorts": { "items": { "type": "string" }, "type": "array" }, "DestinationPrefixLists": { "items": { "type": "string" }, "type": "array" }, "Protocols": { "items": { "type": "string" }, "type": "array" }, "SourceAddresses": { "items": { "type": "string" }, "type": "array" }, "SourcePorts": { "items": { "type": "string" }, "type": "array" }, "SourcePrefixLists": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::EC2::NetworkInsightsAccessScope.PathStatementRequest": { "additionalProperties": false, "properties": { "PacketHeaderStatement": { "$ref": "#/definitions/AWS::EC2::NetworkInsightsAccessScope.PacketHeaderStatementRequest" }, "ResourceStatement": { "$ref": "#/definitions/AWS::EC2::NetworkInsightsAccessScope.ResourceStatementRequest" } }, "type": "object" }, "AWS::EC2::NetworkInsightsAccessScope.ResourceStatementRequest": { "additionalProperties": false, "properties": { "ResourceTypes": { "items": { "type": "string" }, "type": "array" }, "Resources": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::EC2::NetworkInsightsAccessScope.ThroughResourcesStatementRequest": { "additionalProperties": false, "properties": { "ResourceStatement": { "$ref": "#/definitions/AWS::EC2::NetworkInsightsAccessScope.ResourceStatementRequest" } }, "type": "object" }, "AWS::EC2::NetworkInsightsAccessScopeAnalysis": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "NetworkInsightsAccessScopeId": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "NetworkInsightsAccessScopeId" ], "type": "object" }, "Type": { "enum": [ "AWS::EC2::NetworkInsightsAccessScopeAnalysis" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::EC2::NetworkInsightsAnalysis": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AdditionalAccounts": { "items": { "type": "string" }, "type": "array" }, "FilterInArns": { "items": { "type": "string" }, "type": "array" }, "NetworkInsightsPathId": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "NetworkInsightsPathId" ], "type": "object" }, "Type": { "enum": [ "AWS::EC2::NetworkInsightsAnalysis" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::EC2::NetworkInsightsAnalysis.AdditionalDetail": { "additionalProperties": false, "properties": { "AdditionalDetailType": { "type": "string" }, "Component": { "$ref": "#/definitions/AWS::EC2::NetworkInsightsAnalysis.AnalysisComponent" }, "LoadBalancers": { "items": { "$ref": "#/definitions/AWS::EC2::NetworkInsightsAnalysis.AnalysisComponent" }, "type": "array" }, "ServiceName": { "type": "string" } }, "type": "object" }, "AWS::EC2::NetworkInsightsAnalysis.AlternatePathHint": { "additionalProperties": false, "properties": { "ComponentArn": { "type": "string" }, "ComponentId": { "type": "string" } }, "type": "object" }, "AWS::EC2::NetworkInsightsAnalysis.AnalysisAclRule": { "additionalProperties": false, "properties": { "Cidr": { "type": "string" }, "Egress": { "type": "boolean" }, "PortRange": { "$ref": "#/definitions/AWS::EC2::NetworkInsightsAnalysis.PortRange" }, "Protocol": { "type": "string" }, "RuleAction": { "type": "string" }, "RuleNumber": { "type": "number" } }, "type": "object" }, "AWS::EC2::NetworkInsightsAnalysis.AnalysisComponent": { "additionalProperties": false, "properties": { "Arn": { "type": "string" }, "Id": { "type": "string" } }, "type": "object" }, "AWS::EC2::NetworkInsightsAnalysis.AnalysisLoadBalancerListener": { "additionalProperties": false, "properties": { "InstancePort": { "type": "number" }, "LoadBalancerPort": { "type": "number" } }, "type": "object" }, "AWS::EC2::NetworkInsightsAnalysis.AnalysisLoadBalancerTarget": { "additionalProperties": false, "properties": { "Address": { "type": "string" }, "AvailabilityZone": { "type": "string" }, "Instance": { "$ref": "#/definitions/AWS::EC2::NetworkInsightsAnalysis.AnalysisComponent" }, "Port": { "type": "number" } }, "type": "object" }, "AWS::EC2::NetworkInsightsAnalysis.AnalysisPacketHeader": { "additionalProperties": false, "properties": { "DestinationAddresses": { "items": { "type": "string" }, "type": "array" }, "DestinationPortRanges": { "items": { "$ref": "#/definitions/AWS::EC2::NetworkInsightsAnalysis.PortRange" }, "type": "array" }, "Protocol": { "type": "string" }, "SourceAddresses": { "items": { "type": "string" }, "type": "array" }, "SourcePortRanges": { "items": { "$ref": "#/definitions/AWS::EC2::NetworkInsightsAnalysis.PortRange" }, "type": "array" } }, "type": "object" }, "AWS::EC2::NetworkInsightsAnalysis.AnalysisRouteTableRoute": { "additionalProperties": false, "properties": { "NatGatewayId": { "type": "string" }, "NetworkInterfaceId": { "type": "string" }, "Origin": { "type": "string" }, "State": { "type": "string" }, "TransitGatewayId": { "type": "string" }, "VpcPeeringConnectionId": { "type": "string" }, "destinationCidr": { "type": "string" }, "destinationPrefixListId": { "type": "string" }, "egressOnlyInternetGatewayId": { "type": "string" }, "gatewayId": { "type": "string" }, "instanceId": { "type": "string" } }, "type": "object" }, "AWS::EC2::NetworkInsightsAnalysis.AnalysisSecurityGroupRule": { "additionalProperties": false, "properties": { "Cidr": { "type": "string" }, "Direction": { "type": "string" }, "PortRange": { "$ref": "#/definitions/AWS::EC2::NetworkInsightsAnalysis.PortRange" }, "PrefixListId": { "type": "string" }, "Protocol": { "type": "string" }, "SecurityGroupId": { "type": "string" } }, "type": "object" }, "AWS::EC2::NetworkInsightsAnalysis.Explanation": { "additionalProperties": false, "properties": { "Acl": { "$ref": "#/definitions/AWS::EC2::NetworkInsightsAnalysis.AnalysisComponent" }, "AclRule": { "$ref": "#/definitions/AWS::EC2::NetworkInsightsAnalysis.AnalysisAclRule" }, "Address": { "type": "string" }, "Addresses": { "items": { "type": "string" }, "type": "array" }, "AttachedTo": { "$ref": "#/definitions/AWS::EC2::NetworkInsightsAnalysis.AnalysisComponent" }, "AvailabilityZones": { "items": { "type": "string" }, "type": "array" }, "Cidrs": { "items": { "type": "string" }, "type": "array" }, "ClassicLoadBalancerListener": { "$ref": "#/definitions/AWS::EC2::NetworkInsightsAnalysis.AnalysisLoadBalancerListener" }, "Component": { "$ref": "#/definitions/AWS::EC2::NetworkInsightsAnalysis.AnalysisComponent" }, "ComponentAccount": { "type": "string" }, "ComponentRegion": { "type": "string" }, "CustomerGateway": { "$ref": "#/definitions/AWS::EC2::NetworkInsightsAnalysis.AnalysisComponent" }, "Destination": { "$ref": "#/definitions/AWS::EC2::NetworkInsightsAnalysis.AnalysisComponent" }, "DestinationVpc": { "$ref": "#/definitions/AWS::EC2::NetworkInsightsAnalysis.AnalysisComponent" }, "Direction": { "type": "string" }, "ElasticLoadBalancerListener": { "$ref": "#/definitions/AWS::EC2::NetworkInsightsAnalysis.AnalysisComponent" }, "ExplanationCode": { "type": "string" }, "IngressRouteTable": { "$ref": "#/definitions/AWS::EC2::NetworkInsightsAnalysis.AnalysisComponent" }, "InternetGateway": { "$ref": "#/definitions/AWS::EC2::NetworkInsightsAnalysis.AnalysisComponent" }, "LoadBalancerArn": { "type": "string" }, "LoadBalancerListenerPort": { "type": "number" }, "LoadBalancerTarget": { "$ref": "#/definitions/AWS::EC2::NetworkInsightsAnalysis.AnalysisLoadBalancerTarget" }, "LoadBalancerTargetGroup": { "$ref": "#/definitions/AWS::EC2::NetworkInsightsAnalysis.AnalysisComponent" }, "LoadBalancerTargetGroups": { "items": { "$ref": "#/definitions/AWS::EC2::NetworkInsightsAnalysis.AnalysisComponent" }, "type": "array" }, "LoadBalancerTargetPort": { "type": "number" }, "MissingComponent": { "type": "string" }, "NatGateway": { "$ref": "#/definitions/AWS::EC2::NetworkInsightsAnalysis.AnalysisComponent" }, "NetworkInterface": { "$ref": "#/definitions/AWS::EC2::NetworkInsightsAnalysis.AnalysisComponent" }, "PacketField": { "type": "string" }, "Port": { "type": "number" }, "PortRanges": { "items": { "$ref": "#/definitions/AWS::EC2::NetworkInsightsAnalysis.PortRange" }, "type": "array" }, "PrefixList": { "$ref": "#/definitions/AWS::EC2::NetworkInsightsAnalysis.AnalysisComponent" }, "Protocols": { "items": { "type": "string" }, "type": "array" }, "RouteTable": { "$ref": "#/definitions/AWS::EC2::NetworkInsightsAnalysis.AnalysisComponent" }, "RouteTableRoute": { "$ref": "#/definitions/AWS::EC2::NetworkInsightsAnalysis.AnalysisRouteTableRoute" }, "SecurityGroup": { "$ref": "#/definitions/AWS::EC2::NetworkInsightsAnalysis.AnalysisComponent" }, "SecurityGroupRule": { "$ref": "#/definitions/AWS::EC2::NetworkInsightsAnalysis.AnalysisSecurityGroupRule" }, "SecurityGroups": { "items": { "$ref": "#/definitions/AWS::EC2::NetworkInsightsAnalysis.AnalysisComponent" }, "type": "array" }, "SourceVpc": { "$ref": "#/definitions/AWS::EC2::NetworkInsightsAnalysis.AnalysisComponent" }, "State": { "type": "string" }, "Subnet": { "$ref": "#/definitions/AWS::EC2::NetworkInsightsAnalysis.AnalysisComponent" }, "SubnetRouteTable": { "$ref": "#/definitions/AWS::EC2::NetworkInsightsAnalysis.AnalysisComponent" }, "TransitGateway": { "$ref": "#/definitions/AWS::EC2::NetworkInsightsAnalysis.AnalysisComponent" }, "TransitGatewayAttachment": { "$ref": "#/definitions/AWS::EC2::NetworkInsightsAnalysis.AnalysisComponent" }, "TransitGatewayRouteTable": { "$ref": "#/definitions/AWS::EC2::NetworkInsightsAnalysis.AnalysisComponent" }, "TransitGatewayRouteTableRoute": { "$ref": "#/definitions/AWS::EC2::NetworkInsightsAnalysis.TransitGatewayRouteTableRoute" }, "Vpc": { "$ref": "#/definitions/AWS::EC2::NetworkInsightsAnalysis.AnalysisComponent" }, "VpcPeeringConnection": { "$ref": "#/definitions/AWS::EC2::NetworkInsightsAnalysis.AnalysisComponent" }, "VpnConnection": { "$ref": "#/definitions/AWS::EC2::NetworkInsightsAnalysis.AnalysisComponent" }, "VpnGateway": { "$ref": "#/definitions/AWS::EC2::NetworkInsightsAnalysis.AnalysisComponent" }, "vpcEndpoint": { "$ref": "#/definitions/AWS::EC2::NetworkInsightsAnalysis.AnalysisComponent" } }, "type": "object" }, "AWS::EC2::NetworkInsightsAnalysis.PathComponent": { "additionalProperties": false, "properties": { "AclRule": { "$ref": "#/definitions/AWS::EC2::NetworkInsightsAnalysis.AnalysisAclRule" }, "AdditionalDetails": { "items": { "$ref": "#/definitions/AWS::EC2::NetworkInsightsAnalysis.AdditionalDetail" }, "type": "array" }, "Component": { "$ref": "#/definitions/AWS::EC2::NetworkInsightsAnalysis.AnalysisComponent" }, "DestinationVpc": { "$ref": "#/definitions/AWS::EC2::NetworkInsightsAnalysis.AnalysisComponent" }, "ElasticLoadBalancerListener": { "$ref": "#/definitions/AWS::EC2::NetworkInsightsAnalysis.AnalysisComponent" }, "Explanations": { "items": { "$ref": "#/definitions/AWS::EC2::NetworkInsightsAnalysis.Explanation" }, "type": "array" }, "InboundHeader": { "$ref": "#/definitions/AWS::EC2::NetworkInsightsAnalysis.AnalysisPacketHeader" }, "OutboundHeader": { "$ref": "#/definitions/AWS::EC2::NetworkInsightsAnalysis.AnalysisPacketHeader" }, "RouteTableRoute": { "$ref": "#/definitions/AWS::EC2::NetworkInsightsAnalysis.AnalysisRouteTableRoute" }, "SecurityGroupRule": { "$ref": "#/definitions/AWS::EC2::NetworkInsightsAnalysis.AnalysisSecurityGroupRule" }, "SequenceNumber": { "type": "number" }, "ServiceName": { "type": "string" }, "SourceVpc": { "$ref": "#/definitions/AWS::EC2::NetworkInsightsAnalysis.AnalysisComponent" }, "Subnet": { "$ref": "#/definitions/AWS::EC2::NetworkInsightsAnalysis.AnalysisComponent" }, "TransitGateway": { "$ref": "#/definitions/AWS::EC2::NetworkInsightsAnalysis.AnalysisComponent" }, "TransitGatewayRouteTableRoute": { "$ref": "#/definitions/AWS::EC2::NetworkInsightsAnalysis.TransitGatewayRouteTableRoute" }, "Vpc": { "$ref": "#/definitions/AWS::EC2::NetworkInsightsAnalysis.AnalysisComponent" } }, "type": "object" }, "AWS::EC2::NetworkInsightsAnalysis.PortRange": { "additionalProperties": false, "properties": { "From": { "type": "number" }, "To": { "type": "number" } }, "type": "object" }, "AWS::EC2::NetworkInsightsAnalysis.TransitGatewayRouteTableRoute": { "additionalProperties": false, "properties": { "AttachmentId": { "type": "string" }, "DestinationCidr": { "type": "string" }, "PrefixListId": { "type": "string" }, "ResourceId": { "type": "string" }, "ResourceType": { "type": "string" }, "RouteOrigin": { "type": "string" }, "State": { "type": "string" } }, "type": "object" }, "AWS::EC2::NetworkInsightsPath": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Destination": { "type": "string" }, "DestinationIp": { "type": "string" }, "DestinationPort": { "type": "number" }, "FilterAtDestination": { "$ref": "#/definitions/AWS::EC2::NetworkInsightsPath.PathFilter" }, "FilterAtSource": { "$ref": "#/definitions/AWS::EC2::NetworkInsightsPath.PathFilter" }, "Protocol": { "type": "string" }, "Source": { "type": "string" }, "SourceIp": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "Protocol", "Source" ], "type": "object" }, "Type": { "enum": [ "AWS::EC2::NetworkInsightsPath" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::EC2::NetworkInsightsPath.FilterPortRange": { "additionalProperties": false, "properties": { "FromPort": { "type": "number" }, "ToPort": { "type": "number" } }, "type": "object" }, "AWS::EC2::NetworkInsightsPath.PathFilter": { "additionalProperties": false, "properties": { "DestinationAddress": { "type": "string" }, "DestinationPortRange": { "$ref": "#/definitions/AWS::EC2::NetworkInsightsPath.FilterPortRange" }, "SourceAddress": { "type": "string" }, "SourcePortRange": { "$ref": "#/definitions/AWS::EC2::NetworkInsightsPath.FilterPortRange" } }, "type": "object" }, "AWS::EC2::NetworkInterface": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "GroupSet": { "items": { "type": "string" }, "type": "array" }, "InterfaceType": { "type": "string" }, "Ipv4PrefixCount": { "type": "number" }, "Ipv4Prefixes": { "items": { "$ref": "#/definitions/AWS::EC2::NetworkInterface.Ipv4PrefixSpecification" }, "type": "array" }, "Ipv6AddressCount": { "type": "number" }, "Ipv6Addresses": { "items": { "$ref": "#/definitions/AWS::EC2::NetworkInterface.InstanceIpv6Address" }, "type": "array" }, "Ipv6PrefixCount": { "type": "number" }, "Ipv6Prefixes": { "items": { "$ref": "#/definitions/AWS::EC2::NetworkInterface.Ipv6PrefixSpecification" }, "type": "array" }, "PrivateIpAddress": { "type": "string" }, "PrivateIpAddresses": { "items": { "$ref": "#/definitions/AWS::EC2::NetworkInterface.PrivateIpAddressSpecification" }, "type": "array" }, "SecondaryPrivateIpAddressCount": { "type": "number" }, "SourceDestCheck": { "type": "boolean" }, "SubnetId": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "SubnetId" ], "type": "object" }, "Type": { "enum": [ "AWS::EC2::NetworkInterface" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::EC2::NetworkInterface.InstanceIpv6Address": { "additionalProperties": false, "properties": { "Ipv6Address": { "type": "string" } }, "required": [ "Ipv6Address" ], "type": "object" }, "AWS::EC2::NetworkInterface.Ipv4PrefixSpecification": { "additionalProperties": false, "properties": { "Ipv4Prefix": { "type": "string" } }, "required": [ "Ipv4Prefix" ], "type": "object" }, "AWS::EC2::NetworkInterface.Ipv6PrefixSpecification": { "additionalProperties": false, "properties": { "Ipv6Prefix": { "type": "string" } }, "required": [ "Ipv6Prefix" ], "type": "object" }, "AWS::EC2::NetworkInterface.PrivateIpAddressSpecification": { "additionalProperties": false, "properties": { "Primary": { "type": "boolean" }, "PrivateIpAddress": { "type": "string" } }, "required": [ "Primary", "PrivateIpAddress" ], "type": "object" }, "AWS::EC2::NetworkInterfaceAttachment": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "DeleteOnTermination": { "type": "boolean" }, "DeviceIndex": { "type": "string" }, "InstanceId": { "type": "string" }, "NetworkInterfaceId": { "type": "string" } }, "required": [ "DeviceIndex", "InstanceId", "NetworkInterfaceId" ], "type": "object" }, "Type": { "enum": [ "AWS::EC2::NetworkInterfaceAttachment" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::EC2::NetworkInterfacePermission": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AwsAccountId": { "type": "string" }, "NetworkInterfaceId": { "type": "string" }, "Permission": { "type": "string" } }, "required": [ "AwsAccountId", "NetworkInterfaceId", "Permission" ], "type": "object" }, "Type": { "enum": [ "AWS::EC2::NetworkInterfacePermission" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::EC2::NetworkPerformanceMetricSubscription": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Destination": { "type": "string" }, "Metric": { "type": "string" }, "Source": { "type": "string" }, "Statistic": { "type": "string" } }, "required": [ "Destination", "Metric", "Source", "Statistic" ], "type": "object" }, "Type": { "enum": [ "AWS::EC2::NetworkPerformanceMetricSubscription" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::EC2::PlacementGroup": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "PartitionCount": { "type": "number" }, "SpreadLevel": { "type": "string" }, "Strategy": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "type": "object" }, "Type": { "enum": [ "AWS::EC2::PlacementGroup" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::EC2::PrefixList": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AddressFamily": { "type": "string" }, "Entries": { "items": { "$ref": "#/definitions/AWS::EC2::PrefixList.Entry" }, "type": "array" }, "MaxEntries": { "type": "number" }, "PrefixListName": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "AddressFamily", "MaxEntries", "PrefixListName" ], "type": "object" }, "Type": { "enum": [ "AWS::EC2::PrefixList" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::EC2::PrefixList.Entry": { "additionalProperties": false, "properties": { "Cidr": { "type": "string" }, "Description": { "type": "string" } }, "required": [ "Cidr" ], "type": "object" }, "AWS::EC2::Route": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "CarrierGatewayId": { "type": "string" }, "DestinationCidrBlock": { "type": "string" }, "DestinationIpv6CidrBlock": { "type": "string" }, "EgressOnlyInternetGatewayId": { "type": "string" }, "GatewayId": { "type": "string" }, "InstanceId": { "type": "string" }, "LocalGatewayId": { "type": "string" }, "NatGatewayId": { "type": "string" }, "NetworkInterfaceId": { "type": "string" }, "RouteTableId": { "type": "string" }, "TransitGatewayId": { "type": "string" }, "VpcEndpointId": { "type": "string" }, "VpcPeeringConnectionId": { "type": "string" } }, "required": [ "RouteTableId" ], "type": "object" }, "Type": { "enum": [ "AWS::EC2::Route" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::EC2::RouteTable": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "VpcId": { "type": "string" } }, "required": [ "VpcId" ], "type": "object" }, "Type": { "enum": [ "AWS::EC2::RouteTable" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::EC2::SecurityGroup": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "GroupDescription": { "type": "string" }, "GroupName": { "type": "string" }, "SecurityGroupEgress": { "items": { "$ref": "#/definitions/AWS::EC2::SecurityGroup.Egress" }, "type": "array" }, "SecurityGroupIngress": { "items": { "$ref": "#/definitions/AWS::EC2::SecurityGroup.Ingress" }, "type": "array" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "VpcId": { "type": "string" } }, "required": [ "GroupDescription" ], "type": "object" }, "Type": { "enum": [ "AWS::EC2::SecurityGroup" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::EC2::SecurityGroup.Egress": { "additionalProperties": false, "properties": { "CidrIp": { "type": "string" }, "CidrIpv6": { "type": "string" }, "Description": { "type": "string" }, "DestinationPrefixListId": { "type": "string" }, "DestinationSecurityGroupId": { "type": "string" }, "FromPort": { "type": "number" }, "IpProtocol": { "type": "string" }, "ToPort": { "type": "number" } }, "required": [ "IpProtocol" ], "type": "object" }, "AWS::EC2::SecurityGroup.Ingress": { "additionalProperties": false, "properties": { "CidrIp": { "type": "string" }, "CidrIpv6": { "type": "string" }, "Description": { "type": "string" }, "FromPort": { "type": "number" }, "IpProtocol": { "type": "string" }, "SourcePrefixListId": { "type": "string" }, "SourceSecurityGroupId": { "type": "string" }, "SourceSecurityGroupName": { "type": "string" }, "SourceSecurityGroupOwnerId": { "type": "string" }, "ToPort": { "type": "number" } }, "required": [ "IpProtocol" ], "type": "object" }, "AWS::EC2::SecurityGroupEgress": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "CidrIp": { "type": "string" }, "CidrIpv6": { "type": "string" }, "Description": { "type": "string" }, "DestinationPrefixListId": { "type": "string" }, "DestinationSecurityGroupId": { "type": "string" }, "FromPort": { "type": "number" }, "GroupId": { "type": "string" }, "IpProtocol": { "type": "string" }, "ToPort": { "type": "number" } }, "required": [ "GroupId", "IpProtocol" ], "type": "object" }, "Type": { "enum": [ "AWS::EC2::SecurityGroupEgress" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::EC2::SecurityGroupIngress": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "CidrIp": { "type": "string" }, "CidrIpv6": { "type": "string" }, "Description": { "type": "string" }, "FromPort": { "type": "number" }, "GroupId": { "type": "string" }, "GroupName": { "type": "string" }, "IpProtocol": { "type": "string" }, "SourcePrefixListId": { "type": "string" }, "SourceSecurityGroupId": { "type": "string" }, "SourceSecurityGroupName": { "type": "string" }, "SourceSecurityGroupOwnerId": { "type": "string" }, "ToPort": { "type": "number" } }, "required": [ "IpProtocol" ], "type": "object" }, "Type": { "enum": [ "AWS::EC2::SecurityGroupIngress" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::EC2::SpotFleet": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "SpotFleetRequestConfigData": { "$ref": "#/definitions/AWS::EC2::SpotFleet.SpotFleetRequestConfigData" } }, "required": [ "SpotFleetRequestConfigData" ], "type": "object" }, "Type": { "enum": [ "AWS::EC2::SpotFleet" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::EC2::SpotFleet.AcceleratorCountRequest": { "additionalProperties": false, "properties": { "Max": { "type": "number" }, "Min": { "type": "number" } }, "type": "object" }, "AWS::EC2::SpotFleet.AcceleratorTotalMemoryMiBRequest": { "additionalProperties": false, "properties": { "Max": { "type": "number" }, "Min": { "type": "number" } }, "type": "object" }, "AWS::EC2::SpotFleet.BaselineEbsBandwidthMbpsRequest": { "additionalProperties": false, "properties": { "Max": { "type": "number" }, "Min": { "type": "number" } }, "type": "object" }, "AWS::EC2::SpotFleet.BlockDeviceMapping": { "additionalProperties": false, "properties": { "DeviceName": { "type": "string" }, "Ebs": { "$ref": "#/definitions/AWS::EC2::SpotFleet.EbsBlockDevice" }, "NoDevice": { "type": "string" }, "VirtualName": { "type": "string" } }, "required": [ "DeviceName" ], "type": "object" }, "AWS::EC2::SpotFleet.ClassicLoadBalancer": { "additionalProperties": false, "properties": { "Name": { "type": "string" } }, "required": [ "Name" ], "type": "object" }, "AWS::EC2::SpotFleet.ClassicLoadBalancersConfig": { "additionalProperties": false, "properties": { "ClassicLoadBalancers": { "items": { "$ref": "#/definitions/AWS::EC2::SpotFleet.ClassicLoadBalancer" }, "type": "array" } }, "required": [ "ClassicLoadBalancers" ], "type": "object" }, "AWS::EC2::SpotFleet.EbsBlockDevice": { "additionalProperties": false, "properties": { "DeleteOnTermination": { "type": "boolean" }, "Encrypted": { "type": "boolean" }, "Iops": { "type": "number" }, "SnapshotId": { "type": "string" }, "VolumeSize": { "type": "number" }, "VolumeType": { "type": "string" } }, "type": "object" }, "AWS::EC2::SpotFleet.FleetLaunchTemplateSpecification": { "additionalProperties": false, "properties": { "LaunchTemplateId": { "type": "string" }, "LaunchTemplateName": { "type": "string" }, "Version": { "type": "string" } }, "required": [ "Version" ], "type": "object" }, "AWS::EC2::SpotFleet.GroupIdentifier": { "additionalProperties": false, "properties": { "GroupId": { "type": "string" } }, "required": [ "GroupId" ], "type": "object" }, "AWS::EC2::SpotFleet.IamInstanceProfileSpecification": { "additionalProperties": false, "properties": { "Arn": { "type": "string" } }, "type": "object" }, "AWS::EC2::SpotFleet.InstanceIpv6Address": { "additionalProperties": false, "properties": { "Ipv6Address": { "type": "string" } }, "required": [ "Ipv6Address" ], "type": "object" }, "AWS::EC2::SpotFleet.InstanceNetworkInterfaceSpecification": { "additionalProperties": false, "properties": { "AssociatePublicIpAddress": { "type": "boolean" }, "DeleteOnTermination": { "type": "boolean" }, "Description": { "type": "string" }, "DeviceIndex": { "type": "number" }, "Groups": { "items": { "type": "string" }, "type": "array" }, "Ipv6AddressCount": { "type": "number" }, "Ipv6Addresses": { "items": { "$ref": "#/definitions/AWS::EC2::SpotFleet.InstanceIpv6Address" }, "type": "array" }, "NetworkInterfaceId": { "type": "string" }, "PrivateIpAddresses": { "items": { "$ref": "#/definitions/AWS::EC2::SpotFleet.PrivateIpAddressSpecification" }, "type": "array" }, "SecondaryPrivateIpAddressCount": { "type": "number" }, "SubnetId": { "type": "string" } }, "type": "object" }, "AWS::EC2::SpotFleet.InstanceRequirementsRequest": { "additionalProperties": false, "properties": { "AcceleratorCount": { "$ref": "#/definitions/AWS::EC2::SpotFleet.AcceleratorCountRequest" }, "AcceleratorManufacturers": { "items": { "type": "string" }, "type": "array" }, "AcceleratorNames": { "items": { "type": "string" }, "type": "array" }, "AcceleratorTotalMemoryMiB": { "$ref": "#/definitions/AWS::EC2::SpotFleet.AcceleratorTotalMemoryMiBRequest" }, "AcceleratorTypes": { "items": { "type": "string" }, "type": "array" }, "AllowedInstanceTypes": { "items": { "type": "string" }, "type": "array" }, "BareMetal": { "type": "string" }, "BaselineEbsBandwidthMbps": { "$ref": "#/definitions/AWS::EC2::SpotFleet.BaselineEbsBandwidthMbpsRequest" }, "BurstablePerformance": { "type": "string" }, "CpuManufacturers": { "items": { "type": "string" }, "type": "array" }, "ExcludedInstanceTypes": { "items": { "type": "string" }, "type": "array" }, "InstanceGenerations": { "items": { "type": "string" }, "type": "array" }, "LocalStorage": { "type": "string" }, "LocalStorageTypes": { "items": { "type": "string" }, "type": "array" }, "MemoryGiBPerVCpu": { "$ref": "#/definitions/AWS::EC2::SpotFleet.MemoryGiBPerVCpuRequest" }, "MemoryMiB": { "$ref": "#/definitions/AWS::EC2::SpotFleet.MemoryMiBRequest" }, "NetworkBandwidthGbps": { "$ref": "#/definitions/AWS::EC2::SpotFleet.NetworkBandwidthGbpsRequest" }, "NetworkInterfaceCount": { "$ref": "#/definitions/AWS::EC2::SpotFleet.NetworkInterfaceCountRequest" }, "OnDemandMaxPricePercentageOverLowestPrice": { "type": "number" }, "RequireHibernateSupport": { "type": "boolean" }, "SpotMaxPricePercentageOverLowestPrice": { "type": "number" }, "TotalLocalStorageGB": { "$ref": "#/definitions/AWS::EC2::SpotFleet.TotalLocalStorageGBRequest" }, "VCpuCount": { "$ref": "#/definitions/AWS::EC2::SpotFleet.VCpuCountRangeRequest" } }, "type": "object" }, "AWS::EC2::SpotFleet.LaunchTemplateConfig": { "additionalProperties": false, "properties": { "LaunchTemplateSpecification": { "$ref": "#/definitions/AWS::EC2::SpotFleet.FleetLaunchTemplateSpecification" }, "Overrides": { "items": { "$ref": "#/definitions/AWS::EC2::SpotFleet.LaunchTemplateOverrides" }, "type": "array" } }, "type": "object" }, "AWS::EC2::SpotFleet.LaunchTemplateOverrides": { "additionalProperties": false, "properties": { "AvailabilityZone": { "type": "string" }, "InstanceRequirements": { "$ref": "#/definitions/AWS::EC2::SpotFleet.InstanceRequirementsRequest" }, "InstanceType": { "type": "string" }, "Priority": { "type": "number" }, "SpotPrice": { "type": "string" }, "SubnetId": { "type": "string" }, "WeightedCapacity": { "type": "number" } }, "type": "object" }, "AWS::EC2::SpotFleet.LoadBalancersConfig": { "additionalProperties": false, "properties": { "ClassicLoadBalancersConfig": { "$ref": "#/definitions/AWS::EC2::SpotFleet.ClassicLoadBalancersConfig" }, "TargetGroupsConfig": { "$ref": "#/definitions/AWS::EC2::SpotFleet.TargetGroupsConfig" } }, "type": "object" }, "AWS::EC2::SpotFleet.MemoryGiBPerVCpuRequest": { "additionalProperties": false, "properties": { "Max": { "type": "number" }, "Min": { "type": "number" } }, "type": "object" }, "AWS::EC2::SpotFleet.MemoryMiBRequest": { "additionalProperties": false, "properties": { "Max": { "type": "number" }, "Min": { "type": "number" } }, "type": "object" }, "AWS::EC2::SpotFleet.NetworkBandwidthGbpsRequest": { "additionalProperties": false, "properties": { "Max": { "type": "number" }, "Min": { "type": "number" } }, "type": "object" }, "AWS::EC2::SpotFleet.NetworkInterfaceCountRequest": { "additionalProperties": false, "properties": { "Max": { "type": "number" }, "Min": { "type": "number" } }, "type": "object" }, "AWS::EC2::SpotFleet.PrivateIpAddressSpecification": { "additionalProperties": false, "properties": { "Primary": { "type": "boolean" }, "PrivateIpAddress": { "type": "string" } }, "required": [ "PrivateIpAddress" ], "type": "object" }, "AWS::EC2::SpotFleet.SpotCapacityRebalance": { "additionalProperties": false, "properties": { "ReplacementStrategy": { "type": "string" }, "TerminationDelay": { "type": "number" } }, "type": "object" }, "AWS::EC2::SpotFleet.SpotFleetLaunchSpecification": { "additionalProperties": false, "properties": { "BlockDeviceMappings": { "items": { "$ref": "#/definitions/AWS::EC2::SpotFleet.BlockDeviceMapping" }, "type": "array" }, "EbsOptimized": { "type": "boolean" }, "IamInstanceProfile": { "$ref": "#/definitions/AWS::EC2::SpotFleet.IamInstanceProfileSpecification" }, "ImageId": { "type": "string" }, "InstanceRequirements": { "$ref": "#/definitions/AWS::EC2::SpotFleet.InstanceRequirementsRequest" }, "InstanceType": { "type": "string" }, "KernelId": { "type": "string" }, "KeyName": { "type": "string" }, "Monitoring": { "$ref": "#/definitions/AWS::EC2::SpotFleet.SpotFleetMonitoring" }, "NetworkInterfaces": { "items": { "$ref": "#/definitions/AWS::EC2::SpotFleet.InstanceNetworkInterfaceSpecification" }, "type": "array" }, "Placement": { "$ref": "#/definitions/AWS::EC2::SpotFleet.SpotPlacement" }, "RamdiskId": { "type": "string" }, "SecurityGroups": { "items": { "$ref": "#/definitions/AWS::EC2::SpotFleet.GroupIdentifier" }, "type": "array" }, "SpotPrice": { "type": "string" }, "SubnetId": { "type": "string" }, "TagSpecifications": { "items": { "$ref": "#/definitions/AWS::EC2::SpotFleet.SpotFleetTagSpecification" }, "type": "array" }, "UserData": { "type": "string" }, "WeightedCapacity": { "type": "number" } }, "required": [ "ImageId" ], "type": "object" }, "AWS::EC2::SpotFleet.SpotFleetMonitoring": { "additionalProperties": false, "properties": { "Enabled": { "type": "boolean" } }, "type": "object" }, "AWS::EC2::SpotFleet.SpotFleetRequestConfigData": { "additionalProperties": false, "properties": { "AllocationStrategy": { "type": "string" }, "Context": { "type": "string" }, "ExcessCapacityTerminationPolicy": { "type": "string" }, "IamFleetRole": { "type": "string" }, "InstanceInterruptionBehavior": { "type": "string" }, "InstancePoolsToUseCount": { "type": "number" }, "LaunchSpecifications": { "items": { "$ref": "#/definitions/AWS::EC2::SpotFleet.SpotFleetLaunchSpecification" }, "type": "array" }, "LaunchTemplateConfigs": { "items": { "$ref": "#/definitions/AWS::EC2::SpotFleet.LaunchTemplateConfig" }, "type": "array" }, "LoadBalancersConfig": { "$ref": "#/definitions/AWS::EC2::SpotFleet.LoadBalancersConfig" }, "OnDemandAllocationStrategy": { "type": "string" }, "OnDemandMaxTotalPrice": { "type": "string" }, "OnDemandTargetCapacity": { "type": "number" }, "ReplaceUnhealthyInstances": { "type": "boolean" }, "SpotMaintenanceStrategies": { "$ref": "#/definitions/AWS::EC2::SpotFleet.SpotMaintenanceStrategies" }, "SpotMaxTotalPrice": { "type": "string" }, "SpotPrice": { "type": "string" }, "TagSpecifications": { "items": { "$ref": "#/definitions/AWS::EC2::SpotFleet.SpotFleetTagSpecification" }, "type": "array" }, "TargetCapacity": { "type": "number" }, "TargetCapacityUnitType": { "type": "string" }, "TerminateInstancesWithExpiration": { "type": "boolean" }, "Type": { "type": "string" }, "ValidFrom": { "type": "string" }, "ValidUntil": { "type": "string" } }, "required": [ "IamFleetRole", "TargetCapacity" ], "type": "object" }, "AWS::EC2::SpotFleet.SpotFleetTagSpecification": { "additionalProperties": false, "properties": { "ResourceType": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "type": "object" }, "AWS::EC2::SpotFleet.SpotMaintenanceStrategies": { "additionalProperties": false, "properties": { "CapacityRebalance": { "$ref": "#/definitions/AWS::EC2::SpotFleet.SpotCapacityRebalance" } }, "type": "object" }, "AWS::EC2::SpotFleet.SpotPlacement": { "additionalProperties": false, "properties": { "AvailabilityZone": { "type": "string" }, "GroupName": { "type": "string" }, "Tenancy": { "type": "string" } }, "type": "object" }, "AWS::EC2::SpotFleet.TargetGroup": { "additionalProperties": false, "properties": { "Arn": { "type": "string" } }, "required": [ "Arn" ], "type": "object" }, "AWS::EC2::SpotFleet.TargetGroupsConfig": { "additionalProperties": false, "properties": { "TargetGroups": { "items": { "$ref": "#/definitions/AWS::EC2::SpotFleet.TargetGroup" }, "type": "array" } }, "required": [ "TargetGroups" ], "type": "object" }, "AWS::EC2::SpotFleet.TotalLocalStorageGBRequest": { "additionalProperties": false, "properties": { "Max": { "type": "number" }, "Min": { "type": "number" } }, "type": "object" }, "AWS::EC2::SpotFleet.VCpuCountRangeRequest": { "additionalProperties": false, "properties": { "Max": { "type": "number" }, "Min": { "type": "number" } }, "type": "object" }, "AWS::EC2::Subnet": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AssignIpv6AddressOnCreation": { "type": "boolean" }, "AvailabilityZone": { "type": "string" }, "AvailabilityZoneId": { "type": "string" }, "CidrBlock": { "type": "string" }, "EnableDns64": { "type": "boolean" }, "Ipv6CidrBlock": { "type": "string" }, "Ipv6Native": { "type": "boolean" }, "MapPublicIpOnLaunch": { "type": "boolean" }, "OutpostArn": { "type": "string" }, "PrivateDnsNameOptionsOnLaunch": { "$ref": "#/definitions/AWS::EC2::Subnet.PrivateDnsNameOptionsOnLaunch" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "VpcId": { "type": "string" } }, "required": [ "VpcId" ], "type": "object" }, "Type": { "enum": [ "AWS::EC2::Subnet" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::EC2::Subnet.PrivateDnsNameOptionsOnLaunch": { "additionalProperties": false, "properties": { "EnableResourceNameDnsAAAARecord": { "type": "boolean" }, "EnableResourceNameDnsARecord": { "type": "boolean" }, "HostnameType": { "type": "string" } }, "type": "object" }, "AWS::EC2::SubnetCidrBlock": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Ipv6CidrBlock": { "type": "string" }, "SubnetId": { "type": "string" } }, "required": [ "Ipv6CidrBlock", "SubnetId" ], "type": "object" }, "Type": { "enum": [ "AWS::EC2::SubnetCidrBlock" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::EC2::SubnetNetworkAclAssociation": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "NetworkAclId": { "type": "string" }, "SubnetId": { "type": "string" } }, "required": [ "NetworkAclId", "SubnetId" ], "type": "object" }, "Type": { "enum": [ "AWS::EC2::SubnetNetworkAclAssociation" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::EC2::SubnetRouteTableAssociation": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "RouteTableId": { "type": "string" }, "SubnetId": { "type": "string" } }, "required": [ "RouteTableId", "SubnetId" ], "type": "object" }, "Type": { "enum": [ "AWS::EC2::SubnetRouteTableAssociation" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::EC2::TrafficMirrorFilter": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "NetworkServices": { "items": { "type": "string" }, "type": "array" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "type": "object" }, "Type": { "enum": [ "AWS::EC2::TrafficMirrorFilter" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::EC2::TrafficMirrorFilterRule": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "DestinationCidrBlock": { "type": "string" }, "DestinationPortRange": { "$ref": "#/definitions/AWS::EC2::TrafficMirrorFilterRule.TrafficMirrorPortRange" }, "Protocol": { "type": "number" }, "RuleAction": { "type": "string" }, "RuleNumber": { "type": "number" }, "SourceCidrBlock": { "type": "string" }, "SourcePortRange": { "$ref": "#/definitions/AWS::EC2::TrafficMirrorFilterRule.TrafficMirrorPortRange" }, "TrafficDirection": { "type": "string" }, "TrafficMirrorFilterId": { "type": "string" } }, "required": [ "DestinationCidrBlock", "RuleAction", "RuleNumber", "SourceCidrBlock", "TrafficDirection", "TrafficMirrorFilterId" ], "type": "object" }, "Type": { "enum": [ "AWS::EC2::TrafficMirrorFilterRule" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::EC2::TrafficMirrorFilterRule.TrafficMirrorPortRange": { "additionalProperties": false, "properties": { "FromPort": { "type": "number" }, "ToPort": { "type": "number" } }, "required": [ "FromPort", "ToPort" ], "type": "object" }, "AWS::EC2::TrafficMirrorSession": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "NetworkInterfaceId": { "type": "string" }, "PacketLength": { "type": "number" }, "SessionNumber": { "type": "number" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "TrafficMirrorFilterId": { "type": "string" }, "TrafficMirrorTargetId": { "type": "string" }, "VirtualNetworkId": { "type": "number" } }, "required": [ "NetworkInterfaceId", "SessionNumber", "TrafficMirrorFilterId", "TrafficMirrorTargetId" ], "type": "object" }, "Type": { "enum": [ "AWS::EC2::TrafficMirrorSession" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::EC2::TrafficMirrorTarget": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "GatewayLoadBalancerEndpointId": { "type": "string" }, "NetworkInterfaceId": { "type": "string" }, "NetworkLoadBalancerArn": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "type": "object" }, "Type": { "enum": [ "AWS::EC2::TrafficMirrorTarget" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::EC2::TransitGateway": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AmazonSideAsn": { "type": "number" }, "AssociationDefaultRouteTableId": { "type": "string" }, "AutoAcceptSharedAttachments": { "type": "string" }, "DefaultRouteTableAssociation": { "type": "string" }, "DefaultRouteTablePropagation": { "type": "string" }, "Description": { "type": "string" }, "DnsSupport": { "type": "string" }, "MulticastSupport": { "type": "string" }, "PropagationDefaultRouteTableId": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "TransitGatewayCidrBlocks": { "items": { "type": "string" }, "type": "array" }, "VpnEcmpSupport": { "type": "string" } }, "type": "object" }, "Type": { "enum": [ "AWS::EC2::TransitGateway" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::EC2::TransitGatewayAttachment": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Options": { "$ref": "#/definitions/AWS::EC2::TransitGatewayAttachment.Options" }, "SubnetIds": { "items": { "type": "string" }, "type": "array" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "TransitGatewayId": { "type": "string" }, "VpcId": { "type": "string" } }, "required": [ "SubnetIds", "TransitGatewayId", "VpcId" ], "type": "object" }, "Type": { "enum": [ "AWS::EC2::TransitGatewayAttachment" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::EC2::TransitGatewayAttachment.Options": { "additionalProperties": false, "properties": { "ApplianceModeSupport": { "type": "string" }, "DnsSupport": { "type": "string" }, "Ipv6Support": { "type": "string" } }, "type": "object" }, "AWS::EC2::TransitGatewayConnect": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Options": { "$ref": "#/definitions/AWS::EC2::TransitGatewayConnect.TransitGatewayConnectOptions" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "TransportTransitGatewayAttachmentId": { "type": "string" } }, "required": [ "Options", "TransportTransitGatewayAttachmentId" ], "type": "object" }, "Type": { "enum": [ "AWS::EC2::TransitGatewayConnect" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::EC2::TransitGatewayConnect.TransitGatewayConnectOptions": { "additionalProperties": false, "properties": { "Protocol": { "type": "string" } }, "type": "object" }, "AWS::EC2::TransitGatewayMulticastDomain": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Options": { "$ref": "#/definitions/AWS::EC2::TransitGatewayMulticastDomain.Options" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "TransitGatewayId": { "type": "string" } }, "required": [ "TransitGatewayId" ], "type": "object" }, "Type": { "enum": [ "AWS::EC2::TransitGatewayMulticastDomain" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::EC2::TransitGatewayMulticastDomain.Options": { "additionalProperties": false, "properties": { "AutoAcceptSharedAssociations": { "type": "string" }, "Igmpv2Support": { "type": "string" }, "StaticSourcesSupport": { "type": "string" } }, "type": "object" }, "AWS::EC2::TransitGatewayMulticastDomainAssociation": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "SubnetId": { "type": "string" }, "TransitGatewayAttachmentId": { "type": "string" }, "TransitGatewayMulticastDomainId": { "type": "string" } }, "required": [ "SubnetId", "TransitGatewayAttachmentId", "TransitGatewayMulticastDomainId" ], "type": "object" }, "Type": { "enum": [ "AWS::EC2::TransitGatewayMulticastDomainAssociation" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::EC2::TransitGatewayMulticastGroupMember": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "GroupIpAddress": { "type": "string" }, "NetworkInterfaceId": { "type": "string" }, "TransitGatewayMulticastDomainId": { "type": "string" } }, "required": [ "GroupIpAddress", "NetworkInterfaceId", "TransitGatewayMulticastDomainId" ], "type": "object" }, "Type": { "enum": [ "AWS::EC2::TransitGatewayMulticastGroupMember" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::EC2::TransitGatewayMulticastGroupSource": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "GroupIpAddress": { "type": "string" }, "NetworkInterfaceId": { "type": "string" }, "TransitGatewayMulticastDomainId": { "type": "string" } }, "required": [ "GroupIpAddress", "NetworkInterfaceId", "TransitGatewayMulticastDomainId" ], "type": "object" }, "Type": { "enum": [ "AWS::EC2::TransitGatewayMulticastGroupSource" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::EC2::TransitGatewayPeeringAttachment": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "PeerAccountId": { "type": "string" }, "PeerRegion": { "type": "string" }, "PeerTransitGatewayId": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "TransitGatewayId": { "type": "string" } }, "required": [ "PeerAccountId", "PeerRegion", "PeerTransitGatewayId", "TransitGatewayId" ], "type": "object" }, "Type": { "enum": [ "AWS::EC2::TransitGatewayPeeringAttachment" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::EC2::TransitGatewayPeeringAttachment.PeeringAttachmentStatus": { "additionalProperties": false, "properties": { "Code": { "type": "string" }, "Message": { "type": "string" } }, "type": "object" }, "AWS::EC2::TransitGatewayRoute": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Blackhole": { "type": "boolean" }, "DestinationCidrBlock": { "type": "string" }, "TransitGatewayAttachmentId": { "type": "string" }, "TransitGatewayRouteTableId": { "type": "string" } }, "required": [ "TransitGatewayRouteTableId" ], "type": "object" }, "Type": { "enum": [ "AWS::EC2::TransitGatewayRoute" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::EC2::TransitGatewayRouteTable": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "TransitGatewayId": { "type": "string" } }, "required": [ "TransitGatewayId" ], "type": "object" }, "Type": { "enum": [ "AWS::EC2::TransitGatewayRouteTable" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::EC2::TransitGatewayRouteTableAssociation": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "TransitGatewayAttachmentId": { "type": "string" }, "TransitGatewayRouteTableId": { "type": "string" } }, "required": [ "TransitGatewayAttachmentId", "TransitGatewayRouteTableId" ], "type": "object" }, "Type": { "enum": [ "AWS::EC2::TransitGatewayRouteTableAssociation" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::EC2::TransitGatewayRouteTablePropagation": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "TransitGatewayAttachmentId": { "type": "string" }, "TransitGatewayRouteTableId": { "type": "string" } }, "required": [ "TransitGatewayAttachmentId", "TransitGatewayRouteTableId" ], "type": "object" }, "Type": { "enum": [ "AWS::EC2::TransitGatewayRouteTablePropagation" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::EC2::TransitGatewayVpcAttachment": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AddSubnetIds": { "items": { "type": "string" }, "type": "array" }, "Options": { "$ref": "#/definitions/AWS::EC2::TransitGatewayVpcAttachment.Options" }, "RemoveSubnetIds": { "items": { "type": "string" }, "type": "array" }, "SubnetIds": { "items": { "type": "string" }, "type": "array" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "TransitGatewayId": { "type": "string" }, "VpcId": { "type": "string" } }, "required": [ "SubnetIds", "TransitGatewayId", "VpcId" ], "type": "object" }, "Type": { "enum": [ "AWS::EC2::TransitGatewayVpcAttachment" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::EC2::TransitGatewayVpcAttachment.Options": { "additionalProperties": false, "properties": { "ApplianceModeSupport": { "type": "string" }, "DnsSupport": { "type": "string" }, "Ipv6Support": { "type": "string" } }, "type": "object" }, "AWS::EC2::VPC": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "CidrBlock": { "type": "string" }, "EnableDnsHostnames": { "type": "boolean" }, "EnableDnsSupport": { "type": "boolean" }, "InstanceTenancy": { "type": "string" }, "Ipv4IpamPoolId": { "type": "string" }, "Ipv4NetmaskLength": { "type": "number" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "type": "object" }, "Type": { "enum": [ "AWS::EC2::VPC" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::EC2::VPCCidrBlock": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AmazonProvidedIpv6CidrBlock": { "type": "boolean" }, "CidrBlock": { "type": "string" }, "Ipv4IpamPoolId": { "type": "string" }, "Ipv4NetmaskLength": { "type": "number" }, "Ipv6CidrBlock": { "type": "string" }, "Ipv6IpamPoolId": { "type": "string" }, "Ipv6NetmaskLength": { "type": "number" }, "Ipv6Pool": { "type": "string" }, "VpcId": { "type": "string" } }, "required": [ "VpcId" ], "type": "object" }, "Type": { "enum": [ "AWS::EC2::VPCCidrBlock" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::EC2::VPCDHCPOptionsAssociation": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "DhcpOptionsId": { "type": "string" }, "VpcId": { "type": "string" } }, "required": [ "DhcpOptionsId", "VpcId" ], "type": "object" }, "Type": { "enum": [ "AWS::EC2::VPCDHCPOptionsAssociation" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::EC2::VPCEndpoint": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "PolicyDocument": { "type": "object" }, "PrivateDnsEnabled": { "type": "boolean" }, "RouteTableIds": { "items": { "type": "string" }, "type": "array" }, "SecurityGroupIds": { "items": { "type": "string" }, "type": "array" }, "ServiceName": { "type": "string" }, "SubnetIds": { "items": { "type": "string" }, "type": "array" }, "VpcEndpointType": { "type": "string" }, "VpcId": { "type": "string" } }, "required": [ "ServiceName", "VpcId" ], "type": "object" }, "Type": { "enum": [ "AWS::EC2::VPCEndpoint" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::EC2::VPCEndpointConnectionNotification": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ConnectionEvents": { "items": { "type": "string" }, "type": "array" }, "ConnectionNotificationArn": { "type": "string" }, "ServiceId": { "type": "string" }, "VPCEndpointId": { "type": "string" } }, "required": [ "ConnectionEvents", "ConnectionNotificationArn" ], "type": "object" }, "Type": { "enum": [ "AWS::EC2::VPCEndpointConnectionNotification" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::EC2::VPCEndpointService": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AcceptanceRequired": { "type": "boolean" }, "ContributorInsightsEnabled": { "type": "boolean" }, "GatewayLoadBalancerArns": { "items": { "type": "string" }, "type": "array" }, "NetworkLoadBalancerArns": { "items": { "type": "string" }, "type": "array" }, "PayerResponsibility": { "type": "string" } }, "type": "object" }, "Type": { "enum": [ "AWS::EC2::VPCEndpointService" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::EC2::VPCEndpointServicePermissions": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AllowedPrincipals": { "items": { "type": "string" }, "type": "array" }, "ServiceId": { "type": "string" } }, "required": [ "ServiceId" ], "type": "object" }, "Type": { "enum": [ "AWS::EC2::VPCEndpointServicePermissions" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::EC2::VPCGatewayAttachment": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "InternetGatewayId": { "type": "string" }, "VpcId": { "type": "string" }, "VpnGatewayId": { "type": "string" } }, "required": [ "VpcId" ], "type": "object" }, "Type": { "enum": [ "AWS::EC2::VPCGatewayAttachment" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::EC2::VPCPeeringConnection": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "PeerOwnerId": { "type": "string" }, "PeerRegion": { "type": "string" }, "PeerRoleArn": { "type": "string" }, "PeerVpcId": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "VpcId": { "type": "string" } }, "required": [ "PeerVpcId", "VpcId" ], "type": "object" }, "Type": { "enum": [ "AWS::EC2::VPCPeeringConnection" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::EC2::VPNConnection": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "CustomerGatewayId": { "type": "string" }, "StaticRoutesOnly": { "type": "boolean" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "TransitGatewayId": { "type": "string" }, "Type": { "type": "string" }, "VpnGatewayId": { "type": "string" }, "VpnTunnelOptionsSpecifications": { "items": { "$ref": "#/definitions/AWS::EC2::VPNConnection.VpnTunnelOptionsSpecification" }, "type": "array" } }, "required": [ "CustomerGatewayId", "Type" ], "type": "object" }, "Type": { "enum": [ "AWS::EC2::VPNConnection" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::EC2::VPNConnection.VpnTunnelOptionsSpecification": { "additionalProperties": false, "properties": { "PreSharedKey": { "type": "string" }, "TunnelInsideCidr": { "type": "string" } }, "type": "object" }, "AWS::EC2::VPNConnectionRoute": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "DestinationCidrBlock": { "type": "string" }, "VpnConnectionId": { "type": "string" } }, "required": [ "DestinationCidrBlock", "VpnConnectionId" ], "type": "object" }, "Type": { "enum": [ "AWS::EC2::VPNConnectionRoute" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::EC2::VPNGateway": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AmazonSideAsn": { "type": "number" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "Type": { "type": "string" } }, "required": [ "Type" ], "type": "object" }, "Type": { "enum": [ "AWS::EC2::VPNGateway" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::EC2::VPNGatewayRoutePropagation": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "RouteTableIds": { "items": { "type": "string" }, "type": "array" }, "VpnGatewayId": { "type": "string" } }, "required": [ "RouteTableIds", "VpnGatewayId" ], "type": "object" }, "Type": { "enum": [ "AWS::EC2::VPNGatewayRoutePropagation" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::EC2::VerifiedAccessEndpoint": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ApplicationDomain": { "type": "string" }, "AttachmentType": { "type": "string" }, "Description": { "type": "string" }, "DomainCertificateArn": { "type": "string" }, "EndpointDomainPrefix": { "type": "string" }, "EndpointType": { "type": "string" }, "LoadBalancerOptions": { "$ref": "#/definitions/AWS::EC2::VerifiedAccessEndpoint.LoadBalancerOptions" }, "NetworkInterfaceOptions": { "$ref": "#/definitions/AWS::EC2::VerifiedAccessEndpoint.NetworkInterfaceOptions" }, "PolicyDocument": { "type": "string" }, "PolicyEnabled": { "type": "boolean" }, "SecurityGroupIds": { "items": { "type": "string" }, "type": "array" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "VerifiedAccessGroupId": { "type": "string" } }, "required": [ "ApplicationDomain", "AttachmentType", "DomainCertificateArn", "EndpointDomainPrefix", "EndpointType", "VerifiedAccessGroupId" ], "type": "object" }, "Type": { "enum": [ "AWS::EC2::VerifiedAccessEndpoint" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::EC2::VerifiedAccessEndpoint.LoadBalancerOptions": { "additionalProperties": false, "properties": { "LoadBalancerArn": { "type": "string" }, "Port": { "type": "number" }, "Protocol": { "type": "string" }, "SubnetIds": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::EC2::VerifiedAccessEndpoint.NetworkInterfaceOptions": { "additionalProperties": false, "properties": { "NetworkInterfaceId": { "type": "string" }, "Port": { "type": "number" }, "Protocol": { "type": "string" } }, "type": "object" }, "AWS::EC2::VerifiedAccessGroup": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "PolicyDocument": { "type": "string" }, "PolicyEnabled": { "type": "boolean" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "VerifiedAccessInstanceId": { "type": "string" } }, "required": [ "VerifiedAccessInstanceId" ], "type": "object" }, "Type": { "enum": [ "AWS::EC2::VerifiedAccessGroup" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::EC2::VerifiedAccessInstance": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "LoggingConfigurations": { "$ref": "#/definitions/AWS::EC2::VerifiedAccessInstance.VerifiedAccessLogs" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "VerifiedAccessTrustProviderIds": { "items": { "type": "string" }, "type": "array" }, "VerifiedAccessTrustProviders": { "items": { "$ref": "#/definitions/AWS::EC2::VerifiedAccessInstance.VerifiedAccessTrustProvider" }, "type": "array" } }, "type": "object" }, "Type": { "enum": [ "AWS::EC2::VerifiedAccessInstance" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::EC2::VerifiedAccessInstance.CloudWatchLogs": { "additionalProperties": false, "properties": { "Enabled": { "type": "boolean" }, "LogGroup": { "type": "string" } }, "type": "object" }, "AWS::EC2::VerifiedAccessInstance.KinesisDataFirehose": { "additionalProperties": false, "properties": { "DeliveryStream": { "type": "string" }, "Enabled": { "type": "boolean" } }, "type": "object" }, "AWS::EC2::VerifiedAccessInstance.S3": { "additionalProperties": false, "properties": { "BucketName": { "type": "string" }, "BucketOwner": { "type": "string" }, "Enabled": { "type": "boolean" }, "Prefix": { "type": "string" } }, "type": "object" }, "AWS::EC2::VerifiedAccessInstance.VerifiedAccessLogs": { "additionalProperties": false, "properties": { "CloudWatchLogs": { "$ref": "#/definitions/AWS::EC2::VerifiedAccessInstance.CloudWatchLogs" }, "IncludeTrustContext": { "type": "boolean" }, "KinesisDataFirehose": { "$ref": "#/definitions/AWS::EC2::VerifiedAccessInstance.KinesisDataFirehose" }, "LogVersion": { "type": "string" }, "S3": { "$ref": "#/definitions/AWS::EC2::VerifiedAccessInstance.S3" } }, "type": "object" }, "AWS::EC2::VerifiedAccessInstance.VerifiedAccessTrustProvider": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "DeviceTrustProviderType": { "type": "string" }, "TrustProviderType": { "type": "string" }, "UserTrustProviderType": { "type": "string" }, "VerifiedAccessTrustProviderId": { "type": "string" } }, "type": "object" }, "AWS::EC2::VerifiedAccessTrustProvider": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "DeviceOptions": { "$ref": "#/definitions/AWS::EC2::VerifiedAccessTrustProvider.DeviceOptions" }, "DeviceTrustProviderType": { "type": "string" }, "OidcOptions": { "$ref": "#/definitions/AWS::EC2::VerifiedAccessTrustProvider.OidcOptions" }, "PolicyReferenceName": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "TrustProviderType": { "type": "string" }, "UserTrustProviderType": { "type": "string" } }, "required": [ "PolicyReferenceName", "TrustProviderType" ], "type": "object" }, "Type": { "enum": [ "AWS::EC2::VerifiedAccessTrustProvider" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::EC2::VerifiedAccessTrustProvider.DeviceOptions": { "additionalProperties": false, "properties": { "TenantId": { "type": "string" } }, "type": "object" }, "AWS::EC2::VerifiedAccessTrustProvider.OidcOptions": { "additionalProperties": false, "properties": { "AuthorizationEndpoint": { "type": "string" }, "ClientId": { "type": "string" }, "ClientSecret": { "type": "string" }, "Issuer": { "type": "string" }, "Scope": { "type": "string" }, "TokenEndpoint": { "type": "string" }, "UserInfoEndpoint": { "type": "string" } }, "type": "object" }, "AWS::EC2::Volume": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AutoEnableIO": { "type": "boolean" }, "AvailabilityZone": { "type": "string" }, "Encrypted": { "type": "boolean" }, "Iops": { "type": "number" }, "KmsKeyId": { "type": "string" }, "MultiAttachEnabled": { "type": "boolean" }, "OutpostArn": { "type": "string" }, "Size": { "type": "number" }, "SnapshotId": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "Throughput": { "type": "number" }, "VolumeType": { "type": "string" } }, "required": [ "AvailabilityZone" ], "type": "object" }, "Type": { "enum": [ "AWS::EC2::Volume" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::EC2::VolumeAttachment": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Device": { "type": "string" }, "InstanceId": { "type": "string" }, "VolumeId": { "type": "string" } }, "required": [ "InstanceId", "VolumeId" ], "type": "object" }, "Type": { "enum": [ "AWS::EC2::VolumeAttachment" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::ECR::PublicRepository": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "RepositoryCatalogData": { "$ref": "#/definitions/AWS::ECR::PublicRepository.RepositoryCatalogData" }, "RepositoryName": { "type": "string" }, "RepositoryPolicyText": { "type": "object" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "type": "object" }, "Type": { "enum": [ "AWS::ECR::PublicRepository" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::ECR::PublicRepository.RepositoryCatalogData": { "additionalProperties": false, "properties": { "AboutText": { "type": "string" }, "Architectures": { "items": { "type": "string" }, "type": "array" }, "OperatingSystems": { "items": { "type": "string" }, "type": "array" }, "RepositoryDescription": { "type": "string" }, "UsageText": { "type": "string" } }, "type": "object" }, "AWS::ECR::PullThroughCacheRule": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "EcrRepositoryPrefix": { "type": "string" }, "UpstreamRegistryUrl": { "type": "string" } }, "type": "object" }, "Type": { "enum": [ "AWS::ECR::PullThroughCacheRule" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::ECR::RegistryPolicy": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "PolicyText": { "type": "object" } }, "required": [ "PolicyText" ], "type": "object" }, "Type": { "enum": [ "AWS::ECR::RegistryPolicy" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::ECR::ReplicationConfiguration": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ReplicationConfiguration": { "$ref": "#/definitions/AWS::ECR::ReplicationConfiguration.ReplicationConfiguration" } }, "required": [ "ReplicationConfiguration" ], "type": "object" }, "Type": { "enum": [ "AWS::ECR::ReplicationConfiguration" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::ECR::ReplicationConfiguration.ReplicationConfiguration": { "additionalProperties": false, "properties": { "Rules": { "items": { "$ref": "#/definitions/AWS::ECR::ReplicationConfiguration.ReplicationRule" }, "type": "array" } }, "required": [ "Rules" ], "type": "object" }, "AWS::ECR::ReplicationConfiguration.ReplicationDestination": { "additionalProperties": false, "properties": { "Region": { "type": "string" }, "RegistryId": { "type": "string" } }, "required": [ "Region", "RegistryId" ], "type": "object" }, "AWS::ECR::ReplicationConfiguration.ReplicationRule": { "additionalProperties": false, "properties": { "Destinations": { "items": { "$ref": "#/definitions/AWS::ECR::ReplicationConfiguration.ReplicationDestination" }, "type": "array" }, "RepositoryFilters": { "items": { "$ref": "#/definitions/AWS::ECR::ReplicationConfiguration.RepositoryFilter" }, "type": "array" } }, "required": [ "Destinations" ], "type": "object" }, "AWS::ECR::ReplicationConfiguration.RepositoryFilter": { "additionalProperties": false, "properties": { "Filter": { "type": "string" }, "FilterType": { "type": "string" } }, "required": [ "Filter", "FilterType" ], "type": "object" }, "AWS::ECR::Repository": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "EmptyOnDelete": { "type": "boolean" }, "EncryptionConfiguration": { "$ref": "#/definitions/AWS::ECR::Repository.EncryptionConfiguration" }, "ImageScanningConfiguration": { "$ref": "#/definitions/AWS::ECR::Repository.ImageScanningConfiguration" }, "ImageTagMutability": { "type": "string" }, "LifecyclePolicy": { "$ref": "#/definitions/AWS::ECR::Repository.LifecyclePolicy" }, "RepositoryName": { "type": "string" }, "RepositoryPolicyText": { "type": "object" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "type": "object" }, "Type": { "enum": [ "AWS::ECR::Repository" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::ECR::Repository.EncryptionConfiguration": { "additionalProperties": false, "properties": { "EncryptionType": { "type": "string" }, "KmsKey": { "type": "string" } }, "required": [ "EncryptionType" ], "type": "object" }, "AWS::ECR::Repository.ImageScanningConfiguration": { "additionalProperties": false, "properties": { "ScanOnPush": { "type": "boolean" } }, "type": "object" }, "AWS::ECR::Repository.LifecyclePolicy": { "additionalProperties": false, "properties": { "LifecyclePolicyText": { "type": "string" }, "RegistryId": { "type": "string" } }, "type": "object" }, "AWS::ECS::CapacityProvider": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AutoScalingGroupProvider": { "$ref": "#/definitions/AWS::ECS::CapacityProvider.AutoScalingGroupProvider" }, "Name": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "AutoScalingGroupProvider" ], "type": "object" }, "Type": { "enum": [ "AWS::ECS::CapacityProvider" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::ECS::CapacityProvider.AutoScalingGroupProvider": { "additionalProperties": false, "properties": { "AutoScalingGroupArn": { "type": "string" }, "ManagedScaling": { "$ref": "#/definitions/AWS::ECS::CapacityProvider.ManagedScaling" }, "ManagedTerminationProtection": { "type": "string" } }, "required": [ "AutoScalingGroupArn" ], "type": "object" }, "AWS::ECS::CapacityProvider.ManagedScaling": { "additionalProperties": false, "properties": { "InstanceWarmupPeriod": { "type": "number" }, "MaximumScalingStepSize": { "type": "number" }, "MinimumScalingStepSize": { "type": "number" }, "Status": { "type": "string" }, "TargetCapacity": { "type": "number" } }, "type": "object" }, "AWS::ECS::Cluster": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "CapacityProviders": { "items": { "type": "string" }, "type": "array" }, "ClusterName": { "type": "string" }, "ClusterSettings": { "items": { "$ref": "#/definitions/AWS::ECS::Cluster.ClusterSettings" }, "type": "array" }, "Configuration": { "$ref": "#/definitions/AWS::ECS::Cluster.ClusterConfiguration" }, "DefaultCapacityProviderStrategy": { "items": { "$ref": "#/definitions/AWS::ECS::Cluster.CapacityProviderStrategyItem" }, "type": "array" }, "ServiceConnectDefaults": { "$ref": "#/definitions/AWS::ECS::Cluster.ServiceConnectDefaults" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "type": "object" }, "Type": { "enum": [ "AWS::ECS::Cluster" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::ECS::Cluster.CapacityProviderStrategyItem": { "additionalProperties": false, "properties": { "Base": { "type": "number" }, "CapacityProvider": { "type": "string" }, "Weight": { "type": "number" } }, "type": "object" }, "AWS::ECS::Cluster.ClusterConfiguration": { "additionalProperties": false, "properties": { "ExecuteCommandConfiguration": { "$ref": "#/definitions/AWS::ECS::Cluster.ExecuteCommandConfiguration" } }, "type": "object" }, "AWS::ECS::Cluster.ClusterSettings": { "additionalProperties": false, "properties": { "Name": { "type": "string" }, "Value": { "type": "string" } }, "type": "object" }, "AWS::ECS::Cluster.ExecuteCommandConfiguration": { "additionalProperties": false, "properties": { "KmsKeyId": { "type": "string" }, "LogConfiguration": { "$ref": "#/definitions/AWS::ECS::Cluster.ExecuteCommandLogConfiguration" }, "Logging": { "type": "string" } }, "type": "object" }, "AWS::ECS::Cluster.ExecuteCommandLogConfiguration": { "additionalProperties": false, "properties": { "CloudWatchEncryptionEnabled": { "type": "boolean" }, "CloudWatchLogGroupName": { "type": "string" }, "S3BucketName": { "type": "string" }, "S3EncryptionEnabled": { "type": "boolean" }, "S3KeyPrefix": { "type": "string" } }, "type": "object" }, "AWS::ECS::Cluster.ServiceConnectDefaults": { "additionalProperties": false, "properties": { "Namespace": { "type": "string" } }, "type": "object" }, "AWS::ECS::ClusterCapacityProviderAssociations": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "CapacityProviders": { "items": { "type": "string" }, "type": "array" }, "Cluster": { "type": "string" }, "DefaultCapacityProviderStrategy": { "items": { "$ref": "#/definitions/AWS::ECS::ClusterCapacityProviderAssociations.CapacityProviderStrategy" }, "type": "array" } }, "required": [ "CapacityProviders", "Cluster", "DefaultCapacityProviderStrategy" ], "type": "object" }, "Type": { "enum": [ "AWS::ECS::ClusterCapacityProviderAssociations" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::ECS::ClusterCapacityProviderAssociations.CapacityProviderStrategy": { "additionalProperties": false, "properties": { "Base": { "type": "number" }, "CapacityProvider": { "type": "string" }, "Weight": { "type": "number" } }, "required": [ "CapacityProvider" ], "type": "object" }, "AWS::ECS::PrimaryTaskSet": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Cluster": { "type": "string" }, "Service": { "type": "string" }, "TaskSetId": { "type": "string" } }, "required": [ "Cluster", "Service", "TaskSetId" ], "type": "object" }, "Type": { "enum": [ "AWS::ECS::PrimaryTaskSet" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::ECS::Service": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "CapacityProviderStrategy": { "items": { "$ref": "#/definitions/AWS::ECS::Service.CapacityProviderStrategyItem" }, "type": "array" }, "Cluster": { "type": "string" }, "DeploymentConfiguration": { "$ref": "#/definitions/AWS::ECS::Service.DeploymentConfiguration" }, "DeploymentController": { "$ref": "#/definitions/AWS::ECS::Service.DeploymentController" }, "DesiredCount": { "type": "number" }, "EnableECSManagedTags": { "type": "boolean" }, "EnableExecuteCommand": { "type": "boolean" }, "HealthCheckGracePeriodSeconds": { "type": "number" }, "LaunchType": { "type": "string" }, "LoadBalancers": { "items": { "$ref": "#/definitions/AWS::ECS::Service.LoadBalancer" }, "type": "array" }, "NetworkConfiguration": { "$ref": "#/definitions/AWS::ECS::Service.NetworkConfiguration" }, "PlacementConstraints": { "items": { "$ref": "#/definitions/AWS::ECS::Service.PlacementConstraint" }, "type": "array" }, "PlacementStrategies": { "items": { "$ref": "#/definitions/AWS::ECS::Service.PlacementStrategy" }, "type": "array" }, "PlatformVersion": { "type": "string" }, "PropagateTags": { "type": "string" }, "Role": { "type": "string" }, "SchedulingStrategy": { "type": "string" }, "ServiceConnectConfiguration": { "$ref": "#/definitions/AWS::ECS::Service.ServiceConnectConfiguration" }, "ServiceName": { "type": "string" }, "ServiceRegistries": { "items": { "$ref": "#/definitions/AWS::ECS::Service.ServiceRegistry" }, "type": "array" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "TaskDefinition": { "type": "string" } }, "type": "object" }, "Type": { "enum": [ "AWS::ECS::Service" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::ECS::Service.AwsVpcConfiguration": { "additionalProperties": false, "properties": { "AssignPublicIp": { "type": "string" }, "SecurityGroups": { "items": { "type": "string" }, "type": "array" }, "Subnets": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::ECS::Service.CapacityProviderStrategyItem": { "additionalProperties": false, "properties": { "Base": { "type": "number" }, "CapacityProvider": { "type": "string" }, "Weight": { "type": "number" } }, "type": "object" }, "AWS::ECS::Service.DeploymentAlarms": { "additionalProperties": false, "properties": { "AlarmNames": { "items": { "type": "string" }, "type": "array" }, "Enable": { "type": "boolean" }, "Rollback": { "type": "boolean" } }, "required": [ "AlarmNames", "Enable", "Rollback" ], "type": "object" }, "AWS::ECS::Service.DeploymentCircuitBreaker": { "additionalProperties": false, "properties": { "Enable": { "type": "boolean" }, "Rollback": { "type": "boolean" } }, "required": [ "Enable", "Rollback" ], "type": "object" }, "AWS::ECS::Service.DeploymentConfiguration": { "additionalProperties": false, "properties": { "Alarms": { "$ref": "#/definitions/AWS::ECS::Service.DeploymentAlarms" }, "DeploymentCircuitBreaker": { "$ref": "#/definitions/AWS::ECS::Service.DeploymentCircuitBreaker" }, "MaximumPercent": { "type": "number" }, "MinimumHealthyPercent": { "type": "number" } }, "type": "object" }, "AWS::ECS::Service.DeploymentController": { "additionalProperties": false, "properties": { "Type": { "type": "string" } }, "type": "object" }, "AWS::ECS::Service.LoadBalancer": { "additionalProperties": false, "properties": { "ContainerName": { "type": "string" }, "ContainerPort": { "type": "number" }, "LoadBalancerName": { "type": "string" }, "TargetGroupArn": { "type": "string" } }, "type": "object" }, "AWS::ECS::Service.LogConfiguration": { "additionalProperties": false, "properties": { "LogDriver": { "type": "string" }, "Options": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" }, "SecretOptions": { "items": { "$ref": "#/definitions/AWS::ECS::Service.Secret" }, "type": "array" } }, "type": "object" }, "AWS::ECS::Service.NetworkConfiguration": { "additionalProperties": false, "properties": { "AwsvpcConfiguration": { "$ref": "#/definitions/AWS::ECS::Service.AwsVpcConfiguration" } }, "type": "object" }, "AWS::ECS::Service.PlacementConstraint": { "additionalProperties": false, "properties": { "Expression": { "type": "string" }, "Type": { "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::ECS::Service.PlacementStrategy": { "additionalProperties": false, "properties": { "Field": { "type": "string" }, "Type": { "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::ECS::Service.Secret": { "additionalProperties": false, "properties": { "Name": { "type": "string" }, "ValueFrom": { "type": "string" } }, "required": [ "Name", "ValueFrom" ], "type": "object" }, "AWS::ECS::Service.ServiceConnectClientAlias": { "additionalProperties": false, "properties": { "DnsName": { "type": "string" }, "Port": { "type": "number" } }, "required": [ "Port" ], "type": "object" }, "AWS::ECS::Service.ServiceConnectConfiguration": { "additionalProperties": false, "properties": { "Enabled": { "type": "boolean" }, "LogConfiguration": { "$ref": "#/definitions/AWS::ECS::Service.LogConfiguration" }, "Namespace": { "type": "string" }, "Services": { "items": { "$ref": "#/definitions/AWS::ECS::Service.ServiceConnectService" }, "type": "array" } }, "required": [ "Enabled" ], "type": "object" }, "AWS::ECS::Service.ServiceConnectService": { "additionalProperties": false, "properties": { "ClientAliases": { "items": { "$ref": "#/definitions/AWS::ECS::Service.ServiceConnectClientAlias" }, "type": "array" }, "DiscoveryName": { "type": "string" }, "IngressPortOverride": { "type": "number" }, "PortName": { "type": "string" } }, "required": [ "PortName" ], "type": "object" }, "AWS::ECS::Service.ServiceRegistry": { "additionalProperties": false, "properties": { "ContainerName": { "type": "string" }, "ContainerPort": { "type": "number" }, "Port": { "type": "number" }, "RegistryArn": { "type": "string" } }, "type": "object" }, "AWS::ECS::TaskDefinition": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ContainerDefinitions": { "items": { "$ref": "#/definitions/AWS::ECS::TaskDefinition.ContainerDefinition" }, "type": "array" }, "Cpu": { "type": "string" }, "EphemeralStorage": { "$ref": "#/definitions/AWS::ECS::TaskDefinition.EphemeralStorage" }, "ExecutionRoleArn": { "type": "string" }, "Family": { "type": "string" }, "InferenceAccelerators": { "items": { "$ref": "#/definitions/AWS::ECS::TaskDefinition.InferenceAccelerator" }, "type": "array" }, "IpcMode": { "type": "string" }, "Memory": { "type": "string" }, "NetworkMode": { "type": "string" }, "PidMode": { "type": "string" }, "PlacementConstraints": { "items": { "$ref": "#/definitions/AWS::ECS::TaskDefinition.TaskDefinitionPlacementConstraint" }, "type": "array" }, "ProxyConfiguration": { "$ref": "#/definitions/AWS::ECS::TaskDefinition.ProxyConfiguration" }, "RequiresCompatibilities": { "items": { "type": "string" }, "type": "array" }, "RuntimePlatform": { "$ref": "#/definitions/AWS::ECS::TaskDefinition.RuntimePlatform" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "TaskRoleArn": { "type": "string" }, "Volumes": { "items": { "$ref": "#/definitions/AWS::ECS::TaskDefinition.Volume" }, "type": "array" } }, "type": "object" }, "Type": { "enum": [ "AWS::ECS::TaskDefinition" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::ECS::TaskDefinition.AuthorizationConfig": { "additionalProperties": false, "properties": { "AccessPointId": { "type": "string" }, "IAM": { "type": "string" } }, "type": "object" }, "AWS::ECS::TaskDefinition.ContainerDefinition": { "additionalProperties": false, "properties": { "Command": { "items": { "type": "string" }, "type": "array" }, "Cpu": { "type": "number" }, "DependsOn": { "items": { "$ref": "#/definitions/AWS::ECS::TaskDefinition.ContainerDependency" }, "type": "array" }, "DisableNetworking": { "type": "boolean" }, "DnsSearchDomains": { "items": { "type": "string" }, "type": "array" }, "DnsServers": { "items": { "type": "string" }, "type": "array" }, "DockerLabels": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" }, "DockerSecurityOptions": { "items": { "type": "string" }, "type": "array" }, "EntryPoint": { "items": { "type": "string" }, "type": "array" }, "Environment": { "items": { "$ref": "#/definitions/AWS::ECS::TaskDefinition.KeyValuePair" }, "type": "array" }, "EnvironmentFiles": { "items": { "$ref": "#/definitions/AWS::ECS::TaskDefinition.EnvironmentFile" }, "type": "array" }, "Essential": { "type": "boolean" }, "ExtraHosts": { "items": { "$ref": "#/definitions/AWS::ECS::TaskDefinition.HostEntry" }, "type": "array" }, "FirelensConfiguration": { "$ref": "#/definitions/AWS::ECS::TaskDefinition.FirelensConfiguration" }, "HealthCheck": { "$ref": "#/definitions/AWS::ECS::TaskDefinition.HealthCheck" }, "Hostname": { "type": "string" }, "Image": { "type": "string" }, "Interactive": { "type": "boolean" }, "Links": { "items": { "type": "string" }, "type": "array" }, "LinuxParameters": { "$ref": "#/definitions/AWS::ECS::TaskDefinition.LinuxParameters" }, "LogConfiguration": { "$ref": "#/definitions/AWS::ECS::TaskDefinition.LogConfiguration" }, "Memory": { "type": "number" }, "MemoryReservation": { "type": "number" }, "MountPoints": { "items": { "$ref": "#/definitions/AWS::ECS::TaskDefinition.MountPoint" }, "type": "array" }, "Name": { "type": "string" }, "PortMappings": { "items": { "$ref": "#/definitions/AWS::ECS::TaskDefinition.PortMapping" }, "type": "array" }, "Privileged": { "type": "boolean" }, "PseudoTerminal": { "type": "boolean" }, "ReadonlyRootFilesystem": { "type": "boolean" }, "RepositoryCredentials": { "$ref": "#/definitions/AWS::ECS::TaskDefinition.RepositoryCredentials" }, "ResourceRequirements": { "items": { "$ref": "#/definitions/AWS::ECS::TaskDefinition.ResourceRequirement" }, "type": "array" }, "Secrets": { "items": { "$ref": "#/definitions/AWS::ECS::TaskDefinition.Secret" }, "type": "array" }, "StartTimeout": { "type": "number" }, "StopTimeout": { "type": "number" }, "SystemControls": { "items": { "$ref": "#/definitions/AWS::ECS::TaskDefinition.SystemControl" }, "type": "array" }, "Ulimits": { "items": { "$ref": "#/definitions/AWS::ECS::TaskDefinition.Ulimit" }, "type": "array" }, "User": { "type": "string" }, "VolumesFrom": { "items": { "$ref": "#/definitions/AWS::ECS::TaskDefinition.VolumeFrom" }, "type": "array" }, "WorkingDirectory": { "type": "string" } }, "required": [ "Image", "Name" ], "type": "object" }, "AWS::ECS::TaskDefinition.ContainerDependency": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "ContainerName": { "type": "string" } }, "type": "object" }, "AWS::ECS::TaskDefinition.Device": { "additionalProperties": false, "properties": { "ContainerPath": { "type": "string" }, "HostPath": { "type": "string" }, "Permissions": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::ECS::TaskDefinition.DockerVolumeConfiguration": { "additionalProperties": false, "properties": { "Autoprovision": { "type": "boolean" }, "Driver": { "type": "string" }, "DriverOpts": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" }, "Labels": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" }, "Scope": { "type": "string" } }, "type": "object" }, "AWS::ECS::TaskDefinition.EFSVolumeConfiguration": { "additionalProperties": false, "properties": { "AuthorizationConfig": { "$ref": "#/definitions/AWS::ECS::TaskDefinition.AuthorizationConfig" }, "FilesystemId": { "type": "string" }, "RootDirectory": { "type": "string" }, "TransitEncryption": { "type": "string" }, "TransitEncryptionPort": { "type": "number" } }, "required": [ "FilesystemId" ], "type": "object" }, "AWS::ECS::TaskDefinition.EnvironmentFile": { "additionalProperties": false, "properties": { "Type": { "type": "string" }, "Value": { "type": "string" } }, "type": "object" }, "AWS::ECS::TaskDefinition.EphemeralStorage": { "additionalProperties": false, "properties": { "SizeInGiB": { "type": "number" } }, "type": "object" }, "AWS::ECS::TaskDefinition.FirelensConfiguration": { "additionalProperties": false, "properties": { "Options": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" }, "Type": { "type": "string" } }, "type": "object" }, "AWS::ECS::TaskDefinition.HealthCheck": { "additionalProperties": false, "properties": { "Command": { "items": { "type": "string" }, "type": "array" }, "Interval": { "type": "number" }, "Retries": { "type": "number" }, "StartPeriod": { "type": "number" }, "Timeout": { "type": "number" } }, "type": "object" }, "AWS::ECS::TaskDefinition.HostEntry": { "additionalProperties": false, "properties": { "Hostname": { "type": "string" }, "IpAddress": { "type": "string" } }, "type": "object" }, "AWS::ECS::TaskDefinition.HostVolumeProperties": { "additionalProperties": false, "properties": { "SourcePath": { "type": "string" } }, "type": "object" }, "AWS::ECS::TaskDefinition.InferenceAccelerator": { "additionalProperties": false, "properties": { "DeviceName": { "type": "string" }, "DeviceType": { "type": "string" } }, "type": "object" }, "AWS::ECS::TaskDefinition.KernelCapabilities": { "additionalProperties": false, "properties": { "Add": { "items": { "type": "string" }, "type": "array" }, "Drop": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::ECS::TaskDefinition.KeyValuePair": { "additionalProperties": false, "properties": { "Name": { "type": "string" }, "Value": { "type": "string" } }, "type": "object" }, "AWS::ECS::TaskDefinition.LinuxParameters": { "additionalProperties": false, "properties": { "Capabilities": { "$ref": "#/definitions/AWS::ECS::TaskDefinition.KernelCapabilities" }, "Devices": { "items": { "$ref": "#/definitions/AWS::ECS::TaskDefinition.Device" }, "type": "array" }, "InitProcessEnabled": { "type": "boolean" }, "MaxSwap": { "type": "number" }, "SharedMemorySize": { "type": "number" }, "Swappiness": { "type": "number" }, "Tmpfs": { "items": { "$ref": "#/definitions/AWS::ECS::TaskDefinition.Tmpfs" }, "type": "array" } }, "type": "object" }, "AWS::ECS::TaskDefinition.LogConfiguration": { "additionalProperties": false, "properties": { "LogDriver": { "type": "string" }, "Options": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" }, "SecretOptions": { "items": { "$ref": "#/definitions/AWS::ECS::TaskDefinition.Secret" }, "type": "array" } }, "required": [ "LogDriver" ], "type": "object" }, "AWS::ECS::TaskDefinition.MountPoint": { "additionalProperties": false, "properties": { "ContainerPath": { "type": "string" }, "ReadOnly": { "type": "boolean" }, "SourceVolume": { "type": "string" } }, "type": "object" }, "AWS::ECS::TaskDefinition.PortMapping": { "additionalProperties": false, "properties": { "AppProtocol": { "type": "string" }, "ContainerPort": { "type": "number" }, "ContainerPortRange": { "type": "string" }, "HostPort": { "type": "number" }, "Name": { "type": "string" }, "Protocol": { "type": "string" } }, "type": "object" }, "AWS::ECS::TaskDefinition.ProxyConfiguration": { "additionalProperties": false, "properties": { "ContainerName": { "type": "string" }, "ProxyConfigurationProperties": { "items": { "$ref": "#/definitions/AWS::ECS::TaskDefinition.KeyValuePair" }, "type": "array" }, "Type": { "type": "string" } }, "required": [ "ContainerName" ], "type": "object" }, "AWS::ECS::TaskDefinition.RepositoryCredentials": { "additionalProperties": false, "properties": { "CredentialsParameter": { "type": "string" } }, "type": "object" }, "AWS::ECS::TaskDefinition.ResourceRequirement": { "additionalProperties": false, "properties": { "Type": { "type": "string" }, "Value": { "type": "string" } }, "required": [ "Type", "Value" ], "type": "object" }, "AWS::ECS::TaskDefinition.RuntimePlatform": { "additionalProperties": false, "properties": { "CpuArchitecture": { "type": "string" }, "OperatingSystemFamily": { "type": "string" } }, "type": "object" }, "AWS::ECS::TaskDefinition.Secret": { "additionalProperties": false, "properties": { "Name": { "type": "string" }, "ValueFrom": { "type": "string" } }, "required": [ "Name", "ValueFrom" ], "type": "object" }, "AWS::ECS::TaskDefinition.SystemControl": { "additionalProperties": false, "properties": { "Namespace": { "type": "string" }, "Value": { "type": "string" } }, "type": "object" }, "AWS::ECS::TaskDefinition.TaskDefinitionPlacementConstraint": { "additionalProperties": false, "properties": { "Expression": { "type": "string" }, "Type": { "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::ECS::TaskDefinition.Tmpfs": { "additionalProperties": false, "properties": { "ContainerPath": { "type": "string" }, "MountOptions": { "items": { "type": "string" }, "type": "array" }, "Size": { "type": "number" } }, "required": [ "Size" ], "type": "object" }, "AWS::ECS::TaskDefinition.Ulimit": { "additionalProperties": false, "properties": { "HardLimit": { "type": "number" }, "Name": { "type": "string" }, "SoftLimit": { "type": "number" } }, "required": [ "HardLimit", "Name", "SoftLimit" ], "type": "object" }, "AWS::ECS::TaskDefinition.Volume": { "additionalProperties": false, "properties": { "DockerVolumeConfiguration": { "$ref": "#/definitions/AWS::ECS::TaskDefinition.DockerVolumeConfiguration" }, "EFSVolumeConfiguration": { "$ref": "#/definitions/AWS::ECS::TaskDefinition.EFSVolumeConfiguration" }, "Host": { "$ref": "#/definitions/AWS::ECS::TaskDefinition.HostVolumeProperties" }, "Name": { "type": "string" } }, "type": "object" }, "AWS::ECS::TaskDefinition.VolumeFrom": { "additionalProperties": false, "properties": { "ReadOnly": { "type": "boolean" }, "SourceContainer": { "type": "string" } }, "type": "object" }, "AWS::ECS::TaskSet": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Cluster": { "type": "string" }, "ExternalId": { "type": "string" }, "LaunchType": { "type": "string" }, "LoadBalancers": { "items": { "$ref": "#/definitions/AWS::ECS::TaskSet.LoadBalancer" }, "type": "array" }, "NetworkConfiguration": { "$ref": "#/definitions/AWS::ECS::TaskSet.NetworkConfiguration" }, "PlatformVersion": { "type": "string" }, "Scale": { "$ref": "#/definitions/AWS::ECS::TaskSet.Scale" }, "Service": { "type": "string" }, "ServiceRegistries": { "items": { "$ref": "#/definitions/AWS::ECS::TaskSet.ServiceRegistry" }, "type": "array" }, "TaskDefinition": { "type": "string" } }, "required": [ "Cluster", "Service", "TaskDefinition" ], "type": "object" }, "Type": { "enum": [ "AWS::ECS::TaskSet" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::ECS::TaskSet.AwsVpcConfiguration": { "additionalProperties": false, "properties": { "AssignPublicIp": { "type": "string" }, "SecurityGroups": { "items": { "type": "string" }, "type": "array" }, "Subnets": { "items": { "type": "string" }, "type": "array" } }, "required": [ "Subnets" ], "type": "object" }, "AWS::ECS::TaskSet.LoadBalancer": { "additionalProperties": false, "properties": { "ContainerName": { "type": "string" }, "ContainerPort": { "type": "number" }, "TargetGroupArn": { "type": "string" } }, "type": "object" }, "AWS::ECS::TaskSet.NetworkConfiguration": { "additionalProperties": false, "properties": { "AwsVpcConfiguration": { "$ref": "#/definitions/AWS::ECS::TaskSet.AwsVpcConfiguration" } }, "type": "object" }, "AWS::ECS::TaskSet.Scale": { "additionalProperties": false, "properties": { "Unit": { "type": "string" }, "Value": { "type": "number" } }, "type": "object" }, "AWS::ECS::TaskSet.ServiceRegistry": { "additionalProperties": false, "properties": { "ContainerName": { "type": "string" }, "ContainerPort": { "type": "number" }, "Port": { "type": "number" }, "RegistryArn": { "type": "string" } }, "type": "object" }, "AWS::EFS::AccessPoint": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AccessPointTags": { "items": { "$ref": "#/definitions/AWS::EFS::AccessPoint.AccessPointTag" }, "type": "array" }, "ClientToken": { "type": "string" }, "FileSystemId": { "type": "string" }, "PosixUser": { "$ref": "#/definitions/AWS::EFS::AccessPoint.PosixUser" }, "RootDirectory": { "$ref": "#/definitions/AWS::EFS::AccessPoint.RootDirectory" } }, "required": [ "FileSystemId" ], "type": "object" }, "Type": { "enum": [ "AWS::EFS::AccessPoint" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::EFS::AccessPoint.AccessPointTag": { "additionalProperties": false, "properties": { "Key": { "type": "string" }, "Value": { "type": "string" } }, "type": "object" }, "AWS::EFS::AccessPoint.CreationInfo": { "additionalProperties": false, "properties": { "OwnerGid": { "type": "string" }, "OwnerUid": { "type": "string" }, "Permissions": { "type": "string" } }, "required": [ "OwnerGid", "OwnerUid", "Permissions" ], "type": "object" }, "AWS::EFS::AccessPoint.PosixUser": { "additionalProperties": false, "properties": { "Gid": { "type": "string" }, "SecondaryGids": { "items": { "type": "string" }, "type": "array" }, "Uid": { "type": "string" } }, "required": [ "Gid", "Uid" ], "type": "object" }, "AWS::EFS::AccessPoint.RootDirectory": { "additionalProperties": false, "properties": { "CreationInfo": { "$ref": "#/definitions/AWS::EFS::AccessPoint.CreationInfo" }, "Path": { "type": "string" } }, "type": "object" }, "AWS::EFS::FileSystem": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AvailabilityZoneName": { "type": "string" }, "BackupPolicy": { "$ref": "#/definitions/AWS::EFS::FileSystem.BackupPolicy" }, "BypassPolicyLockoutSafetyCheck": { "type": "boolean" }, "Encrypted": { "type": "boolean" }, "FileSystemPolicy": { "type": "object" }, "FileSystemTags": { "items": { "$ref": "#/definitions/AWS::EFS::FileSystem.ElasticFileSystemTag" }, "type": "array" }, "KmsKeyId": { "type": "string" }, "LifecyclePolicies": { "items": { "$ref": "#/definitions/AWS::EFS::FileSystem.LifecyclePolicy" }, "type": "array" }, "PerformanceMode": { "type": "string" }, "ProvisionedThroughputInMibps": { "type": "number" }, "ThroughputMode": { "type": "string" } }, "type": "object" }, "Type": { "enum": [ "AWS::EFS::FileSystem" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::EFS::FileSystem.BackupPolicy": { "additionalProperties": false, "properties": { "Status": { "type": "string" } }, "required": [ "Status" ], "type": "object" }, "AWS::EFS::FileSystem.ElasticFileSystemTag": { "additionalProperties": false, "properties": { "Key": { "type": "string" }, "Value": { "type": "string" } }, "required": [ "Key", "Value" ], "type": "object" }, "AWS::EFS::FileSystem.LifecyclePolicy": { "additionalProperties": false, "properties": { "TransitionToIA": { "type": "string" }, "TransitionToPrimaryStorageClass": { "type": "string" } }, "type": "object" }, "AWS::EFS::MountTarget": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "FileSystemId": { "type": "string" }, "IpAddress": { "type": "string" }, "SecurityGroups": { "items": { "type": "string" }, "type": "array" }, "SubnetId": { "type": "string" } }, "required": [ "FileSystemId", "SecurityGroups", "SubnetId" ], "type": "object" }, "Type": { "enum": [ "AWS::EFS::MountTarget" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::EKS::Addon": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AddonName": { "type": "string" }, "AddonVersion": { "type": "string" }, "ClusterName": { "type": "string" }, "ConfigurationValues": { "type": "string" }, "PreserveOnDelete": { "type": "boolean" }, "ResolveConflicts": { "type": "string" }, "ServiceAccountRoleArn": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "AddonName", "ClusterName" ], "type": "object" }, "Type": { "enum": [ "AWS::EKS::Addon" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::EKS::Cluster": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "EncryptionConfig": { "items": { "$ref": "#/definitions/AWS::EKS::Cluster.EncryptionConfig" }, "type": "array" }, "KubernetesNetworkConfig": { "$ref": "#/definitions/AWS::EKS::Cluster.KubernetesNetworkConfig" }, "Logging": { "$ref": "#/definitions/AWS::EKS::Cluster.Logging" }, "Name": { "type": "string" }, "OutpostConfig": { "$ref": "#/definitions/AWS::EKS::Cluster.OutpostConfig" }, "ResourcesVpcConfig": { "$ref": "#/definitions/AWS::EKS::Cluster.ResourcesVpcConfig" }, "RoleArn": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "Version": { "type": "string" } }, "required": [ "ResourcesVpcConfig", "RoleArn" ], "type": "object" }, "Type": { "enum": [ "AWS::EKS::Cluster" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::EKS::Cluster.ClusterLogging": { "additionalProperties": false, "properties": { "EnabledTypes": { "items": { "$ref": "#/definitions/AWS::EKS::Cluster.LoggingTypeConfig" }, "type": "array" } }, "type": "object" }, "AWS::EKS::Cluster.ControlPlanePlacement": { "additionalProperties": false, "properties": { "GroupName": { "type": "string" } }, "type": "object" }, "AWS::EKS::Cluster.EncryptionConfig": { "additionalProperties": false, "properties": { "Provider": { "$ref": "#/definitions/AWS::EKS::Cluster.Provider" }, "Resources": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::EKS::Cluster.KubernetesNetworkConfig": { "additionalProperties": false, "properties": { "IpFamily": { "type": "string" }, "ServiceIpv4Cidr": { "type": "string" }, "ServiceIpv6Cidr": { "type": "string" } }, "type": "object" }, "AWS::EKS::Cluster.Logging": { "additionalProperties": false, "properties": { "ClusterLogging": { "$ref": "#/definitions/AWS::EKS::Cluster.ClusterLogging" } }, "type": "object" }, "AWS::EKS::Cluster.LoggingTypeConfig": { "additionalProperties": false, "properties": { "Type": { "type": "string" } }, "type": "object" }, "AWS::EKS::Cluster.OutpostConfig": { "additionalProperties": false, "properties": { "ControlPlaneInstanceType": { "type": "string" }, "ControlPlanePlacement": { "$ref": "#/definitions/AWS::EKS::Cluster.ControlPlanePlacement" }, "OutpostArns": { "items": { "type": "string" }, "type": "array" } }, "required": [ "ControlPlaneInstanceType", "OutpostArns" ], "type": "object" }, "AWS::EKS::Cluster.Provider": { "additionalProperties": false, "properties": { "KeyArn": { "type": "string" } }, "type": "object" }, "AWS::EKS::Cluster.ResourcesVpcConfig": { "additionalProperties": false, "properties": { "EndpointPrivateAccess": { "type": "boolean" }, "EndpointPublicAccess": { "type": "boolean" }, "PublicAccessCidrs": { "items": { "type": "string" }, "type": "array" }, "SecurityGroupIds": { "items": { "type": "string" }, "type": "array" }, "SubnetIds": { "items": { "type": "string" }, "type": "array" } }, "required": [ "SubnetIds" ], "type": "object" }, "AWS::EKS::FargateProfile": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ClusterName": { "type": "string" }, "FargateProfileName": { "type": "string" }, "PodExecutionRoleArn": { "type": "string" }, "Selectors": { "items": { "$ref": "#/definitions/AWS::EKS::FargateProfile.Selector" }, "type": "array" }, "Subnets": { "items": { "type": "string" }, "type": "array" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "ClusterName", "PodExecutionRoleArn", "Selectors" ], "type": "object" }, "Type": { "enum": [ "AWS::EKS::FargateProfile" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::EKS::FargateProfile.Label": { "additionalProperties": false, "properties": { "Key": { "type": "string" }, "Value": { "type": "string" } }, "required": [ "Key", "Value" ], "type": "object" }, "AWS::EKS::FargateProfile.Selector": { "additionalProperties": false, "properties": { "Labels": { "items": { "$ref": "#/definitions/AWS::EKS::FargateProfile.Label" }, "type": "array" }, "Namespace": { "type": "string" } }, "required": [ "Namespace" ], "type": "object" }, "AWS::EKS::IdentityProviderConfig": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ClusterName": { "type": "string" }, "IdentityProviderConfigName": { "type": "string" }, "Oidc": { "$ref": "#/definitions/AWS::EKS::IdentityProviderConfig.OidcIdentityProviderConfig" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "Type": { "type": "string" } }, "required": [ "ClusterName", "Type" ], "type": "object" }, "Type": { "enum": [ "AWS::EKS::IdentityProviderConfig" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::EKS::IdentityProviderConfig.OidcIdentityProviderConfig": { "additionalProperties": false, "properties": { "ClientId": { "type": "string" }, "GroupsClaim": { "type": "string" }, "GroupsPrefix": { "type": "string" }, "IssuerUrl": { "type": "string" }, "RequiredClaims": { "items": { "$ref": "#/definitions/AWS::EKS::IdentityProviderConfig.RequiredClaim" }, "type": "array" }, "UsernameClaim": { "type": "string" }, "UsernamePrefix": { "type": "string" } }, "required": [ "ClientId", "IssuerUrl" ], "type": "object" }, "AWS::EKS::IdentityProviderConfig.RequiredClaim": { "additionalProperties": false, "properties": { "Key": { "type": "string" }, "Value": { "type": "string" } }, "required": [ "Key", "Value" ], "type": "object" }, "AWS::EKS::Nodegroup": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AmiType": { "type": "string" }, "CapacityType": { "type": "string" }, "ClusterName": { "type": "string" }, "DiskSize": { "type": "number" }, "ForceUpdateEnabled": { "type": "boolean" }, "InstanceTypes": { "items": { "type": "string" }, "type": "array" }, "Labels": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" }, "LaunchTemplate": { "$ref": "#/definitions/AWS::EKS::Nodegroup.LaunchTemplateSpecification" }, "NodeRole": { "type": "string" }, "NodegroupName": { "type": "string" }, "ReleaseVersion": { "type": "string" }, "RemoteAccess": { "$ref": "#/definitions/AWS::EKS::Nodegroup.RemoteAccess" }, "ScalingConfig": { "$ref": "#/definitions/AWS::EKS::Nodegroup.ScalingConfig" }, "Subnets": { "items": { "type": "string" }, "type": "array" }, "Tags": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" }, "Taints": { "items": { "$ref": "#/definitions/AWS::EKS::Nodegroup.Taint" }, "type": "array" }, "UpdateConfig": { "$ref": "#/definitions/AWS::EKS::Nodegroup.UpdateConfig" }, "Version": { "type": "string" } }, "required": [ "ClusterName", "NodeRole", "Subnets" ], "type": "object" }, "Type": { "enum": [ "AWS::EKS::Nodegroup" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::EKS::Nodegroup.LaunchTemplateSpecification": { "additionalProperties": false, "properties": { "Id": { "type": "string" }, "Name": { "type": "string" }, "Version": { "type": "string" } }, "type": "object" }, "AWS::EKS::Nodegroup.RemoteAccess": { "additionalProperties": false, "properties": { "Ec2SshKey": { "type": "string" }, "SourceSecurityGroups": { "items": { "type": "string" }, "type": "array" } }, "required": [ "Ec2SshKey" ], "type": "object" }, "AWS::EKS::Nodegroup.ScalingConfig": { "additionalProperties": false, "properties": { "DesiredSize": { "type": "number" }, "MaxSize": { "type": "number" }, "MinSize": { "type": "number" } }, "type": "object" }, "AWS::EKS::Nodegroup.Taint": { "additionalProperties": false, "properties": { "Effect": { "type": "string" }, "Key": { "type": "string" }, "Value": { "type": "string" } }, "type": "object" }, "AWS::EKS::Nodegroup.UpdateConfig": { "additionalProperties": false, "properties": { "MaxUnavailable": { "type": "number" }, "MaxUnavailablePercentage": { "type": "number" } }, "type": "object" }, "AWS::EMR::Cluster": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AdditionalInfo": { "type": "object" }, "Applications": { "items": { "$ref": "#/definitions/AWS::EMR::Cluster.Application" }, "type": "array" }, "AutoScalingRole": { "type": "string" }, "AutoTerminationPolicy": { "$ref": "#/definitions/AWS::EMR::Cluster.AutoTerminationPolicy" }, "BootstrapActions": { "items": { "$ref": "#/definitions/AWS::EMR::Cluster.BootstrapActionConfig" }, "type": "array" }, "Configurations": { "items": { "$ref": "#/definitions/AWS::EMR::Cluster.Configuration" }, "type": "array" }, "CustomAmiId": { "type": "string" }, "EbsRootVolumeSize": { "type": "number" }, "Instances": { "$ref": "#/definitions/AWS::EMR::Cluster.JobFlowInstancesConfig" }, "JobFlowRole": { "type": "string" }, "KerberosAttributes": { "$ref": "#/definitions/AWS::EMR::Cluster.KerberosAttributes" }, "LogEncryptionKmsKeyId": { "type": "string" }, "LogUri": { "type": "string" }, "ManagedScalingPolicy": { "$ref": "#/definitions/AWS::EMR::Cluster.ManagedScalingPolicy" }, "Name": { "type": "string" }, "OSReleaseLabel": { "type": "string" }, "ReleaseLabel": { "type": "string" }, "ScaleDownBehavior": { "type": "string" }, "SecurityConfiguration": { "type": "string" }, "ServiceRole": { "type": "string" }, "StepConcurrencyLevel": { "type": "number" }, "Steps": { "items": { "$ref": "#/definitions/AWS::EMR::Cluster.StepConfig" }, "type": "array" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "VisibleToAllUsers": { "type": "boolean" } }, "required": [ "Instances", "JobFlowRole", "Name", "ServiceRole" ], "type": "object" }, "Type": { "enum": [ "AWS::EMR::Cluster" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::EMR::Cluster.Application": { "additionalProperties": false, "properties": { "AdditionalInfo": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" }, "Args": { "items": { "type": "string" }, "type": "array" }, "Name": { "type": "string" }, "Version": { "type": "string" } }, "type": "object" }, "AWS::EMR::Cluster.AutoScalingPolicy": { "additionalProperties": false, "properties": { "Constraints": { "$ref": "#/definitions/AWS::EMR::Cluster.ScalingConstraints" }, "Rules": { "items": { "$ref": "#/definitions/AWS::EMR::Cluster.ScalingRule" }, "type": "array" } }, "required": [ "Constraints", "Rules" ], "type": "object" }, "AWS::EMR::Cluster.AutoTerminationPolicy": { "additionalProperties": false, "properties": { "IdleTimeout": { "type": "number" } }, "type": "object" }, "AWS::EMR::Cluster.BootstrapActionConfig": { "additionalProperties": false, "properties": { "Name": { "type": "string" }, "ScriptBootstrapAction": { "$ref": "#/definitions/AWS::EMR::Cluster.ScriptBootstrapActionConfig" } }, "required": [ "Name", "ScriptBootstrapAction" ], "type": "object" }, "AWS::EMR::Cluster.CloudWatchAlarmDefinition": { "additionalProperties": false, "properties": { "ComparisonOperator": { "type": "string" }, "Dimensions": { "items": { "$ref": "#/definitions/AWS::EMR::Cluster.MetricDimension" }, "type": "array" }, "EvaluationPeriods": { "type": "number" }, "MetricName": { "type": "string" }, "Namespace": { "type": "string" }, "Period": { "type": "number" }, "Statistic": { "type": "string" }, "Threshold": { "type": "number" }, "Unit": { "type": "string" } }, "required": [ "ComparisonOperator", "MetricName", "Period", "Threshold" ], "type": "object" }, "AWS::EMR::Cluster.ComputeLimits": { "additionalProperties": false, "properties": { "MaximumCapacityUnits": { "type": "number" }, "MaximumCoreCapacityUnits": { "type": "number" }, "MaximumOnDemandCapacityUnits": { "type": "number" }, "MinimumCapacityUnits": { "type": "number" }, "UnitType": { "type": "string" } }, "required": [ "MaximumCapacityUnits", "MinimumCapacityUnits", "UnitType" ], "type": "object" }, "AWS::EMR::Cluster.Configuration": { "additionalProperties": false, "properties": { "Classification": { "type": "string" }, "ConfigurationProperties": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" }, "Configurations": { "items": { "$ref": "#/definitions/AWS::EMR::Cluster.Configuration" }, "type": "array" } }, "type": "object" }, "AWS::EMR::Cluster.EbsBlockDeviceConfig": { "additionalProperties": false, "properties": { "VolumeSpecification": { "$ref": "#/definitions/AWS::EMR::Cluster.VolumeSpecification" }, "VolumesPerInstance": { "type": "number" } }, "required": [ "VolumeSpecification" ], "type": "object" }, "AWS::EMR::Cluster.EbsConfiguration": { "additionalProperties": false, "properties": { "EbsBlockDeviceConfigs": { "items": { "$ref": "#/definitions/AWS::EMR::Cluster.EbsBlockDeviceConfig" }, "type": "array" }, "EbsOptimized": { "type": "boolean" } }, "type": "object" }, "AWS::EMR::Cluster.HadoopJarStepConfig": { "additionalProperties": false, "properties": { "Args": { "items": { "type": "string" }, "type": "array" }, "Jar": { "type": "string" }, "MainClass": { "type": "string" }, "StepProperties": { "items": { "$ref": "#/definitions/AWS::EMR::Cluster.KeyValue" }, "type": "array" } }, "required": [ "Jar" ], "type": "object" }, "AWS::EMR::Cluster.InstanceFleetConfig": { "additionalProperties": false, "properties": { "InstanceTypeConfigs": { "items": { "$ref": "#/definitions/AWS::EMR::Cluster.InstanceTypeConfig" }, "type": "array" }, "LaunchSpecifications": { "$ref": "#/definitions/AWS::EMR::Cluster.InstanceFleetProvisioningSpecifications" }, "Name": { "type": "string" }, "TargetOnDemandCapacity": { "type": "number" }, "TargetSpotCapacity": { "type": "number" } }, "type": "object" }, "AWS::EMR::Cluster.InstanceFleetProvisioningSpecifications": { "additionalProperties": false, "properties": { "OnDemandSpecification": { "$ref": "#/definitions/AWS::EMR::Cluster.OnDemandProvisioningSpecification" }, "SpotSpecification": { "$ref": "#/definitions/AWS::EMR::Cluster.SpotProvisioningSpecification" } }, "type": "object" }, "AWS::EMR::Cluster.InstanceGroupConfig": { "additionalProperties": false, "properties": { "AutoScalingPolicy": { "$ref": "#/definitions/AWS::EMR::Cluster.AutoScalingPolicy" }, "BidPrice": { "type": "string" }, "Configurations": { "items": { "$ref": "#/definitions/AWS::EMR::Cluster.Configuration" }, "type": "array" }, "CustomAmiId": { "type": "string" }, "EbsConfiguration": { "$ref": "#/definitions/AWS::EMR::Cluster.EbsConfiguration" }, "InstanceCount": { "type": "number" }, "InstanceType": { "type": "string" }, "Market": { "type": "string" }, "Name": { "type": "string" } }, "required": [ "InstanceCount", "InstanceType" ], "type": "object" }, "AWS::EMR::Cluster.InstanceTypeConfig": { "additionalProperties": false, "properties": { "BidPrice": { "type": "string" }, "BidPriceAsPercentageOfOnDemandPrice": { "type": "number" }, "Configurations": { "items": { "$ref": "#/definitions/AWS::EMR::Cluster.Configuration" }, "type": "array" }, "CustomAmiId": { "type": "string" }, "EbsConfiguration": { "$ref": "#/definitions/AWS::EMR::Cluster.EbsConfiguration" }, "InstanceType": { "type": "string" }, "WeightedCapacity": { "type": "number" } }, "required": [ "InstanceType" ], "type": "object" }, "AWS::EMR::Cluster.JobFlowInstancesConfig": { "additionalProperties": false, "properties": { "AdditionalMasterSecurityGroups": { "items": { "type": "string" }, "type": "array" }, "AdditionalSlaveSecurityGroups": { "items": { "type": "string" }, "type": "array" }, "CoreInstanceFleet": { "$ref": "#/definitions/AWS::EMR::Cluster.InstanceFleetConfig" }, "CoreInstanceGroup": { "$ref": "#/definitions/AWS::EMR::Cluster.InstanceGroupConfig" }, "Ec2KeyName": { "type": "string" }, "Ec2SubnetId": { "type": "string" }, "Ec2SubnetIds": { "items": { "type": "string" }, "type": "array" }, "EmrManagedMasterSecurityGroup": { "type": "string" }, "EmrManagedSlaveSecurityGroup": { "type": "string" }, "HadoopVersion": { "type": "string" }, "KeepJobFlowAliveWhenNoSteps": { "type": "boolean" }, "MasterInstanceFleet": { "$ref": "#/definitions/AWS::EMR::Cluster.InstanceFleetConfig" }, "MasterInstanceGroup": { "$ref": "#/definitions/AWS::EMR::Cluster.InstanceGroupConfig" }, "Placement": { "$ref": "#/definitions/AWS::EMR::Cluster.PlacementType" }, "ServiceAccessSecurityGroup": { "type": "string" }, "TaskInstanceFleets": { "items": { "$ref": "#/definitions/AWS::EMR::Cluster.InstanceFleetConfig" }, "type": "array" }, "TaskInstanceGroups": { "items": { "$ref": "#/definitions/AWS::EMR::Cluster.InstanceGroupConfig" }, "type": "array" }, "TerminationProtected": { "type": "boolean" } }, "type": "object" }, "AWS::EMR::Cluster.KerberosAttributes": { "additionalProperties": false, "properties": { "ADDomainJoinPassword": { "type": "string" }, "ADDomainJoinUser": { "type": "string" }, "CrossRealmTrustPrincipalPassword": { "type": "string" }, "KdcAdminPassword": { "type": "string" }, "Realm": { "type": "string" } }, "required": [ "KdcAdminPassword", "Realm" ], "type": "object" }, "AWS::EMR::Cluster.KeyValue": { "additionalProperties": false, "properties": { "Key": { "type": "string" }, "Value": { "type": "string" } }, "type": "object" }, "AWS::EMR::Cluster.ManagedScalingPolicy": { "additionalProperties": false, "properties": { "ComputeLimits": { "$ref": "#/definitions/AWS::EMR::Cluster.ComputeLimits" } }, "type": "object" }, "AWS::EMR::Cluster.MetricDimension": { "additionalProperties": false, "properties": { "Key": { "type": "string" }, "Value": { "type": "string" } }, "required": [ "Key", "Value" ], "type": "object" }, "AWS::EMR::Cluster.OnDemandProvisioningSpecification": { "additionalProperties": false, "properties": { "AllocationStrategy": { "type": "string" } }, "required": [ "AllocationStrategy" ], "type": "object" }, "AWS::EMR::Cluster.PlacementType": { "additionalProperties": false, "properties": { "AvailabilityZone": { "type": "string" } }, "required": [ "AvailabilityZone" ], "type": "object" }, "AWS::EMR::Cluster.ScalingAction": { "additionalProperties": false, "properties": { "Market": { "type": "string" }, "SimpleScalingPolicyConfiguration": { "$ref": "#/definitions/AWS::EMR::Cluster.SimpleScalingPolicyConfiguration" } }, "required": [ "SimpleScalingPolicyConfiguration" ], "type": "object" }, "AWS::EMR::Cluster.ScalingConstraints": { "additionalProperties": false, "properties": { "MaxCapacity": { "type": "number" }, "MinCapacity": { "type": "number" } }, "required": [ "MaxCapacity", "MinCapacity" ], "type": "object" }, "AWS::EMR::Cluster.ScalingRule": { "additionalProperties": false, "properties": { "Action": { "$ref": "#/definitions/AWS::EMR::Cluster.ScalingAction" }, "Description": { "type": "string" }, "Name": { "type": "string" }, "Trigger": { "$ref": "#/definitions/AWS::EMR::Cluster.ScalingTrigger" } }, "required": [ "Action", "Name", "Trigger" ], "type": "object" }, "AWS::EMR::Cluster.ScalingTrigger": { "additionalProperties": false, "properties": { "CloudWatchAlarmDefinition": { "$ref": "#/definitions/AWS::EMR::Cluster.CloudWatchAlarmDefinition" } }, "required": [ "CloudWatchAlarmDefinition" ], "type": "object" }, "AWS::EMR::Cluster.ScriptBootstrapActionConfig": { "additionalProperties": false, "properties": { "Args": { "items": { "type": "string" }, "type": "array" }, "Path": { "type": "string" } }, "required": [ "Path" ], "type": "object" }, "AWS::EMR::Cluster.SimpleScalingPolicyConfiguration": { "additionalProperties": false, "properties": { "AdjustmentType": { "type": "string" }, "CoolDown": { "type": "number" }, "ScalingAdjustment": { "type": "number" } }, "required": [ "ScalingAdjustment" ], "type": "object" }, "AWS::EMR::Cluster.SpotProvisioningSpecification": { "additionalProperties": false, "properties": { "AllocationStrategy": { "type": "string" }, "BlockDurationMinutes": { "type": "number" }, "TimeoutAction": { "type": "string" }, "TimeoutDurationMinutes": { "type": "number" } }, "required": [ "TimeoutAction", "TimeoutDurationMinutes" ], "type": "object" }, "AWS::EMR::Cluster.StepConfig": { "additionalProperties": false, "properties": { "ActionOnFailure": { "type": "string" }, "HadoopJarStep": { "$ref": "#/definitions/AWS::EMR::Cluster.HadoopJarStepConfig" }, "Name": { "type": "string" } }, "required": [ "HadoopJarStep", "Name" ], "type": "object" }, "AWS::EMR::Cluster.VolumeSpecification": { "additionalProperties": false, "properties": { "Iops": { "type": "number" }, "SizeInGB": { "type": "number" }, "Throughput": { "type": "number" }, "VolumeType": { "type": "string" } }, "required": [ "SizeInGB", "VolumeType" ], "type": "object" }, "AWS::EMR::InstanceFleetConfig": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ClusterId": { "type": "string" }, "InstanceFleetType": { "type": "string" }, "InstanceTypeConfigs": { "items": { "$ref": "#/definitions/AWS::EMR::InstanceFleetConfig.InstanceTypeConfig" }, "type": "array" }, "LaunchSpecifications": { "$ref": "#/definitions/AWS::EMR::InstanceFleetConfig.InstanceFleetProvisioningSpecifications" }, "Name": { "type": "string" }, "TargetOnDemandCapacity": { "type": "number" }, "TargetSpotCapacity": { "type": "number" } }, "required": [ "ClusterId", "InstanceFleetType" ], "type": "object" }, "Type": { "enum": [ "AWS::EMR::InstanceFleetConfig" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::EMR::InstanceFleetConfig.Configuration": { "additionalProperties": false, "properties": { "Classification": { "type": "string" }, "ConfigurationProperties": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" }, "Configurations": { "items": { "$ref": "#/definitions/AWS::EMR::InstanceFleetConfig.Configuration" }, "type": "array" } }, "type": "object" }, "AWS::EMR::InstanceFleetConfig.EbsBlockDeviceConfig": { "additionalProperties": false, "properties": { "VolumeSpecification": { "$ref": "#/definitions/AWS::EMR::InstanceFleetConfig.VolumeSpecification" }, "VolumesPerInstance": { "type": "number" } }, "required": [ "VolumeSpecification" ], "type": "object" }, "AWS::EMR::InstanceFleetConfig.EbsConfiguration": { "additionalProperties": false, "properties": { "EbsBlockDeviceConfigs": { "items": { "$ref": "#/definitions/AWS::EMR::InstanceFleetConfig.EbsBlockDeviceConfig" }, "type": "array" }, "EbsOptimized": { "type": "boolean" } }, "type": "object" }, "AWS::EMR::InstanceFleetConfig.InstanceFleetProvisioningSpecifications": { "additionalProperties": false, "properties": { "OnDemandSpecification": { "$ref": "#/definitions/AWS::EMR::InstanceFleetConfig.OnDemandProvisioningSpecification" }, "SpotSpecification": { "$ref": "#/definitions/AWS::EMR::InstanceFleetConfig.SpotProvisioningSpecification" } }, "type": "object" }, "AWS::EMR::InstanceFleetConfig.InstanceTypeConfig": { "additionalProperties": false, "properties": { "BidPrice": { "type": "string" }, "BidPriceAsPercentageOfOnDemandPrice": { "type": "number" }, "Configurations": { "items": { "$ref": "#/definitions/AWS::EMR::InstanceFleetConfig.Configuration" }, "type": "array" }, "CustomAmiId": { "type": "string" }, "EbsConfiguration": { "$ref": "#/definitions/AWS::EMR::InstanceFleetConfig.EbsConfiguration" }, "InstanceType": { "type": "string" }, "WeightedCapacity": { "type": "number" } }, "required": [ "InstanceType" ], "type": "object" }, "AWS::EMR::InstanceFleetConfig.OnDemandProvisioningSpecification": { "additionalProperties": false, "properties": { "AllocationStrategy": { "type": "string" } }, "required": [ "AllocationStrategy" ], "type": "object" }, "AWS::EMR::InstanceFleetConfig.SpotProvisioningSpecification": { "additionalProperties": false, "properties": { "AllocationStrategy": { "type": "string" }, "BlockDurationMinutes": { "type": "number" }, "TimeoutAction": { "type": "string" }, "TimeoutDurationMinutes": { "type": "number" } }, "required": [ "TimeoutAction", "TimeoutDurationMinutes" ], "type": "object" }, "AWS::EMR::InstanceFleetConfig.VolumeSpecification": { "additionalProperties": false, "properties": { "Iops": { "type": "number" }, "SizeInGB": { "type": "number" }, "Throughput": { "type": "number" }, "VolumeType": { "type": "string" } }, "required": [ "SizeInGB", "VolumeType" ], "type": "object" }, "AWS::EMR::InstanceGroupConfig": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AutoScalingPolicy": { "$ref": "#/definitions/AWS::EMR::InstanceGroupConfig.AutoScalingPolicy" }, "BidPrice": { "type": "string" }, "Configurations": { "items": { "$ref": "#/definitions/AWS::EMR::InstanceGroupConfig.Configuration" }, "type": "array" }, "CustomAmiId": { "type": "string" }, "EbsConfiguration": { "$ref": "#/definitions/AWS::EMR::InstanceGroupConfig.EbsConfiguration" }, "InstanceCount": { "type": "number" }, "InstanceRole": { "type": "string" }, "InstanceType": { "type": "string" }, "JobFlowId": { "type": "string" }, "Market": { "type": "string" }, "Name": { "type": "string" } }, "required": [ "InstanceCount", "InstanceRole", "InstanceType", "JobFlowId" ], "type": "object" }, "Type": { "enum": [ "AWS::EMR::InstanceGroupConfig" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::EMR::InstanceGroupConfig.AutoScalingPolicy": { "additionalProperties": false, "properties": { "Constraints": { "$ref": "#/definitions/AWS::EMR::InstanceGroupConfig.ScalingConstraints" }, "Rules": { "items": { "$ref": "#/definitions/AWS::EMR::InstanceGroupConfig.ScalingRule" }, "type": "array" } }, "required": [ "Constraints", "Rules" ], "type": "object" }, "AWS::EMR::InstanceGroupConfig.CloudWatchAlarmDefinition": { "additionalProperties": false, "properties": { "ComparisonOperator": { "type": "string" }, "Dimensions": { "items": { "$ref": "#/definitions/AWS::EMR::InstanceGroupConfig.MetricDimension" }, "type": "array" }, "EvaluationPeriods": { "type": "number" }, "MetricName": { "type": "string" }, "Namespace": { "type": "string" }, "Period": { "type": "number" }, "Statistic": { "type": "string" }, "Threshold": { "type": "number" }, "Unit": { "type": "string" } }, "required": [ "ComparisonOperator", "MetricName", "Period", "Threshold" ], "type": "object" }, "AWS::EMR::InstanceGroupConfig.Configuration": { "additionalProperties": false, "properties": { "Classification": { "type": "string" }, "ConfigurationProperties": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" }, "Configurations": { "items": { "$ref": "#/definitions/AWS::EMR::InstanceGroupConfig.Configuration" }, "type": "array" } }, "type": "object" }, "AWS::EMR::InstanceGroupConfig.EbsBlockDeviceConfig": { "additionalProperties": false, "properties": { "VolumeSpecification": { "$ref": "#/definitions/AWS::EMR::InstanceGroupConfig.VolumeSpecification" }, "VolumesPerInstance": { "type": "number" } }, "required": [ "VolumeSpecification" ], "type": "object" }, "AWS::EMR::InstanceGroupConfig.EbsConfiguration": { "additionalProperties": false, "properties": { "EbsBlockDeviceConfigs": { "items": { "$ref": "#/definitions/AWS::EMR::InstanceGroupConfig.EbsBlockDeviceConfig" }, "type": "array" }, "EbsOptimized": { "type": "boolean" } }, "type": "object" }, "AWS::EMR::InstanceGroupConfig.MetricDimension": { "additionalProperties": false, "properties": { "Key": { "type": "string" }, "Value": { "type": "string" } }, "required": [ "Key", "Value" ], "type": "object" }, "AWS::EMR::InstanceGroupConfig.ScalingAction": { "additionalProperties": false, "properties": { "Market": { "type": "string" }, "SimpleScalingPolicyConfiguration": { "$ref": "#/definitions/AWS::EMR::InstanceGroupConfig.SimpleScalingPolicyConfiguration" } }, "required": [ "SimpleScalingPolicyConfiguration" ], "type": "object" }, "AWS::EMR::InstanceGroupConfig.ScalingConstraints": { "additionalProperties": false, "properties": { "MaxCapacity": { "type": "number" }, "MinCapacity": { "type": "number" } }, "required": [ "MaxCapacity", "MinCapacity" ], "type": "object" }, "AWS::EMR::InstanceGroupConfig.ScalingRule": { "additionalProperties": false, "properties": { "Action": { "$ref": "#/definitions/AWS::EMR::InstanceGroupConfig.ScalingAction" }, "Description": { "type": "string" }, "Name": { "type": "string" }, "Trigger": { "$ref": "#/definitions/AWS::EMR::InstanceGroupConfig.ScalingTrigger" } }, "required": [ "Action", "Name", "Trigger" ], "type": "object" }, "AWS::EMR::InstanceGroupConfig.ScalingTrigger": { "additionalProperties": false, "properties": { "CloudWatchAlarmDefinition": { "$ref": "#/definitions/AWS::EMR::InstanceGroupConfig.CloudWatchAlarmDefinition" } }, "required": [ "CloudWatchAlarmDefinition" ], "type": "object" }, "AWS::EMR::InstanceGroupConfig.SimpleScalingPolicyConfiguration": { "additionalProperties": false, "properties": { "AdjustmentType": { "type": "string" }, "CoolDown": { "type": "number" }, "ScalingAdjustment": { "type": "number" } }, "required": [ "ScalingAdjustment" ], "type": "object" }, "AWS::EMR::InstanceGroupConfig.VolumeSpecification": { "additionalProperties": false, "properties": { "Iops": { "type": "number" }, "SizeInGB": { "type": "number" }, "Throughput": { "type": "number" }, "VolumeType": { "type": "string" } }, "required": [ "SizeInGB", "VolumeType" ], "type": "object" }, "AWS::EMR::SecurityConfiguration": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Name": { "type": "string" }, "SecurityConfiguration": { "type": "object" } }, "required": [ "SecurityConfiguration" ], "type": "object" }, "Type": { "enum": [ "AWS::EMR::SecurityConfiguration" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::EMR::Step": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ActionOnFailure": { "type": "string" }, "HadoopJarStep": { "$ref": "#/definitions/AWS::EMR::Step.HadoopJarStepConfig" }, "JobFlowId": { "type": "string" }, "Name": { "type": "string" } }, "required": [ "ActionOnFailure", "HadoopJarStep", "JobFlowId", "Name" ], "type": "object" }, "Type": { "enum": [ "AWS::EMR::Step" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::EMR::Step.HadoopJarStepConfig": { "additionalProperties": false, "properties": { "Args": { "items": { "type": "string" }, "type": "array" }, "Jar": { "type": "string" }, "MainClass": { "type": "string" }, "StepProperties": { "items": { "$ref": "#/definitions/AWS::EMR::Step.KeyValue" }, "type": "array" } }, "required": [ "Jar" ], "type": "object" }, "AWS::EMR::Step.KeyValue": { "additionalProperties": false, "properties": { "Key": { "type": "string" }, "Value": { "type": "string" } }, "type": "object" }, "AWS::EMR::Studio": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AuthMode": { "type": "string" }, "DefaultS3Location": { "type": "string" }, "Description": { "type": "string" }, "EngineSecurityGroupId": { "type": "string" }, "IdpAuthUrl": { "type": "string" }, "IdpRelayStateParameterName": { "type": "string" }, "Name": { "type": "string" }, "ServiceRole": { "type": "string" }, "SubnetIds": { "items": { "type": "string" }, "type": "array" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "UserRole": { "type": "string" }, "VpcId": { "type": "string" }, "WorkspaceSecurityGroupId": { "type": "string" } }, "required": [ "AuthMode", "DefaultS3Location", "EngineSecurityGroupId", "Name", "ServiceRole", "SubnetIds", "VpcId", "WorkspaceSecurityGroupId" ], "type": "object" }, "Type": { "enum": [ "AWS::EMR::Studio" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::EMR::StudioSessionMapping": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "IdentityName": { "type": "string" }, "IdentityType": { "type": "string" }, "SessionPolicyArn": { "type": "string" }, "StudioId": { "type": "string" } }, "required": [ "IdentityName", "IdentityType", "SessionPolicyArn", "StudioId" ], "type": "object" }, "Type": { "enum": [ "AWS::EMR::StudioSessionMapping" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::EMRContainers::VirtualCluster": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ContainerProvider": { "$ref": "#/definitions/AWS::EMRContainers::VirtualCluster.ContainerProvider" }, "Name": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "ContainerProvider", "Name" ], "type": "object" }, "Type": { "enum": [ "AWS::EMRContainers::VirtualCluster" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::EMRContainers::VirtualCluster.ContainerInfo": { "additionalProperties": false, "properties": { "EksInfo": { "$ref": "#/definitions/AWS::EMRContainers::VirtualCluster.EksInfo" } }, "required": [ "EksInfo" ], "type": "object" }, "AWS::EMRContainers::VirtualCluster.ContainerProvider": { "additionalProperties": false, "properties": { "Id": { "type": "string" }, "Info": { "$ref": "#/definitions/AWS::EMRContainers::VirtualCluster.ContainerInfo" }, "Type": { "type": "string" } }, "required": [ "Id", "Info", "Type" ], "type": "object" }, "AWS::EMRContainers::VirtualCluster.EksInfo": { "additionalProperties": false, "properties": { "Namespace": { "type": "string" } }, "required": [ "Namespace" ], "type": "object" }, "AWS::EMRServerless::Application": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Architecture": { "type": "string" }, "AutoStartConfiguration": { "$ref": "#/definitions/AWS::EMRServerless::Application.AutoStartConfiguration" }, "AutoStopConfiguration": { "$ref": "#/definitions/AWS::EMRServerless::Application.AutoStopConfiguration" }, "ImageConfiguration": { "$ref": "#/definitions/AWS::EMRServerless::Application.ImageConfigurationInput" }, "InitialCapacity": { "items": { "$ref": "#/definitions/AWS::EMRServerless::Application.InitialCapacityConfigKeyValuePair" }, "type": "array" }, "MaximumCapacity": { "$ref": "#/definitions/AWS::EMRServerless::Application.MaximumAllowedResources" }, "Name": { "type": "string" }, "NetworkConfiguration": { "$ref": "#/definitions/AWS::EMRServerless::Application.NetworkConfiguration" }, "ReleaseLabel": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "Type": { "type": "string" }, "WorkerTypeSpecifications": { "additionalProperties": false, "patternProperties": { "^[a-zA-Z0-9]+$": { "$ref": "#/definitions/AWS::EMRServerless::Application.WorkerTypeSpecificationInput" } }, "type": "object" } }, "required": [ "ReleaseLabel", "Type" ], "type": "object" }, "Type": { "enum": [ "AWS::EMRServerless::Application" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::EMRServerless::Application.AutoStartConfiguration": { "additionalProperties": false, "properties": { "Enabled": { "type": "boolean" } }, "type": "object" }, "AWS::EMRServerless::Application.AutoStopConfiguration": { "additionalProperties": false, "properties": { "Enabled": { "type": "boolean" }, "IdleTimeoutMinutes": { "type": "number" } }, "type": "object" }, "AWS::EMRServerless::Application.ImageConfigurationInput": { "additionalProperties": false, "properties": { "ImageUri": { "type": "string" } }, "type": "object" }, "AWS::EMRServerless::Application.InitialCapacityConfig": { "additionalProperties": false, "properties": { "WorkerConfiguration": { "$ref": "#/definitions/AWS::EMRServerless::Application.WorkerConfiguration" }, "WorkerCount": { "type": "number" } }, "required": [ "WorkerConfiguration", "WorkerCount" ], "type": "object" }, "AWS::EMRServerless::Application.InitialCapacityConfigKeyValuePair": { "additionalProperties": false, "properties": { "Key": { "type": "string" }, "Value": { "$ref": "#/definitions/AWS::EMRServerless::Application.InitialCapacityConfig" } }, "required": [ "Key", "Value" ], "type": "object" }, "AWS::EMRServerless::Application.MaximumAllowedResources": { "additionalProperties": false, "properties": { "Cpu": { "type": "string" }, "Disk": { "type": "string" }, "Memory": { "type": "string" } }, "required": [ "Cpu", "Memory" ], "type": "object" }, "AWS::EMRServerless::Application.NetworkConfiguration": { "additionalProperties": false, "properties": { "SecurityGroupIds": { "items": { "type": "string" }, "type": "array" }, "SubnetIds": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::EMRServerless::Application.WorkerConfiguration": { "additionalProperties": false, "properties": { "Cpu": { "type": "string" }, "Disk": { "type": "string" }, "Memory": { "type": "string" } }, "required": [ "Cpu", "Memory" ], "type": "object" }, "AWS::EMRServerless::Application.WorkerTypeSpecificationInput": { "additionalProperties": false, "properties": { "ImageConfiguration": { "$ref": "#/definitions/AWS::EMRServerless::Application.ImageConfigurationInput" } }, "type": "object" }, "AWS::ElastiCache::CacheCluster": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AZMode": { "type": "string" }, "AutoMinorVersionUpgrade": { "type": "boolean" }, "CacheNodeType": { "type": "string" }, "CacheParameterGroupName": { "type": "string" }, "CacheSecurityGroupNames": { "items": { "type": "string" }, "type": "array" }, "CacheSubnetGroupName": { "type": "string" }, "ClusterName": { "type": "string" }, "Engine": { "type": "string" }, "EngineVersion": { "type": "string" }, "IpDiscovery": { "type": "string" }, "LogDeliveryConfigurations": { "items": { "$ref": "#/definitions/AWS::ElastiCache::CacheCluster.LogDeliveryConfigurationRequest" }, "type": "array" }, "NetworkType": { "type": "string" }, "NotificationTopicArn": { "type": "string" }, "NumCacheNodes": { "type": "number" }, "Port": { "type": "number" }, "PreferredAvailabilityZone": { "type": "string" }, "PreferredAvailabilityZones": { "items": { "type": "string" }, "type": "array" }, "PreferredMaintenanceWindow": { "type": "string" }, "SnapshotArns": { "items": { "type": "string" }, "type": "array" }, "SnapshotName": { "type": "string" }, "SnapshotRetentionLimit": { "type": "number" }, "SnapshotWindow": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "TransitEncryptionEnabled": { "type": "boolean" }, "VpcSecurityGroupIds": { "items": { "type": "string" }, "type": "array" } }, "required": [ "CacheNodeType", "Engine", "NumCacheNodes" ], "type": "object" }, "Type": { "enum": [ "AWS::ElastiCache::CacheCluster" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::ElastiCache::CacheCluster.CloudWatchLogsDestinationDetails": { "additionalProperties": false, "properties": { "LogGroup": { "type": "string" } }, "required": [ "LogGroup" ], "type": "object" }, "AWS::ElastiCache::CacheCluster.DestinationDetails": { "additionalProperties": false, "properties": { "CloudWatchLogsDetails": { "$ref": "#/definitions/AWS::ElastiCache::CacheCluster.CloudWatchLogsDestinationDetails" }, "KinesisFirehoseDetails": { "$ref": "#/definitions/AWS::ElastiCache::CacheCluster.KinesisFirehoseDestinationDetails" } }, "type": "object" }, "AWS::ElastiCache::CacheCluster.KinesisFirehoseDestinationDetails": { "additionalProperties": false, "properties": { "DeliveryStream": { "type": "string" } }, "required": [ "DeliveryStream" ], "type": "object" }, "AWS::ElastiCache::CacheCluster.LogDeliveryConfigurationRequest": { "additionalProperties": false, "properties": { "DestinationDetails": { "$ref": "#/definitions/AWS::ElastiCache::CacheCluster.DestinationDetails" }, "DestinationType": { "type": "string" }, "LogFormat": { "type": "string" }, "LogType": { "type": "string" } }, "required": [ "DestinationDetails", "DestinationType", "LogFormat", "LogType" ], "type": "object" }, "AWS::ElastiCache::GlobalReplicationGroup": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AutomaticFailoverEnabled": { "type": "boolean" }, "CacheNodeType": { "type": "string" }, "CacheParameterGroupName": { "type": "string" }, "EngineVersion": { "type": "string" }, "GlobalNodeGroupCount": { "type": "number" }, "GlobalReplicationGroupDescription": { "type": "string" }, "GlobalReplicationGroupIdSuffix": { "type": "string" }, "Members": { "items": { "$ref": "#/definitions/AWS::ElastiCache::GlobalReplicationGroup.GlobalReplicationGroupMember" }, "type": "array" }, "RegionalConfigurations": { "items": { "$ref": "#/definitions/AWS::ElastiCache::GlobalReplicationGroup.RegionalConfiguration" }, "type": "array" } }, "required": [ "Members" ], "type": "object" }, "Type": { "enum": [ "AWS::ElastiCache::GlobalReplicationGroup" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::ElastiCache::GlobalReplicationGroup.GlobalReplicationGroupMember": { "additionalProperties": false, "properties": { "ReplicationGroupId": { "type": "string" }, "ReplicationGroupRegion": { "type": "string" }, "Role": { "type": "string" } }, "type": "object" }, "AWS::ElastiCache::GlobalReplicationGroup.RegionalConfiguration": { "additionalProperties": false, "properties": { "ReplicationGroupId": { "type": "string" }, "ReplicationGroupRegion": { "type": "string" }, "ReshardingConfigurations": { "items": { "$ref": "#/definitions/AWS::ElastiCache::GlobalReplicationGroup.ReshardingConfiguration" }, "type": "array" } }, "type": "object" }, "AWS::ElastiCache::GlobalReplicationGroup.ReshardingConfiguration": { "additionalProperties": false, "properties": { "NodeGroupId": { "type": "string" }, "PreferredAvailabilityZones": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::ElastiCache::ParameterGroup": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "CacheParameterGroupFamily": { "type": "string" }, "Description": { "type": "string" }, "Properties": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "CacheParameterGroupFamily", "Description" ], "type": "object" }, "Type": { "enum": [ "AWS::ElastiCache::ParameterGroup" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::ElastiCache::ReplicationGroup": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AtRestEncryptionEnabled": { "type": "boolean" }, "AuthToken": { "type": "string" }, "AutoMinorVersionUpgrade": { "type": "boolean" }, "AutomaticFailoverEnabled": { "type": "boolean" }, "CacheNodeType": { "type": "string" }, "CacheParameterGroupName": { "type": "string" }, "CacheSecurityGroupNames": { "items": { "type": "string" }, "type": "array" }, "CacheSubnetGroupName": { "type": "string" }, "ClusterMode": { "type": "string" }, "DataTieringEnabled": { "type": "boolean" }, "Engine": { "type": "string" }, "EngineVersion": { "type": "string" }, "GlobalReplicationGroupId": { "type": "string" }, "IpDiscovery": { "type": "string" }, "KmsKeyId": { "type": "string" }, "LogDeliveryConfigurations": { "items": { "$ref": "#/definitions/AWS::ElastiCache::ReplicationGroup.LogDeliveryConfigurationRequest" }, "type": "array" }, "MultiAZEnabled": { "type": "boolean" }, "NetworkType": { "type": "string" }, "NodeGroupConfiguration": { "items": { "$ref": "#/definitions/AWS::ElastiCache::ReplicationGroup.NodeGroupConfiguration" }, "type": "array" }, "NotificationTopicArn": { "type": "string" }, "NumCacheClusters": { "type": "number" }, "NumNodeGroups": { "type": "number" }, "Port": { "type": "number" }, "PreferredCacheClusterAZs": { "items": { "type": "string" }, "type": "array" }, "PreferredMaintenanceWindow": { "type": "string" }, "PrimaryClusterId": { "type": "string" }, "ReplicasPerNodeGroup": { "type": "number" }, "ReplicationGroupDescription": { "type": "string" }, "ReplicationGroupId": { "type": "string" }, "SecurityGroupIds": { "items": { "type": "string" }, "type": "array" }, "SnapshotArns": { "items": { "type": "string" }, "type": "array" }, "SnapshotName": { "type": "string" }, "SnapshotRetentionLimit": { "type": "number" }, "SnapshotWindow": { "type": "string" }, "SnapshottingClusterId": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "TransitEncryptionEnabled": { "type": "boolean" }, "TransitEncryptionMode": { "type": "string" }, "UserGroupIds": { "items": { "type": "string" }, "type": "array" } }, "required": [ "ReplicationGroupDescription" ], "type": "object" }, "Type": { "enum": [ "AWS::ElastiCache::ReplicationGroup" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::ElastiCache::ReplicationGroup.CloudWatchLogsDestinationDetails": { "additionalProperties": false, "properties": { "LogGroup": { "type": "string" } }, "required": [ "LogGroup" ], "type": "object" }, "AWS::ElastiCache::ReplicationGroup.DestinationDetails": { "additionalProperties": false, "properties": { "CloudWatchLogsDetails": { "$ref": "#/definitions/AWS::ElastiCache::ReplicationGroup.CloudWatchLogsDestinationDetails" }, "KinesisFirehoseDetails": { "$ref": "#/definitions/AWS::ElastiCache::ReplicationGroup.KinesisFirehoseDestinationDetails" } }, "type": "object" }, "AWS::ElastiCache::ReplicationGroup.KinesisFirehoseDestinationDetails": { "additionalProperties": false, "properties": { "DeliveryStream": { "type": "string" } }, "required": [ "DeliveryStream" ], "type": "object" }, "AWS::ElastiCache::ReplicationGroup.LogDeliveryConfigurationRequest": { "additionalProperties": false, "properties": { "DestinationDetails": { "$ref": "#/definitions/AWS::ElastiCache::ReplicationGroup.DestinationDetails" }, "DestinationType": { "type": "string" }, "LogFormat": { "type": "string" }, "LogType": { "type": "string" } }, "required": [ "DestinationDetails", "DestinationType", "LogFormat", "LogType" ], "type": "object" }, "AWS::ElastiCache::ReplicationGroup.NodeGroupConfiguration": { "additionalProperties": false, "properties": { "NodeGroupId": { "type": "string" }, "PrimaryAvailabilityZone": { "type": "string" }, "ReplicaAvailabilityZones": { "items": { "type": "string" }, "type": "array" }, "ReplicaCount": { "type": "number" }, "Slots": { "type": "string" } }, "type": "object" }, "AWS::ElastiCache::SecurityGroup": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "Description" ], "type": "object" }, "Type": { "enum": [ "AWS::ElastiCache::SecurityGroup" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::ElastiCache::SecurityGroupIngress": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "CacheSecurityGroupName": { "type": "string" }, "EC2SecurityGroupName": { "type": "string" }, "EC2SecurityGroupOwnerId": { "type": "string" } }, "required": [ "CacheSecurityGroupName", "EC2SecurityGroupName" ], "type": "object" }, "Type": { "enum": [ "AWS::ElastiCache::SecurityGroupIngress" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::ElastiCache::SubnetGroup": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "CacheSubnetGroupName": { "type": "string" }, "Description": { "type": "string" }, "SubnetIds": { "items": { "type": "string" }, "type": "array" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "Description", "SubnetIds" ], "type": "object" }, "Type": { "enum": [ "AWS::ElastiCache::SubnetGroup" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::ElastiCache::User": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AccessString": { "type": "string" }, "AuthenticationMode": { "$ref": "#/definitions/AWS::ElastiCache::User.AuthenticationMode" }, "Engine": { "type": "string" }, "NoPasswordRequired": { "type": "boolean" }, "Passwords": { "items": { "type": "string" }, "type": "array" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "UserId": { "type": "string" }, "UserName": { "type": "string" } }, "required": [ "Engine", "UserId", "UserName" ], "type": "object" }, "Type": { "enum": [ "AWS::ElastiCache::User" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::ElastiCache::User.AuthenticationMode": { "additionalProperties": false, "properties": { "Passwords": { "items": { "type": "string" }, "type": "array" }, "Type": { "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::ElastiCache::UserGroup": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Engine": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "UserGroupId": { "type": "string" }, "UserIds": { "items": { "type": "string" }, "type": "array" } }, "required": [ "Engine", "UserGroupId", "UserIds" ], "type": "object" }, "Type": { "enum": [ "AWS::ElastiCache::UserGroup" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::ElasticBeanstalk::Application": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ApplicationName": { "type": "string" }, "Description": { "type": "string" }, "ResourceLifecycleConfig": { "$ref": "#/definitions/AWS::ElasticBeanstalk::Application.ApplicationResourceLifecycleConfig" } }, "type": "object" }, "Type": { "enum": [ "AWS::ElasticBeanstalk::Application" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::ElasticBeanstalk::Application.ApplicationResourceLifecycleConfig": { "additionalProperties": false, "properties": { "ServiceRole": { "type": "string" }, "VersionLifecycleConfig": { "$ref": "#/definitions/AWS::ElasticBeanstalk::Application.ApplicationVersionLifecycleConfig" } }, "type": "object" }, "AWS::ElasticBeanstalk::Application.ApplicationVersionLifecycleConfig": { "additionalProperties": false, "properties": { "MaxAgeRule": { "$ref": "#/definitions/AWS::ElasticBeanstalk::Application.MaxAgeRule" }, "MaxCountRule": { "$ref": "#/definitions/AWS::ElasticBeanstalk::Application.MaxCountRule" } }, "type": "object" }, "AWS::ElasticBeanstalk::Application.MaxAgeRule": { "additionalProperties": false, "properties": { "DeleteSourceFromS3": { "type": "boolean" }, "Enabled": { "type": "boolean" }, "MaxAgeInDays": { "type": "number" } }, "type": "object" }, "AWS::ElasticBeanstalk::Application.MaxCountRule": { "additionalProperties": false, "properties": { "DeleteSourceFromS3": { "type": "boolean" }, "Enabled": { "type": "boolean" }, "MaxCount": { "type": "number" } }, "type": "object" }, "AWS::ElasticBeanstalk::ApplicationVersion": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ApplicationName": { "type": "string" }, "Description": { "type": "string" }, "SourceBundle": { "$ref": "#/definitions/AWS::ElasticBeanstalk::ApplicationVersion.SourceBundle" } }, "required": [ "ApplicationName", "SourceBundle" ], "type": "object" }, "Type": { "enum": [ "AWS::ElasticBeanstalk::ApplicationVersion" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::ElasticBeanstalk::ApplicationVersion.SourceBundle": { "additionalProperties": false, "properties": { "S3Bucket": { "type": "string" }, "S3Key": { "type": "string" } }, "required": [ "S3Bucket", "S3Key" ], "type": "object" }, "AWS::ElasticBeanstalk::ConfigurationTemplate": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ApplicationName": { "type": "string" }, "Description": { "type": "string" }, "EnvironmentId": { "type": "string" }, "OptionSettings": { "items": { "$ref": "#/definitions/AWS::ElasticBeanstalk::ConfigurationTemplate.ConfigurationOptionSetting" }, "type": "array" }, "PlatformArn": { "type": "string" }, "SolutionStackName": { "type": "string" }, "SourceConfiguration": { "$ref": "#/definitions/AWS::ElasticBeanstalk::ConfigurationTemplate.SourceConfiguration" } }, "required": [ "ApplicationName" ], "type": "object" }, "Type": { "enum": [ "AWS::ElasticBeanstalk::ConfigurationTemplate" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::ElasticBeanstalk::ConfigurationTemplate.ConfigurationOptionSetting": { "additionalProperties": false, "properties": { "Namespace": { "type": "string" }, "OptionName": { "type": "string" }, "ResourceName": { "type": "string" }, "Value": { "type": "string" } }, "required": [ "Namespace", "OptionName" ], "type": "object" }, "AWS::ElasticBeanstalk::ConfigurationTemplate.SourceConfiguration": { "additionalProperties": false, "properties": { "ApplicationName": { "type": "string" }, "TemplateName": { "type": "string" } }, "required": [ "ApplicationName", "TemplateName" ], "type": "object" }, "AWS::ElasticBeanstalk::Environment": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ApplicationName": { "type": "string" }, "CNAMEPrefix": { "type": "string" }, "Description": { "type": "string" }, "EnvironmentName": { "type": "string" }, "OperationsRole": { "type": "string" }, "OptionSettings": { "items": { "$ref": "#/definitions/AWS::ElasticBeanstalk::Environment.OptionSetting" }, "type": "array" }, "PlatformArn": { "type": "string" }, "SolutionStackName": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "TemplateName": { "type": "string" }, "Tier": { "$ref": "#/definitions/AWS::ElasticBeanstalk::Environment.Tier" }, "VersionLabel": { "type": "string" } }, "required": [ "ApplicationName" ], "type": "object" }, "Type": { "enum": [ "AWS::ElasticBeanstalk::Environment" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::ElasticBeanstalk::Environment.OptionSetting": { "additionalProperties": false, "properties": { "Namespace": { "type": "string" }, "OptionName": { "type": "string" }, "ResourceName": { "type": "string" }, "Value": { "type": "string" } }, "required": [ "Namespace", "OptionName" ], "type": "object" }, "AWS::ElasticBeanstalk::Environment.Tier": { "additionalProperties": false, "properties": { "Name": { "type": "string" }, "Type": { "type": "string" }, "Version": { "type": "string" } }, "type": "object" }, "AWS::ElasticLoadBalancing::LoadBalancer": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AccessLoggingPolicy": { "$ref": "#/definitions/AWS::ElasticLoadBalancing::LoadBalancer.AccessLoggingPolicy" }, "AppCookieStickinessPolicy": { "items": { "$ref": "#/definitions/AWS::ElasticLoadBalancing::LoadBalancer.AppCookieStickinessPolicy" }, "type": "array" }, "AvailabilityZones": { "items": { "type": "string" }, "type": "array" }, "ConnectionDrainingPolicy": { "$ref": "#/definitions/AWS::ElasticLoadBalancing::LoadBalancer.ConnectionDrainingPolicy" }, "ConnectionSettings": { "$ref": "#/definitions/AWS::ElasticLoadBalancing::LoadBalancer.ConnectionSettings" }, "CrossZone": { "type": "boolean" }, "HealthCheck": { "$ref": "#/definitions/AWS::ElasticLoadBalancing::LoadBalancer.HealthCheck" }, "Instances": { "items": { "type": "string" }, "type": "array" }, "LBCookieStickinessPolicy": { "items": { "$ref": "#/definitions/AWS::ElasticLoadBalancing::LoadBalancer.LBCookieStickinessPolicy" }, "type": "array" }, "Listeners": { "items": { "$ref": "#/definitions/AWS::ElasticLoadBalancing::LoadBalancer.Listeners" }, "type": "array" }, "LoadBalancerName": { "type": "string" }, "Policies": { "items": { "$ref": "#/definitions/AWS::ElasticLoadBalancing::LoadBalancer.Policies" }, "type": "array" }, "Scheme": { "type": "string" }, "SecurityGroups": { "items": { "type": "string" }, "type": "array" }, "Subnets": { "items": { "type": "string" }, "type": "array" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "Listeners" ], "type": "object" }, "Type": { "enum": [ "AWS::ElasticLoadBalancing::LoadBalancer" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::ElasticLoadBalancing::LoadBalancer.AccessLoggingPolicy": { "additionalProperties": false, "properties": { "EmitInterval": { "type": "number" }, "Enabled": { "type": "boolean" }, "S3BucketName": { "type": "string" }, "S3BucketPrefix": { "type": "string" } }, "required": [ "Enabled", "S3BucketName" ], "type": "object" }, "AWS::ElasticLoadBalancing::LoadBalancer.AppCookieStickinessPolicy": { "additionalProperties": false, "properties": { "CookieName": { "type": "string" }, "PolicyName": { "type": "string" } }, "required": [ "CookieName", "PolicyName" ], "type": "object" }, "AWS::ElasticLoadBalancing::LoadBalancer.ConnectionDrainingPolicy": { "additionalProperties": false, "properties": { "Enabled": { "type": "boolean" }, "Timeout": { "type": "number" } }, "required": [ "Enabled" ], "type": "object" }, "AWS::ElasticLoadBalancing::LoadBalancer.ConnectionSettings": { "additionalProperties": false, "properties": { "IdleTimeout": { "type": "number" } }, "required": [ "IdleTimeout" ], "type": "object" }, "AWS::ElasticLoadBalancing::LoadBalancer.HealthCheck": { "additionalProperties": false, "properties": { "HealthyThreshold": { "type": "string" }, "Interval": { "type": "string" }, "Target": { "type": "string" }, "Timeout": { "type": "string" }, "UnhealthyThreshold": { "type": "string" } }, "required": [ "HealthyThreshold", "Interval", "Target", "Timeout", "UnhealthyThreshold" ], "type": "object" }, "AWS::ElasticLoadBalancing::LoadBalancer.LBCookieStickinessPolicy": { "additionalProperties": false, "properties": { "CookieExpirationPeriod": { "type": "string" }, "PolicyName": { "type": "string" } }, "type": "object" }, "AWS::ElasticLoadBalancing::LoadBalancer.Listeners": { "additionalProperties": false, "properties": { "InstancePort": { "type": "string" }, "InstanceProtocol": { "type": "string" }, "LoadBalancerPort": { "type": "string" }, "PolicyNames": { "items": { "type": "string" }, "type": "array" }, "Protocol": { "type": "string" }, "SSLCertificateId": { "type": "string" } }, "required": [ "InstancePort", "LoadBalancerPort", "Protocol" ], "type": "object" }, "AWS::ElasticLoadBalancing::LoadBalancer.Policies": { "additionalProperties": false, "properties": { "Attributes": { "items": { "type": "object" }, "type": "array" }, "InstancePorts": { "items": { "type": "string" }, "type": "array" }, "LoadBalancerPorts": { "items": { "type": "string" }, "type": "array" }, "PolicyName": { "type": "string" }, "PolicyType": { "type": "string" } }, "required": [ "Attributes", "PolicyName", "PolicyType" ], "type": "object" }, "AWS::ElasticLoadBalancingV2::Listener": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AlpnPolicy": { "items": { "type": "string" }, "type": "array" }, "Certificates": { "items": { "$ref": "#/definitions/AWS::ElasticLoadBalancingV2::Listener.Certificate" }, "type": "array" }, "DefaultActions": { "items": { "$ref": "#/definitions/AWS::ElasticLoadBalancingV2::Listener.Action" }, "type": "array" }, "LoadBalancerArn": { "type": "string" }, "Port": { "type": "number" }, "Protocol": { "type": "string" }, "SslPolicy": { "type": "string" } }, "required": [ "DefaultActions", "LoadBalancerArn" ], "type": "object" }, "Type": { "enum": [ "AWS::ElasticLoadBalancingV2::Listener" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::ElasticLoadBalancingV2::Listener.Action": { "additionalProperties": false, "properties": { "AuthenticateCognitoConfig": { "$ref": "#/definitions/AWS::ElasticLoadBalancingV2::Listener.AuthenticateCognitoConfig" }, "AuthenticateOidcConfig": { "$ref": "#/definitions/AWS::ElasticLoadBalancingV2::Listener.AuthenticateOidcConfig" }, "FixedResponseConfig": { "$ref": "#/definitions/AWS::ElasticLoadBalancingV2::Listener.FixedResponseConfig" }, "ForwardConfig": { "$ref": "#/definitions/AWS::ElasticLoadBalancingV2::Listener.ForwardConfig" }, "Order": { "type": "number" }, "RedirectConfig": { "$ref": "#/definitions/AWS::ElasticLoadBalancingV2::Listener.RedirectConfig" }, "TargetGroupArn": { "type": "string" }, "Type": { "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::ElasticLoadBalancingV2::Listener.AuthenticateCognitoConfig": { "additionalProperties": false, "properties": { "AuthenticationRequestExtraParams": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" }, "OnUnauthenticatedRequest": { "type": "string" }, "Scope": { "type": "string" }, "SessionCookieName": { "type": "string" }, "SessionTimeout": { "type": "string" }, "UserPoolArn": { "type": "string" }, "UserPoolClientId": { "type": "string" }, "UserPoolDomain": { "type": "string" } }, "required": [ "UserPoolArn", "UserPoolClientId", "UserPoolDomain" ], "type": "object" }, "AWS::ElasticLoadBalancingV2::Listener.AuthenticateOidcConfig": { "additionalProperties": false, "properties": { "AuthenticationRequestExtraParams": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" }, "AuthorizationEndpoint": { "type": "string" }, "ClientId": { "type": "string" }, "ClientSecret": { "type": "string" }, "Issuer": { "type": "string" }, "OnUnauthenticatedRequest": { "type": "string" }, "Scope": { "type": "string" }, "SessionCookieName": { "type": "string" }, "SessionTimeout": { "type": "string" }, "TokenEndpoint": { "type": "string" }, "UseExistingClientSecret": { "type": "boolean" }, "UserInfoEndpoint": { "type": "string" } }, "required": [ "AuthorizationEndpoint", "ClientId", "Issuer", "TokenEndpoint", "UserInfoEndpoint" ], "type": "object" }, "AWS::ElasticLoadBalancingV2::Listener.Certificate": { "additionalProperties": false, "properties": { "CertificateArn": { "type": "string" } }, "type": "object" }, "AWS::ElasticLoadBalancingV2::Listener.FixedResponseConfig": { "additionalProperties": false, "properties": { "ContentType": { "type": "string" }, "MessageBody": { "type": "string" }, "StatusCode": { "type": "string" } }, "required": [ "StatusCode" ], "type": "object" }, "AWS::ElasticLoadBalancingV2::Listener.ForwardConfig": { "additionalProperties": false, "properties": { "TargetGroupStickinessConfig": { "$ref": "#/definitions/AWS::ElasticLoadBalancingV2::Listener.TargetGroupStickinessConfig" }, "TargetGroups": { "items": { "$ref": "#/definitions/AWS::ElasticLoadBalancingV2::Listener.TargetGroupTuple" }, "type": "array" } }, "type": "object" }, "AWS::ElasticLoadBalancingV2::Listener.RedirectConfig": { "additionalProperties": false, "properties": { "Host": { "type": "string" }, "Path": { "type": "string" }, "Port": { "type": "string" }, "Protocol": { "type": "string" }, "Query": { "type": "string" }, "StatusCode": { "type": "string" } }, "required": [ "StatusCode" ], "type": "object" }, "AWS::ElasticLoadBalancingV2::Listener.TargetGroupStickinessConfig": { "additionalProperties": false, "properties": { "DurationSeconds": { "type": "number" }, "Enabled": { "type": "boolean" } }, "type": "object" }, "AWS::ElasticLoadBalancingV2::Listener.TargetGroupTuple": { "additionalProperties": false, "properties": { "TargetGroupArn": { "type": "string" }, "Weight": { "type": "number" } }, "type": "object" }, "AWS::ElasticLoadBalancingV2::ListenerCertificate": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Certificates": { "items": { "$ref": "#/definitions/AWS::ElasticLoadBalancingV2::ListenerCertificate.Certificate" }, "type": "array" }, "ListenerArn": { "type": "string" } }, "required": [ "Certificates", "ListenerArn" ], "type": "object" }, "Type": { "enum": [ "AWS::ElasticLoadBalancingV2::ListenerCertificate" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::ElasticLoadBalancingV2::ListenerCertificate.Certificate": { "additionalProperties": false, "properties": { "CertificateArn": { "type": "string" } }, "type": "object" }, "AWS::ElasticLoadBalancingV2::ListenerRule": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Actions": { "items": { "$ref": "#/definitions/AWS::ElasticLoadBalancingV2::ListenerRule.Action" }, "type": "array" }, "Conditions": { "items": { "$ref": "#/definitions/AWS::ElasticLoadBalancingV2::ListenerRule.RuleCondition" }, "type": "array" }, "ListenerArn": { "type": "string" }, "Priority": { "type": "number" } }, "required": [ "Actions", "Conditions", "Priority" ], "type": "object" }, "Type": { "enum": [ "AWS::ElasticLoadBalancingV2::ListenerRule" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::ElasticLoadBalancingV2::ListenerRule.Action": { "additionalProperties": false, "properties": { "AuthenticateCognitoConfig": { "$ref": "#/definitions/AWS::ElasticLoadBalancingV2::ListenerRule.AuthenticateCognitoConfig" }, "AuthenticateOidcConfig": { "$ref": "#/definitions/AWS::ElasticLoadBalancingV2::ListenerRule.AuthenticateOidcConfig" }, "FixedResponseConfig": { "$ref": "#/definitions/AWS::ElasticLoadBalancingV2::ListenerRule.FixedResponseConfig" }, "ForwardConfig": { "$ref": "#/definitions/AWS::ElasticLoadBalancingV2::ListenerRule.ForwardConfig" }, "Order": { "type": "number" }, "RedirectConfig": { "$ref": "#/definitions/AWS::ElasticLoadBalancingV2::ListenerRule.RedirectConfig" }, "TargetGroupArn": { "type": "string" }, "Type": { "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::ElasticLoadBalancingV2::ListenerRule.AuthenticateCognitoConfig": { "additionalProperties": false, "properties": { "AuthenticationRequestExtraParams": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" }, "OnUnauthenticatedRequest": { "type": "string" }, "Scope": { "type": "string" }, "SessionCookieName": { "type": "string" }, "SessionTimeout": { "type": "number" }, "UserPoolArn": { "type": "string" }, "UserPoolClientId": { "type": "string" }, "UserPoolDomain": { "type": "string" } }, "required": [ "UserPoolArn", "UserPoolClientId", "UserPoolDomain" ], "type": "object" }, "AWS::ElasticLoadBalancingV2::ListenerRule.AuthenticateOidcConfig": { "additionalProperties": false, "properties": { "AuthenticationRequestExtraParams": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" }, "AuthorizationEndpoint": { "type": "string" }, "ClientId": { "type": "string" }, "ClientSecret": { "type": "string" }, "Issuer": { "type": "string" }, "OnUnauthenticatedRequest": { "type": "string" }, "Scope": { "type": "string" }, "SessionCookieName": { "type": "string" }, "SessionTimeout": { "type": "number" }, "TokenEndpoint": { "type": "string" }, "UseExistingClientSecret": { "type": "boolean" }, "UserInfoEndpoint": { "type": "string" } }, "required": [ "AuthorizationEndpoint", "ClientId", "Issuer", "TokenEndpoint", "UserInfoEndpoint" ], "type": "object" }, "AWS::ElasticLoadBalancingV2::ListenerRule.FixedResponseConfig": { "additionalProperties": false, "properties": { "ContentType": { "type": "string" }, "MessageBody": { "type": "string" }, "StatusCode": { "type": "string" } }, "required": [ "StatusCode" ], "type": "object" }, "AWS::ElasticLoadBalancingV2::ListenerRule.ForwardConfig": { "additionalProperties": false, "properties": { "TargetGroupStickinessConfig": { "$ref": "#/definitions/AWS::ElasticLoadBalancingV2::ListenerRule.TargetGroupStickinessConfig" }, "TargetGroups": { "items": { "$ref": "#/definitions/AWS::ElasticLoadBalancingV2::ListenerRule.TargetGroupTuple" }, "type": "array" } }, "type": "object" }, "AWS::ElasticLoadBalancingV2::ListenerRule.HostHeaderConfig": { "additionalProperties": false, "properties": { "Values": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::ElasticLoadBalancingV2::ListenerRule.HttpHeaderConfig": { "additionalProperties": false, "properties": { "HttpHeaderName": { "type": "string" }, "Values": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::ElasticLoadBalancingV2::ListenerRule.HttpRequestMethodConfig": { "additionalProperties": false, "properties": { "Values": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::ElasticLoadBalancingV2::ListenerRule.PathPatternConfig": { "additionalProperties": false, "properties": { "Values": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::ElasticLoadBalancingV2::ListenerRule.QueryStringConfig": { "additionalProperties": false, "properties": { "Values": { "items": { "$ref": "#/definitions/AWS::ElasticLoadBalancingV2::ListenerRule.QueryStringKeyValue" }, "type": "array" } }, "type": "object" }, "AWS::ElasticLoadBalancingV2::ListenerRule.QueryStringKeyValue": { "additionalProperties": false, "properties": { "Key": { "type": "string" }, "Value": { "type": "string" } }, "type": "object" }, "AWS::ElasticLoadBalancingV2::ListenerRule.RedirectConfig": { "additionalProperties": false, "properties": { "Host": { "type": "string" }, "Path": { "type": "string" }, "Port": { "type": "string" }, "Protocol": { "type": "string" }, "Query": { "type": "string" }, "StatusCode": { "type": "string" } }, "required": [ "StatusCode" ], "type": "object" }, "AWS::ElasticLoadBalancingV2::ListenerRule.RuleCondition": { "additionalProperties": false, "properties": { "Field": { "type": "string" }, "HostHeaderConfig": { "$ref": "#/definitions/AWS::ElasticLoadBalancingV2::ListenerRule.HostHeaderConfig" }, "HttpHeaderConfig": { "$ref": "#/definitions/AWS::ElasticLoadBalancingV2::ListenerRule.HttpHeaderConfig" }, "HttpRequestMethodConfig": { "$ref": "#/definitions/AWS::ElasticLoadBalancingV2::ListenerRule.HttpRequestMethodConfig" }, "PathPatternConfig": { "$ref": "#/definitions/AWS::ElasticLoadBalancingV2::ListenerRule.PathPatternConfig" }, "QueryStringConfig": { "$ref": "#/definitions/AWS::ElasticLoadBalancingV2::ListenerRule.QueryStringConfig" }, "SourceIpConfig": { "$ref": "#/definitions/AWS::ElasticLoadBalancingV2::ListenerRule.SourceIpConfig" }, "Values": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::ElasticLoadBalancingV2::ListenerRule.SourceIpConfig": { "additionalProperties": false, "properties": { "Values": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::ElasticLoadBalancingV2::ListenerRule.TargetGroupStickinessConfig": { "additionalProperties": false, "properties": { "DurationSeconds": { "type": "number" }, "Enabled": { "type": "boolean" } }, "type": "object" }, "AWS::ElasticLoadBalancingV2::ListenerRule.TargetGroupTuple": { "additionalProperties": false, "properties": { "TargetGroupArn": { "type": "string" }, "Weight": { "type": "number" } }, "type": "object" }, "AWS::ElasticLoadBalancingV2::LoadBalancer": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "IpAddressType": { "type": "string" }, "LoadBalancerAttributes": { "items": { "$ref": "#/definitions/AWS::ElasticLoadBalancingV2::LoadBalancer.LoadBalancerAttribute" }, "type": "array" }, "Name": { "type": "string" }, "Scheme": { "type": "string" }, "SecurityGroups": { "items": { "type": "string" }, "type": "array" }, "SubnetMappings": { "items": { "$ref": "#/definitions/AWS::ElasticLoadBalancingV2::LoadBalancer.SubnetMapping" }, "type": "array" }, "Subnets": { "items": { "type": "string" }, "type": "array" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "Type": { "type": "string" } }, "type": "object" }, "Type": { "enum": [ "AWS::ElasticLoadBalancingV2::LoadBalancer" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::ElasticLoadBalancingV2::LoadBalancer.LoadBalancerAttribute": { "additionalProperties": false, "properties": { "Key": { "type": "string" }, "Value": { "type": "string" } }, "type": "object" }, "AWS::ElasticLoadBalancingV2::LoadBalancer.SubnetMapping": { "additionalProperties": false, "properties": { "AllocationId": { "type": "string" }, "IPv6Address": { "type": "string" }, "PrivateIPv4Address": { "type": "string" }, "SubnetId": { "type": "string" } }, "required": [ "SubnetId" ], "type": "object" }, "AWS::ElasticLoadBalancingV2::TargetGroup": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "HealthCheckEnabled": { "type": "boolean" }, "HealthCheckIntervalSeconds": { "type": "number" }, "HealthCheckPath": { "type": "string" }, "HealthCheckPort": { "type": "string" }, "HealthCheckProtocol": { "type": "string" }, "HealthCheckTimeoutSeconds": { "type": "number" }, "HealthyThresholdCount": { "type": "number" }, "IpAddressType": { "type": "string" }, "Matcher": { "$ref": "#/definitions/AWS::ElasticLoadBalancingV2::TargetGroup.Matcher" }, "Name": { "type": "string" }, "Port": { "type": "number" }, "Protocol": { "type": "string" }, "ProtocolVersion": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "TargetGroupAttributes": { "items": { "$ref": "#/definitions/AWS::ElasticLoadBalancingV2::TargetGroup.TargetGroupAttribute" }, "type": "array" }, "TargetType": { "type": "string" }, "Targets": { "items": { "$ref": "#/definitions/AWS::ElasticLoadBalancingV2::TargetGroup.TargetDescription" }, "type": "array" }, "UnhealthyThresholdCount": { "type": "number" }, "VpcId": { "type": "string" } }, "type": "object" }, "Type": { "enum": [ "AWS::ElasticLoadBalancingV2::TargetGroup" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::ElasticLoadBalancingV2::TargetGroup.Matcher": { "additionalProperties": false, "properties": { "GrpcCode": { "type": "string" }, "HttpCode": { "type": "string" } }, "type": "object" }, "AWS::ElasticLoadBalancingV2::TargetGroup.TargetDescription": { "additionalProperties": false, "properties": { "AvailabilityZone": { "type": "string" }, "Id": { "type": "string" }, "Port": { "type": "number" } }, "required": [ "Id" ], "type": "object" }, "AWS::ElasticLoadBalancingV2::TargetGroup.TargetGroupAttribute": { "additionalProperties": false, "properties": { "Key": { "type": "string" }, "Value": { "type": "string" } }, "type": "object" }, "AWS::Elasticsearch::Domain": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AccessPolicies": { "type": "object" }, "AdvancedOptions": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" }, "AdvancedSecurityOptions": { "$ref": "#/definitions/AWS::Elasticsearch::Domain.AdvancedSecurityOptionsInput" }, "CognitoOptions": { "$ref": "#/definitions/AWS::Elasticsearch::Domain.CognitoOptions" }, "DomainEndpointOptions": { "$ref": "#/definitions/AWS::Elasticsearch::Domain.DomainEndpointOptions" }, "DomainName": { "type": "string" }, "EBSOptions": { "$ref": "#/definitions/AWS::Elasticsearch::Domain.EBSOptions" }, "ElasticsearchClusterConfig": { "$ref": "#/definitions/AWS::Elasticsearch::Domain.ElasticsearchClusterConfig" }, "ElasticsearchVersion": { "type": "string" }, "EncryptionAtRestOptions": { "$ref": "#/definitions/AWS::Elasticsearch::Domain.EncryptionAtRestOptions" }, "LogPublishingOptions": { "additionalProperties": false, "patternProperties": { "^[a-zA-Z0-9]+$": { "$ref": "#/definitions/AWS::Elasticsearch::Domain.LogPublishingOption" } }, "type": "object" }, "NodeToNodeEncryptionOptions": { "$ref": "#/definitions/AWS::Elasticsearch::Domain.NodeToNodeEncryptionOptions" }, "SnapshotOptions": { "$ref": "#/definitions/AWS::Elasticsearch::Domain.SnapshotOptions" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "VPCOptions": { "$ref": "#/definitions/AWS::Elasticsearch::Domain.VPCOptions" } }, "type": "object" }, "Type": { "enum": [ "AWS::Elasticsearch::Domain" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::Elasticsearch::Domain.AdvancedSecurityOptionsInput": { "additionalProperties": false, "properties": { "AnonymousAuthEnabled": { "type": "boolean" }, "Enabled": { "type": "boolean" }, "InternalUserDatabaseEnabled": { "type": "boolean" }, "MasterUserOptions": { "$ref": "#/definitions/AWS::Elasticsearch::Domain.MasterUserOptions" } }, "type": "object" }, "AWS::Elasticsearch::Domain.CognitoOptions": { "additionalProperties": false, "properties": { "Enabled": { "type": "boolean" }, "IdentityPoolId": { "type": "string" }, "RoleArn": { "type": "string" }, "UserPoolId": { "type": "string" } }, "type": "object" }, "AWS::Elasticsearch::Domain.ColdStorageOptions": { "additionalProperties": false, "properties": { "Enabled": { "type": "boolean" } }, "type": "object" }, "AWS::Elasticsearch::Domain.DomainEndpointOptions": { "additionalProperties": false, "properties": { "CustomEndpoint": { "type": "string" }, "CustomEndpointCertificateArn": { "type": "string" }, "CustomEndpointEnabled": { "type": "boolean" }, "EnforceHTTPS": { "type": "boolean" }, "TLSSecurityPolicy": { "type": "string" } }, "type": "object" }, "AWS::Elasticsearch::Domain.EBSOptions": { "additionalProperties": false, "properties": { "EBSEnabled": { "type": "boolean" }, "Iops": { "type": "number" }, "VolumeSize": { "type": "number" }, "VolumeType": { "type": "string" } }, "type": "object" }, "AWS::Elasticsearch::Domain.ElasticsearchClusterConfig": { "additionalProperties": false, "properties": { "ColdStorageOptions": { "$ref": "#/definitions/AWS::Elasticsearch::Domain.ColdStorageOptions" }, "DedicatedMasterCount": { "type": "number" }, "DedicatedMasterEnabled": { "type": "boolean" }, "DedicatedMasterType": { "type": "string" }, "InstanceCount": { "type": "number" }, "InstanceType": { "type": "string" }, "WarmCount": { "type": "number" }, "WarmEnabled": { "type": "boolean" }, "WarmType": { "type": "string" }, "ZoneAwarenessConfig": { "$ref": "#/definitions/AWS::Elasticsearch::Domain.ZoneAwarenessConfig" }, "ZoneAwarenessEnabled": { "type": "boolean" } }, "type": "object" }, "AWS::Elasticsearch::Domain.EncryptionAtRestOptions": { "additionalProperties": false, "properties": { "Enabled": { "type": "boolean" }, "KmsKeyId": { "type": "string" } }, "type": "object" }, "AWS::Elasticsearch::Domain.LogPublishingOption": { "additionalProperties": false, "properties": { "CloudWatchLogsLogGroupArn": { "type": "string" }, "Enabled": { "type": "boolean" } }, "type": "object" }, "AWS::Elasticsearch::Domain.MasterUserOptions": { "additionalProperties": false, "properties": { "MasterUserARN": { "type": "string" }, "MasterUserName": { "type": "string" }, "MasterUserPassword": { "type": "string" } }, "type": "object" }, "AWS::Elasticsearch::Domain.NodeToNodeEncryptionOptions": { "additionalProperties": false, "properties": { "Enabled": { "type": "boolean" } }, "type": "object" }, "AWS::Elasticsearch::Domain.SnapshotOptions": { "additionalProperties": false, "properties": { "AutomatedSnapshotStartHour": { "type": "number" } }, "type": "object" }, "AWS::Elasticsearch::Domain.VPCOptions": { "additionalProperties": false, "properties": { "SecurityGroupIds": { "items": { "type": "string" }, "type": "array" }, "SubnetIds": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::Elasticsearch::Domain.ZoneAwarenessConfig": { "additionalProperties": false, "properties": { "AvailabilityZoneCount": { "type": "number" } }, "type": "object" }, "AWS::EventSchemas::Discoverer": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "CrossAccount": { "type": "boolean" }, "Description": { "type": "string" }, "SourceArn": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/AWS::EventSchemas::Discoverer.TagsEntry" }, "type": "array" } }, "required": [ "SourceArn" ], "type": "object" }, "Type": { "enum": [ "AWS::EventSchemas::Discoverer" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::EventSchemas::Discoverer.TagsEntry": { "additionalProperties": false, "properties": { "Key": { "type": "string" }, "Value": { "type": "string" } }, "required": [ "Key", "Value" ], "type": "object" }, "AWS::EventSchemas::Registry": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "RegistryName": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/AWS::EventSchemas::Registry.TagsEntry" }, "type": "array" } }, "type": "object" }, "Type": { "enum": [ "AWS::EventSchemas::Registry" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::EventSchemas::Registry.TagsEntry": { "additionalProperties": false, "properties": { "Key": { "type": "string" }, "Value": { "type": "string" } }, "required": [ "Key", "Value" ], "type": "object" }, "AWS::EventSchemas::RegistryPolicy": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Policy": { "type": "object" }, "RegistryName": { "type": "string" }, "RevisionId": { "type": "string" } }, "required": [ "Policy", "RegistryName" ], "type": "object" }, "Type": { "enum": [ "AWS::EventSchemas::RegistryPolicy" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::EventSchemas::Schema": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Content": { "type": "string" }, "Description": { "type": "string" }, "RegistryName": { "type": "string" }, "SchemaName": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/AWS::EventSchemas::Schema.TagsEntry" }, "type": "array" }, "Type": { "type": "string" } }, "required": [ "Content", "RegistryName", "Type" ], "type": "object" }, "Type": { "enum": [ "AWS::EventSchemas::Schema" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::EventSchemas::Schema.TagsEntry": { "additionalProperties": false, "properties": { "Key": { "type": "string" }, "Value": { "type": "string" } }, "required": [ "Key", "Value" ], "type": "object" }, "AWS::Events::ApiDestination": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ConnectionArn": { "type": "string" }, "Description": { "type": "string" }, "HttpMethod": { "type": "string" }, "InvocationEndpoint": { "type": "string" }, "InvocationRateLimitPerSecond": { "type": "number" }, "Name": { "type": "string" } }, "required": [ "ConnectionArn", "HttpMethod", "InvocationEndpoint" ], "type": "object" }, "Type": { "enum": [ "AWS::Events::ApiDestination" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Events::Archive": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ArchiveName": { "type": "string" }, "Description": { "type": "string" }, "EventPattern": { "type": "object" }, "RetentionDays": { "type": "number" }, "SourceArn": { "type": "string" } }, "required": [ "SourceArn" ], "type": "object" }, "Type": { "enum": [ "AWS::Events::Archive" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Events::Connection": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AuthParameters": { "$ref": "#/definitions/AWS::Events::Connection.AuthParameters" }, "AuthorizationType": { "type": "string" }, "Description": { "type": "string" }, "Name": { "type": "string" } }, "type": "object" }, "Type": { "enum": [ "AWS::Events::Connection" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::Events::Connection.ApiKeyAuthParameters": { "additionalProperties": false, "properties": { "ApiKeyName": { "type": "string" }, "ApiKeyValue": { "type": "string" } }, "required": [ "ApiKeyName", "ApiKeyValue" ], "type": "object" }, "AWS::Events::Connection.AuthParameters": { "additionalProperties": false, "properties": { "ApiKeyAuthParameters": { "$ref": "#/definitions/AWS::Events::Connection.ApiKeyAuthParameters" }, "BasicAuthParameters": { "$ref": "#/definitions/AWS::Events::Connection.BasicAuthParameters" }, "InvocationHttpParameters": { "$ref": "#/definitions/AWS::Events::Connection.ConnectionHttpParameters" }, "OAuthParameters": { "$ref": "#/definitions/AWS::Events::Connection.OAuthParameters" } }, "type": "object" }, "AWS::Events::Connection.BasicAuthParameters": { "additionalProperties": false, "properties": { "Password": { "type": "string" }, "Username": { "type": "string" } }, "required": [ "Password", "Username" ], "type": "object" }, "AWS::Events::Connection.ClientParameters": { "additionalProperties": false, "properties": { "ClientID": { "type": "string" }, "ClientSecret": { "type": "string" } }, "required": [ "ClientID", "ClientSecret" ], "type": "object" }, "AWS::Events::Connection.ConnectionHttpParameters": { "additionalProperties": false, "properties": { "BodyParameters": { "items": { "$ref": "#/definitions/AWS::Events::Connection.Parameter" }, "type": "array" }, "HeaderParameters": { "items": { "$ref": "#/definitions/AWS::Events::Connection.Parameter" }, "type": "array" }, "QueryStringParameters": { "items": { "$ref": "#/definitions/AWS::Events::Connection.Parameter" }, "type": "array" } }, "type": "object" }, "AWS::Events::Connection.OAuthParameters": { "additionalProperties": false, "properties": { "AuthorizationEndpoint": { "type": "string" }, "ClientParameters": { "$ref": "#/definitions/AWS::Events::Connection.ClientParameters" }, "HttpMethod": { "type": "string" }, "OAuthHttpParameters": { "$ref": "#/definitions/AWS::Events::Connection.ConnectionHttpParameters" } }, "required": [ "AuthorizationEndpoint", "ClientParameters", "HttpMethod" ], "type": "object" }, "AWS::Events::Connection.Parameter": { "additionalProperties": false, "properties": { "IsValueSecret": { "type": "boolean" }, "Key": { "type": "string" }, "Value": { "type": "string" } }, "required": [ "Key", "Value" ], "type": "object" }, "AWS::Events::Endpoint": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "EventBuses": { "items": { "$ref": "#/definitions/AWS::Events::Endpoint.EndpointEventBus" }, "type": "array" }, "Name": { "type": "string" }, "ReplicationConfig": { "$ref": "#/definitions/AWS::Events::Endpoint.ReplicationConfig" }, "RoleArn": { "type": "string" }, "RoutingConfig": { "$ref": "#/definitions/AWS::Events::Endpoint.RoutingConfig" } }, "required": [ "EventBuses", "RoutingConfig" ], "type": "object" }, "Type": { "enum": [ "AWS::Events::Endpoint" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Events::Endpoint.EndpointEventBus": { "additionalProperties": false, "properties": { "EventBusArn": { "type": "string" } }, "required": [ "EventBusArn" ], "type": "object" }, "AWS::Events::Endpoint.FailoverConfig": { "additionalProperties": false, "properties": { "Primary": { "$ref": "#/definitions/AWS::Events::Endpoint.Primary" }, "Secondary": { "$ref": "#/definitions/AWS::Events::Endpoint.Secondary" } }, "required": [ "Primary", "Secondary" ], "type": "object" }, "AWS::Events::Endpoint.Primary": { "additionalProperties": false, "properties": { "HealthCheck": { "type": "string" } }, "required": [ "HealthCheck" ], "type": "object" }, "AWS::Events::Endpoint.ReplicationConfig": { "additionalProperties": false, "properties": { "State": { "type": "string" } }, "required": [ "State" ], "type": "object" }, "AWS::Events::Endpoint.RoutingConfig": { "additionalProperties": false, "properties": { "FailoverConfig": { "$ref": "#/definitions/AWS::Events::Endpoint.FailoverConfig" } }, "required": [ "FailoverConfig" ], "type": "object" }, "AWS::Events::Endpoint.Secondary": { "additionalProperties": false, "properties": { "Route": { "type": "string" } }, "required": [ "Route" ], "type": "object" }, "AWS::Events::EventBus": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "EventSourceName": { "type": "string" }, "Name": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/AWS::Events::EventBus.TagEntry" }, "type": "array" } }, "required": [ "Name" ], "type": "object" }, "Type": { "enum": [ "AWS::Events::EventBus" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Events::EventBus.TagEntry": { "additionalProperties": false, "properties": { "Key": { "type": "string" }, "Value": { "type": "string" } }, "required": [ "Key", "Value" ], "type": "object" }, "AWS::Events::EventBusPolicy": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Action": { "type": "string" }, "Condition": { "$ref": "#/definitions/AWS::Events::EventBusPolicy.Condition" }, "EventBusName": { "type": "string" }, "Principal": { "type": "string" }, "Statement": { "type": "object" }, "StatementId": { "type": "string" } }, "required": [ "StatementId" ], "type": "object" }, "Type": { "enum": [ "AWS::Events::EventBusPolicy" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Events::EventBusPolicy.Condition": { "additionalProperties": false, "properties": { "Key": { "type": "string" }, "Type": { "type": "string" }, "Value": { "type": "string" } }, "type": "object" }, "AWS::Events::Rule": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "EventBusName": { "type": "string" }, "EventPattern": { "type": "object" }, "Name": { "type": "string" }, "RoleArn": { "type": "string" }, "ScheduleExpression": { "type": "string" }, "State": { "type": "string" }, "Targets": { "items": { "$ref": "#/definitions/AWS::Events::Rule.Target" }, "type": "array" } }, "type": "object" }, "Type": { "enum": [ "AWS::Events::Rule" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::Events::Rule.AwsVpcConfiguration": { "additionalProperties": false, "properties": { "AssignPublicIp": { "type": "string" }, "SecurityGroups": { "items": { "type": "string" }, "type": "array" }, "Subnets": { "items": { "type": "string" }, "type": "array" } }, "required": [ "Subnets" ], "type": "object" }, "AWS::Events::Rule.BatchArrayProperties": { "additionalProperties": false, "properties": { "Size": { "type": "number" } }, "type": "object" }, "AWS::Events::Rule.BatchParameters": { "additionalProperties": false, "properties": { "ArrayProperties": { "$ref": "#/definitions/AWS::Events::Rule.BatchArrayProperties" }, "JobDefinition": { "type": "string" }, "JobName": { "type": "string" }, "RetryStrategy": { "$ref": "#/definitions/AWS::Events::Rule.BatchRetryStrategy" } }, "required": [ "JobDefinition", "JobName" ], "type": "object" }, "AWS::Events::Rule.BatchRetryStrategy": { "additionalProperties": false, "properties": { "Attempts": { "type": "number" } }, "type": "object" }, "AWS::Events::Rule.CapacityProviderStrategyItem": { "additionalProperties": false, "properties": { "Base": { "type": "number" }, "CapacityProvider": { "type": "string" }, "Weight": { "type": "number" } }, "required": [ "CapacityProvider" ], "type": "object" }, "AWS::Events::Rule.DeadLetterConfig": { "additionalProperties": false, "properties": { "Arn": { "type": "string" } }, "type": "object" }, "AWS::Events::Rule.EcsParameters": { "additionalProperties": false, "properties": { "CapacityProviderStrategy": { "items": { "$ref": "#/definitions/AWS::Events::Rule.CapacityProviderStrategyItem" }, "type": "array" }, "EnableECSManagedTags": { "type": "boolean" }, "EnableExecuteCommand": { "type": "boolean" }, "Group": { "type": "string" }, "LaunchType": { "type": "string" }, "NetworkConfiguration": { "$ref": "#/definitions/AWS::Events::Rule.NetworkConfiguration" }, "PlacementConstraints": { "items": { "$ref": "#/definitions/AWS::Events::Rule.PlacementConstraint" }, "type": "array" }, "PlacementStrategies": { "items": { "$ref": "#/definitions/AWS::Events::Rule.PlacementStrategy" }, "type": "array" }, "PlatformVersion": { "type": "string" }, "PropagateTags": { "type": "string" }, "ReferenceId": { "type": "string" }, "TagList": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "TaskCount": { "type": "number" }, "TaskDefinitionArn": { "type": "string" } }, "required": [ "TaskDefinitionArn" ], "type": "object" }, "AWS::Events::Rule.HttpParameters": { "additionalProperties": false, "properties": { "HeaderParameters": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" }, "PathParameterValues": { "items": { "type": "string" }, "type": "array" }, "QueryStringParameters": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" } }, "type": "object" }, "AWS::Events::Rule.InputTransformer": { "additionalProperties": false, "properties": { "InputPathsMap": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" }, "InputTemplate": { "type": "string" } }, "required": [ "InputTemplate" ], "type": "object" }, "AWS::Events::Rule.KinesisParameters": { "additionalProperties": false, "properties": { "PartitionKeyPath": { "type": "string" } }, "required": [ "PartitionKeyPath" ], "type": "object" }, "AWS::Events::Rule.NetworkConfiguration": { "additionalProperties": false, "properties": { "AwsVpcConfiguration": { "$ref": "#/definitions/AWS::Events::Rule.AwsVpcConfiguration" } }, "type": "object" }, "AWS::Events::Rule.PlacementConstraint": { "additionalProperties": false, "properties": { "Expression": { "type": "string" }, "Type": { "type": "string" } }, "type": "object" }, "AWS::Events::Rule.PlacementStrategy": { "additionalProperties": false, "properties": { "Field": { "type": "string" }, "Type": { "type": "string" } }, "type": "object" }, "AWS::Events::Rule.RedshiftDataParameters": { "additionalProperties": false, "properties": { "Database": { "type": "string" }, "DbUser": { "type": "string" }, "SecretManagerArn": { "type": "string" }, "Sql": { "type": "string" }, "StatementName": { "type": "string" }, "WithEvent": { "type": "boolean" } }, "required": [ "Database" ], "type": "object" }, "AWS::Events::Rule.RetryPolicy": { "additionalProperties": false, "properties": { "MaximumEventAgeInSeconds": { "type": "number" }, "MaximumRetryAttempts": { "type": "number" } }, "type": "object" }, "AWS::Events::Rule.RunCommandParameters": { "additionalProperties": false, "properties": { "RunCommandTargets": { "items": { "$ref": "#/definitions/AWS::Events::Rule.RunCommandTarget" }, "type": "array" } }, "required": [ "RunCommandTargets" ], "type": "object" }, "AWS::Events::Rule.RunCommandTarget": { "additionalProperties": false, "properties": { "Key": { "type": "string" }, "Values": { "items": { "type": "string" }, "type": "array" } }, "required": [ "Key", "Values" ], "type": "object" }, "AWS::Events::Rule.SageMakerPipelineParameter": { "additionalProperties": false, "properties": { "Name": { "type": "string" }, "Value": { "type": "string" } }, "required": [ "Name", "Value" ], "type": "object" }, "AWS::Events::Rule.SageMakerPipelineParameters": { "additionalProperties": false, "properties": { "PipelineParameterList": { "items": { "$ref": "#/definitions/AWS::Events::Rule.SageMakerPipelineParameter" }, "type": "array" } }, "type": "object" }, "AWS::Events::Rule.SqsParameters": { "additionalProperties": false, "properties": { "MessageGroupId": { "type": "string" } }, "required": [ "MessageGroupId" ], "type": "object" }, "AWS::Events::Rule.Tag": { "additionalProperties": false, "properties": { "Key": { "type": "string" }, "Value": { "type": "string" } }, "type": "object" }, "AWS::Events::Rule.Target": { "additionalProperties": false, "properties": { "Arn": { "type": "string" }, "BatchParameters": { "$ref": "#/definitions/AWS::Events::Rule.BatchParameters" }, "DeadLetterConfig": { "$ref": "#/definitions/AWS::Events::Rule.DeadLetterConfig" }, "EcsParameters": { "$ref": "#/definitions/AWS::Events::Rule.EcsParameters" }, "HttpParameters": { "$ref": "#/definitions/AWS::Events::Rule.HttpParameters" }, "Id": { "type": "string" }, "Input": { "type": "string" }, "InputPath": { "type": "string" }, "InputTransformer": { "$ref": "#/definitions/AWS::Events::Rule.InputTransformer" }, "KinesisParameters": { "$ref": "#/definitions/AWS::Events::Rule.KinesisParameters" }, "RedshiftDataParameters": { "$ref": "#/definitions/AWS::Events::Rule.RedshiftDataParameters" }, "RetryPolicy": { "$ref": "#/definitions/AWS::Events::Rule.RetryPolicy" }, "RoleArn": { "type": "string" }, "RunCommandParameters": { "$ref": "#/definitions/AWS::Events::Rule.RunCommandParameters" }, "SageMakerPipelineParameters": { "$ref": "#/definitions/AWS::Events::Rule.SageMakerPipelineParameters" }, "SqsParameters": { "$ref": "#/definitions/AWS::Events::Rule.SqsParameters" } }, "required": [ "Arn", "Id" ], "type": "object" }, "AWS::Evidently::Experiment": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "MetricGoals": { "items": { "$ref": "#/definitions/AWS::Evidently::Experiment.MetricGoalObject" }, "type": "array" }, "Name": { "type": "string" }, "OnlineAbConfig": { "$ref": "#/definitions/AWS::Evidently::Experiment.OnlineAbConfigObject" }, "Project": { "type": "string" }, "RandomizationSalt": { "type": "string" }, "RemoveSegment": { "type": "boolean" }, "RunningStatus": { "$ref": "#/definitions/AWS::Evidently::Experiment.RunningStatusObject" }, "SamplingRate": { "type": "number" }, "Segment": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "Treatments": { "items": { "$ref": "#/definitions/AWS::Evidently::Experiment.TreatmentObject" }, "type": "array" } }, "required": [ "MetricGoals", "Name", "OnlineAbConfig", "Project", "Treatments" ], "type": "object" }, "Type": { "enum": [ "AWS::Evidently::Experiment" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Evidently::Experiment.MetricGoalObject": { "additionalProperties": false, "properties": { "DesiredChange": { "type": "string" }, "EntityIdKey": { "type": "string" }, "EventPattern": { "type": "string" }, "MetricName": { "type": "string" }, "UnitLabel": { "type": "string" }, "ValueKey": { "type": "string" } }, "required": [ "DesiredChange", "EntityIdKey", "MetricName", "ValueKey" ], "type": "object" }, "AWS::Evidently::Experiment.OnlineAbConfigObject": { "additionalProperties": false, "properties": { "ControlTreatmentName": { "type": "string" }, "TreatmentWeights": { "items": { "$ref": "#/definitions/AWS::Evidently::Experiment.TreatmentToWeight" }, "type": "array" } }, "type": "object" }, "AWS::Evidently::Experiment.RunningStatusObject": { "additionalProperties": false, "properties": { "AnalysisCompleteTime": { "type": "string" }, "DesiredState": { "type": "string" }, "Reason": { "type": "string" }, "Status": { "type": "string" } }, "required": [ "Status" ], "type": "object" }, "AWS::Evidently::Experiment.TreatmentObject": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "Feature": { "type": "string" }, "TreatmentName": { "type": "string" }, "Variation": { "type": "string" } }, "required": [ "Feature", "TreatmentName", "Variation" ], "type": "object" }, "AWS::Evidently::Experiment.TreatmentToWeight": { "additionalProperties": false, "properties": { "SplitWeight": { "type": "number" }, "Treatment": { "type": "string" } }, "required": [ "SplitWeight", "Treatment" ], "type": "object" }, "AWS::Evidently::Feature": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "DefaultVariation": { "type": "string" }, "Description": { "type": "string" }, "EntityOverrides": { "items": { "$ref": "#/definitions/AWS::Evidently::Feature.EntityOverride" }, "type": "array" }, "EvaluationStrategy": { "type": "string" }, "Name": { "type": "string" }, "Project": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "Variations": { "items": { "$ref": "#/definitions/AWS::Evidently::Feature.VariationObject" }, "type": "array" } }, "required": [ "Name", "Project", "Variations" ], "type": "object" }, "Type": { "enum": [ "AWS::Evidently::Feature" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Evidently::Feature.EntityOverride": { "additionalProperties": false, "properties": { "EntityId": { "type": "string" }, "Variation": { "type": "string" } }, "type": "object" }, "AWS::Evidently::Feature.VariationObject": { "additionalProperties": false, "properties": { "BooleanValue": { "type": "boolean" }, "DoubleValue": { "type": "number" }, "LongValue": { "type": "number" }, "StringValue": { "type": "string" }, "VariationName": { "type": "string" } }, "required": [ "VariationName" ], "type": "object" }, "AWS::Evidently::Launch": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "ExecutionStatus": { "$ref": "#/definitions/AWS::Evidently::Launch.ExecutionStatusObject" }, "Groups": { "items": { "$ref": "#/definitions/AWS::Evidently::Launch.LaunchGroupObject" }, "type": "array" }, "MetricMonitors": { "items": { "$ref": "#/definitions/AWS::Evidently::Launch.MetricDefinitionObject" }, "type": "array" }, "Name": { "type": "string" }, "Project": { "type": "string" }, "RandomizationSalt": { "type": "string" }, "ScheduledSplitsConfig": { "items": { "$ref": "#/definitions/AWS::Evidently::Launch.StepConfig" }, "type": "array" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "Groups", "Name", "Project", "ScheduledSplitsConfig" ], "type": "object" }, "Type": { "enum": [ "AWS::Evidently::Launch" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Evidently::Launch.ExecutionStatusObject": { "additionalProperties": false, "properties": { "DesiredState": { "type": "string" }, "Reason": { "type": "string" }, "Status": { "type": "string" } }, "required": [ "Status" ], "type": "object" }, "AWS::Evidently::Launch.GroupToWeight": { "additionalProperties": false, "properties": { "GroupName": { "type": "string" }, "SplitWeight": { "type": "number" } }, "required": [ "GroupName", "SplitWeight" ], "type": "object" }, "AWS::Evidently::Launch.LaunchGroupObject": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "Feature": { "type": "string" }, "GroupName": { "type": "string" }, "Variation": { "type": "string" } }, "required": [ "Feature", "GroupName", "Variation" ], "type": "object" }, "AWS::Evidently::Launch.MetricDefinitionObject": { "additionalProperties": false, "properties": { "EntityIdKey": { "type": "string" }, "EventPattern": { "type": "string" }, "MetricName": { "type": "string" }, "UnitLabel": { "type": "string" }, "ValueKey": { "type": "string" } }, "required": [ "EntityIdKey", "MetricName", "ValueKey" ], "type": "object" }, "AWS::Evidently::Launch.SegmentOverride": { "additionalProperties": false, "properties": { "EvaluationOrder": { "type": "number" }, "Segment": { "type": "string" }, "Weights": { "items": { "$ref": "#/definitions/AWS::Evidently::Launch.GroupToWeight" }, "type": "array" } }, "required": [ "EvaluationOrder", "Segment", "Weights" ], "type": "object" }, "AWS::Evidently::Launch.StepConfig": { "additionalProperties": false, "properties": { "GroupWeights": { "items": { "$ref": "#/definitions/AWS::Evidently::Launch.GroupToWeight" }, "type": "array" }, "SegmentOverrides": { "items": { "$ref": "#/definitions/AWS::Evidently::Launch.SegmentOverride" }, "type": "array" }, "StartTime": { "type": "string" } }, "required": [ "GroupWeights", "StartTime" ], "type": "object" }, "AWS::Evidently::Project": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AppConfigResource": { "$ref": "#/definitions/AWS::Evidently::Project.AppConfigResourceObject" }, "DataDelivery": { "$ref": "#/definitions/AWS::Evidently::Project.DataDeliveryObject" }, "Description": { "type": "string" }, "Name": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "Name" ], "type": "object" }, "Type": { "enum": [ "AWS::Evidently::Project" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Evidently::Project.AppConfigResourceObject": { "additionalProperties": false, "properties": { "ApplicationId": { "type": "string" }, "EnvironmentId": { "type": "string" } }, "required": [ "ApplicationId", "EnvironmentId" ], "type": "object" }, "AWS::Evidently::Project.DataDeliveryObject": { "additionalProperties": false, "properties": { "LogGroup": { "type": "string" }, "S3": { "$ref": "#/definitions/AWS::Evidently::Project.S3Destination" } }, "type": "object" }, "AWS::Evidently::Project.S3Destination": { "additionalProperties": false, "properties": { "BucketName": { "type": "string" }, "Prefix": { "type": "string" } }, "required": [ "BucketName" ], "type": "object" }, "AWS::Evidently::Segment": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "Name": { "type": "string" }, "Pattern": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "Name" ], "type": "object" }, "Type": { "enum": [ "AWS::Evidently::Segment" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::FIS::ExperimentTemplate": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Actions": { "additionalProperties": false, "patternProperties": { "^[a-zA-Z0-9]+$": { "$ref": "#/definitions/AWS::FIS::ExperimentTemplate.ExperimentTemplateAction" } }, "type": "object" }, "Description": { "type": "string" }, "LogConfiguration": { "$ref": "#/definitions/AWS::FIS::ExperimentTemplate.ExperimentTemplateLogConfiguration" }, "RoleArn": { "type": "string" }, "StopConditions": { "items": { "$ref": "#/definitions/AWS::FIS::ExperimentTemplate.ExperimentTemplateStopCondition" }, "type": "array" }, "Tags": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" }, "Targets": { "additionalProperties": false, "patternProperties": { "^[a-zA-Z0-9]+$": { "$ref": "#/definitions/AWS::FIS::ExperimentTemplate.ExperimentTemplateTarget" } }, "type": "object" } }, "required": [ "Description", "RoleArn", "StopConditions", "Tags", "Targets" ], "type": "object" }, "Type": { "enum": [ "AWS::FIS::ExperimentTemplate" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::FIS::ExperimentTemplate.CloudWatchLogsConfiguration": { "additionalProperties": false, "properties": { "LogGroupArn": { "type": "string" } }, "required": [ "LogGroupArn" ], "type": "object" }, "AWS::FIS::ExperimentTemplate.ExperimentTemplateAction": { "additionalProperties": false, "properties": { "ActionId": { "type": "string" }, "Description": { "type": "string" }, "Parameters": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" }, "StartAfter": { "items": { "type": "string" }, "type": "array" }, "Targets": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" } }, "required": [ "ActionId" ], "type": "object" }, "AWS::FIS::ExperimentTemplate.ExperimentTemplateLogConfiguration": { "additionalProperties": false, "properties": { "CloudWatchLogsConfiguration": { "$ref": "#/definitions/AWS::FIS::ExperimentTemplate.CloudWatchLogsConfiguration" }, "LogSchemaVersion": { "type": "number" }, "S3Configuration": { "$ref": "#/definitions/AWS::FIS::ExperimentTemplate.S3Configuration" } }, "required": [ "LogSchemaVersion" ], "type": "object" }, "AWS::FIS::ExperimentTemplate.ExperimentTemplateStopCondition": { "additionalProperties": false, "properties": { "Source": { "type": "string" }, "Value": { "type": "string" } }, "required": [ "Source" ], "type": "object" }, "AWS::FIS::ExperimentTemplate.ExperimentTemplateTarget": { "additionalProperties": false, "properties": { "Filters": { "items": { "$ref": "#/definitions/AWS::FIS::ExperimentTemplate.ExperimentTemplateTargetFilter" }, "type": "array" }, "Parameters": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" }, "ResourceArns": { "items": { "type": "string" }, "type": "array" }, "ResourceTags": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" }, "ResourceType": { "type": "string" }, "SelectionMode": { "type": "string" } }, "required": [ "ResourceType", "SelectionMode" ], "type": "object" }, "AWS::FIS::ExperimentTemplate.ExperimentTemplateTargetFilter": { "additionalProperties": false, "properties": { "Path": { "type": "string" }, "Values": { "items": { "type": "string" }, "type": "array" } }, "required": [ "Path", "Values" ], "type": "object" }, "AWS::FIS::ExperimentTemplate.S3Configuration": { "additionalProperties": false, "properties": { "BucketName": { "type": "string" }, "Prefix": { "type": "string" } }, "required": [ "BucketName" ], "type": "object" }, "AWS::FMS::NotificationChannel": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "SnsRoleName": { "type": "string" }, "SnsTopicArn": { "type": "string" } }, "required": [ "SnsRoleName", "SnsTopicArn" ], "type": "object" }, "Type": { "enum": [ "AWS::FMS::NotificationChannel" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::FMS::Policy": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "DeleteAllPolicyResources": { "type": "boolean" }, "ExcludeMap": { "$ref": "#/definitions/AWS::FMS::Policy.IEMap" }, "ExcludeResourceTags": { "type": "boolean" }, "IncludeMap": { "$ref": "#/definitions/AWS::FMS::Policy.IEMap" }, "PolicyDescription": { "type": "string" }, "PolicyName": { "type": "string" }, "RemediationEnabled": { "type": "boolean" }, "ResourceSetIds": { "items": { "type": "string" }, "type": "array" }, "ResourceTags": { "items": { "$ref": "#/definitions/AWS::FMS::Policy.ResourceTag" }, "type": "array" }, "ResourceType": { "type": "string" }, "ResourceTypeList": { "items": { "type": "string" }, "type": "array" }, "ResourcesCleanUp": { "type": "boolean" }, "SecurityServicePolicyData": { "$ref": "#/definitions/AWS::FMS::Policy.SecurityServicePolicyData" }, "Tags": { "items": { "$ref": "#/definitions/AWS::FMS::Policy.PolicyTag" }, "type": "array" } }, "required": [ "ExcludeResourceTags", "PolicyName", "RemediationEnabled", "SecurityServicePolicyData" ], "type": "object" }, "Type": { "enum": [ "AWS::FMS::Policy" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::FMS::Policy.IEMap": { "additionalProperties": false, "properties": { "ACCOUNT": { "items": { "type": "string" }, "type": "array" }, "ORGUNIT": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::FMS::Policy.NetworkFirewallPolicy": { "additionalProperties": false, "properties": { "FirewallDeploymentModel": { "type": "string" } }, "required": [ "FirewallDeploymentModel" ], "type": "object" }, "AWS::FMS::Policy.PolicyOption": { "additionalProperties": false, "properties": { "NetworkFirewallPolicy": { "$ref": "#/definitions/AWS::FMS::Policy.NetworkFirewallPolicy" }, "ThirdPartyFirewallPolicy": { "$ref": "#/definitions/AWS::FMS::Policy.ThirdPartyFirewallPolicy" } }, "type": "object" }, "AWS::FMS::Policy.PolicyTag": { "additionalProperties": false, "properties": { "Key": { "type": "string" }, "Value": { "type": "string" } }, "required": [ "Key", "Value" ], "type": "object" }, "AWS::FMS::Policy.ResourceTag": { "additionalProperties": false, "properties": { "Key": { "type": "string" }, "Value": { "type": "string" } }, "required": [ "Key" ], "type": "object" }, "AWS::FMS::Policy.SecurityServicePolicyData": { "additionalProperties": false, "properties": { "ManagedServiceData": { "type": "string" }, "PolicyOption": { "$ref": "#/definitions/AWS::FMS::Policy.PolicyOption" }, "Type": { "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::FMS::Policy.ThirdPartyFirewallPolicy": { "additionalProperties": false, "properties": { "FirewallDeploymentModel": { "type": "string" } }, "required": [ "FirewallDeploymentModel" ], "type": "object" }, "AWS::FMS::ResourceSet": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "Name": { "type": "string" }, "ResourceTypeList": { "items": { "type": "string" }, "type": "array" }, "Resources": { "items": { "type": "string" }, "type": "array" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "Name", "ResourceTypeList" ], "type": "object" }, "Type": { "enum": [ "AWS::FMS::ResourceSet" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::FSx::DataRepositoryAssociation": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "BatchImportMetaDataOnCreate": { "type": "boolean" }, "DataRepositoryPath": { "type": "string" }, "FileSystemId": { "type": "string" }, "FileSystemPath": { "type": "string" }, "ImportedFileChunkSize": { "type": "number" }, "S3": { "$ref": "#/definitions/AWS::FSx::DataRepositoryAssociation.S3" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "DataRepositoryPath", "FileSystemId", "FileSystemPath" ], "type": "object" }, "Type": { "enum": [ "AWS::FSx::DataRepositoryAssociation" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::FSx::DataRepositoryAssociation.AutoExportPolicy": { "additionalProperties": false, "properties": { "Events": { "items": { "type": "string" }, "type": "array" } }, "required": [ "Events" ], "type": "object" }, "AWS::FSx::DataRepositoryAssociation.AutoImportPolicy": { "additionalProperties": false, "properties": { "Events": { "items": { "type": "string" }, "type": "array" } }, "required": [ "Events" ], "type": "object" }, "AWS::FSx::DataRepositoryAssociation.S3": { "additionalProperties": false, "properties": { "AutoExportPolicy": { "$ref": "#/definitions/AWS::FSx::DataRepositoryAssociation.AutoExportPolicy" }, "AutoImportPolicy": { "$ref": "#/definitions/AWS::FSx::DataRepositoryAssociation.AutoImportPolicy" } }, "type": "object" }, "AWS::FSx::FileSystem": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "BackupId": { "type": "string" }, "FileSystemType": { "type": "string" }, "FileSystemTypeVersion": { "type": "string" }, "KmsKeyId": { "type": "string" }, "LustreConfiguration": { "$ref": "#/definitions/AWS::FSx::FileSystem.LustreConfiguration" }, "OntapConfiguration": { "$ref": "#/definitions/AWS::FSx::FileSystem.OntapConfiguration" }, "OpenZFSConfiguration": { "$ref": "#/definitions/AWS::FSx::FileSystem.OpenZFSConfiguration" }, "SecurityGroupIds": { "items": { "type": "string" }, "type": "array" }, "StorageCapacity": { "type": "number" }, "StorageType": { "type": "string" }, "SubnetIds": { "items": { "type": "string" }, "type": "array" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "WindowsConfiguration": { "$ref": "#/definitions/AWS::FSx::FileSystem.WindowsConfiguration" } }, "required": [ "FileSystemType", "SubnetIds" ], "type": "object" }, "Type": { "enum": [ "AWS::FSx::FileSystem" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::FSx::FileSystem.AuditLogConfiguration": { "additionalProperties": false, "properties": { "AuditLogDestination": { "type": "string" }, "FileAccessAuditLogLevel": { "type": "string" }, "FileShareAccessAuditLogLevel": { "type": "string" } }, "required": [ "FileAccessAuditLogLevel", "FileShareAccessAuditLogLevel" ], "type": "object" }, "AWS::FSx::FileSystem.ClientConfigurations": { "additionalProperties": false, "properties": { "Clients": { "type": "string" }, "Options": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::FSx::FileSystem.DiskIopsConfiguration": { "additionalProperties": false, "properties": { "Iops": { "type": "number" }, "Mode": { "type": "string" } }, "type": "object" }, "AWS::FSx::FileSystem.LustreConfiguration": { "additionalProperties": false, "properties": { "AutoImportPolicy": { "type": "string" }, "AutomaticBackupRetentionDays": { "type": "number" }, "CopyTagsToBackups": { "type": "boolean" }, "DailyAutomaticBackupStartTime": { "type": "string" }, "DataCompressionType": { "type": "string" }, "DeploymentType": { "type": "string" }, "DriveCacheType": { "type": "string" }, "ExportPath": { "type": "string" }, "ImportPath": { "type": "string" }, "ImportedFileChunkSize": { "type": "number" }, "PerUnitStorageThroughput": { "type": "number" }, "WeeklyMaintenanceStartTime": { "type": "string" } }, "type": "object" }, "AWS::FSx::FileSystem.NfsExports": { "additionalProperties": false, "properties": { "ClientConfigurations": { "items": { "$ref": "#/definitions/AWS::FSx::FileSystem.ClientConfigurations" }, "type": "array" } }, "type": "object" }, "AWS::FSx::FileSystem.OntapConfiguration": { "additionalProperties": false, "properties": { "AutomaticBackupRetentionDays": { "type": "number" }, "DailyAutomaticBackupStartTime": { "type": "string" }, "DeploymentType": { "type": "string" }, "DiskIopsConfiguration": { "$ref": "#/definitions/AWS::FSx::FileSystem.DiskIopsConfiguration" }, "EndpointIpAddressRange": { "type": "string" }, "FsxAdminPassword": { "type": "string" }, "PreferredSubnetId": { "type": "string" }, "RouteTableIds": { "items": { "type": "string" }, "type": "array" }, "ThroughputCapacity": { "type": "number" }, "WeeklyMaintenanceStartTime": { "type": "string" } }, "required": [ "DeploymentType" ], "type": "object" }, "AWS::FSx::FileSystem.OpenZFSConfiguration": { "additionalProperties": false, "properties": { "AutomaticBackupRetentionDays": { "type": "number" }, "CopyTagsToBackups": { "type": "boolean" }, "CopyTagsToVolumes": { "type": "boolean" }, "DailyAutomaticBackupStartTime": { "type": "string" }, "DeploymentType": { "type": "string" }, "DiskIopsConfiguration": { "$ref": "#/definitions/AWS::FSx::FileSystem.DiskIopsConfiguration" }, "EndpointIpAddressRange": { "type": "string" }, "Options": { "items": { "type": "string" }, "type": "array" }, "PreferredSubnetId": { "type": "string" }, "RootVolumeConfiguration": { "$ref": "#/definitions/AWS::FSx::FileSystem.RootVolumeConfiguration" }, "RouteTableIds": { "items": { "type": "string" }, "type": "array" }, "ThroughputCapacity": { "type": "number" }, "WeeklyMaintenanceStartTime": { "type": "string" } }, "required": [ "DeploymentType" ], "type": "object" }, "AWS::FSx::FileSystem.RootVolumeConfiguration": { "additionalProperties": false, "properties": { "CopyTagsToSnapshots": { "type": "boolean" }, "DataCompressionType": { "type": "string" }, "NfsExports": { "items": { "$ref": "#/definitions/AWS::FSx::FileSystem.NfsExports" }, "type": "array" }, "ReadOnly": { "type": "boolean" }, "RecordSizeKiB": { "type": "number" }, "UserAndGroupQuotas": { "items": { "$ref": "#/definitions/AWS::FSx::FileSystem.UserAndGroupQuotas" }, "type": "array" } }, "type": "object" }, "AWS::FSx::FileSystem.SelfManagedActiveDirectoryConfiguration": { "additionalProperties": false, "properties": { "DnsIps": { "items": { "type": "string" }, "type": "array" }, "DomainName": { "type": "string" }, "FileSystemAdministratorsGroup": { "type": "string" }, "OrganizationalUnitDistinguishedName": { "type": "string" }, "Password": { "type": "string" }, "UserName": { "type": "string" } }, "type": "object" }, "AWS::FSx::FileSystem.UserAndGroupQuotas": { "additionalProperties": false, "properties": { "Id": { "type": "number" }, "StorageCapacityQuotaGiB": { "type": "number" }, "Type": { "type": "string" } }, "type": "object" }, "AWS::FSx::FileSystem.WindowsConfiguration": { "additionalProperties": false, "properties": { "ActiveDirectoryId": { "type": "string" }, "Aliases": { "items": { "type": "string" }, "type": "array" }, "AuditLogConfiguration": { "$ref": "#/definitions/AWS::FSx::FileSystem.AuditLogConfiguration" }, "AutomaticBackupRetentionDays": { "type": "number" }, "CopyTagsToBackups": { "type": "boolean" }, "DailyAutomaticBackupStartTime": { "type": "string" }, "DeploymentType": { "type": "string" }, "DiskIopsConfiguration": { "$ref": "#/definitions/AWS::FSx::FileSystem.DiskIopsConfiguration" }, "PreferredSubnetId": { "type": "string" }, "SelfManagedActiveDirectoryConfiguration": { "$ref": "#/definitions/AWS::FSx::FileSystem.SelfManagedActiveDirectoryConfiguration" }, "ThroughputCapacity": { "type": "number" }, "WeeklyMaintenanceStartTime": { "type": "string" } }, "required": [ "ThroughputCapacity" ], "type": "object" }, "AWS::FSx::Snapshot": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Name": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "VolumeId": { "type": "string" } }, "required": [ "Name", "VolumeId" ], "type": "object" }, "Type": { "enum": [ "AWS::FSx::Snapshot" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::FSx::StorageVirtualMachine": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ActiveDirectoryConfiguration": { "$ref": "#/definitions/AWS::FSx::StorageVirtualMachine.ActiveDirectoryConfiguration" }, "FileSystemId": { "type": "string" }, "Name": { "type": "string" }, "RootVolumeSecurityStyle": { "type": "string" }, "SvmAdminPassword": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "FileSystemId", "Name" ], "type": "object" }, "Type": { "enum": [ "AWS::FSx::StorageVirtualMachine" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::FSx::StorageVirtualMachine.ActiveDirectoryConfiguration": { "additionalProperties": false, "properties": { "NetBiosName": { "type": "string" }, "SelfManagedActiveDirectoryConfiguration": { "$ref": "#/definitions/AWS::FSx::StorageVirtualMachine.SelfManagedActiveDirectoryConfiguration" } }, "type": "object" }, "AWS::FSx::StorageVirtualMachine.SelfManagedActiveDirectoryConfiguration": { "additionalProperties": false, "properties": { "DnsIps": { "items": { "type": "string" }, "type": "array" }, "DomainName": { "type": "string" }, "FileSystemAdministratorsGroup": { "type": "string" }, "OrganizationalUnitDistinguishedName": { "type": "string" }, "Password": { "type": "string" }, "UserName": { "type": "string" } }, "type": "object" }, "AWS::FSx::Volume": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "BackupId": { "type": "string" }, "Name": { "type": "string" }, "OntapConfiguration": { "$ref": "#/definitions/AWS::FSx::Volume.OntapConfiguration" }, "OpenZFSConfiguration": { "$ref": "#/definitions/AWS::FSx::Volume.OpenZFSConfiguration" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "VolumeType": { "type": "string" } }, "required": [ "Name" ], "type": "object" }, "Type": { "enum": [ "AWS::FSx::Volume" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::FSx::Volume.AutocommitPeriod": { "additionalProperties": false, "properties": { "Type": { "type": "string" }, "Value": { "type": "number" } }, "required": [ "Type" ], "type": "object" }, "AWS::FSx::Volume.ClientConfigurations": { "additionalProperties": false, "properties": { "Clients": { "type": "string" }, "Options": { "items": { "type": "string" }, "type": "array" } }, "required": [ "Clients", "Options" ], "type": "object" }, "AWS::FSx::Volume.NfsExports": { "additionalProperties": false, "properties": { "ClientConfigurations": { "items": { "$ref": "#/definitions/AWS::FSx::Volume.ClientConfigurations" }, "type": "array" } }, "required": [ "ClientConfigurations" ], "type": "object" }, "AWS::FSx::Volume.OntapConfiguration": { "additionalProperties": false, "properties": { "CopyTagsToBackups": { "type": "string" }, "JunctionPath": { "type": "string" }, "OntapVolumeType": { "type": "string" }, "SecurityStyle": { "type": "string" }, "SizeInMegabytes": { "type": "string" }, "SnaplockConfiguration": { "$ref": "#/definitions/AWS::FSx::Volume.SnaplockConfiguration" }, "SnapshotPolicy": { "type": "string" }, "StorageEfficiencyEnabled": { "type": "string" }, "StorageVirtualMachineId": { "type": "string" }, "TieringPolicy": { "$ref": "#/definitions/AWS::FSx::Volume.TieringPolicy" } }, "required": [ "SizeInMegabytes", "StorageVirtualMachineId" ], "type": "object" }, "AWS::FSx::Volume.OpenZFSConfiguration": { "additionalProperties": false, "properties": { "CopyTagsToSnapshots": { "type": "boolean" }, "DataCompressionType": { "type": "string" }, "NfsExports": { "items": { "$ref": "#/definitions/AWS::FSx::Volume.NfsExports" }, "type": "array" }, "Options": { "items": { "type": "string" }, "type": "array" }, "OriginSnapshot": { "$ref": "#/definitions/AWS::FSx::Volume.OriginSnapshot" }, "ParentVolumeId": { "type": "string" }, "ReadOnly": { "type": "boolean" }, "RecordSizeKiB": { "type": "number" }, "StorageCapacityQuotaGiB": { "type": "number" }, "StorageCapacityReservationGiB": { "type": "number" }, "UserAndGroupQuotas": { "items": { "$ref": "#/definitions/AWS::FSx::Volume.UserAndGroupQuotas" }, "type": "array" } }, "required": [ "ParentVolumeId" ], "type": "object" }, "AWS::FSx::Volume.OriginSnapshot": { "additionalProperties": false, "properties": { "CopyStrategy": { "type": "string" }, "SnapshotARN": { "type": "string" } }, "required": [ "CopyStrategy", "SnapshotARN" ], "type": "object" }, "AWS::FSx::Volume.RetentionPeriod": { "additionalProperties": false, "properties": { "Type": { "type": "string" }, "Value": { "type": "number" } }, "required": [ "Type" ], "type": "object" }, "AWS::FSx::Volume.SnaplockConfiguration": { "additionalProperties": false, "properties": { "AuditLogVolume": { "type": "string" }, "AutocommitPeriod": { "$ref": "#/definitions/AWS::FSx::Volume.AutocommitPeriod" }, "PrivilegedDelete": { "type": "string" }, "RetentionPeriod": { "$ref": "#/definitions/AWS::FSx::Volume.SnaplockRetentionPeriod" }, "SnaplockType": { "type": "string" }, "VolumeAppendModeEnabled": { "type": "string" } }, "required": [ "SnaplockType" ], "type": "object" }, "AWS::FSx::Volume.SnaplockRetentionPeriod": { "additionalProperties": false, "properties": { "DefaultRetention": { "$ref": "#/definitions/AWS::FSx::Volume.RetentionPeriod" }, "MaximumRetention": { "$ref": "#/definitions/AWS::FSx::Volume.RetentionPeriod" }, "MinimumRetention": { "$ref": "#/definitions/AWS::FSx::Volume.RetentionPeriod" } }, "required": [ "DefaultRetention", "MaximumRetention", "MinimumRetention" ], "type": "object" }, "AWS::FSx::Volume.TieringPolicy": { "additionalProperties": false, "properties": { "CoolingPeriod": { "type": "number" }, "Name": { "type": "string" } }, "type": "object" }, "AWS::FSx::Volume.UserAndGroupQuotas": { "additionalProperties": false, "properties": { "Id": { "type": "number" }, "StorageCapacityQuotaGiB": { "type": "number" }, "Type": { "type": "string" } }, "required": [ "Id", "StorageCapacityQuotaGiB", "Type" ], "type": "object" }, "AWS::FinSpace::Environment": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "FederationMode": { "type": "string" }, "FederationParameters": { "$ref": "#/definitions/AWS::FinSpace::Environment.FederationParameters" }, "KmsKeyId": { "type": "string" }, "Name": { "type": "string" }, "SuperuserParameters": { "$ref": "#/definitions/AWS::FinSpace::Environment.SuperuserParameters" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "Name" ], "type": "object" }, "Type": { "enum": [ "AWS::FinSpace::Environment" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::FinSpace::Environment.AttributeMapItems": { "additionalProperties": false, "properties": { "Key": { "type": "string" }, "Value": { "type": "string" } }, "type": "object" }, "AWS::FinSpace::Environment.FederationParameters": { "additionalProperties": false, "properties": { "ApplicationCallBackURL": { "type": "string" }, "AttributeMap": { "items": { "$ref": "#/definitions/AWS::FinSpace::Environment.AttributeMapItems" }, "type": "array" }, "FederationProviderName": { "type": "string" }, "FederationURN": { "type": "string" }, "SamlMetadataDocument": { "type": "string" }, "SamlMetadataURL": { "type": "string" } }, "type": "object" }, "AWS::FinSpace::Environment.SuperuserParameters": { "additionalProperties": false, "properties": { "EmailAddress": { "type": "string" }, "FirstName": { "type": "string" }, "LastName": { "type": "string" } }, "type": "object" }, "AWS::Forecast::Dataset": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "DataFrequency": { "type": "string" }, "DatasetName": { "type": "string" }, "DatasetType": { "type": "string" }, "Domain": { "type": "string" }, "EncryptionConfig": { "$ref": "#/definitions/AWS::Forecast::Dataset.EncryptionConfig" }, "Schema": { "$ref": "#/definitions/AWS::Forecast::Dataset.Schema" }, "Tags": { "items": { "$ref": "#/definitions/AWS::Forecast::Dataset.TagsItems" }, "type": "array" } }, "required": [ "DatasetName", "DatasetType", "Domain", "Schema" ], "type": "object" }, "Type": { "enum": [ "AWS::Forecast::Dataset" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Forecast::Dataset.AttributesItems": { "additionalProperties": false, "properties": { "AttributeName": { "type": "string" }, "AttributeType": { "type": "string" } }, "type": "object" }, "AWS::Forecast::Dataset.EncryptionConfig": { "additionalProperties": false, "properties": { "KmsKeyArn": { "type": "string" }, "RoleArn": { "type": "string" } }, "type": "object" }, "AWS::Forecast::Dataset.Schema": { "additionalProperties": false, "properties": { "Attributes": { "items": { "$ref": "#/definitions/AWS::Forecast::Dataset.AttributesItems" }, "type": "array" } }, "type": "object" }, "AWS::Forecast::Dataset.TagsItems": { "additionalProperties": false, "properties": { "Key": { "type": "string" }, "Value": { "type": "string" } }, "required": [ "Key", "Value" ], "type": "object" }, "AWS::Forecast::DatasetGroup": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "DatasetArns": { "items": { "type": "string" }, "type": "array" }, "DatasetGroupName": { "type": "string" }, "Domain": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "DatasetGroupName", "Domain" ], "type": "object" }, "Type": { "enum": [ "AWS::Forecast::DatasetGroup" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::FraudDetector::Detector": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AssociatedModels": { "items": { "$ref": "#/definitions/AWS::FraudDetector::Detector.Model" }, "type": "array" }, "Description": { "type": "string" }, "DetectorId": { "type": "string" }, "DetectorVersionStatus": { "type": "string" }, "EventType": { "$ref": "#/definitions/AWS::FraudDetector::Detector.EventType" }, "RuleExecutionMode": { "type": "string" }, "Rules": { "items": { "$ref": "#/definitions/AWS::FraudDetector::Detector.Rule" }, "type": "array" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "DetectorId", "EventType", "Rules" ], "type": "object" }, "Type": { "enum": [ "AWS::FraudDetector::Detector" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::FraudDetector::Detector.EntityType": { "additionalProperties": false, "properties": { "Arn": { "type": "string" }, "CreatedTime": { "type": "string" }, "Description": { "type": "string" }, "Inline": { "type": "boolean" }, "LastUpdatedTime": { "type": "string" }, "Name": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "type": "object" }, "AWS::FraudDetector::Detector.EventType": { "additionalProperties": false, "properties": { "Arn": { "type": "string" }, "CreatedTime": { "type": "string" }, "Description": { "type": "string" }, "EntityTypes": { "items": { "$ref": "#/definitions/AWS::FraudDetector::Detector.EntityType" }, "type": "array" }, "EventVariables": { "items": { "$ref": "#/definitions/AWS::FraudDetector::Detector.EventVariable" }, "type": "array" }, "Inline": { "type": "boolean" }, "Labels": { "items": { "$ref": "#/definitions/AWS::FraudDetector::Detector.Label" }, "type": "array" }, "LastUpdatedTime": { "type": "string" }, "Name": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "type": "object" }, "AWS::FraudDetector::Detector.EventVariable": { "additionalProperties": false, "properties": { "Arn": { "type": "string" }, "CreatedTime": { "type": "string" }, "DataSource": { "type": "string" }, "DataType": { "type": "string" }, "DefaultValue": { "type": "string" }, "Description": { "type": "string" }, "Inline": { "type": "boolean" }, "LastUpdatedTime": { "type": "string" }, "Name": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "VariableType": { "type": "string" } }, "type": "object" }, "AWS::FraudDetector::Detector.Label": { "additionalProperties": false, "properties": { "Arn": { "type": "string" }, "CreatedTime": { "type": "string" }, "Description": { "type": "string" }, "Inline": { "type": "boolean" }, "LastUpdatedTime": { "type": "string" }, "Name": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "type": "object" }, "AWS::FraudDetector::Detector.Model": { "additionalProperties": false, "properties": { "Arn": { "type": "string" } }, "type": "object" }, "AWS::FraudDetector::Detector.Outcome": { "additionalProperties": false, "properties": { "Arn": { "type": "string" }, "CreatedTime": { "type": "string" }, "Description": { "type": "string" }, "Inline": { "type": "boolean" }, "LastUpdatedTime": { "type": "string" }, "Name": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "type": "object" }, "AWS::FraudDetector::Detector.Rule": { "additionalProperties": false, "properties": { "Arn": { "type": "string" }, "CreatedTime": { "type": "string" }, "Description": { "type": "string" }, "DetectorId": { "type": "string" }, "Expression": { "type": "string" }, "Language": { "type": "string" }, "LastUpdatedTime": { "type": "string" }, "Outcomes": { "items": { "$ref": "#/definitions/AWS::FraudDetector::Detector.Outcome" }, "type": "array" }, "RuleId": { "type": "string" }, "RuleVersion": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "type": "object" }, "AWS::FraudDetector::EntityType": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "Name": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "Name" ], "type": "object" }, "Type": { "enum": [ "AWS::FraudDetector::EntityType" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::FraudDetector::EventType": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "EntityTypes": { "items": { "$ref": "#/definitions/AWS::FraudDetector::EventType.EntityType" }, "type": "array" }, "EventVariables": { "items": { "$ref": "#/definitions/AWS::FraudDetector::EventType.EventVariable" }, "type": "array" }, "Labels": { "items": { "$ref": "#/definitions/AWS::FraudDetector::EventType.Label" }, "type": "array" }, "Name": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "EntityTypes", "EventVariables", "Labels", "Name" ], "type": "object" }, "Type": { "enum": [ "AWS::FraudDetector::EventType" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::FraudDetector::EventType.EntityType": { "additionalProperties": false, "properties": { "Arn": { "type": "string" }, "CreatedTime": { "type": "string" }, "Description": { "type": "string" }, "Inline": { "type": "boolean" }, "LastUpdatedTime": { "type": "string" }, "Name": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "type": "object" }, "AWS::FraudDetector::EventType.EventVariable": { "additionalProperties": false, "properties": { "Arn": { "type": "string" }, "CreatedTime": { "type": "string" }, "DataSource": { "type": "string" }, "DataType": { "type": "string" }, "DefaultValue": { "type": "string" }, "Description": { "type": "string" }, "Inline": { "type": "boolean" }, "LastUpdatedTime": { "type": "string" }, "Name": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "VariableType": { "type": "string" } }, "type": "object" }, "AWS::FraudDetector::EventType.Label": { "additionalProperties": false, "properties": { "Arn": { "type": "string" }, "CreatedTime": { "type": "string" }, "Description": { "type": "string" }, "Inline": { "type": "boolean" }, "LastUpdatedTime": { "type": "string" }, "Name": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "type": "object" }, "AWS::FraudDetector::Label": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "Name": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "Name" ], "type": "object" }, "Type": { "enum": [ "AWS::FraudDetector::Label" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::FraudDetector::List": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "Elements": { "items": { "type": "string" }, "type": "array" }, "Name": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "VariableType": { "type": "string" } }, "required": [ "Name" ], "type": "object" }, "Type": { "enum": [ "AWS::FraudDetector::List" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::FraudDetector::Outcome": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "Name": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "Name" ], "type": "object" }, "Type": { "enum": [ "AWS::FraudDetector::Outcome" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::FraudDetector::Variable": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "DataSource": { "type": "string" }, "DataType": { "type": "string" }, "DefaultValue": { "type": "string" }, "Description": { "type": "string" }, "Name": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "VariableType": { "type": "string" } }, "required": [ "DataSource", "DataType", "DefaultValue", "Name" ], "type": "object" }, "Type": { "enum": [ "AWS::FraudDetector::Variable" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::GameLift::Alias": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "Name": { "type": "string" }, "RoutingStrategy": { "$ref": "#/definitions/AWS::GameLift::Alias.RoutingStrategy" } }, "required": [ "Name", "RoutingStrategy" ], "type": "object" }, "Type": { "enum": [ "AWS::GameLift::Alias" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::GameLift::Alias.RoutingStrategy": { "additionalProperties": false, "properties": { "FleetId": { "type": "string" }, "Message": { "type": "string" }, "Type": { "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::GameLift::Build": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Name": { "type": "string" }, "OperatingSystem": { "type": "string" }, "ServerSdkVersion": { "type": "string" }, "StorageLocation": { "$ref": "#/definitions/AWS::GameLift::Build.StorageLocation" }, "Version": { "type": "string" } }, "type": "object" }, "Type": { "enum": [ "AWS::GameLift::Build" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::GameLift::Build.StorageLocation": { "additionalProperties": false, "properties": { "Bucket": { "type": "string" }, "Key": { "type": "string" }, "ObjectVersion": { "type": "string" }, "RoleArn": { "type": "string" } }, "required": [ "Bucket", "Key", "RoleArn" ], "type": "object" }, "AWS::GameLift::Fleet": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AnywhereConfiguration": { "$ref": "#/definitions/AWS::GameLift::Fleet.AnywhereConfiguration" }, "BuildId": { "type": "string" }, "CertificateConfiguration": { "$ref": "#/definitions/AWS::GameLift::Fleet.CertificateConfiguration" }, "ComputeType": { "type": "string" }, "Description": { "type": "string" }, "DesiredEC2Instances": { "type": "number" }, "EC2InboundPermissions": { "items": { "$ref": "#/definitions/AWS::GameLift::Fleet.IpPermission" }, "type": "array" }, "EC2InstanceType": { "type": "string" }, "FleetType": { "type": "string" }, "InstanceRoleARN": { "type": "string" }, "Locations": { "items": { "$ref": "#/definitions/AWS::GameLift::Fleet.LocationConfiguration" }, "type": "array" }, "MaxSize": { "type": "number" }, "MetricGroups": { "items": { "type": "string" }, "type": "array" }, "MinSize": { "type": "number" }, "Name": { "type": "string" }, "NewGameSessionProtectionPolicy": { "type": "string" }, "PeerVpcAwsAccountId": { "type": "string" }, "PeerVpcId": { "type": "string" }, "ResourceCreationLimitPolicy": { "$ref": "#/definitions/AWS::GameLift::Fleet.ResourceCreationLimitPolicy" }, "RuntimeConfiguration": { "$ref": "#/definitions/AWS::GameLift::Fleet.RuntimeConfiguration" }, "ScriptId": { "type": "string" } }, "required": [ "Name" ], "type": "object" }, "Type": { "enum": [ "AWS::GameLift::Fleet" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::GameLift::Fleet.AnywhereConfiguration": { "additionalProperties": false, "properties": { "Cost": { "type": "string" } }, "required": [ "Cost" ], "type": "object" }, "AWS::GameLift::Fleet.CertificateConfiguration": { "additionalProperties": false, "properties": { "CertificateType": { "type": "string" } }, "required": [ "CertificateType" ], "type": "object" }, "AWS::GameLift::Fleet.IpPermission": { "additionalProperties": false, "properties": { "FromPort": { "type": "number" }, "IpRange": { "type": "string" }, "Protocol": { "type": "string" }, "ToPort": { "type": "number" } }, "required": [ "FromPort", "IpRange", "Protocol", "ToPort" ], "type": "object" }, "AWS::GameLift::Fleet.LocationCapacity": { "additionalProperties": false, "properties": { "DesiredEC2Instances": { "type": "number" }, "MaxSize": { "type": "number" }, "MinSize": { "type": "number" } }, "required": [ "DesiredEC2Instances", "MaxSize", "MinSize" ], "type": "object" }, "AWS::GameLift::Fleet.LocationConfiguration": { "additionalProperties": false, "properties": { "Location": { "type": "string" }, "LocationCapacity": { "$ref": "#/definitions/AWS::GameLift::Fleet.LocationCapacity" } }, "required": [ "Location" ], "type": "object" }, "AWS::GameLift::Fleet.ResourceCreationLimitPolicy": { "additionalProperties": false, "properties": { "NewGameSessionsPerCreator": { "type": "number" }, "PolicyPeriodInMinutes": { "type": "number" } }, "type": "object" }, "AWS::GameLift::Fleet.RuntimeConfiguration": { "additionalProperties": false, "properties": { "GameSessionActivationTimeoutSeconds": { "type": "number" }, "MaxConcurrentGameSessionActivations": { "type": "number" }, "ServerProcesses": { "items": { "$ref": "#/definitions/AWS::GameLift::Fleet.ServerProcess" }, "type": "array" } }, "type": "object" }, "AWS::GameLift::Fleet.ServerProcess": { "additionalProperties": false, "properties": { "ConcurrentExecutions": { "type": "number" }, "LaunchPath": { "type": "string" }, "Parameters": { "type": "string" } }, "required": [ "ConcurrentExecutions", "LaunchPath" ], "type": "object" }, "AWS::GameLift::GameServerGroup": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AutoScalingPolicy": { "$ref": "#/definitions/AWS::GameLift::GameServerGroup.AutoScalingPolicy" }, "BalancingStrategy": { "type": "string" }, "DeleteOption": { "type": "string" }, "GameServerGroupName": { "type": "string" }, "GameServerProtectionPolicy": { "type": "string" }, "InstanceDefinitions": { "items": { "$ref": "#/definitions/AWS::GameLift::GameServerGroup.InstanceDefinition" }, "type": "array" }, "LaunchTemplate": { "$ref": "#/definitions/AWS::GameLift::GameServerGroup.LaunchTemplate" }, "MaxSize": { "type": "number" }, "MinSize": { "type": "number" }, "RoleArn": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "VpcSubnets": { "items": { "type": "string" }, "type": "array" } }, "required": [ "GameServerGroupName", "InstanceDefinitions", "RoleArn" ], "type": "object" }, "Type": { "enum": [ "AWS::GameLift::GameServerGroup" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::GameLift::GameServerGroup.AutoScalingPolicy": { "additionalProperties": false, "properties": { "EstimatedInstanceWarmup": { "type": "number" }, "TargetTrackingConfiguration": { "$ref": "#/definitions/AWS::GameLift::GameServerGroup.TargetTrackingConfiguration" } }, "required": [ "TargetTrackingConfiguration" ], "type": "object" }, "AWS::GameLift::GameServerGroup.InstanceDefinition": { "additionalProperties": false, "properties": { "InstanceType": { "type": "string" }, "WeightedCapacity": { "type": "string" } }, "required": [ "InstanceType" ], "type": "object" }, "AWS::GameLift::GameServerGroup.LaunchTemplate": { "additionalProperties": false, "properties": { "LaunchTemplateId": { "type": "string" }, "LaunchTemplateName": { "type": "string" }, "Version": { "type": "string" } }, "type": "object" }, "AWS::GameLift::GameServerGroup.TargetTrackingConfiguration": { "additionalProperties": false, "properties": { "TargetValue": { "type": "number" } }, "required": [ "TargetValue" ], "type": "object" }, "AWS::GameLift::GameSessionQueue": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "CustomEventData": { "type": "string" }, "Destinations": { "items": { "$ref": "#/definitions/AWS::GameLift::GameSessionQueue.Destination" }, "type": "array" }, "FilterConfiguration": { "$ref": "#/definitions/AWS::GameLift::GameSessionQueue.FilterConfiguration" }, "Name": { "type": "string" }, "NotificationTarget": { "type": "string" }, "PlayerLatencyPolicies": { "items": { "$ref": "#/definitions/AWS::GameLift::GameSessionQueue.PlayerLatencyPolicy" }, "type": "array" }, "PriorityConfiguration": { "$ref": "#/definitions/AWS::GameLift::GameSessionQueue.PriorityConfiguration" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "TimeoutInSeconds": { "type": "number" } }, "required": [ "Name" ], "type": "object" }, "Type": { "enum": [ "AWS::GameLift::GameSessionQueue" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::GameLift::GameSessionQueue.Destination": { "additionalProperties": false, "properties": { "DestinationArn": { "type": "string" } }, "type": "object" }, "AWS::GameLift::GameSessionQueue.FilterConfiguration": { "additionalProperties": false, "properties": { "AllowedLocations": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::GameLift::GameSessionQueue.PlayerLatencyPolicy": { "additionalProperties": false, "properties": { "MaximumIndividualPlayerLatencyMilliseconds": { "type": "number" }, "PolicyDurationSeconds": { "type": "number" } }, "type": "object" }, "AWS::GameLift::GameSessionQueue.PriorityConfiguration": { "additionalProperties": false, "properties": { "LocationOrder": { "items": { "type": "string" }, "type": "array" }, "PriorityOrder": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::GameLift::Location": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "LocationName": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "LocationName" ], "type": "object" }, "Type": { "enum": [ "AWS::GameLift::Location" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::GameLift::MatchmakingConfiguration": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AcceptanceRequired": { "type": "boolean" }, "AcceptanceTimeoutSeconds": { "type": "number" }, "AdditionalPlayerCount": { "type": "number" }, "BackfillMode": { "type": "string" }, "CustomEventData": { "type": "string" }, "Description": { "type": "string" }, "FlexMatchMode": { "type": "string" }, "GameProperties": { "items": { "$ref": "#/definitions/AWS::GameLift::MatchmakingConfiguration.GameProperty" }, "type": "array" }, "GameSessionData": { "type": "string" }, "GameSessionQueueArns": { "items": { "type": "string" }, "type": "array" }, "Name": { "type": "string" }, "NotificationTarget": { "type": "string" }, "RequestTimeoutSeconds": { "type": "number" }, "RuleSetName": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "AcceptanceRequired", "Name", "RequestTimeoutSeconds", "RuleSetName" ], "type": "object" }, "Type": { "enum": [ "AWS::GameLift::MatchmakingConfiguration" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::GameLift::MatchmakingConfiguration.GameProperty": { "additionalProperties": false, "properties": { "Key": { "type": "string" }, "Value": { "type": "string" } }, "required": [ "Key", "Value" ], "type": "object" }, "AWS::GameLift::MatchmakingRuleSet": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Name": { "type": "string" }, "RuleSetBody": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "Name", "RuleSetBody" ], "type": "object" }, "Type": { "enum": [ "AWS::GameLift::MatchmakingRuleSet" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::GameLift::Script": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Name": { "type": "string" }, "StorageLocation": { "$ref": "#/definitions/AWS::GameLift::Script.S3Location" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "Version": { "type": "string" } }, "required": [ "StorageLocation" ], "type": "object" }, "Type": { "enum": [ "AWS::GameLift::Script" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::GameLift::Script.S3Location": { "additionalProperties": false, "properties": { "Bucket": { "type": "string" }, "Key": { "type": "string" }, "ObjectVersion": { "type": "string" }, "RoleArn": { "type": "string" } }, "required": [ "Bucket", "Key", "RoleArn" ], "type": "object" }, "AWS::GlobalAccelerator::Accelerator": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Enabled": { "type": "boolean" }, "IpAddressType": { "type": "string" }, "IpAddresses": { "items": { "type": "string" }, "type": "array" }, "Name": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "Name" ], "type": "object" }, "Type": { "enum": [ "AWS::GlobalAccelerator::Accelerator" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::GlobalAccelerator::EndpointGroup": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "EndpointConfigurations": { "items": { "$ref": "#/definitions/AWS::GlobalAccelerator::EndpointGroup.EndpointConfiguration" }, "type": "array" }, "EndpointGroupRegion": { "type": "string" }, "HealthCheckIntervalSeconds": { "type": "number" }, "HealthCheckPath": { "type": "string" }, "HealthCheckPort": { "type": "number" }, "HealthCheckProtocol": { "type": "string" }, "ListenerArn": { "type": "string" }, "PortOverrides": { "items": { "$ref": "#/definitions/AWS::GlobalAccelerator::EndpointGroup.PortOverride" }, "type": "array" }, "ThresholdCount": { "type": "number" }, "TrafficDialPercentage": { "type": "number" } }, "required": [ "EndpointGroupRegion", "ListenerArn" ], "type": "object" }, "Type": { "enum": [ "AWS::GlobalAccelerator::EndpointGroup" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::GlobalAccelerator::EndpointGroup.EndpointConfiguration": { "additionalProperties": false, "properties": { "ClientIPPreservationEnabled": { "type": "boolean" }, "EndpointId": { "type": "string" }, "Weight": { "type": "number" } }, "required": [ "EndpointId" ], "type": "object" }, "AWS::GlobalAccelerator::EndpointGroup.PortOverride": { "additionalProperties": false, "properties": { "EndpointPort": { "type": "number" }, "ListenerPort": { "type": "number" } }, "required": [ "EndpointPort", "ListenerPort" ], "type": "object" }, "AWS::GlobalAccelerator::Listener": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AcceleratorArn": { "type": "string" }, "ClientAffinity": { "type": "string" }, "PortRanges": { "items": { "$ref": "#/definitions/AWS::GlobalAccelerator::Listener.PortRange" }, "type": "array" }, "Protocol": { "type": "string" } }, "required": [ "AcceleratorArn", "PortRanges", "Protocol" ], "type": "object" }, "Type": { "enum": [ "AWS::GlobalAccelerator::Listener" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::GlobalAccelerator::Listener.PortRange": { "additionalProperties": false, "properties": { "FromPort": { "type": "number" }, "ToPort": { "type": "number" } }, "required": [ "FromPort", "ToPort" ], "type": "object" }, "AWS::Glue::Classifier": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "CsvClassifier": { "$ref": "#/definitions/AWS::Glue::Classifier.CsvClassifier" }, "GrokClassifier": { "$ref": "#/definitions/AWS::Glue::Classifier.GrokClassifier" }, "JsonClassifier": { "$ref": "#/definitions/AWS::Glue::Classifier.JsonClassifier" }, "XMLClassifier": { "$ref": "#/definitions/AWS::Glue::Classifier.XMLClassifier" } }, "type": "object" }, "Type": { "enum": [ "AWS::Glue::Classifier" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::Glue::Classifier.CsvClassifier": { "additionalProperties": false, "properties": { "AllowSingleColumn": { "type": "boolean" }, "ContainsCustomDatatype": { "items": { "type": "string" }, "type": "array" }, "ContainsHeader": { "type": "string" }, "CustomDatatypeConfigured": { "type": "boolean" }, "Delimiter": { "type": "string" }, "DisableValueTrimming": { "type": "boolean" }, "Header": { "items": { "type": "string" }, "type": "array" }, "Name": { "type": "string" }, "QuoteSymbol": { "type": "string" } }, "type": "object" }, "AWS::Glue::Classifier.GrokClassifier": { "additionalProperties": false, "properties": { "Classification": { "type": "string" }, "CustomPatterns": { "type": "string" }, "GrokPattern": { "type": "string" }, "Name": { "type": "string" } }, "required": [ "Classification", "GrokPattern" ], "type": "object" }, "AWS::Glue::Classifier.JsonClassifier": { "additionalProperties": false, "properties": { "JsonPath": { "type": "string" }, "Name": { "type": "string" } }, "required": [ "JsonPath" ], "type": "object" }, "AWS::Glue::Classifier.XMLClassifier": { "additionalProperties": false, "properties": { "Classification": { "type": "string" }, "Name": { "type": "string" }, "RowTag": { "type": "string" } }, "required": [ "Classification", "RowTag" ], "type": "object" }, "AWS::Glue::Connection": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "CatalogId": { "type": "string" }, "ConnectionInput": { "$ref": "#/definitions/AWS::Glue::Connection.ConnectionInput" } }, "required": [ "CatalogId", "ConnectionInput" ], "type": "object" }, "Type": { "enum": [ "AWS::Glue::Connection" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Glue::Connection.ConnectionInput": { "additionalProperties": false, "properties": { "ConnectionProperties": { "type": "object" }, "ConnectionType": { "type": "string" }, "Description": { "type": "string" }, "MatchCriteria": { "items": { "type": "string" }, "type": "array" }, "Name": { "type": "string" }, "PhysicalConnectionRequirements": { "$ref": "#/definitions/AWS::Glue::Connection.PhysicalConnectionRequirements" } }, "required": [ "ConnectionType" ], "type": "object" }, "AWS::Glue::Connection.PhysicalConnectionRequirements": { "additionalProperties": false, "properties": { "AvailabilityZone": { "type": "string" }, "SecurityGroupIdList": { "items": { "type": "string" }, "type": "array" }, "SubnetId": { "type": "string" } }, "type": "object" }, "AWS::Glue::Crawler": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Classifiers": { "items": { "type": "string" }, "type": "array" }, "Configuration": { "type": "string" }, "CrawlerSecurityConfiguration": { "type": "string" }, "DatabaseName": { "type": "string" }, "Description": { "type": "string" }, "Name": { "type": "string" }, "RecrawlPolicy": { "$ref": "#/definitions/AWS::Glue::Crawler.RecrawlPolicy" }, "Role": { "type": "string" }, "Schedule": { "$ref": "#/definitions/AWS::Glue::Crawler.Schedule" }, "SchemaChangePolicy": { "$ref": "#/definitions/AWS::Glue::Crawler.SchemaChangePolicy" }, "TablePrefix": { "type": "string" }, "Tags": { "type": "object" }, "Targets": { "$ref": "#/definitions/AWS::Glue::Crawler.Targets" } }, "required": [ "Role", "Targets" ], "type": "object" }, "Type": { "enum": [ "AWS::Glue::Crawler" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Glue::Crawler.CatalogTarget": { "additionalProperties": false, "properties": { "ConnectionName": { "type": "string" }, "DatabaseName": { "type": "string" }, "DlqEventQueueArn": { "type": "string" }, "EventQueueArn": { "type": "string" }, "Tables": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::Glue::Crawler.DeltaTarget": { "additionalProperties": false, "properties": { "ConnectionName": { "type": "string" }, "CreateNativeDeltaTable": { "type": "boolean" }, "DeltaTables": { "items": { "type": "string" }, "type": "array" }, "WriteManifest": { "type": "boolean" } }, "type": "object" }, "AWS::Glue::Crawler.DynamoDBTarget": { "additionalProperties": false, "properties": { "Path": { "type": "string" } }, "type": "object" }, "AWS::Glue::Crawler.IcebergTarget": { "additionalProperties": false, "properties": { "ConnectionName": { "type": "string" }, "Exclusions": { "items": { "type": "string" }, "type": "array" }, "MaximumTraversalDepth": { "type": "number" }, "Paths": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::Glue::Crawler.JdbcTarget": { "additionalProperties": false, "properties": { "ConnectionName": { "type": "string" }, "Exclusions": { "items": { "type": "string" }, "type": "array" }, "Path": { "type": "string" } }, "type": "object" }, "AWS::Glue::Crawler.MongoDBTarget": { "additionalProperties": false, "properties": { "ConnectionName": { "type": "string" }, "Path": { "type": "string" } }, "type": "object" }, "AWS::Glue::Crawler.RecrawlPolicy": { "additionalProperties": false, "properties": { "RecrawlBehavior": { "type": "string" } }, "type": "object" }, "AWS::Glue::Crawler.S3Target": { "additionalProperties": false, "properties": { "ConnectionName": { "type": "string" }, "DlqEventQueueArn": { "type": "string" }, "EventQueueArn": { "type": "string" }, "Exclusions": { "items": { "type": "string" }, "type": "array" }, "Path": { "type": "string" }, "SampleSize": { "type": "number" } }, "type": "object" }, "AWS::Glue::Crawler.Schedule": { "additionalProperties": false, "properties": { "ScheduleExpression": { "type": "string" } }, "type": "object" }, "AWS::Glue::Crawler.SchemaChangePolicy": { "additionalProperties": false, "properties": { "DeleteBehavior": { "type": "string" }, "UpdateBehavior": { "type": "string" } }, "type": "object" }, "AWS::Glue::Crawler.Targets": { "additionalProperties": false, "properties": { "CatalogTargets": { "items": { "$ref": "#/definitions/AWS::Glue::Crawler.CatalogTarget" }, "type": "array" }, "DeltaTargets": { "items": { "$ref": "#/definitions/AWS::Glue::Crawler.DeltaTarget" }, "type": "array" }, "DynamoDBTargets": { "items": { "$ref": "#/definitions/AWS::Glue::Crawler.DynamoDBTarget" }, "type": "array" }, "IcebergTargets": { "items": { "$ref": "#/definitions/AWS::Glue::Crawler.IcebergTarget" }, "type": "array" }, "JdbcTargets": { "items": { "$ref": "#/definitions/AWS::Glue::Crawler.JdbcTarget" }, "type": "array" }, "MongoDBTargets": { "items": { "$ref": "#/definitions/AWS::Glue::Crawler.MongoDBTarget" }, "type": "array" }, "S3Targets": { "items": { "$ref": "#/definitions/AWS::Glue::Crawler.S3Target" }, "type": "array" } }, "type": "object" }, "AWS::Glue::DataCatalogEncryptionSettings": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "CatalogId": { "type": "string" }, "DataCatalogEncryptionSettings": { "$ref": "#/definitions/AWS::Glue::DataCatalogEncryptionSettings.DataCatalogEncryptionSettings" } }, "required": [ "CatalogId", "DataCatalogEncryptionSettings" ], "type": "object" }, "Type": { "enum": [ "AWS::Glue::DataCatalogEncryptionSettings" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Glue::DataCatalogEncryptionSettings.ConnectionPasswordEncryption": { "additionalProperties": false, "properties": { "KmsKeyId": { "type": "string" }, "ReturnConnectionPasswordEncrypted": { "type": "boolean" } }, "type": "object" }, "AWS::Glue::DataCatalogEncryptionSettings.DataCatalogEncryptionSettings": { "additionalProperties": false, "properties": { "ConnectionPasswordEncryption": { "$ref": "#/definitions/AWS::Glue::DataCatalogEncryptionSettings.ConnectionPasswordEncryption" }, "EncryptionAtRest": { "$ref": "#/definitions/AWS::Glue::DataCatalogEncryptionSettings.EncryptionAtRest" } }, "type": "object" }, "AWS::Glue::DataCatalogEncryptionSettings.EncryptionAtRest": { "additionalProperties": false, "properties": { "CatalogEncryptionMode": { "type": "string" }, "SseAwsKmsKeyId": { "type": "string" } }, "type": "object" }, "AWS::Glue::DataQualityRuleset": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ClientToken": { "type": "string" }, "Description": { "type": "string" }, "Name": { "type": "string" }, "Ruleset": { "type": "string" }, "Tags": { "type": "object" }, "TargetTable": { "$ref": "#/definitions/AWS::Glue::DataQualityRuleset.DataQualityTargetTable" } }, "type": "object" }, "Type": { "enum": [ "AWS::Glue::DataQualityRuleset" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::Glue::DataQualityRuleset.DataQualityTargetTable": { "additionalProperties": false, "properties": { "DatabaseName": { "type": "string" }, "TableName": { "type": "string" } }, "type": "object" }, "AWS::Glue::Database": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "CatalogId": { "type": "string" }, "DatabaseInput": { "$ref": "#/definitions/AWS::Glue::Database.DatabaseInput" } }, "required": [ "CatalogId", "DatabaseInput" ], "type": "object" }, "Type": { "enum": [ "AWS::Glue::Database" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Glue::Database.DataLakePrincipal": { "additionalProperties": false, "properties": { "DataLakePrincipalIdentifier": { "type": "string" } }, "type": "object" }, "AWS::Glue::Database.DatabaseIdentifier": { "additionalProperties": false, "properties": { "CatalogId": { "type": "string" }, "DatabaseName": { "type": "string" }, "Region": { "type": "string" } }, "type": "object" }, "AWS::Glue::Database.DatabaseInput": { "additionalProperties": false, "properties": { "CreateTableDefaultPermissions": { "items": { "$ref": "#/definitions/AWS::Glue::Database.PrincipalPrivileges" }, "type": "array" }, "Description": { "type": "string" }, "FederatedDatabase": { "$ref": "#/definitions/AWS::Glue::Database.FederatedDatabase" }, "LocationUri": { "type": "string" }, "Name": { "type": "string" }, "Parameters": { "type": "object" }, "TargetDatabase": { "$ref": "#/definitions/AWS::Glue::Database.DatabaseIdentifier" } }, "type": "object" }, "AWS::Glue::Database.FederatedDatabase": { "additionalProperties": false, "properties": { "ConnectionName": { "type": "string" }, "Identifier": { "type": "string" } }, "type": "object" }, "AWS::Glue::Database.PrincipalPrivileges": { "additionalProperties": false, "properties": { "Permissions": { "items": { "type": "string" }, "type": "array" }, "Principal": { "$ref": "#/definitions/AWS::Glue::Database.DataLakePrincipal" } }, "type": "object" }, "AWS::Glue::DevEndpoint": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Arguments": { "type": "object" }, "EndpointName": { "type": "string" }, "ExtraJarsS3Path": { "type": "string" }, "ExtraPythonLibsS3Path": { "type": "string" }, "GlueVersion": { "type": "string" }, "NumberOfNodes": { "type": "number" }, "NumberOfWorkers": { "type": "number" }, "PublicKey": { "type": "string" }, "PublicKeys": { "items": { "type": "string" }, "type": "array" }, "RoleArn": { "type": "string" }, "SecurityConfiguration": { "type": "string" }, "SecurityGroupIds": { "items": { "type": "string" }, "type": "array" }, "SubnetId": { "type": "string" }, "Tags": { "type": "object" }, "WorkerType": { "type": "string" } }, "required": [ "RoleArn" ], "type": "object" }, "Type": { "enum": [ "AWS::Glue::DevEndpoint" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Glue::Job": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AllocatedCapacity": { "type": "number" }, "Command": { "$ref": "#/definitions/AWS::Glue::Job.JobCommand" }, "Connections": { "$ref": "#/definitions/AWS::Glue::Job.ConnectionsList" }, "DefaultArguments": { "type": "object" }, "Description": { "type": "string" }, "ExecutionClass": { "type": "string" }, "ExecutionProperty": { "$ref": "#/definitions/AWS::Glue::Job.ExecutionProperty" }, "GlueVersion": { "type": "string" }, "LogUri": { "type": "string" }, "MaxCapacity": { "type": "number" }, "MaxRetries": { "type": "number" }, "Name": { "type": "string" }, "NonOverridableArguments": { "type": "object" }, "NotificationProperty": { "$ref": "#/definitions/AWS::Glue::Job.NotificationProperty" }, "NumberOfWorkers": { "type": "number" }, "Role": { "type": "string" }, "SecurityConfiguration": { "type": "string" }, "Tags": { "type": "object" }, "Timeout": { "type": "number" }, "WorkerType": { "type": "string" } }, "required": [ "Command", "Role" ], "type": "object" }, "Type": { "enum": [ "AWS::Glue::Job" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Glue::Job.ConnectionsList": { "additionalProperties": false, "properties": { "Connections": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::Glue::Job.ExecutionProperty": { "additionalProperties": false, "properties": { "MaxConcurrentRuns": { "type": "number" } }, "type": "object" }, "AWS::Glue::Job.JobCommand": { "additionalProperties": false, "properties": { "Name": { "type": "string" }, "PythonVersion": { "type": "string" }, "Runtime": { "type": "string" }, "ScriptLocation": { "type": "string" } }, "type": "object" }, "AWS::Glue::Job.NotificationProperty": { "additionalProperties": false, "properties": { "NotifyDelayAfter": { "type": "number" } }, "type": "object" }, "AWS::Glue::MLTransform": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "GlueVersion": { "type": "string" }, "InputRecordTables": { "$ref": "#/definitions/AWS::Glue::MLTransform.InputRecordTables" }, "MaxCapacity": { "type": "number" }, "MaxRetries": { "type": "number" }, "Name": { "type": "string" }, "NumberOfWorkers": { "type": "number" }, "Role": { "type": "string" }, "Tags": { "type": "object" }, "Timeout": { "type": "number" }, "TransformEncryption": { "$ref": "#/definitions/AWS::Glue::MLTransform.TransformEncryption" }, "TransformParameters": { "$ref": "#/definitions/AWS::Glue::MLTransform.TransformParameters" }, "WorkerType": { "type": "string" } }, "required": [ "InputRecordTables", "Role", "TransformParameters" ], "type": "object" }, "Type": { "enum": [ "AWS::Glue::MLTransform" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Glue::MLTransform.FindMatchesParameters": { "additionalProperties": false, "properties": { "AccuracyCostTradeoff": { "type": "number" }, "EnforceProvidedLabels": { "type": "boolean" }, "PrecisionRecallTradeoff": { "type": "number" }, "PrimaryKeyColumnName": { "type": "string" } }, "required": [ "PrimaryKeyColumnName" ], "type": "object" }, "AWS::Glue::MLTransform.GlueTables": { "additionalProperties": false, "properties": { "CatalogId": { "type": "string" }, "ConnectionName": { "type": "string" }, "DatabaseName": { "type": "string" }, "TableName": { "type": "string" } }, "required": [ "DatabaseName", "TableName" ], "type": "object" }, "AWS::Glue::MLTransform.InputRecordTables": { "additionalProperties": false, "properties": { "GlueTables": { "items": { "$ref": "#/definitions/AWS::Glue::MLTransform.GlueTables" }, "type": "array" } }, "type": "object" }, "AWS::Glue::MLTransform.MLUserDataEncryption": { "additionalProperties": false, "properties": { "KmsKeyId": { "type": "string" }, "MLUserDataEncryptionMode": { "type": "string" } }, "required": [ "MLUserDataEncryptionMode" ], "type": "object" }, "AWS::Glue::MLTransform.TransformEncryption": { "additionalProperties": false, "properties": { "MLUserDataEncryption": { "$ref": "#/definitions/AWS::Glue::MLTransform.MLUserDataEncryption" }, "TaskRunSecurityConfigurationName": { "type": "string" } }, "type": "object" }, "AWS::Glue::MLTransform.TransformParameters": { "additionalProperties": false, "properties": { "FindMatchesParameters": { "$ref": "#/definitions/AWS::Glue::MLTransform.FindMatchesParameters" }, "TransformType": { "type": "string" } }, "required": [ "TransformType" ], "type": "object" }, "AWS::Glue::Partition": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "CatalogId": { "type": "string" }, "DatabaseName": { "type": "string" }, "PartitionInput": { "$ref": "#/definitions/AWS::Glue::Partition.PartitionInput" }, "TableName": { "type": "string" } }, "required": [ "CatalogId", "DatabaseName", "PartitionInput", "TableName" ], "type": "object" }, "Type": { "enum": [ "AWS::Glue::Partition" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Glue::Partition.Column": { "additionalProperties": false, "properties": { "Comment": { "type": "string" }, "Name": { "type": "string" }, "Type": { "type": "string" } }, "required": [ "Name" ], "type": "object" }, "AWS::Glue::Partition.Order": { "additionalProperties": false, "properties": { "Column": { "type": "string" }, "SortOrder": { "type": "number" } }, "required": [ "Column" ], "type": "object" }, "AWS::Glue::Partition.PartitionInput": { "additionalProperties": false, "properties": { "Parameters": { "type": "object" }, "StorageDescriptor": { "$ref": "#/definitions/AWS::Glue::Partition.StorageDescriptor" }, "Values": { "items": { "type": "string" }, "type": "array" } }, "required": [ "Values" ], "type": "object" }, "AWS::Glue::Partition.SchemaId": { "additionalProperties": false, "properties": { "RegistryName": { "type": "string" }, "SchemaArn": { "type": "string" }, "SchemaName": { "type": "string" } }, "type": "object" }, "AWS::Glue::Partition.SchemaReference": { "additionalProperties": false, "properties": { "SchemaId": { "$ref": "#/definitions/AWS::Glue::Partition.SchemaId" }, "SchemaVersionId": { "type": "string" }, "SchemaVersionNumber": { "type": "number" } }, "type": "object" }, "AWS::Glue::Partition.SerdeInfo": { "additionalProperties": false, "properties": { "Name": { "type": "string" }, "Parameters": { "type": "object" }, "SerializationLibrary": { "type": "string" } }, "type": "object" }, "AWS::Glue::Partition.SkewedInfo": { "additionalProperties": false, "properties": { "SkewedColumnNames": { "items": { "type": "string" }, "type": "array" }, "SkewedColumnValueLocationMaps": { "type": "object" }, "SkewedColumnValues": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::Glue::Partition.StorageDescriptor": { "additionalProperties": false, "properties": { "BucketColumns": { "items": { "type": "string" }, "type": "array" }, "Columns": { "items": { "$ref": "#/definitions/AWS::Glue::Partition.Column" }, "type": "array" }, "Compressed": { "type": "boolean" }, "InputFormat": { "type": "string" }, "Location": { "type": "string" }, "NumberOfBuckets": { "type": "number" }, "OutputFormat": { "type": "string" }, "Parameters": { "type": "object" }, "SchemaReference": { "$ref": "#/definitions/AWS::Glue::Partition.SchemaReference" }, "SerdeInfo": { "$ref": "#/definitions/AWS::Glue::Partition.SerdeInfo" }, "SkewedInfo": { "$ref": "#/definitions/AWS::Glue::Partition.SkewedInfo" }, "SortColumns": { "items": { "$ref": "#/definitions/AWS::Glue::Partition.Order" }, "type": "array" }, "StoredAsSubDirectories": { "type": "boolean" } }, "type": "object" }, "AWS::Glue::Registry": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "Name": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "Name" ], "type": "object" }, "Type": { "enum": [ "AWS::Glue::Registry" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Glue::Schema": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "CheckpointVersion": { "$ref": "#/definitions/AWS::Glue::Schema.SchemaVersion" }, "Compatibility": { "type": "string" }, "DataFormat": { "type": "string" }, "Description": { "type": "string" }, "Name": { "type": "string" }, "Registry": { "$ref": "#/definitions/AWS::Glue::Schema.Registry" }, "SchemaDefinition": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "Compatibility", "DataFormat", "Name", "SchemaDefinition" ], "type": "object" }, "Type": { "enum": [ "AWS::Glue::Schema" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Glue::Schema.Registry": { "additionalProperties": false, "properties": { "Arn": { "type": "string" }, "Name": { "type": "string" } }, "type": "object" }, "AWS::Glue::Schema.SchemaVersion": { "additionalProperties": false, "properties": { "IsLatest": { "type": "boolean" }, "VersionNumber": { "type": "number" } }, "type": "object" }, "AWS::Glue::SchemaVersion": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Schema": { "$ref": "#/definitions/AWS::Glue::SchemaVersion.Schema" }, "SchemaDefinition": { "type": "string" } }, "required": [ "Schema", "SchemaDefinition" ], "type": "object" }, "Type": { "enum": [ "AWS::Glue::SchemaVersion" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Glue::SchemaVersion.Schema": { "additionalProperties": false, "properties": { "RegistryName": { "type": "string" }, "SchemaArn": { "type": "string" }, "SchemaName": { "type": "string" } }, "type": "object" }, "AWS::Glue::SchemaVersionMetadata": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Key": { "type": "string" }, "SchemaVersionId": { "type": "string" }, "Value": { "type": "string" } }, "required": [ "Key", "SchemaVersionId", "Value" ], "type": "object" }, "Type": { "enum": [ "AWS::Glue::SchemaVersionMetadata" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Glue::SecurityConfiguration": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "EncryptionConfiguration": { "$ref": "#/definitions/AWS::Glue::SecurityConfiguration.EncryptionConfiguration" }, "Name": { "type": "string" } }, "required": [ "EncryptionConfiguration", "Name" ], "type": "object" }, "Type": { "enum": [ "AWS::Glue::SecurityConfiguration" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Glue::SecurityConfiguration.CloudWatchEncryption": { "additionalProperties": false, "properties": { "CloudWatchEncryptionMode": { "type": "string" }, "KmsKeyArn": { "type": "string" } }, "type": "object" }, "AWS::Glue::SecurityConfiguration.EncryptionConfiguration": { "additionalProperties": false, "properties": { "CloudWatchEncryption": { "$ref": "#/definitions/AWS::Glue::SecurityConfiguration.CloudWatchEncryption" }, "JobBookmarksEncryption": { "$ref": "#/definitions/AWS::Glue::SecurityConfiguration.JobBookmarksEncryption" }, "S3Encryptions": { "$ref": "#/definitions/AWS::Glue::SecurityConfiguration.S3Encryptions" } }, "type": "object" }, "AWS::Glue::SecurityConfiguration.JobBookmarksEncryption": { "additionalProperties": false, "properties": { "JobBookmarksEncryptionMode": { "type": "string" }, "KmsKeyArn": { "type": "string" } }, "type": "object" }, "AWS::Glue::SecurityConfiguration.S3Encryption": { "additionalProperties": false, "properties": { "KmsKeyArn": { "type": "string" }, "S3EncryptionMode": { "type": "string" } }, "type": "object" }, "AWS::Glue::SecurityConfiguration.S3Encryptions": { "additionalProperties": false, "properties": {}, "type": "object" }, "AWS::Glue::Table": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "CatalogId": { "type": "string" }, "DatabaseName": { "type": "string" }, "OpenTableFormatInput": { "$ref": "#/definitions/AWS::Glue::Table.OpenTableFormatInput" }, "TableInput": { "$ref": "#/definitions/AWS::Glue::Table.TableInput" } }, "required": [ "CatalogId", "DatabaseName", "TableInput" ], "type": "object" }, "Type": { "enum": [ "AWS::Glue::Table" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Glue::Table.Column": { "additionalProperties": false, "properties": { "Comment": { "type": "string" }, "Name": { "type": "string" }, "Type": { "type": "string" } }, "required": [ "Name" ], "type": "object" }, "AWS::Glue::Table.IcebergInput": { "additionalProperties": false, "properties": { "MetadataOperation": { "$ref": "#/definitions/AWS::Glue::Table.MetadataOperation" }, "Version": { "type": "string" } }, "type": "object" }, "AWS::Glue::Table.MetadataOperation": { "additionalProperties": false, "properties": {}, "type": "object" }, "AWS::Glue::Table.OpenTableFormatInput": { "additionalProperties": false, "properties": { "IcebergInput": { "$ref": "#/definitions/AWS::Glue::Table.IcebergInput" } }, "type": "object" }, "AWS::Glue::Table.Order": { "additionalProperties": false, "properties": { "Column": { "type": "string" }, "SortOrder": { "type": "number" } }, "required": [ "Column", "SortOrder" ], "type": "object" }, "AWS::Glue::Table.SchemaId": { "additionalProperties": false, "properties": { "RegistryName": { "type": "string" }, "SchemaArn": { "type": "string" }, "SchemaName": { "type": "string" } }, "type": "object" }, "AWS::Glue::Table.SchemaReference": { "additionalProperties": false, "properties": { "SchemaId": { "$ref": "#/definitions/AWS::Glue::Table.SchemaId" }, "SchemaVersionId": { "type": "string" }, "SchemaVersionNumber": { "type": "number" } }, "type": "object" }, "AWS::Glue::Table.SerdeInfo": { "additionalProperties": false, "properties": { "Name": { "type": "string" }, "Parameters": { "type": "object" }, "SerializationLibrary": { "type": "string" } }, "type": "object" }, "AWS::Glue::Table.SkewedInfo": { "additionalProperties": false, "properties": { "SkewedColumnNames": { "items": { "type": "string" }, "type": "array" }, "SkewedColumnValueLocationMaps": { "type": "object" }, "SkewedColumnValues": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::Glue::Table.StorageDescriptor": { "additionalProperties": false, "properties": { "BucketColumns": { "items": { "type": "string" }, "type": "array" }, "Columns": { "items": { "$ref": "#/definitions/AWS::Glue::Table.Column" }, "type": "array" }, "Compressed": { "type": "boolean" }, "InputFormat": { "type": "string" }, "Location": { "type": "string" }, "NumberOfBuckets": { "type": "number" }, "OutputFormat": { "type": "string" }, "Parameters": { "type": "object" }, "SchemaReference": { "$ref": "#/definitions/AWS::Glue::Table.SchemaReference" }, "SerdeInfo": { "$ref": "#/definitions/AWS::Glue::Table.SerdeInfo" }, "SkewedInfo": { "$ref": "#/definitions/AWS::Glue::Table.SkewedInfo" }, "SortColumns": { "items": { "$ref": "#/definitions/AWS::Glue::Table.Order" }, "type": "array" }, "StoredAsSubDirectories": { "type": "boolean" } }, "type": "object" }, "AWS::Glue::Table.TableIdentifier": { "additionalProperties": false, "properties": { "CatalogId": { "type": "string" }, "DatabaseName": { "type": "string" }, "Name": { "type": "string" }, "Region": { "type": "string" } }, "type": "object" }, "AWS::Glue::Table.TableInput": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "Name": { "type": "string" }, "Owner": { "type": "string" }, "Parameters": { "type": "object" }, "PartitionKeys": { "items": { "$ref": "#/definitions/AWS::Glue::Table.Column" }, "type": "array" }, "Retention": { "type": "number" }, "StorageDescriptor": { "$ref": "#/definitions/AWS::Glue::Table.StorageDescriptor" }, "TableType": { "type": "string" }, "TargetTable": { "$ref": "#/definitions/AWS::Glue::Table.TableIdentifier" }, "ViewExpandedText": { "type": "string" }, "ViewOriginalText": { "type": "string" } }, "type": "object" }, "AWS::Glue::Trigger": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Actions": { "items": { "$ref": "#/definitions/AWS::Glue::Trigger.Action" }, "type": "array" }, "Description": { "type": "string" }, "EventBatchingCondition": { "$ref": "#/definitions/AWS::Glue::Trigger.EventBatchingCondition" }, "Name": { "type": "string" }, "Predicate": { "$ref": "#/definitions/AWS::Glue::Trigger.Predicate" }, "Schedule": { "type": "string" }, "StartOnCreation": { "type": "boolean" }, "Tags": { "type": "object" }, "Type": { "type": "string" }, "WorkflowName": { "type": "string" } }, "required": [ "Actions", "Type" ], "type": "object" }, "Type": { "enum": [ "AWS::Glue::Trigger" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Glue::Trigger.Action": { "additionalProperties": false, "properties": { "Arguments": { "type": "object" }, "CrawlerName": { "type": "string" }, "JobName": { "type": "string" }, "NotificationProperty": { "$ref": "#/definitions/AWS::Glue::Trigger.NotificationProperty" }, "SecurityConfiguration": { "type": "string" }, "Timeout": { "type": "number" } }, "type": "object" }, "AWS::Glue::Trigger.Condition": { "additionalProperties": false, "properties": { "CrawlState": { "type": "string" }, "CrawlerName": { "type": "string" }, "JobName": { "type": "string" }, "LogicalOperator": { "type": "string" }, "State": { "type": "string" } }, "type": "object" }, "AWS::Glue::Trigger.EventBatchingCondition": { "additionalProperties": false, "properties": { "BatchSize": { "type": "number" }, "BatchWindow": { "type": "number" } }, "required": [ "BatchSize" ], "type": "object" }, "AWS::Glue::Trigger.NotificationProperty": { "additionalProperties": false, "properties": { "NotifyDelayAfter": { "type": "number" } }, "type": "object" }, "AWS::Glue::Trigger.Predicate": { "additionalProperties": false, "properties": { "Conditions": { "items": { "$ref": "#/definitions/AWS::Glue::Trigger.Condition" }, "type": "array" }, "Logical": { "type": "string" } }, "type": "object" }, "AWS::Glue::Workflow": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "DefaultRunProperties": { "type": "object" }, "Description": { "type": "string" }, "MaxConcurrentRuns": { "type": "number" }, "Name": { "type": "string" }, "Tags": { "type": "object" } }, "type": "object" }, "Type": { "enum": [ "AWS::Glue::Workflow" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::Grafana::Workspace": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AccountAccessType": { "type": "string" }, "AuthenticationProviders": { "items": { "type": "string" }, "type": "array" }, "ClientToken": { "type": "string" }, "DataSources": { "items": { "type": "string" }, "type": "array" }, "Description": { "type": "string" }, "GrafanaVersion": { "type": "string" }, "Name": { "type": "string" }, "NetworkAccessControl": { "$ref": "#/definitions/AWS::Grafana::Workspace.NetworkAccessControl" }, "NotificationDestinations": { "items": { "type": "string" }, "type": "array" }, "OrganizationRoleName": { "type": "string" }, "OrganizationalUnits": { "items": { "type": "string" }, "type": "array" }, "PermissionType": { "type": "string" }, "RoleArn": { "type": "string" }, "SamlConfiguration": { "$ref": "#/definitions/AWS::Grafana::Workspace.SamlConfiguration" }, "StackSetName": { "type": "string" }, "VpcConfiguration": { "$ref": "#/definitions/AWS::Grafana::Workspace.VpcConfiguration" } }, "required": [ "AccountAccessType", "AuthenticationProviders", "PermissionType" ], "type": "object" }, "Type": { "enum": [ "AWS::Grafana::Workspace" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Grafana::Workspace.AssertionAttributes": { "additionalProperties": false, "properties": { "Email": { "type": "string" }, "Groups": { "type": "string" }, "Login": { "type": "string" }, "Name": { "type": "string" }, "Org": { "type": "string" }, "Role": { "type": "string" } }, "type": "object" }, "AWS::Grafana::Workspace.IdpMetadata": { "additionalProperties": false, "properties": { "Url": { "type": "string" }, "Xml": { "type": "string" } }, "type": "object" }, "AWS::Grafana::Workspace.NetworkAccessControl": { "additionalProperties": false, "properties": { "PrefixListIds": { "items": { "type": "string" }, "type": "array" }, "VpceIds": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::Grafana::Workspace.RoleValues": { "additionalProperties": false, "properties": { "Admin": { "items": { "type": "string" }, "type": "array" }, "Editor": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::Grafana::Workspace.SamlConfiguration": { "additionalProperties": false, "properties": { "AllowedOrganizations": { "items": { "type": "string" }, "type": "array" }, "AssertionAttributes": { "$ref": "#/definitions/AWS::Grafana::Workspace.AssertionAttributes" }, "IdpMetadata": { "$ref": "#/definitions/AWS::Grafana::Workspace.IdpMetadata" }, "LoginValidityDuration": { "type": "number" }, "RoleValues": { "$ref": "#/definitions/AWS::Grafana::Workspace.RoleValues" } }, "required": [ "IdpMetadata" ], "type": "object" }, "AWS::Grafana::Workspace.VpcConfiguration": { "additionalProperties": false, "properties": { "SecurityGroupIds": { "items": { "type": "string" }, "type": "array" }, "SubnetIds": { "items": { "type": "string" }, "type": "array" } }, "required": [ "SecurityGroupIds", "SubnetIds" ], "type": "object" }, "AWS::Greengrass::ConnectorDefinition": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "InitialVersion": { "$ref": "#/definitions/AWS::Greengrass::ConnectorDefinition.ConnectorDefinitionVersion" }, "Name": { "type": "string" }, "Tags": { "type": "object" } }, "required": [ "Name" ], "type": "object" }, "Type": { "enum": [ "AWS::Greengrass::ConnectorDefinition" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Greengrass::ConnectorDefinition.Connector": { "additionalProperties": false, "properties": { "ConnectorArn": { "type": "string" }, "Id": { "type": "string" }, "Parameters": { "type": "object" } }, "required": [ "ConnectorArn", "Id" ], "type": "object" }, "AWS::Greengrass::ConnectorDefinition.ConnectorDefinitionVersion": { "additionalProperties": false, "properties": { "Connectors": { "items": { "$ref": "#/definitions/AWS::Greengrass::ConnectorDefinition.Connector" }, "type": "array" } }, "required": [ "Connectors" ], "type": "object" }, "AWS::Greengrass::ConnectorDefinitionVersion": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ConnectorDefinitionId": { "type": "string" }, "Connectors": { "items": { "$ref": "#/definitions/AWS::Greengrass::ConnectorDefinitionVersion.Connector" }, "type": "array" } }, "required": [ "ConnectorDefinitionId", "Connectors" ], "type": "object" }, "Type": { "enum": [ "AWS::Greengrass::ConnectorDefinitionVersion" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Greengrass::ConnectorDefinitionVersion.Connector": { "additionalProperties": false, "properties": { "ConnectorArn": { "type": "string" }, "Id": { "type": "string" }, "Parameters": { "type": "object" } }, "required": [ "ConnectorArn", "Id" ], "type": "object" }, "AWS::Greengrass::CoreDefinition": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "InitialVersion": { "$ref": "#/definitions/AWS::Greengrass::CoreDefinition.CoreDefinitionVersion" }, "Name": { "type": "string" }, "Tags": { "type": "object" } }, "required": [ "Name" ], "type": "object" }, "Type": { "enum": [ "AWS::Greengrass::CoreDefinition" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Greengrass::CoreDefinition.Core": { "additionalProperties": false, "properties": { "CertificateArn": { "type": "string" }, "Id": { "type": "string" }, "SyncShadow": { "type": "boolean" }, "ThingArn": { "type": "string" } }, "required": [ "CertificateArn", "Id", "ThingArn" ], "type": "object" }, "AWS::Greengrass::CoreDefinition.CoreDefinitionVersion": { "additionalProperties": false, "properties": { "Cores": { "items": { "$ref": "#/definitions/AWS::Greengrass::CoreDefinition.Core" }, "type": "array" } }, "required": [ "Cores" ], "type": "object" }, "AWS::Greengrass::CoreDefinitionVersion": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "CoreDefinitionId": { "type": "string" }, "Cores": { "items": { "$ref": "#/definitions/AWS::Greengrass::CoreDefinitionVersion.Core" }, "type": "array" } }, "required": [ "CoreDefinitionId", "Cores" ], "type": "object" }, "Type": { "enum": [ "AWS::Greengrass::CoreDefinitionVersion" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Greengrass::CoreDefinitionVersion.Core": { "additionalProperties": false, "properties": { "CertificateArn": { "type": "string" }, "Id": { "type": "string" }, "SyncShadow": { "type": "boolean" }, "ThingArn": { "type": "string" } }, "required": [ "CertificateArn", "Id", "ThingArn" ], "type": "object" }, "AWS::Greengrass::DeviceDefinition": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "InitialVersion": { "$ref": "#/definitions/AWS::Greengrass::DeviceDefinition.DeviceDefinitionVersion" }, "Name": { "type": "string" }, "Tags": { "type": "object" } }, "required": [ "Name" ], "type": "object" }, "Type": { "enum": [ "AWS::Greengrass::DeviceDefinition" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Greengrass::DeviceDefinition.Device": { "additionalProperties": false, "properties": { "CertificateArn": { "type": "string" }, "Id": { "type": "string" }, "SyncShadow": { "type": "boolean" }, "ThingArn": { "type": "string" } }, "required": [ "CertificateArn", "Id", "ThingArn" ], "type": "object" }, "AWS::Greengrass::DeviceDefinition.DeviceDefinitionVersion": { "additionalProperties": false, "properties": { "Devices": { "items": { "$ref": "#/definitions/AWS::Greengrass::DeviceDefinition.Device" }, "type": "array" } }, "required": [ "Devices" ], "type": "object" }, "AWS::Greengrass::DeviceDefinitionVersion": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "DeviceDefinitionId": { "type": "string" }, "Devices": { "items": { "$ref": "#/definitions/AWS::Greengrass::DeviceDefinitionVersion.Device" }, "type": "array" } }, "required": [ "DeviceDefinitionId", "Devices" ], "type": "object" }, "Type": { "enum": [ "AWS::Greengrass::DeviceDefinitionVersion" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Greengrass::DeviceDefinitionVersion.Device": { "additionalProperties": false, "properties": { "CertificateArn": { "type": "string" }, "Id": { "type": "string" }, "SyncShadow": { "type": "boolean" }, "ThingArn": { "type": "string" } }, "required": [ "CertificateArn", "Id", "ThingArn" ], "type": "object" }, "AWS::Greengrass::FunctionDefinition": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "InitialVersion": { "$ref": "#/definitions/AWS::Greengrass::FunctionDefinition.FunctionDefinitionVersion" }, "Name": { "type": "string" }, "Tags": { "type": "object" } }, "required": [ "Name" ], "type": "object" }, "Type": { "enum": [ "AWS::Greengrass::FunctionDefinition" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Greengrass::FunctionDefinition.DefaultConfig": { "additionalProperties": false, "properties": { "Execution": { "$ref": "#/definitions/AWS::Greengrass::FunctionDefinition.Execution" } }, "required": [ "Execution" ], "type": "object" }, "AWS::Greengrass::FunctionDefinition.Environment": { "additionalProperties": false, "properties": { "AccessSysfs": { "type": "boolean" }, "Execution": { "$ref": "#/definitions/AWS::Greengrass::FunctionDefinition.Execution" }, "ResourceAccessPolicies": { "items": { "$ref": "#/definitions/AWS::Greengrass::FunctionDefinition.ResourceAccessPolicy" }, "type": "array" }, "Variables": { "type": "object" } }, "type": "object" }, "AWS::Greengrass::FunctionDefinition.Execution": { "additionalProperties": false, "properties": { "IsolationMode": { "type": "string" }, "RunAs": { "$ref": "#/definitions/AWS::Greengrass::FunctionDefinition.RunAs" } }, "type": "object" }, "AWS::Greengrass::FunctionDefinition.Function": { "additionalProperties": false, "properties": { "FunctionArn": { "type": "string" }, "FunctionConfiguration": { "$ref": "#/definitions/AWS::Greengrass::FunctionDefinition.FunctionConfiguration" }, "Id": { "type": "string" } }, "required": [ "FunctionArn", "FunctionConfiguration", "Id" ], "type": "object" }, "AWS::Greengrass::FunctionDefinition.FunctionConfiguration": { "additionalProperties": false, "properties": { "EncodingType": { "type": "string" }, "Environment": { "$ref": "#/definitions/AWS::Greengrass::FunctionDefinition.Environment" }, "ExecArgs": { "type": "string" }, "Executable": { "type": "string" }, "MemorySize": { "type": "number" }, "Pinned": { "type": "boolean" }, "Timeout": { "type": "number" } }, "type": "object" }, "AWS::Greengrass::FunctionDefinition.FunctionDefinitionVersion": { "additionalProperties": false, "properties": { "DefaultConfig": { "$ref": "#/definitions/AWS::Greengrass::FunctionDefinition.DefaultConfig" }, "Functions": { "items": { "$ref": "#/definitions/AWS::Greengrass::FunctionDefinition.Function" }, "type": "array" } }, "required": [ "Functions" ], "type": "object" }, "AWS::Greengrass::FunctionDefinition.ResourceAccessPolicy": { "additionalProperties": false, "properties": { "Permission": { "type": "string" }, "ResourceId": { "type": "string" } }, "required": [ "ResourceId" ], "type": "object" }, "AWS::Greengrass::FunctionDefinition.RunAs": { "additionalProperties": false, "properties": { "Gid": { "type": "number" }, "Uid": { "type": "number" } }, "type": "object" }, "AWS::Greengrass::FunctionDefinitionVersion": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "DefaultConfig": { "$ref": "#/definitions/AWS::Greengrass::FunctionDefinitionVersion.DefaultConfig" }, "FunctionDefinitionId": { "type": "string" }, "Functions": { "items": { "$ref": "#/definitions/AWS::Greengrass::FunctionDefinitionVersion.Function" }, "type": "array" } }, "required": [ "FunctionDefinitionId", "Functions" ], "type": "object" }, "Type": { "enum": [ "AWS::Greengrass::FunctionDefinitionVersion" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Greengrass::FunctionDefinitionVersion.DefaultConfig": { "additionalProperties": false, "properties": { "Execution": { "$ref": "#/definitions/AWS::Greengrass::FunctionDefinitionVersion.Execution" } }, "required": [ "Execution" ], "type": "object" }, "AWS::Greengrass::FunctionDefinitionVersion.Environment": { "additionalProperties": false, "properties": { "AccessSysfs": { "type": "boolean" }, "Execution": { "$ref": "#/definitions/AWS::Greengrass::FunctionDefinitionVersion.Execution" }, "ResourceAccessPolicies": { "items": { "$ref": "#/definitions/AWS::Greengrass::FunctionDefinitionVersion.ResourceAccessPolicy" }, "type": "array" }, "Variables": { "type": "object" } }, "type": "object" }, "AWS::Greengrass::FunctionDefinitionVersion.Execution": { "additionalProperties": false, "properties": { "IsolationMode": { "type": "string" }, "RunAs": { "$ref": "#/definitions/AWS::Greengrass::FunctionDefinitionVersion.RunAs" } }, "type": "object" }, "AWS::Greengrass::FunctionDefinitionVersion.Function": { "additionalProperties": false, "properties": { "FunctionArn": { "type": "string" }, "FunctionConfiguration": { "$ref": "#/definitions/AWS::Greengrass::FunctionDefinitionVersion.FunctionConfiguration" }, "Id": { "type": "string" } }, "required": [ "FunctionArn", "FunctionConfiguration", "Id" ], "type": "object" }, "AWS::Greengrass::FunctionDefinitionVersion.FunctionConfiguration": { "additionalProperties": false, "properties": { "EncodingType": { "type": "string" }, "Environment": { "$ref": "#/definitions/AWS::Greengrass::FunctionDefinitionVersion.Environment" }, "ExecArgs": { "type": "string" }, "Executable": { "type": "string" }, "MemorySize": { "type": "number" }, "Pinned": { "type": "boolean" }, "Timeout": { "type": "number" } }, "type": "object" }, "AWS::Greengrass::FunctionDefinitionVersion.ResourceAccessPolicy": { "additionalProperties": false, "properties": { "Permission": { "type": "string" }, "ResourceId": { "type": "string" } }, "required": [ "ResourceId" ], "type": "object" }, "AWS::Greengrass::FunctionDefinitionVersion.RunAs": { "additionalProperties": false, "properties": { "Gid": { "type": "number" }, "Uid": { "type": "number" } }, "type": "object" }, "AWS::Greengrass::Group": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "InitialVersion": { "$ref": "#/definitions/AWS::Greengrass::Group.GroupVersion" }, "Name": { "type": "string" }, "RoleArn": { "type": "string" }, "Tags": { "type": "object" } }, "required": [ "Name" ], "type": "object" }, "Type": { "enum": [ "AWS::Greengrass::Group" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Greengrass::Group.GroupVersion": { "additionalProperties": false, "properties": { "ConnectorDefinitionVersionArn": { "type": "string" }, "CoreDefinitionVersionArn": { "type": "string" }, "DeviceDefinitionVersionArn": { "type": "string" }, "FunctionDefinitionVersionArn": { "type": "string" }, "LoggerDefinitionVersionArn": { "type": "string" }, "ResourceDefinitionVersionArn": { "type": "string" }, "SubscriptionDefinitionVersionArn": { "type": "string" } }, "type": "object" }, "AWS::Greengrass::GroupVersion": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ConnectorDefinitionVersionArn": { "type": "string" }, "CoreDefinitionVersionArn": { "type": "string" }, "DeviceDefinitionVersionArn": { "type": "string" }, "FunctionDefinitionVersionArn": { "type": "string" }, "GroupId": { "type": "string" }, "LoggerDefinitionVersionArn": { "type": "string" }, "ResourceDefinitionVersionArn": { "type": "string" }, "SubscriptionDefinitionVersionArn": { "type": "string" } }, "required": [ "GroupId" ], "type": "object" }, "Type": { "enum": [ "AWS::Greengrass::GroupVersion" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Greengrass::LoggerDefinition": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "InitialVersion": { "$ref": "#/definitions/AWS::Greengrass::LoggerDefinition.LoggerDefinitionVersion" }, "Name": { "type": "string" }, "Tags": { "type": "object" } }, "required": [ "Name" ], "type": "object" }, "Type": { "enum": [ "AWS::Greengrass::LoggerDefinition" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Greengrass::LoggerDefinition.Logger": { "additionalProperties": false, "properties": { "Component": { "type": "string" }, "Id": { "type": "string" }, "Level": { "type": "string" }, "Space": { "type": "number" }, "Type": { "type": "string" } }, "required": [ "Component", "Id", "Level", "Type" ], "type": "object" }, "AWS::Greengrass::LoggerDefinition.LoggerDefinitionVersion": { "additionalProperties": false, "properties": { "Loggers": { "items": { "$ref": "#/definitions/AWS::Greengrass::LoggerDefinition.Logger" }, "type": "array" } }, "required": [ "Loggers" ], "type": "object" }, "AWS::Greengrass::LoggerDefinitionVersion": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "LoggerDefinitionId": { "type": "string" }, "Loggers": { "items": { "$ref": "#/definitions/AWS::Greengrass::LoggerDefinitionVersion.Logger" }, "type": "array" } }, "required": [ "LoggerDefinitionId", "Loggers" ], "type": "object" }, "Type": { "enum": [ "AWS::Greengrass::LoggerDefinitionVersion" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Greengrass::LoggerDefinitionVersion.Logger": { "additionalProperties": false, "properties": { "Component": { "type": "string" }, "Id": { "type": "string" }, "Level": { "type": "string" }, "Space": { "type": "number" }, "Type": { "type": "string" } }, "required": [ "Component", "Id", "Level", "Type" ], "type": "object" }, "AWS::Greengrass::ResourceDefinition": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "InitialVersion": { "$ref": "#/definitions/AWS::Greengrass::ResourceDefinition.ResourceDefinitionVersion" }, "Name": { "type": "string" }, "Tags": { "type": "object" } }, "required": [ "Name" ], "type": "object" }, "Type": { "enum": [ "AWS::Greengrass::ResourceDefinition" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Greengrass::ResourceDefinition.GroupOwnerSetting": { "additionalProperties": false, "properties": { "AutoAddGroupOwner": { "type": "boolean" }, "GroupOwner": { "type": "string" } }, "required": [ "AutoAddGroupOwner" ], "type": "object" }, "AWS::Greengrass::ResourceDefinition.LocalDeviceResourceData": { "additionalProperties": false, "properties": { "GroupOwnerSetting": { "$ref": "#/definitions/AWS::Greengrass::ResourceDefinition.GroupOwnerSetting" }, "SourcePath": { "type": "string" } }, "required": [ "SourcePath" ], "type": "object" }, "AWS::Greengrass::ResourceDefinition.LocalVolumeResourceData": { "additionalProperties": false, "properties": { "DestinationPath": { "type": "string" }, "GroupOwnerSetting": { "$ref": "#/definitions/AWS::Greengrass::ResourceDefinition.GroupOwnerSetting" }, "SourcePath": { "type": "string" } }, "required": [ "DestinationPath", "SourcePath" ], "type": "object" }, "AWS::Greengrass::ResourceDefinition.ResourceDataContainer": { "additionalProperties": false, "properties": { "LocalDeviceResourceData": { "$ref": "#/definitions/AWS::Greengrass::ResourceDefinition.LocalDeviceResourceData" }, "LocalVolumeResourceData": { "$ref": "#/definitions/AWS::Greengrass::ResourceDefinition.LocalVolumeResourceData" }, "S3MachineLearningModelResourceData": { "$ref": "#/definitions/AWS::Greengrass::ResourceDefinition.S3MachineLearningModelResourceData" }, "SageMakerMachineLearningModelResourceData": { "$ref": "#/definitions/AWS::Greengrass::ResourceDefinition.SageMakerMachineLearningModelResourceData" }, "SecretsManagerSecretResourceData": { "$ref": "#/definitions/AWS::Greengrass::ResourceDefinition.SecretsManagerSecretResourceData" } }, "type": "object" }, "AWS::Greengrass::ResourceDefinition.ResourceDefinitionVersion": { "additionalProperties": false, "properties": { "Resources": { "items": { "$ref": "#/definitions/AWS::Greengrass::ResourceDefinition.ResourceInstance" }, "type": "array" } }, "required": [ "Resources" ], "type": "object" }, "AWS::Greengrass::ResourceDefinition.ResourceDownloadOwnerSetting": { "additionalProperties": false, "properties": { "GroupOwner": { "type": "string" }, "GroupPermission": { "type": "string" } }, "required": [ "GroupOwner", "GroupPermission" ], "type": "object" }, "AWS::Greengrass::ResourceDefinition.ResourceInstance": { "additionalProperties": false, "properties": { "Id": { "type": "string" }, "Name": { "type": "string" }, "ResourceDataContainer": { "$ref": "#/definitions/AWS::Greengrass::ResourceDefinition.ResourceDataContainer" } }, "required": [ "Id", "Name", "ResourceDataContainer" ], "type": "object" }, "AWS::Greengrass::ResourceDefinition.S3MachineLearningModelResourceData": { "additionalProperties": false, "properties": { "DestinationPath": { "type": "string" }, "OwnerSetting": { "$ref": "#/definitions/AWS::Greengrass::ResourceDefinition.ResourceDownloadOwnerSetting" }, "S3Uri": { "type": "string" } }, "required": [ "DestinationPath", "S3Uri" ], "type": "object" }, "AWS::Greengrass::ResourceDefinition.SageMakerMachineLearningModelResourceData": { "additionalProperties": false, "properties": { "DestinationPath": { "type": "string" }, "OwnerSetting": { "$ref": "#/definitions/AWS::Greengrass::ResourceDefinition.ResourceDownloadOwnerSetting" }, "SageMakerJobArn": { "type": "string" } }, "required": [ "DestinationPath", "SageMakerJobArn" ], "type": "object" }, "AWS::Greengrass::ResourceDefinition.SecretsManagerSecretResourceData": { "additionalProperties": false, "properties": { "ARN": { "type": "string" }, "AdditionalStagingLabelsToDownload": { "items": { "type": "string" }, "type": "array" } }, "required": [ "ARN" ], "type": "object" }, "AWS::Greengrass::ResourceDefinitionVersion": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ResourceDefinitionId": { "type": "string" }, "Resources": { "items": { "$ref": "#/definitions/AWS::Greengrass::ResourceDefinitionVersion.ResourceInstance" }, "type": "array" } }, "required": [ "ResourceDefinitionId", "Resources" ], "type": "object" }, "Type": { "enum": [ "AWS::Greengrass::ResourceDefinitionVersion" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Greengrass::ResourceDefinitionVersion.GroupOwnerSetting": { "additionalProperties": false, "properties": { "AutoAddGroupOwner": { "type": "boolean" }, "GroupOwner": { "type": "string" } }, "required": [ "AutoAddGroupOwner" ], "type": "object" }, "AWS::Greengrass::ResourceDefinitionVersion.LocalDeviceResourceData": { "additionalProperties": false, "properties": { "GroupOwnerSetting": { "$ref": "#/definitions/AWS::Greengrass::ResourceDefinitionVersion.GroupOwnerSetting" }, "SourcePath": { "type": "string" } }, "required": [ "SourcePath" ], "type": "object" }, "AWS::Greengrass::ResourceDefinitionVersion.LocalVolumeResourceData": { "additionalProperties": false, "properties": { "DestinationPath": { "type": "string" }, "GroupOwnerSetting": { "$ref": "#/definitions/AWS::Greengrass::ResourceDefinitionVersion.GroupOwnerSetting" }, "SourcePath": { "type": "string" } }, "required": [ "DestinationPath", "SourcePath" ], "type": "object" }, "AWS::Greengrass::ResourceDefinitionVersion.ResourceDataContainer": { "additionalProperties": false, "properties": { "LocalDeviceResourceData": { "$ref": "#/definitions/AWS::Greengrass::ResourceDefinitionVersion.LocalDeviceResourceData" }, "LocalVolumeResourceData": { "$ref": "#/definitions/AWS::Greengrass::ResourceDefinitionVersion.LocalVolumeResourceData" }, "S3MachineLearningModelResourceData": { "$ref": "#/definitions/AWS::Greengrass::ResourceDefinitionVersion.S3MachineLearningModelResourceData" }, "SageMakerMachineLearningModelResourceData": { "$ref": "#/definitions/AWS::Greengrass::ResourceDefinitionVersion.SageMakerMachineLearningModelResourceData" }, "SecretsManagerSecretResourceData": { "$ref": "#/definitions/AWS::Greengrass::ResourceDefinitionVersion.SecretsManagerSecretResourceData" } }, "type": "object" }, "AWS::Greengrass::ResourceDefinitionVersion.ResourceDownloadOwnerSetting": { "additionalProperties": false, "properties": { "GroupOwner": { "type": "string" }, "GroupPermission": { "type": "string" } }, "required": [ "GroupOwner", "GroupPermission" ], "type": "object" }, "AWS::Greengrass::ResourceDefinitionVersion.ResourceInstance": { "additionalProperties": false, "properties": { "Id": { "type": "string" }, "Name": { "type": "string" }, "ResourceDataContainer": { "$ref": "#/definitions/AWS::Greengrass::ResourceDefinitionVersion.ResourceDataContainer" } }, "required": [ "Id", "Name", "ResourceDataContainer" ], "type": "object" }, "AWS::Greengrass::ResourceDefinitionVersion.S3MachineLearningModelResourceData": { "additionalProperties": false, "properties": { "DestinationPath": { "type": "string" }, "OwnerSetting": { "$ref": "#/definitions/AWS::Greengrass::ResourceDefinitionVersion.ResourceDownloadOwnerSetting" }, "S3Uri": { "type": "string" } }, "required": [ "DestinationPath", "S3Uri" ], "type": "object" }, "AWS::Greengrass::ResourceDefinitionVersion.SageMakerMachineLearningModelResourceData": { "additionalProperties": false, "properties": { "DestinationPath": { "type": "string" }, "OwnerSetting": { "$ref": "#/definitions/AWS::Greengrass::ResourceDefinitionVersion.ResourceDownloadOwnerSetting" }, "SageMakerJobArn": { "type": "string" } }, "required": [ "DestinationPath", "SageMakerJobArn" ], "type": "object" }, "AWS::Greengrass::ResourceDefinitionVersion.SecretsManagerSecretResourceData": { "additionalProperties": false, "properties": { "ARN": { "type": "string" }, "AdditionalStagingLabelsToDownload": { "items": { "type": "string" }, "type": "array" } }, "required": [ "ARN" ], "type": "object" }, "AWS::Greengrass::SubscriptionDefinition": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "InitialVersion": { "$ref": "#/definitions/AWS::Greengrass::SubscriptionDefinition.SubscriptionDefinitionVersion" }, "Name": { "type": "string" }, "Tags": { "type": "object" } }, "required": [ "Name" ], "type": "object" }, "Type": { "enum": [ "AWS::Greengrass::SubscriptionDefinition" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Greengrass::SubscriptionDefinition.Subscription": { "additionalProperties": false, "properties": { "Id": { "type": "string" }, "Source": { "type": "string" }, "Subject": { "type": "string" }, "Target": { "type": "string" } }, "required": [ "Id", "Source", "Subject", "Target" ], "type": "object" }, "AWS::Greengrass::SubscriptionDefinition.SubscriptionDefinitionVersion": { "additionalProperties": false, "properties": { "Subscriptions": { "items": { "$ref": "#/definitions/AWS::Greengrass::SubscriptionDefinition.Subscription" }, "type": "array" } }, "required": [ "Subscriptions" ], "type": "object" }, "AWS::Greengrass::SubscriptionDefinitionVersion": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "SubscriptionDefinitionId": { "type": "string" }, "Subscriptions": { "items": { "$ref": "#/definitions/AWS::Greengrass::SubscriptionDefinitionVersion.Subscription" }, "type": "array" } }, "required": [ "SubscriptionDefinitionId", "Subscriptions" ], "type": "object" }, "Type": { "enum": [ "AWS::Greengrass::SubscriptionDefinitionVersion" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Greengrass::SubscriptionDefinitionVersion.Subscription": { "additionalProperties": false, "properties": { "Id": { "type": "string" }, "Source": { "type": "string" }, "Subject": { "type": "string" }, "Target": { "type": "string" } }, "required": [ "Id", "Source", "Subject", "Target" ], "type": "object" }, "AWS::GreengrassV2::ComponentVersion": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "InlineRecipe": { "type": "string" }, "LambdaFunction": { "$ref": "#/definitions/AWS::GreengrassV2::ComponentVersion.LambdaFunctionRecipeSource" }, "Tags": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" } }, "type": "object" }, "Type": { "enum": [ "AWS::GreengrassV2::ComponentVersion" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::GreengrassV2::ComponentVersion.ComponentDependencyRequirement": { "additionalProperties": false, "properties": { "DependencyType": { "type": "string" }, "VersionRequirement": { "type": "string" } }, "type": "object" }, "AWS::GreengrassV2::ComponentVersion.ComponentPlatform": { "additionalProperties": false, "properties": { "Attributes": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" }, "Name": { "type": "string" } }, "type": "object" }, "AWS::GreengrassV2::ComponentVersion.LambdaContainerParams": { "additionalProperties": false, "properties": { "Devices": { "items": { "$ref": "#/definitions/AWS::GreengrassV2::ComponentVersion.LambdaDeviceMount" }, "type": "array" }, "MemorySizeInKB": { "type": "number" }, "MountROSysfs": { "type": "boolean" }, "Volumes": { "items": { "$ref": "#/definitions/AWS::GreengrassV2::ComponentVersion.LambdaVolumeMount" }, "type": "array" } }, "type": "object" }, "AWS::GreengrassV2::ComponentVersion.LambdaDeviceMount": { "additionalProperties": false, "properties": { "AddGroupOwner": { "type": "boolean" }, "Path": { "type": "string" }, "Permission": { "type": "string" } }, "type": "object" }, "AWS::GreengrassV2::ComponentVersion.LambdaEventSource": { "additionalProperties": false, "properties": { "Topic": { "type": "string" }, "Type": { "type": "string" } }, "type": "object" }, "AWS::GreengrassV2::ComponentVersion.LambdaExecutionParameters": { "additionalProperties": false, "properties": { "EnvironmentVariables": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" }, "EventSources": { "items": { "$ref": "#/definitions/AWS::GreengrassV2::ComponentVersion.LambdaEventSource" }, "type": "array" }, "ExecArgs": { "items": { "type": "string" }, "type": "array" }, "InputPayloadEncodingType": { "type": "string" }, "LinuxProcessParams": { "$ref": "#/definitions/AWS::GreengrassV2::ComponentVersion.LambdaLinuxProcessParams" }, "MaxIdleTimeInSeconds": { "type": "number" }, "MaxInstancesCount": { "type": "number" }, "MaxQueueSize": { "type": "number" }, "Pinned": { "type": "boolean" }, "StatusTimeoutInSeconds": { "type": "number" }, "TimeoutInSeconds": { "type": "number" } }, "type": "object" }, "AWS::GreengrassV2::ComponentVersion.LambdaFunctionRecipeSource": { "additionalProperties": false, "properties": { "ComponentDependencies": { "additionalProperties": false, "patternProperties": { "^[a-zA-Z0-9]+$": { "$ref": "#/definitions/AWS::GreengrassV2::ComponentVersion.ComponentDependencyRequirement" } }, "type": "object" }, "ComponentLambdaParameters": { "$ref": "#/definitions/AWS::GreengrassV2::ComponentVersion.LambdaExecutionParameters" }, "ComponentName": { "type": "string" }, "ComponentPlatforms": { "items": { "$ref": "#/definitions/AWS::GreengrassV2::ComponentVersion.ComponentPlatform" }, "type": "array" }, "ComponentVersion": { "type": "string" }, "LambdaArn": { "type": "string" } }, "type": "object" }, "AWS::GreengrassV2::ComponentVersion.LambdaLinuxProcessParams": { "additionalProperties": false, "properties": { "ContainerParams": { "$ref": "#/definitions/AWS::GreengrassV2::ComponentVersion.LambdaContainerParams" }, "IsolationMode": { "type": "string" } }, "type": "object" }, "AWS::GreengrassV2::ComponentVersion.LambdaVolumeMount": { "additionalProperties": false, "properties": { "AddGroupOwner": { "type": "boolean" }, "DestinationPath": { "type": "string" }, "Permission": { "type": "string" }, "SourcePath": { "type": "string" } }, "type": "object" }, "AWS::GreengrassV2::Deployment": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Components": { "additionalProperties": false, "patternProperties": { "^[a-zA-Z0-9]+$": { "$ref": "#/definitions/AWS::GreengrassV2::Deployment.ComponentDeploymentSpecification" } }, "type": "object" }, "DeploymentName": { "type": "string" }, "DeploymentPolicies": { "$ref": "#/definitions/AWS::GreengrassV2::Deployment.DeploymentPolicies" }, "IotJobConfiguration": { "$ref": "#/definitions/AWS::GreengrassV2::Deployment.DeploymentIoTJobConfiguration" }, "ParentTargetArn": { "type": "string" }, "Tags": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" }, "TargetArn": { "type": "string" } }, "required": [ "TargetArn" ], "type": "object" }, "Type": { "enum": [ "AWS::GreengrassV2::Deployment" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::GreengrassV2::Deployment.ComponentConfigurationUpdate": { "additionalProperties": false, "properties": { "Merge": { "type": "string" }, "Reset": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::GreengrassV2::Deployment.ComponentDeploymentSpecification": { "additionalProperties": false, "properties": { "ComponentVersion": { "type": "string" }, "ConfigurationUpdate": { "$ref": "#/definitions/AWS::GreengrassV2::Deployment.ComponentConfigurationUpdate" }, "RunWith": { "$ref": "#/definitions/AWS::GreengrassV2::Deployment.ComponentRunWith" } }, "type": "object" }, "AWS::GreengrassV2::Deployment.ComponentRunWith": { "additionalProperties": false, "properties": { "PosixUser": { "type": "string" }, "SystemResourceLimits": { "$ref": "#/definitions/AWS::GreengrassV2::Deployment.SystemResourceLimits" }, "WindowsUser": { "type": "string" } }, "type": "object" }, "AWS::GreengrassV2::Deployment.DeploymentComponentUpdatePolicy": { "additionalProperties": false, "properties": { "Action": { "type": "string" }, "TimeoutInSeconds": { "type": "number" } }, "type": "object" }, "AWS::GreengrassV2::Deployment.DeploymentConfigurationValidationPolicy": { "additionalProperties": false, "properties": { "TimeoutInSeconds": { "type": "number" } }, "type": "object" }, "AWS::GreengrassV2::Deployment.DeploymentIoTJobConfiguration": { "additionalProperties": false, "properties": { "AbortConfig": { "$ref": "#/definitions/AWS::GreengrassV2::Deployment.IoTJobAbortConfig" }, "JobExecutionsRolloutConfig": { "$ref": "#/definitions/AWS::GreengrassV2::Deployment.IoTJobExecutionsRolloutConfig" }, "TimeoutConfig": { "$ref": "#/definitions/AWS::GreengrassV2::Deployment.IoTJobTimeoutConfig" } }, "type": "object" }, "AWS::GreengrassV2::Deployment.DeploymentPolicies": { "additionalProperties": false, "properties": { "ComponentUpdatePolicy": { "$ref": "#/definitions/AWS::GreengrassV2::Deployment.DeploymentComponentUpdatePolicy" }, "ConfigurationValidationPolicy": { "$ref": "#/definitions/AWS::GreengrassV2::Deployment.DeploymentConfigurationValidationPolicy" }, "FailureHandlingPolicy": { "type": "string" } }, "type": "object" }, "AWS::GreengrassV2::Deployment.IoTJobAbortConfig": { "additionalProperties": false, "properties": { "CriteriaList": { "items": { "$ref": "#/definitions/AWS::GreengrassV2::Deployment.IoTJobAbortCriteria" }, "type": "array" } }, "required": [ "CriteriaList" ], "type": "object" }, "AWS::GreengrassV2::Deployment.IoTJobAbortCriteria": { "additionalProperties": false, "properties": { "Action": { "type": "string" }, "FailureType": { "type": "string" }, "MinNumberOfExecutedThings": { "type": "number" }, "ThresholdPercentage": { "type": "number" } }, "required": [ "Action", "FailureType", "MinNumberOfExecutedThings", "ThresholdPercentage" ], "type": "object" }, "AWS::GreengrassV2::Deployment.IoTJobExecutionsRolloutConfig": { "additionalProperties": false, "properties": { "ExponentialRate": { "$ref": "#/definitions/AWS::GreengrassV2::Deployment.IoTJobExponentialRolloutRate" }, "MaximumPerMinute": { "type": "number" } }, "type": "object" }, "AWS::GreengrassV2::Deployment.IoTJobExponentialRolloutRate": { "additionalProperties": false, "properties": { "BaseRatePerMinute": { "type": "number" }, "IncrementFactor": { "type": "number" }, "RateIncreaseCriteria": { "$ref": "#/definitions/AWS::GreengrassV2::Deployment.IoTJobRateIncreaseCriteria" } }, "required": [ "BaseRatePerMinute", "IncrementFactor", "RateIncreaseCriteria" ], "type": "object" }, "AWS::GreengrassV2::Deployment.IoTJobRateIncreaseCriteria": { "additionalProperties": false, "properties": { "NumberOfNotifiedThings": { "type": "number" }, "NumberOfSucceededThings": { "type": "number" } }, "type": "object" }, "AWS::GreengrassV2::Deployment.IoTJobTimeoutConfig": { "additionalProperties": false, "properties": { "InProgressTimeoutInMinutes": { "type": "number" } }, "type": "object" }, "AWS::GreengrassV2::Deployment.SystemResourceLimits": { "additionalProperties": false, "properties": { "Cpus": { "type": "number" }, "Memory": { "type": "number" } }, "type": "object" }, "AWS::GroundStation::Config": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ConfigData": { "$ref": "#/definitions/AWS::GroundStation::Config.ConfigData" }, "Name": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "ConfigData", "Name" ], "type": "object" }, "Type": { "enum": [ "AWS::GroundStation::Config" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::GroundStation::Config.AntennaDownlinkConfig": { "additionalProperties": false, "properties": { "SpectrumConfig": { "$ref": "#/definitions/AWS::GroundStation::Config.SpectrumConfig" } }, "type": "object" }, "AWS::GroundStation::Config.AntennaDownlinkDemodDecodeConfig": { "additionalProperties": false, "properties": { "DecodeConfig": { "$ref": "#/definitions/AWS::GroundStation::Config.DecodeConfig" }, "DemodulationConfig": { "$ref": "#/definitions/AWS::GroundStation::Config.DemodulationConfig" }, "SpectrumConfig": { "$ref": "#/definitions/AWS::GroundStation::Config.SpectrumConfig" } }, "type": "object" }, "AWS::GroundStation::Config.AntennaUplinkConfig": { "additionalProperties": false, "properties": { "SpectrumConfig": { "$ref": "#/definitions/AWS::GroundStation::Config.UplinkSpectrumConfig" }, "TargetEirp": { "$ref": "#/definitions/AWS::GroundStation::Config.Eirp" }, "TransmitDisabled": { "type": "boolean" } }, "type": "object" }, "AWS::GroundStation::Config.ConfigData": { "additionalProperties": false, "properties": { "AntennaDownlinkConfig": { "$ref": "#/definitions/AWS::GroundStation::Config.AntennaDownlinkConfig" }, "AntennaDownlinkDemodDecodeConfig": { "$ref": "#/definitions/AWS::GroundStation::Config.AntennaDownlinkDemodDecodeConfig" }, "AntennaUplinkConfig": { "$ref": "#/definitions/AWS::GroundStation::Config.AntennaUplinkConfig" }, "DataflowEndpointConfig": { "$ref": "#/definitions/AWS::GroundStation::Config.DataflowEndpointConfig" }, "S3RecordingConfig": { "$ref": "#/definitions/AWS::GroundStation::Config.S3RecordingConfig" }, "TrackingConfig": { "$ref": "#/definitions/AWS::GroundStation::Config.TrackingConfig" }, "UplinkEchoConfig": { "$ref": "#/definitions/AWS::GroundStation::Config.UplinkEchoConfig" } }, "type": "object" }, "AWS::GroundStation::Config.DataflowEndpointConfig": { "additionalProperties": false, "properties": { "DataflowEndpointName": { "type": "string" }, "DataflowEndpointRegion": { "type": "string" } }, "type": "object" }, "AWS::GroundStation::Config.DecodeConfig": { "additionalProperties": false, "properties": { "UnvalidatedJSON": { "type": "string" } }, "type": "object" }, "AWS::GroundStation::Config.DemodulationConfig": { "additionalProperties": false, "properties": { "UnvalidatedJSON": { "type": "string" } }, "type": "object" }, "AWS::GroundStation::Config.Eirp": { "additionalProperties": false, "properties": { "Units": { "type": "string" }, "Value": { "type": "number" } }, "type": "object" }, "AWS::GroundStation::Config.Frequency": { "additionalProperties": false, "properties": { "Units": { "type": "string" }, "Value": { "type": "number" } }, "type": "object" }, "AWS::GroundStation::Config.FrequencyBandwidth": { "additionalProperties": false, "properties": { "Units": { "type": "string" }, "Value": { "type": "number" } }, "type": "object" }, "AWS::GroundStation::Config.S3RecordingConfig": { "additionalProperties": false, "properties": { "BucketArn": { "type": "string" }, "Prefix": { "type": "string" }, "RoleArn": { "type": "string" } }, "type": "object" }, "AWS::GroundStation::Config.SpectrumConfig": { "additionalProperties": false, "properties": { "Bandwidth": { "$ref": "#/definitions/AWS::GroundStation::Config.FrequencyBandwidth" }, "CenterFrequency": { "$ref": "#/definitions/AWS::GroundStation::Config.Frequency" }, "Polarization": { "type": "string" } }, "type": "object" }, "AWS::GroundStation::Config.TrackingConfig": { "additionalProperties": false, "properties": { "Autotrack": { "type": "string" } }, "type": "object" }, "AWS::GroundStation::Config.UplinkEchoConfig": { "additionalProperties": false, "properties": { "AntennaUplinkConfigArn": { "type": "string" }, "Enabled": { "type": "boolean" } }, "type": "object" }, "AWS::GroundStation::Config.UplinkSpectrumConfig": { "additionalProperties": false, "properties": { "CenterFrequency": { "$ref": "#/definitions/AWS::GroundStation::Config.Frequency" }, "Polarization": { "type": "string" } }, "type": "object" }, "AWS::GroundStation::DataflowEndpointGroup": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ContactPostPassDurationSeconds": { "type": "number" }, "ContactPrePassDurationSeconds": { "type": "number" }, "EndpointDetails": { "items": { "$ref": "#/definitions/AWS::GroundStation::DataflowEndpointGroup.EndpointDetails" }, "type": "array" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "EndpointDetails" ], "type": "object" }, "Type": { "enum": [ "AWS::GroundStation::DataflowEndpointGroup" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::GroundStation::DataflowEndpointGroup.AwsGroundStationAgentEndpoint": { "additionalProperties": false, "properties": { "AgentStatus": { "type": "string" }, "AuditResults": { "type": "string" }, "EgressAddress": { "$ref": "#/definitions/AWS::GroundStation::DataflowEndpointGroup.ConnectionDetails" }, "IngressAddress": { "$ref": "#/definitions/AWS::GroundStation::DataflowEndpointGroup.RangedConnectionDetails" }, "Name": { "type": "string" } }, "type": "object" }, "AWS::GroundStation::DataflowEndpointGroup.ConnectionDetails": { "additionalProperties": false, "properties": { "Mtu": { "type": "number" }, "SocketAddress": { "$ref": "#/definitions/AWS::GroundStation::DataflowEndpointGroup.SocketAddress" } }, "type": "object" }, "AWS::GroundStation::DataflowEndpointGroup.DataflowEndpoint": { "additionalProperties": false, "properties": { "Address": { "$ref": "#/definitions/AWS::GroundStation::DataflowEndpointGroup.SocketAddress" }, "Mtu": { "type": "number" }, "Name": { "type": "string" } }, "type": "object" }, "AWS::GroundStation::DataflowEndpointGroup.EndpointDetails": { "additionalProperties": false, "properties": { "AwsGroundStationAgentEndpoint": { "$ref": "#/definitions/AWS::GroundStation::DataflowEndpointGroup.AwsGroundStationAgentEndpoint" }, "Endpoint": { "$ref": "#/definitions/AWS::GroundStation::DataflowEndpointGroup.DataflowEndpoint" }, "SecurityDetails": { "$ref": "#/definitions/AWS::GroundStation::DataflowEndpointGroup.SecurityDetails" } }, "type": "object" }, "AWS::GroundStation::DataflowEndpointGroup.IntegerRange": { "additionalProperties": false, "properties": { "Maximum": { "type": "number" }, "Minimum": { "type": "number" } }, "type": "object" }, "AWS::GroundStation::DataflowEndpointGroup.RangedConnectionDetails": { "additionalProperties": false, "properties": { "Mtu": { "type": "number" }, "SocketAddress": { "$ref": "#/definitions/AWS::GroundStation::DataflowEndpointGroup.RangedSocketAddress" } }, "type": "object" }, "AWS::GroundStation::DataflowEndpointGroup.RangedSocketAddress": { "additionalProperties": false, "properties": { "Name": { "type": "string" }, "PortRange": { "$ref": "#/definitions/AWS::GroundStation::DataflowEndpointGroup.IntegerRange" } }, "type": "object" }, "AWS::GroundStation::DataflowEndpointGroup.SecurityDetails": { "additionalProperties": false, "properties": { "RoleArn": { "type": "string" }, "SecurityGroupIds": { "items": { "type": "string" }, "type": "array" }, "SubnetIds": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::GroundStation::DataflowEndpointGroup.SocketAddress": { "additionalProperties": false, "properties": { "Name": { "type": "string" }, "Port": { "type": "number" } }, "type": "object" }, "AWS::GroundStation::MissionProfile": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ContactPostPassDurationSeconds": { "type": "number" }, "ContactPrePassDurationSeconds": { "type": "number" }, "DataflowEdges": { "items": { "$ref": "#/definitions/AWS::GroundStation::MissionProfile.DataflowEdge" }, "type": "array" }, "MinimumViableContactDurationSeconds": { "type": "number" }, "Name": { "type": "string" }, "StreamsKmsKey": { "$ref": "#/definitions/AWS::GroundStation::MissionProfile.StreamsKmsKey" }, "StreamsKmsRole": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "TrackingConfigArn": { "type": "string" } }, "required": [ "DataflowEdges", "MinimumViableContactDurationSeconds", "Name", "TrackingConfigArn" ], "type": "object" }, "Type": { "enum": [ "AWS::GroundStation::MissionProfile" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::GroundStation::MissionProfile.DataflowEdge": { "additionalProperties": false, "properties": { "Destination": { "type": "string" }, "Source": { "type": "string" } }, "type": "object" }, "AWS::GroundStation::MissionProfile.StreamsKmsKey": { "additionalProperties": false, "properties": { "KmsAliasArn": { "type": "string" }, "KmsKeyArn": { "type": "string" } }, "type": "object" }, "AWS::GuardDuty::Detector": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "DataSources": { "$ref": "#/definitions/AWS::GuardDuty::Detector.CFNDataSourceConfigurations" }, "Enable": { "type": "boolean" }, "Features": { "items": { "$ref": "#/definitions/AWS::GuardDuty::Detector.FeatureConfigurations" }, "type": "array" }, "FindingPublishingFrequency": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "Enable" ], "type": "object" }, "Type": { "enum": [ "AWS::GuardDuty::Detector" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::GuardDuty::Detector.CFNDataSourceConfigurations": { "additionalProperties": false, "properties": { "Kubernetes": { "$ref": "#/definitions/AWS::GuardDuty::Detector.CFNKubernetesConfiguration" }, "MalwareProtection": { "$ref": "#/definitions/AWS::GuardDuty::Detector.CFNMalwareProtectionConfiguration" }, "S3Logs": { "$ref": "#/definitions/AWS::GuardDuty::Detector.CFNS3LogsConfiguration" } }, "type": "object" }, "AWS::GuardDuty::Detector.CFNKubernetesAuditLogsConfiguration": { "additionalProperties": false, "properties": { "Enable": { "type": "boolean" } }, "type": "object" }, "AWS::GuardDuty::Detector.CFNKubernetesConfiguration": { "additionalProperties": false, "properties": { "AuditLogs": { "$ref": "#/definitions/AWS::GuardDuty::Detector.CFNKubernetesAuditLogsConfiguration" } }, "type": "object" }, "AWS::GuardDuty::Detector.CFNMalwareProtectionConfiguration": { "additionalProperties": false, "properties": { "ScanEc2InstanceWithFindings": { "$ref": "#/definitions/AWS::GuardDuty::Detector.CFNScanEc2InstanceWithFindingsConfiguration" } }, "type": "object" }, "AWS::GuardDuty::Detector.CFNS3LogsConfiguration": { "additionalProperties": false, "properties": { "Enable": { "type": "boolean" } }, "type": "object" }, "AWS::GuardDuty::Detector.CFNScanEc2InstanceWithFindingsConfiguration": { "additionalProperties": false, "properties": { "EbsVolumes": { "type": "boolean" } }, "type": "object" }, "AWS::GuardDuty::Detector.FeatureAdditionalConfiguration": { "additionalProperties": false, "properties": { "Name": { "type": "string" }, "Status": { "type": "string" } }, "type": "object" }, "AWS::GuardDuty::Detector.FeatureConfigurations": { "additionalProperties": false, "properties": { "AdditionalConfiguration": { "items": { "$ref": "#/definitions/AWS::GuardDuty::Detector.FeatureAdditionalConfiguration" }, "type": "array" }, "Name": { "type": "string" }, "Status": { "type": "string" } }, "type": "object" }, "AWS::GuardDuty::Filter": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Action": { "type": "string" }, "Description": { "type": "string" }, "DetectorId": { "type": "string" }, "FindingCriteria": { "$ref": "#/definitions/AWS::GuardDuty::Filter.FindingCriteria" }, "Name": { "type": "string" }, "Rank": { "type": "number" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "Action", "Description", "DetectorId", "FindingCriteria", "Name", "Rank" ], "type": "object" }, "Type": { "enum": [ "AWS::GuardDuty::Filter" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::GuardDuty::Filter.Condition": { "additionalProperties": false, "properties": { "Eq": { "items": { "type": "string" }, "type": "array" }, "Equals": { "items": { "type": "string" }, "type": "array" }, "GreaterThan": { "type": "number" }, "GreaterThanOrEqual": { "type": "number" }, "Gt": { "type": "number" }, "Gte": { "type": "number" }, "LessThan": { "type": "number" }, "LessThanOrEqual": { "type": "number" }, "Lt": { "type": "number" }, "Lte": { "type": "number" }, "Neq": { "items": { "type": "string" }, "type": "array" }, "NotEquals": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::GuardDuty::Filter.FindingCriteria": { "additionalProperties": false, "properties": { "Criterion": { "type": "object" }, "ItemType": { "$ref": "#/definitions/AWS::GuardDuty::Filter.Condition" } }, "type": "object" }, "AWS::GuardDuty::IPSet": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Activate": { "type": "boolean" }, "DetectorId": { "type": "string" }, "Format": { "type": "string" }, "Location": { "type": "string" }, "Name": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "Activate", "DetectorId", "Format", "Location" ], "type": "object" }, "Type": { "enum": [ "AWS::GuardDuty::IPSet" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::GuardDuty::Master": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "DetectorId": { "type": "string" }, "InvitationId": { "type": "string" }, "MasterId": { "type": "string" } }, "required": [ "DetectorId", "MasterId" ], "type": "object" }, "Type": { "enum": [ "AWS::GuardDuty::Master" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::GuardDuty::Member": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "DetectorId": { "type": "string" }, "DisableEmailNotification": { "type": "boolean" }, "Email": { "type": "string" }, "MemberId": { "type": "string" }, "Message": { "type": "string" }, "Status": { "type": "string" } }, "required": [ "DetectorId", "Email", "MemberId" ], "type": "object" }, "Type": { "enum": [ "AWS::GuardDuty::Member" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::GuardDuty::ThreatIntelSet": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Activate": { "type": "boolean" }, "DetectorId": { "type": "string" }, "Format": { "type": "string" }, "Location": { "type": "string" }, "Name": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "Activate", "DetectorId", "Format", "Location" ], "type": "object" }, "Type": { "enum": [ "AWS::GuardDuty::ThreatIntelSet" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::HealthLake::FHIRDatastore": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "DatastoreName": { "type": "string" }, "DatastoreTypeVersion": { "type": "string" }, "IdentityProviderConfiguration": { "$ref": "#/definitions/AWS::HealthLake::FHIRDatastore.IdentityProviderConfiguration" }, "PreloadDataConfig": { "$ref": "#/definitions/AWS::HealthLake::FHIRDatastore.PreloadDataConfig" }, "SseConfiguration": { "$ref": "#/definitions/AWS::HealthLake::FHIRDatastore.SseConfiguration" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "DatastoreTypeVersion" ], "type": "object" }, "Type": { "enum": [ "AWS::HealthLake::FHIRDatastore" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::HealthLake::FHIRDatastore.CreatedAt": { "additionalProperties": false, "properties": { "Nanos": { "type": "number" }, "Seconds": { "type": "string" } }, "required": [ "Nanos", "Seconds" ], "type": "object" }, "AWS::HealthLake::FHIRDatastore.IdentityProviderConfiguration": { "additionalProperties": false, "properties": { "AuthorizationStrategy": { "type": "string" }, "FineGrainedAuthorizationEnabled": { "type": "boolean" }, "IdpLambdaArn": { "type": "string" }, "Metadata": { "type": "string" } }, "required": [ "AuthorizationStrategy" ], "type": "object" }, "AWS::HealthLake::FHIRDatastore.KmsEncryptionConfig": { "additionalProperties": false, "properties": { "CmkType": { "type": "string" }, "KmsKeyId": { "type": "string" } }, "required": [ "CmkType" ], "type": "object" }, "AWS::HealthLake::FHIRDatastore.PreloadDataConfig": { "additionalProperties": false, "properties": { "PreloadDataType": { "type": "string" } }, "required": [ "PreloadDataType" ], "type": "object" }, "AWS::HealthLake::FHIRDatastore.SseConfiguration": { "additionalProperties": false, "properties": { "KmsEncryptionConfig": { "$ref": "#/definitions/AWS::HealthLake::FHIRDatastore.KmsEncryptionConfig" } }, "required": [ "KmsEncryptionConfig" ], "type": "object" }, "AWS::IAM::AccessKey": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Serial": { "type": "number" }, "Status": { "type": "string" }, "UserName": { "type": "string" } }, "required": [ "UserName" ], "type": "object" }, "Type": { "enum": [ "AWS::IAM::AccessKey" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::IAM::Group": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "GroupName": { "type": "string" }, "ManagedPolicyArns": { "items": { "type": "string" }, "type": "array" }, "Path": { "type": "string" }, "Policies": { "items": { "$ref": "#/definitions/AWS::IAM::Group.Policy" }, "type": "array" } }, "type": "object" }, "Type": { "enum": [ "AWS::IAM::Group" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::IAM::Group.Policy": { "additionalProperties": false, "properties": { "PolicyDocument": { "type": "object" }, "PolicyName": { "type": "string" } }, "required": [ "PolicyDocument", "PolicyName" ], "type": "object" }, "AWS::IAM::GroupPolicy": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "GroupName": { "type": "string" }, "PolicyDocument": { "type": "object" }, "PolicyName": { "type": "string" } }, "required": [ "GroupName", "PolicyName" ], "type": "object" }, "Type": { "enum": [ "AWS::IAM::GroupPolicy" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::IAM::InstanceProfile": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "InstanceProfileName": { "type": "string" }, "Path": { "type": "string" }, "Roles": { "items": { "type": "string" }, "type": "array" } }, "required": [ "Roles" ], "type": "object" }, "Type": { "enum": [ "AWS::IAM::InstanceProfile" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::IAM::ManagedPolicy": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "Groups": { "items": { "type": "string" }, "type": "array" }, "ManagedPolicyName": { "type": "string" }, "Path": { "type": "string" }, "PolicyDocument": { "type": "object" }, "Roles": { "items": { "type": "string" }, "type": "array" }, "Users": { "items": { "type": "string" }, "type": "array" } }, "required": [ "PolicyDocument" ], "type": "object" }, "Type": { "enum": [ "AWS::IAM::ManagedPolicy" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::IAM::OIDCProvider": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ClientIdList": { "items": { "type": "string" }, "type": "array" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "ThumbprintList": { "items": { "type": "string" }, "type": "array" }, "Url": { "type": "string" } }, "required": [ "ThumbprintList" ], "type": "object" }, "Type": { "enum": [ "AWS::IAM::OIDCProvider" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::IAM::Policy": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Groups": { "items": { "type": "string" }, "type": "array" }, "PolicyDocument": { "type": "object" }, "PolicyName": { "type": "string" }, "Roles": { "items": { "type": "string" }, "type": "array" }, "Users": { "items": { "type": "string" }, "type": "array" } }, "required": [ "PolicyDocument", "PolicyName" ], "type": "object" }, "Type": { "enum": [ "AWS::IAM::Policy" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::IAM::Role": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AssumeRolePolicyDocument": { "type": "object" }, "Description": { "type": "string" }, "ManagedPolicyArns": { "items": { "type": "string" }, "type": "array" }, "MaxSessionDuration": { "type": "number" }, "Path": { "type": "string" }, "PermissionsBoundary": { "type": "string" }, "Policies": { "items": { "$ref": "#/definitions/AWS::IAM::Role.Policy" }, "type": "array" }, "RoleName": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "AssumeRolePolicyDocument" ], "type": "object" }, "Type": { "enum": [ "AWS::IAM::Role" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::IAM::Role.Policy": { "additionalProperties": false, "properties": { "PolicyDocument": { "type": "object" }, "PolicyName": { "type": "string" } }, "required": [ "PolicyDocument", "PolicyName" ], "type": "object" }, "AWS::IAM::RolePolicy": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "PolicyDocument": { "type": "object" }, "PolicyName": { "type": "string" }, "RoleName": { "type": "string" } }, "required": [ "PolicyName", "RoleName" ], "type": "object" }, "Type": { "enum": [ "AWS::IAM::RolePolicy" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::IAM::SAMLProvider": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Name": { "type": "string" }, "SamlMetadataDocument": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "SamlMetadataDocument" ], "type": "object" }, "Type": { "enum": [ "AWS::IAM::SAMLProvider" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::IAM::ServerCertificate": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "CertificateBody": { "type": "string" }, "CertificateChain": { "type": "string" }, "Path": { "type": "string" }, "PrivateKey": { "type": "string" }, "ServerCertificateName": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "type": "object" }, "Type": { "enum": [ "AWS::IAM::ServerCertificate" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::IAM::ServiceLinkedRole": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AWSServiceName": { "type": "string" }, "CustomSuffix": { "type": "string" }, "Description": { "type": "string" } }, "type": "object" }, "Type": { "enum": [ "AWS::IAM::ServiceLinkedRole" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::IAM::User": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Groups": { "items": { "type": "string" }, "type": "array" }, "LoginProfile": { "$ref": "#/definitions/AWS::IAM::User.LoginProfile" }, "ManagedPolicyArns": { "items": { "type": "string" }, "type": "array" }, "Path": { "type": "string" }, "PermissionsBoundary": { "type": "string" }, "Policies": { "items": { "$ref": "#/definitions/AWS::IAM::User.Policy" }, "type": "array" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "UserName": { "type": "string" } }, "type": "object" }, "Type": { "enum": [ "AWS::IAM::User" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::IAM::User.LoginProfile": { "additionalProperties": false, "properties": { "Password": { "type": "string" }, "PasswordResetRequired": { "type": "boolean" } }, "required": [ "Password" ], "type": "object" }, "AWS::IAM::User.Policy": { "additionalProperties": false, "properties": { "PolicyDocument": { "type": "object" }, "PolicyName": { "type": "string" } }, "required": [ "PolicyDocument", "PolicyName" ], "type": "object" }, "AWS::IAM::UserPolicy": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "PolicyDocument": { "type": "object" }, "PolicyName": { "type": "string" }, "UserName": { "type": "string" } }, "required": [ "PolicyName", "UserName" ], "type": "object" }, "Type": { "enum": [ "AWS::IAM::UserPolicy" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::IAM::UserToGroupAddition": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "GroupName": { "type": "string" }, "Users": { "items": { "type": "string" }, "type": "array" } }, "required": [ "GroupName", "Users" ], "type": "object" }, "Type": { "enum": [ "AWS::IAM::UserToGroupAddition" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::IAM::VirtualMFADevice": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Path": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "Users": { "items": { "type": "string" }, "type": "array" }, "VirtualMfaDeviceName": { "type": "string" } }, "required": [ "Users" ], "type": "object" }, "Type": { "enum": [ "AWS::IAM::VirtualMFADevice" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::IVS::Channel": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Authorized": { "type": "boolean" }, "InsecureIngest": { "type": "boolean" }, "LatencyMode": { "type": "string" }, "Name": { "type": "string" }, "Preset": { "type": "string" }, "RecordingConfigurationArn": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "Type": { "type": "string" } }, "type": "object" }, "Type": { "enum": [ "AWS::IVS::Channel" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::IVS::PlaybackKeyPair": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Name": { "type": "string" }, "PublicKeyMaterial": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "type": "object" }, "Type": { "enum": [ "AWS::IVS::PlaybackKeyPair" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::IVS::RecordingConfiguration": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "DestinationConfiguration": { "$ref": "#/definitions/AWS::IVS::RecordingConfiguration.DestinationConfiguration" }, "Name": { "type": "string" }, "RecordingReconnectWindowSeconds": { "type": "number" }, "RenditionConfiguration": { "$ref": "#/definitions/AWS::IVS::RecordingConfiguration.RenditionConfiguration" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "ThumbnailConfiguration": { "$ref": "#/definitions/AWS::IVS::RecordingConfiguration.ThumbnailConfiguration" } }, "required": [ "DestinationConfiguration" ], "type": "object" }, "Type": { "enum": [ "AWS::IVS::RecordingConfiguration" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::IVS::RecordingConfiguration.DestinationConfiguration": { "additionalProperties": false, "properties": { "S3": { "$ref": "#/definitions/AWS::IVS::RecordingConfiguration.S3DestinationConfiguration" } }, "type": "object" }, "AWS::IVS::RecordingConfiguration.RenditionConfiguration": { "additionalProperties": false, "properties": { "RenditionSelection": { "type": "string" }, "Renditions": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::IVS::RecordingConfiguration.S3DestinationConfiguration": { "additionalProperties": false, "properties": { "BucketName": { "type": "string" } }, "required": [ "BucketName" ], "type": "object" }, "AWS::IVS::RecordingConfiguration.ThumbnailConfiguration": { "additionalProperties": false, "properties": { "RecordingMode": { "type": "string" }, "Resolution": { "type": "string" }, "Storage": { "items": { "type": "string" }, "type": "array" }, "TargetIntervalSeconds": { "type": "number" } }, "type": "object" }, "AWS::IVS::StreamKey": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ChannelArn": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "ChannelArn" ], "type": "object" }, "Type": { "enum": [ "AWS::IVS::StreamKey" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::IVSChat::LoggingConfiguration": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "DestinationConfiguration": { "$ref": "#/definitions/AWS::IVSChat::LoggingConfiguration.DestinationConfiguration" }, "Name": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "DestinationConfiguration" ], "type": "object" }, "Type": { "enum": [ "AWS::IVSChat::LoggingConfiguration" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::IVSChat::LoggingConfiguration.CloudWatchLogsDestinationConfiguration": { "additionalProperties": false, "properties": { "LogGroupName": { "type": "string" } }, "required": [ "LogGroupName" ], "type": "object" }, "AWS::IVSChat::LoggingConfiguration.DestinationConfiguration": { "additionalProperties": false, "properties": { "CloudWatchLogs": { "$ref": "#/definitions/AWS::IVSChat::LoggingConfiguration.CloudWatchLogsDestinationConfiguration" }, "Firehose": { "$ref": "#/definitions/AWS::IVSChat::LoggingConfiguration.FirehoseDestinationConfiguration" }, "S3": { "$ref": "#/definitions/AWS::IVSChat::LoggingConfiguration.S3DestinationConfiguration" } }, "type": "object" }, "AWS::IVSChat::LoggingConfiguration.FirehoseDestinationConfiguration": { "additionalProperties": false, "properties": { "DeliveryStreamName": { "type": "string" } }, "required": [ "DeliveryStreamName" ], "type": "object" }, "AWS::IVSChat::LoggingConfiguration.S3DestinationConfiguration": { "additionalProperties": false, "properties": { "BucketName": { "type": "string" } }, "required": [ "BucketName" ], "type": "object" }, "AWS::IVSChat::Room": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "LoggingConfigurationIdentifiers": { "items": { "type": "string" }, "type": "array" }, "MaximumMessageLength": { "type": "number" }, "MaximumMessageRatePerSecond": { "type": "number" }, "MessageReviewHandler": { "$ref": "#/definitions/AWS::IVSChat::Room.MessageReviewHandler" }, "Name": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "type": "object" }, "Type": { "enum": [ "AWS::IVSChat::Room" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::IVSChat::Room.MessageReviewHandler": { "additionalProperties": false, "properties": { "FallbackResult": { "type": "string" }, "Uri": { "type": "string" } }, "type": "object" }, "AWS::IdentityStore::Group": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "DisplayName": { "type": "string" }, "IdentityStoreId": { "type": "string" } }, "required": [ "DisplayName", "IdentityStoreId" ], "type": "object" }, "Type": { "enum": [ "AWS::IdentityStore::Group" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::IdentityStore::GroupMembership": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "GroupId": { "type": "string" }, "IdentityStoreId": { "type": "string" }, "MemberId": { "$ref": "#/definitions/AWS::IdentityStore::GroupMembership.MemberId" } }, "required": [ "GroupId", "IdentityStoreId", "MemberId" ], "type": "object" }, "Type": { "enum": [ "AWS::IdentityStore::GroupMembership" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::IdentityStore::GroupMembership.MemberId": { "additionalProperties": false, "properties": { "UserId": { "type": "string" } }, "required": [ "UserId" ], "type": "object" }, "AWS::ImageBuilder::Component": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ChangeDescription": { "type": "string" }, "Data": { "type": "string" }, "Description": { "type": "string" }, "KmsKeyId": { "type": "string" }, "Name": { "type": "string" }, "Platform": { "type": "string" }, "SupportedOsVersions": { "items": { "type": "string" }, "type": "array" }, "Tags": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" }, "Uri": { "type": "string" }, "Version": { "type": "string" } }, "required": [ "Name", "Platform", "Version" ], "type": "object" }, "Type": { "enum": [ "AWS::ImageBuilder::Component" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::ImageBuilder::ContainerRecipe": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Components": { "items": { "$ref": "#/definitions/AWS::ImageBuilder::ContainerRecipe.ComponentConfiguration" }, "type": "array" }, "ContainerType": { "type": "string" }, "Description": { "type": "string" }, "DockerfileTemplateData": { "type": "string" }, "DockerfileTemplateUri": { "type": "string" }, "ImageOsVersionOverride": { "type": "string" }, "InstanceConfiguration": { "$ref": "#/definitions/AWS::ImageBuilder::ContainerRecipe.InstanceConfiguration" }, "KmsKeyId": { "type": "string" }, "Name": { "type": "string" }, "ParentImage": { "type": "string" }, "PlatformOverride": { "type": "string" }, "Tags": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" }, "TargetRepository": { "$ref": "#/definitions/AWS::ImageBuilder::ContainerRecipe.TargetContainerRepository" }, "Version": { "type": "string" }, "WorkingDirectory": { "type": "string" } }, "required": [ "Components", "ContainerType", "Name", "ParentImage", "TargetRepository", "Version" ], "type": "object" }, "Type": { "enum": [ "AWS::ImageBuilder::ContainerRecipe" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::ImageBuilder::ContainerRecipe.ComponentConfiguration": { "additionalProperties": false, "properties": { "ComponentArn": { "type": "string" }, "Parameters": { "items": { "$ref": "#/definitions/AWS::ImageBuilder::ContainerRecipe.ComponentParameter" }, "type": "array" } }, "type": "object" }, "AWS::ImageBuilder::ContainerRecipe.ComponentParameter": { "additionalProperties": false, "properties": { "Name": { "type": "string" }, "Value": { "items": { "type": "string" }, "type": "array" } }, "required": [ "Name", "Value" ], "type": "object" }, "AWS::ImageBuilder::ContainerRecipe.EbsInstanceBlockDeviceSpecification": { "additionalProperties": false, "properties": { "DeleteOnTermination": { "type": "boolean" }, "Encrypted": { "type": "boolean" }, "Iops": { "type": "number" }, "KmsKeyId": { "type": "string" }, "SnapshotId": { "type": "string" }, "Throughput": { "type": "number" }, "VolumeSize": { "type": "number" }, "VolumeType": { "type": "string" } }, "type": "object" }, "AWS::ImageBuilder::ContainerRecipe.InstanceBlockDeviceMapping": { "additionalProperties": false, "properties": { "DeviceName": { "type": "string" }, "Ebs": { "$ref": "#/definitions/AWS::ImageBuilder::ContainerRecipe.EbsInstanceBlockDeviceSpecification" }, "NoDevice": { "type": "string" }, "VirtualName": { "type": "string" } }, "type": "object" }, "AWS::ImageBuilder::ContainerRecipe.InstanceConfiguration": { "additionalProperties": false, "properties": { "BlockDeviceMappings": { "items": { "$ref": "#/definitions/AWS::ImageBuilder::ContainerRecipe.InstanceBlockDeviceMapping" }, "type": "array" }, "Image": { "type": "string" } }, "type": "object" }, "AWS::ImageBuilder::ContainerRecipe.TargetContainerRepository": { "additionalProperties": false, "properties": { "RepositoryName": { "type": "string" }, "Service": { "type": "string" } }, "type": "object" }, "AWS::ImageBuilder::DistributionConfiguration": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "Distributions": { "items": { "$ref": "#/definitions/AWS::ImageBuilder::DistributionConfiguration.Distribution" }, "type": "array" }, "Name": { "type": "string" }, "Tags": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" } }, "required": [ "Distributions", "Name" ], "type": "object" }, "Type": { "enum": [ "AWS::ImageBuilder::DistributionConfiguration" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::ImageBuilder::DistributionConfiguration.AmiDistributionConfiguration": { "additionalProperties": false, "properties": { "AmiTags": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" }, "Description": { "type": "string" }, "KmsKeyId": { "type": "string" }, "LaunchPermissionConfiguration": { "$ref": "#/definitions/AWS::ImageBuilder::DistributionConfiguration.LaunchPermissionConfiguration" }, "Name": { "type": "string" }, "TargetAccountIds": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::ImageBuilder::DistributionConfiguration.ContainerDistributionConfiguration": { "additionalProperties": false, "properties": { "ContainerTags": { "items": { "type": "string" }, "type": "array" }, "Description": { "type": "string" }, "TargetRepository": { "$ref": "#/definitions/AWS::ImageBuilder::DistributionConfiguration.TargetContainerRepository" } }, "type": "object" }, "AWS::ImageBuilder::DistributionConfiguration.Distribution": { "additionalProperties": false, "properties": { "AmiDistributionConfiguration": { "$ref": "#/definitions/AWS::ImageBuilder::DistributionConfiguration.AmiDistributionConfiguration" }, "ContainerDistributionConfiguration": { "$ref": "#/definitions/AWS::ImageBuilder::DistributionConfiguration.ContainerDistributionConfiguration" }, "FastLaunchConfigurations": { "items": { "$ref": "#/definitions/AWS::ImageBuilder::DistributionConfiguration.FastLaunchConfiguration" }, "type": "array" }, "LaunchTemplateConfigurations": { "items": { "$ref": "#/definitions/AWS::ImageBuilder::DistributionConfiguration.LaunchTemplateConfiguration" }, "type": "array" }, "LicenseConfigurationArns": { "items": { "type": "string" }, "type": "array" }, "Region": { "type": "string" } }, "required": [ "Region" ], "type": "object" }, "AWS::ImageBuilder::DistributionConfiguration.FastLaunchConfiguration": { "additionalProperties": false, "properties": { "AccountId": { "type": "string" }, "Enabled": { "type": "boolean" }, "LaunchTemplate": { "$ref": "#/definitions/AWS::ImageBuilder::DistributionConfiguration.FastLaunchLaunchTemplateSpecification" }, "MaxParallelLaunches": { "type": "number" }, "SnapshotConfiguration": { "$ref": "#/definitions/AWS::ImageBuilder::DistributionConfiguration.FastLaunchSnapshotConfiguration" } }, "type": "object" }, "AWS::ImageBuilder::DistributionConfiguration.FastLaunchLaunchTemplateSpecification": { "additionalProperties": false, "properties": { "LaunchTemplateId": { "type": "string" }, "LaunchTemplateName": { "type": "string" }, "LaunchTemplateVersion": { "type": "string" } }, "type": "object" }, "AWS::ImageBuilder::DistributionConfiguration.FastLaunchSnapshotConfiguration": { "additionalProperties": false, "properties": { "TargetResourceCount": { "type": "number" } }, "type": "object" }, "AWS::ImageBuilder::DistributionConfiguration.LaunchPermissionConfiguration": { "additionalProperties": false, "properties": { "OrganizationArns": { "items": { "type": "string" }, "type": "array" }, "OrganizationalUnitArns": { "items": { "type": "string" }, "type": "array" }, "UserGroups": { "items": { "type": "string" }, "type": "array" }, "UserIds": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::ImageBuilder::DistributionConfiguration.LaunchTemplateConfiguration": { "additionalProperties": false, "properties": { "AccountId": { "type": "string" }, "LaunchTemplateId": { "type": "string" }, "SetDefaultVersion": { "type": "boolean" } }, "type": "object" }, "AWS::ImageBuilder::DistributionConfiguration.TargetContainerRepository": { "additionalProperties": false, "properties": { "RepositoryName": { "type": "string" }, "Service": { "type": "string" } }, "type": "object" }, "AWS::ImageBuilder::Image": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ContainerRecipeArn": { "type": "string" }, "DistributionConfigurationArn": { "type": "string" }, "EnhancedImageMetadataEnabled": { "type": "boolean" }, "ImageRecipeArn": { "type": "string" }, "ImageScanningConfiguration": { "$ref": "#/definitions/AWS::ImageBuilder::Image.ImageScanningConfiguration" }, "ImageTestsConfiguration": { "$ref": "#/definitions/AWS::ImageBuilder::Image.ImageTestsConfiguration" }, "InfrastructureConfigurationArn": { "type": "string" }, "Tags": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" } }, "required": [ "InfrastructureConfigurationArn" ], "type": "object" }, "Type": { "enum": [ "AWS::ImageBuilder::Image" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::ImageBuilder::Image.EcrConfiguration": { "additionalProperties": false, "properties": { "ContainerTags": { "items": { "type": "string" }, "type": "array" }, "RepositoryName": { "type": "string" } }, "type": "object" }, "AWS::ImageBuilder::Image.ImageScanningConfiguration": { "additionalProperties": false, "properties": { "EcrConfiguration": { "$ref": "#/definitions/AWS::ImageBuilder::Image.EcrConfiguration" }, "ImageScanningEnabled": { "type": "boolean" } }, "type": "object" }, "AWS::ImageBuilder::Image.ImageTestsConfiguration": { "additionalProperties": false, "properties": { "ImageTestsEnabled": { "type": "boolean" }, "TimeoutMinutes": { "type": "number" } }, "type": "object" }, "AWS::ImageBuilder::ImagePipeline": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ContainerRecipeArn": { "type": "string" }, "Description": { "type": "string" }, "DistributionConfigurationArn": { "type": "string" }, "EnhancedImageMetadataEnabled": { "type": "boolean" }, "ImageRecipeArn": { "type": "string" }, "ImageScanningConfiguration": { "$ref": "#/definitions/AWS::ImageBuilder::ImagePipeline.ImageScanningConfiguration" }, "ImageTestsConfiguration": { "$ref": "#/definitions/AWS::ImageBuilder::ImagePipeline.ImageTestsConfiguration" }, "InfrastructureConfigurationArn": { "type": "string" }, "Name": { "type": "string" }, "Schedule": { "$ref": "#/definitions/AWS::ImageBuilder::ImagePipeline.Schedule" }, "Status": { "type": "string" }, "Tags": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" } }, "required": [ "InfrastructureConfigurationArn", "Name" ], "type": "object" }, "Type": { "enum": [ "AWS::ImageBuilder::ImagePipeline" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::ImageBuilder::ImagePipeline.EcrConfiguration": { "additionalProperties": false, "properties": { "ContainerTags": { "items": { "type": "string" }, "type": "array" }, "RepositoryName": { "type": "string" } }, "type": "object" }, "AWS::ImageBuilder::ImagePipeline.ImageScanningConfiguration": { "additionalProperties": false, "properties": { "EcrConfiguration": { "$ref": "#/definitions/AWS::ImageBuilder::ImagePipeline.EcrConfiguration" }, "ImageScanningEnabled": { "type": "boolean" } }, "type": "object" }, "AWS::ImageBuilder::ImagePipeline.ImageTestsConfiguration": { "additionalProperties": false, "properties": { "ImageTestsEnabled": { "type": "boolean" }, "TimeoutMinutes": { "type": "number" } }, "type": "object" }, "AWS::ImageBuilder::ImagePipeline.Schedule": { "additionalProperties": false, "properties": { "PipelineExecutionStartCondition": { "type": "string" }, "ScheduleExpression": { "type": "string" } }, "type": "object" }, "AWS::ImageBuilder::ImageRecipe": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AdditionalInstanceConfiguration": { "$ref": "#/definitions/AWS::ImageBuilder::ImageRecipe.AdditionalInstanceConfiguration" }, "BlockDeviceMappings": { "items": { "$ref": "#/definitions/AWS::ImageBuilder::ImageRecipe.InstanceBlockDeviceMapping" }, "type": "array" }, "Components": { "items": { "$ref": "#/definitions/AWS::ImageBuilder::ImageRecipe.ComponentConfiguration" }, "type": "array" }, "Description": { "type": "string" }, "Name": { "type": "string" }, "ParentImage": { "type": "string" }, "Tags": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" }, "Version": { "type": "string" }, "WorkingDirectory": { "type": "string" } }, "required": [ "Components", "Name", "ParentImage", "Version" ], "type": "object" }, "Type": { "enum": [ "AWS::ImageBuilder::ImageRecipe" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::ImageBuilder::ImageRecipe.AdditionalInstanceConfiguration": { "additionalProperties": false, "properties": { "SystemsManagerAgent": { "$ref": "#/definitions/AWS::ImageBuilder::ImageRecipe.SystemsManagerAgent" }, "UserDataOverride": { "type": "string" } }, "type": "object" }, "AWS::ImageBuilder::ImageRecipe.ComponentConfiguration": { "additionalProperties": false, "properties": { "ComponentArn": { "type": "string" }, "Parameters": { "items": { "$ref": "#/definitions/AWS::ImageBuilder::ImageRecipe.ComponentParameter" }, "type": "array" } }, "type": "object" }, "AWS::ImageBuilder::ImageRecipe.ComponentParameter": { "additionalProperties": false, "properties": { "Name": { "type": "string" }, "Value": { "items": { "type": "string" }, "type": "array" } }, "required": [ "Name", "Value" ], "type": "object" }, "AWS::ImageBuilder::ImageRecipe.EbsInstanceBlockDeviceSpecification": { "additionalProperties": false, "properties": { "DeleteOnTermination": { "type": "boolean" }, "Encrypted": { "type": "boolean" }, "Iops": { "type": "number" }, "KmsKeyId": { "type": "string" }, "SnapshotId": { "type": "string" }, "Throughput": { "type": "number" }, "VolumeSize": { "type": "number" }, "VolumeType": { "type": "string" } }, "type": "object" }, "AWS::ImageBuilder::ImageRecipe.InstanceBlockDeviceMapping": { "additionalProperties": false, "properties": { "DeviceName": { "type": "string" }, "Ebs": { "$ref": "#/definitions/AWS::ImageBuilder::ImageRecipe.EbsInstanceBlockDeviceSpecification" }, "NoDevice": { "type": "string" }, "VirtualName": { "type": "string" } }, "type": "object" }, "AWS::ImageBuilder::ImageRecipe.SystemsManagerAgent": { "additionalProperties": false, "properties": { "UninstallAfterBuild": { "type": "boolean" } }, "type": "object" }, "AWS::ImageBuilder::InfrastructureConfiguration": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "InstanceMetadataOptions": { "$ref": "#/definitions/AWS::ImageBuilder::InfrastructureConfiguration.InstanceMetadataOptions" }, "InstanceProfileName": { "type": "string" }, "InstanceTypes": { "items": { "type": "string" }, "type": "array" }, "KeyPair": { "type": "string" }, "Logging": { "$ref": "#/definitions/AWS::ImageBuilder::InfrastructureConfiguration.Logging" }, "Name": { "type": "string" }, "ResourceTags": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" }, "SecurityGroupIds": { "items": { "type": "string" }, "type": "array" }, "SnsTopicArn": { "type": "string" }, "SubnetId": { "type": "string" }, "Tags": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" }, "TerminateInstanceOnFailure": { "type": "boolean" } }, "required": [ "InstanceProfileName", "Name" ], "type": "object" }, "Type": { "enum": [ "AWS::ImageBuilder::InfrastructureConfiguration" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::ImageBuilder::InfrastructureConfiguration.InstanceMetadataOptions": { "additionalProperties": false, "properties": { "HttpPutResponseHopLimit": { "type": "number" }, "HttpTokens": { "type": "string" } }, "type": "object" }, "AWS::ImageBuilder::InfrastructureConfiguration.Logging": { "additionalProperties": false, "properties": { "S3Logs": { "$ref": "#/definitions/AWS::ImageBuilder::InfrastructureConfiguration.S3Logs" } }, "type": "object" }, "AWS::ImageBuilder::InfrastructureConfiguration.S3Logs": { "additionalProperties": false, "properties": { "S3BucketName": { "type": "string" }, "S3KeyPrefix": { "type": "string" } }, "type": "object" }, "AWS::Inspector::AssessmentTarget": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AssessmentTargetName": { "type": "string" }, "ResourceGroupArn": { "type": "string" } }, "type": "object" }, "Type": { "enum": [ "AWS::Inspector::AssessmentTarget" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::Inspector::AssessmentTemplate": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AssessmentTargetArn": { "type": "string" }, "AssessmentTemplateName": { "type": "string" }, "DurationInSeconds": { "type": "number" }, "RulesPackageArns": { "items": { "type": "string" }, "type": "array" }, "UserAttributesForFindings": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "AssessmentTargetArn", "DurationInSeconds", "RulesPackageArns" ], "type": "object" }, "Type": { "enum": [ "AWS::Inspector::AssessmentTemplate" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Inspector::ResourceGroup": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ResourceGroupTags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "ResourceGroupTags" ], "type": "object" }, "Type": { "enum": [ "AWS::Inspector::ResourceGroup" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::InspectorV2::Filter": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "FilterAction": { "type": "string" }, "FilterCriteria": { "$ref": "#/definitions/AWS::InspectorV2::Filter.FilterCriteria" }, "Name": { "type": "string" } }, "required": [ "FilterAction", "FilterCriteria", "Name" ], "type": "object" }, "Type": { "enum": [ "AWS::InspectorV2::Filter" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::InspectorV2::Filter.DateFilter": { "additionalProperties": false, "properties": { "EndInclusive": { "type": "number" }, "StartInclusive": { "type": "number" } }, "type": "object" }, "AWS::InspectorV2::Filter.FilterCriteria": { "additionalProperties": false, "properties": { "AwsAccountId": { "items": { "$ref": "#/definitions/AWS::InspectorV2::Filter.StringFilter" }, "type": "array" }, "ComponentId": { "items": { "$ref": "#/definitions/AWS::InspectorV2::Filter.StringFilter" }, "type": "array" }, "ComponentType": { "items": { "$ref": "#/definitions/AWS::InspectorV2::Filter.StringFilter" }, "type": "array" }, "Ec2InstanceImageId": { "items": { "$ref": "#/definitions/AWS::InspectorV2::Filter.StringFilter" }, "type": "array" }, "Ec2InstanceSubnetId": { "items": { "$ref": "#/definitions/AWS::InspectorV2::Filter.StringFilter" }, "type": "array" }, "Ec2InstanceVpcId": { "items": { "$ref": "#/definitions/AWS::InspectorV2::Filter.StringFilter" }, "type": "array" }, "EcrImageArchitecture": { "items": { "$ref": "#/definitions/AWS::InspectorV2::Filter.StringFilter" }, "type": "array" }, "EcrImageHash": { "items": { "$ref": "#/definitions/AWS::InspectorV2::Filter.StringFilter" }, "type": "array" }, "EcrImagePushedAt": { "items": { "$ref": "#/definitions/AWS::InspectorV2::Filter.DateFilter" }, "type": "array" }, "EcrImageRegistry": { "items": { "$ref": "#/definitions/AWS::InspectorV2::Filter.StringFilter" }, "type": "array" }, "EcrImageRepositoryName": { "items": { "$ref": "#/definitions/AWS::InspectorV2::Filter.StringFilter" }, "type": "array" }, "EcrImageTags": { "items": { "$ref": "#/definitions/AWS::InspectorV2::Filter.StringFilter" }, "type": "array" }, "FindingArn": { "items": { "$ref": "#/definitions/AWS::InspectorV2::Filter.StringFilter" }, "type": "array" }, "FindingStatus": { "items": { "$ref": "#/definitions/AWS::InspectorV2::Filter.StringFilter" }, "type": "array" }, "FindingType": { "items": { "$ref": "#/definitions/AWS::InspectorV2::Filter.StringFilter" }, "type": "array" }, "FirstObservedAt": { "items": { "$ref": "#/definitions/AWS::InspectorV2::Filter.DateFilter" }, "type": "array" }, "InspectorScore": { "items": { "$ref": "#/definitions/AWS::InspectorV2::Filter.NumberFilter" }, "type": "array" }, "LastObservedAt": { "items": { "$ref": "#/definitions/AWS::InspectorV2::Filter.DateFilter" }, "type": "array" }, "NetworkProtocol": { "items": { "$ref": "#/definitions/AWS::InspectorV2::Filter.StringFilter" }, "type": "array" }, "PortRange": { "items": { "$ref": "#/definitions/AWS::InspectorV2::Filter.PortRangeFilter" }, "type": "array" }, "RelatedVulnerabilities": { "items": { "$ref": "#/definitions/AWS::InspectorV2::Filter.StringFilter" }, "type": "array" }, "ResourceId": { "items": { "$ref": "#/definitions/AWS::InspectorV2::Filter.StringFilter" }, "type": "array" }, "ResourceTags": { "items": { "$ref": "#/definitions/AWS::InspectorV2::Filter.MapFilter" }, "type": "array" }, "ResourceType": { "items": { "$ref": "#/definitions/AWS::InspectorV2::Filter.StringFilter" }, "type": "array" }, "Severity": { "items": { "$ref": "#/definitions/AWS::InspectorV2::Filter.StringFilter" }, "type": "array" }, "Title": { "items": { "$ref": "#/definitions/AWS::InspectorV2::Filter.StringFilter" }, "type": "array" }, "UpdatedAt": { "items": { "$ref": "#/definitions/AWS::InspectorV2::Filter.DateFilter" }, "type": "array" }, "VendorSeverity": { "items": { "$ref": "#/definitions/AWS::InspectorV2::Filter.StringFilter" }, "type": "array" }, "VulnerabilityId": { "items": { "$ref": "#/definitions/AWS::InspectorV2::Filter.StringFilter" }, "type": "array" }, "VulnerabilitySource": { "items": { "$ref": "#/definitions/AWS::InspectorV2::Filter.StringFilter" }, "type": "array" }, "VulnerablePackages": { "items": { "$ref": "#/definitions/AWS::InspectorV2::Filter.PackageFilter" }, "type": "array" } }, "type": "object" }, "AWS::InspectorV2::Filter.MapFilter": { "additionalProperties": false, "properties": { "Comparison": { "type": "string" }, "Key": { "type": "string" }, "Value": { "type": "string" } }, "required": [ "Comparison" ], "type": "object" }, "AWS::InspectorV2::Filter.NumberFilter": { "additionalProperties": false, "properties": { "LowerInclusive": { "type": "number" }, "UpperInclusive": { "type": "number" } }, "type": "object" }, "AWS::InspectorV2::Filter.PackageFilter": { "additionalProperties": false, "properties": { "Architecture": { "$ref": "#/definitions/AWS::InspectorV2::Filter.StringFilter" }, "Epoch": { "$ref": "#/definitions/AWS::InspectorV2::Filter.NumberFilter" }, "Name": { "$ref": "#/definitions/AWS::InspectorV2::Filter.StringFilter" }, "Release": { "$ref": "#/definitions/AWS::InspectorV2::Filter.StringFilter" }, "SourceLayerHash": { "$ref": "#/definitions/AWS::InspectorV2::Filter.StringFilter" }, "Version": { "$ref": "#/definitions/AWS::InspectorV2::Filter.StringFilter" } }, "type": "object" }, "AWS::InspectorV2::Filter.PortRangeFilter": { "additionalProperties": false, "properties": { "BeginInclusive": { "type": "number" }, "EndInclusive": { "type": "number" } }, "type": "object" }, "AWS::InspectorV2::Filter.StringFilter": { "additionalProperties": false, "properties": { "Comparison": { "type": "string" }, "Value": { "type": "string" } }, "required": [ "Comparison", "Value" ], "type": "object" }, "AWS::InternetMonitor::Monitor": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "HealthEventsConfig": { "$ref": "#/definitions/AWS::InternetMonitor::Monitor.HealthEventsConfig" }, "InternetMeasurementsLogDelivery": { "$ref": "#/definitions/AWS::InternetMonitor::Monitor.InternetMeasurementsLogDelivery" }, "MaxCityNetworksToMonitor": { "type": "number" }, "MonitorName": { "type": "string" }, "Resources": { "items": { "type": "string" }, "type": "array" }, "ResourcesToAdd": { "items": { "type": "string" }, "type": "array" }, "ResourcesToRemove": { "items": { "type": "string" }, "type": "array" }, "Status": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "TrafficPercentageToMonitor": { "type": "number" } }, "required": [ "MonitorName" ], "type": "object" }, "Type": { "enum": [ "AWS::InternetMonitor::Monitor" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::InternetMonitor::Monitor.HealthEventsConfig": { "additionalProperties": false, "properties": { "AvailabilityLocalHealthEventsConfig": { "$ref": "#/definitions/AWS::InternetMonitor::Monitor.LocalHealthEventsConfig" }, "AvailabilityScoreThreshold": { "type": "number" }, "PerformanceLocalHealthEventsConfig": { "$ref": "#/definitions/AWS::InternetMonitor::Monitor.LocalHealthEventsConfig" }, "PerformanceScoreThreshold": { "type": "number" } }, "type": "object" }, "AWS::InternetMonitor::Monitor.InternetMeasurementsLogDelivery": { "additionalProperties": false, "properties": { "S3Config": { "$ref": "#/definitions/AWS::InternetMonitor::Monitor.S3Config" } }, "type": "object" }, "AWS::InternetMonitor::Monitor.LocalHealthEventsConfig": { "additionalProperties": false, "properties": { "HealthScoreThreshold": { "type": "number" }, "MinTrafficImpact": { "type": "number" }, "Status": { "type": "string" } }, "type": "object" }, "AWS::InternetMonitor::Monitor.S3Config": { "additionalProperties": false, "properties": { "BucketName": { "type": "string" }, "BucketPrefix": { "type": "string" }, "LogDeliveryStatus": { "type": "string" } }, "type": "object" }, "AWS::IoT1Click::Device": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "DeviceId": { "type": "string" }, "Enabled": { "type": "boolean" } }, "required": [ "DeviceId", "Enabled" ], "type": "object" }, "Type": { "enum": [ "AWS::IoT1Click::Device" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::IoT1Click::Placement": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AssociatedDevices": { "type": "object" }, "Attributes": { "type": "object" }, "PlacementName": { "type": "string" }, "ProjectName": { "type": "string" } }, "required": [ "ProjectName" ], "type": "object" }, "Type": { "enum": [ "AWS::IoT1Click::Placement" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::IoT1Click::Project": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "PlacementTemplate": { "$ref": "#/definitions/AWS::IoT1Click::Project.PlacementTemplate" }, "ProjectName": { "type": "string" } }, "required": [ "PlacementTemplate" ], "type": "object" }, "Type": { "enum": [ "AWS::IoT1Click::Project" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::IoT1Click::Project.DeviceTemplate": { "additionalProperties": false, "properties": { "CallbackOverrides": { "type": "object" }, "DeviceType": { "type": "string" } }, "type": "object" }, "AWS::IoT1Click::Project.PlacementTemplate": { "additionalProperties": false, "properties": { "DefaultAttributes": { "type": "object" }, "DeviceTemplates": { "type": "object" } }, "type": "object" }, "AWS::IoT::AccountAuditConfiguration": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AccountId": { "type": "string" }, "AuditCheckConfigurations": { "$ref": "#/definitions/AWS::IoT::AccountAuditConfiguration.AuditCheckConfigurations" }, "AuditNotificationTargetConfigurations": { "$ref": "#/definitions/AWS::IoT::AccountAuditConfiguration.AuditNotificationTargetConfigurations" }, "RoleArn": { "type": "string" } }, "required": [ "AccountId", "AuditCheckConfigurations", "RoleArn" ], "type": "object" }, "Type": { "enum": [ "AWS::IoT::AccountAuditConfiguration" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::IoT::AccountAuditConfiguration.AuditCheckConfiguration": { "additionalProperties": false, "properties": { "Enabled": { "type": "boolean" } }, "type": "object" }, "AWS::IoT::AccountAuditConfiguration.AuditCheckConfigurations": { "additionalProperties": false, "properties": { "AuthenticatedCognitoRoleOverlyPermissiveCheck": { "$ref": "#/definitions/AWS::IoT::AccountAuditConfiguration.AuditCheckConfiguration" }, "CaCertificateExpiringCheck": { "$ref": "#/definitions/AWS::IoT::AccountAuditConfiguration.AuditCheckConfiguration" }, "CaCertificateKeyQualityCheck": { "$ref": "#/definitions/AWS::IoT::AccountAuditConfiguration.AuditCheckConfiguration" }, "ConflictingClientIdsCheck": { "$ref": "#/definitions/AWS::IoT::AccountAuditConfiguration.AuditCheckConfiguration" }, "DeviceCertificateExpiringCheck": { "$ref": "#/definitions/AWS::IoT::AccountAuditConfiguration.AuditCheckConfiguration" }, "DeviceCertificateKeyQualityCheck": { "$ref": "#/definitions/AWS::IoT::AccountAuditConfiguration.AuditCheckConfiguration" }, "DeviceCertificateSharedCheck": { "$ref": "#/definitions/AWS::IoT::AccountAuditConfiguration.AuditCheckConfiguration" }, "IntermediateCaRevokedForActiveDeviceCertificatesCheck": { "$ref": "#/definitions/AWS::IoT::AccountAuditConfiguration.AuditCheckConfiguration" }, "IoTPolicyPotentialMisConfigurationCheck": { "$ref": "#/definitions/AWS::IoT::AccountAuditConfiguration.AuditCheckConfiguration" }, "IotPolicyOverlyPermissiveCheck": { "$ref": "#/definitions/AWS::IoT::AccountAuditConfiguration.AuditCheckConfiguration" }, "IotRoleAliasAllowsAccessToUnusedServicesCheck": { "$ref": "#/definitions/AWS::IoT::AccountAuditConfiguration.AuditCheckConfiguration" }, "IotRoleAliasOverlyPermissiveCheck": { "$ref": "#/definitions/AWS::IoT::AccountAuditConfiguration.AuditCheckConfiguration" }, "LoggingDisabledCheck": { "$ref": "#/definitions/AWS::IoT::AccountAuditConfiguration.AuditCheckConfiguration" }, "RevokedCaCertificateStillActiveCheck": { "$ref": "#/definitions/AWS::IoT::AccountAuditConfiguration.AuditCheckConfiguration" }, "RevokedDeviceCertificateStillActiveCheck": { "$ref": "#/definitions/AWS::IoT::AccountAuditConfiguration.AuditCheckConfiguration" }, "UnauthenticatedCognitoRoleOverlyPermissiveCheck": { "$ref": "#/definitions/AWS::IoT::AccountAuditConfiguration.AuditCheckConfiguration" } }, "type": "object" }, "AWS::IoT::AccountAuditConfiguration.AuditNotificationTarget": { "additionalProperties": false, "properties": { "Enabled": { "type": "boolean" }, "RoleArn": { "type": "string" }, "TargetArn": { "type": "string" } }, "type": "object" }, "AWS::IoT::AccountAuditConfiguration.AuditNotificationTargetConfigurations": { "additionalProperties": false, "properties": { "Sns": { "$ref": "#/definitions/AWS::IoT::AccountAuditConfiguration.AuditNotificationTarget" } }, "type": "object" }, "AWS::IoT::Authorizer": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AuthorizerFunctionArn": { "type": "string" }, "AuthorizerName": { "type": "string" }, "EnableCachingForHttp": { "type": "boolean" }, "SigningDisabled": { "type": "boolean" }, "Status": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "TokenKeyName": { "type": "string" }, "TokenSigningPublicKeys": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" } }, "required": [ "AuthorizerFunctionArn" ], "type": "object" }, "Type": { "enum": [ "AWS::IoT::Authorizer" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::IoT::BillingGroup": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "BillingGroupName": { "type": "string" }, "BillingGroupProperties": { "$ref": "#/definitions/AWS::IoT::BillingGroup.BillingGroupProperties" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "type": "object" }, "Type": { "enum": [ "AWS::IoT::BillingGroup" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::IoT::BillingGroup.BillingGroupProperties": { "additionalProperties": false, "properties": { "BillingGroupDescription": { "type": "string" } }, "type": "object" }, "AWS::IoT::CACertificate": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AutoRegistrationStatus": { "type": "string" }, "CACertificatePem": { "type": "string" }, "CertificateMode": { "type": "string" }, "RegistrationConfig": { "$ref": "#/definitions/AWS::IoT::CACertificate.RegistrationConfig" }, "RemoveAutoRegistration": { "type": "boolean" }, "Status": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "VerificationCertificatePem": { "type": "string" } }, "required": [ "CACertificatePem", "Status" ], "type": "object" }, "Type": { "enum": [ "AWS::IoT::CACertificate" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::IoT::CACertificate.RegistrationConfig": { "additionalProperties": false, "properties": { "RoleArn": { "type": "string" }, "TemplateBody": { "type": "string" }, "TemplateName": { "type": "string" } }, "type": "object" }, "AWS::IoT::Certificate": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "CACertificatePem": { "type": "string" }, "CertificateMode": { "type": "string" }, "CertificatePem": { "type": "string" }, "CertificateSigningRequest": { "type": "string" }, "Status": { "type": "string" } }, "required": [ "Status" ], "type": "object" }, "Type": { "enum": [ "AWS::IoT::Certificate" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::IoT::CustomMetric": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "DisplayName": { "type": "string" }, "MetricName": { "type": "string" }, "MetricType": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "MetricType" ], "type": "object" }, "Type": { "enum": [ "AWS::IoT::CustomMetric" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::IoT::Dimension": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Name": { "type": "string" }, "StringValues": { "items": { "type": "string" }, "type": "array" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "Type": { "type": "string" } }, "required": [ "StringValues", "Type" ], "type": "object" }, "Type": { "enum": [ "AWS::IoT::Dimension" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::IoT::DomainConfiguration": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AuthorizerConfig": { "$ref": "#/definitions/AWS::IoT::DomainConfiguration.AuthorizerConfig" }, "DomainConfigurationName": { "type": "string" }, "DomainConfigurationStatus": { "type": "string" }, "DomainName": { "type": "string" }, "ServerCertificateArns": { "items": { "type": "string" }, "type": "array" }, "ServiceType": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "TlsConfig": { "$ref": "#/definitions/AWS::IoT::DomainConfiguration.TlsConfig" }, "ValidationCertificateArn": { "type": "string" } }, "type": "object" }, "Type": { "enum": [ "AWS::IoT::DomainConfiguration" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::IoT::DomainConfiguration.AuthorizerConfig": { "additionalProperties": false, "properties": { "AllowAuthorizerOverride": { "type": "boolean" }, "DefaultAuthorizerName": { "type": "string" } }, "type": "object" }, "AWS::IoT::DomainConfiguration.ServerCertificateSummary": { "additionalProperties": false, "properties": { "ServerCertificateArn": { "type": "string" }, "ServerCertificateStatus": { "type": "string" }, "ServerCertificateStatusDetail": { "type": "string" } }, "type": "object" }, "AWS::IoT::DomainConfiguration.TlsConfig": { "additionalProperties": false, "properties": { "SecurityPolicy": { "type": "string" } }, "type": "object" }, "AWS::IoT::FleetMetric": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AggregationField": { "type": "string" }, "AggregationType": { "$ref": "#/definitions/AWS::IoT::FleetMetric.AggregationType" }, "Description": { "type": "string" }, "IndexName": { "type": "string" }, "MetricName": { "type": "string" }, "Period": { "type": "number" }, "QueryString": { "type": "string" }, "QueryVersion": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "Unit": { "type": "string" } }, "required": [ "MetricName" ], "type": "object" }, "Type": { "enum": [ "AWS::IoT::FleetMetric" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::IoT::FleetMetric.AggregationType": { "additionalProperties": false, "properties": { "Name": { "type": "string" }, "Values": { "items": { "type": "string" }, "type": "array" } }, "required": [ "Name", "Values" ], "type": "object" }, "AWS::IoT::JobTemplate": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AbortConfig": { "$ref": "#/definitions/AWS::IoT::JobTemplate.AbortConfig" }, "Description": { "type": "string" }, "Document": { "type": "string" }, "DocumentSource": { "type": "string" }, "JobArn": { "type": "string" }, "JobExecutionsRetryConfig": { "$ref": "#/definitions/AWS::IoT::JobTemplate.JobExecutionsRetryConfig" }, "JobExecutionsRolloutConfig": { "$ref": "#/definitions/AWS::IoT::JobTemplate.JobExecutionsRolloutConfig" }, "JobTemplateId": { "type": "string" }, "MaintenanceWindows": { "items": { "$ref": "#/definitions/AWS::IoT::JobTemplate.MaintenanceWindow" }, "type": "array" }, "PresignedUrlConfig": { "$ref": "#/definitions/AWS::IoT::JobTemplate.PresignedUrlConfig" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "TimeoutConfig": { "$ref": "#/definitions/AWS::IoT::JobTemplate.TimeoutConfig" } }, "required": [ "Description", "JobTemplateId" ], "type": "object" }, "Type": { "enum": [ "AWS::IoT::JobTemplate" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::IoT::JobTemplate.AbortConfig": { "additionalProperties": false, "properties": { "CriteriaList": { "items": { "$ref": "#/definitions/AWS::IoT::JobTemplate.AbortCriteria" }, "type": "array" } }, "required": [ "CriteriaList" ], "type": "object" }, "AWS::IoT::JobTemplate.AbortCriteria": { "additionalProperties": false, "properties": { "Action": { "type": "string" }, "FailureType": { "type": "string" }, "MinNumberOfExecutedThings": { "type": "number" }, "ThresholdPercentage": { "type": "number" } }, "required": [ "Action", "FailureType", "MinNumberOfExecutedThings", "ThresholdPercentage" ], "type": "object" }, "AWS::IoT::JobTemplate.ExponentialRolloutRate": { "additionalProperties": false, "properties": { "BaseRatePerMinute": { "type": "number" }, "IncrementFactor": { "type": "number" }, "RateIncreaseCriteria": { "$ref": "#/definitions/AWS::IoT::JobTemplate.RateIncreaseCriteria" } }, "required": [ "BaseRatePerMinute", "IncrementFactor", "RateIncreaseCriteria" ], "type": "object" }, "AWS::IoT::JobTemplate.JobExecutionsRetryConfig": { "additionalProperties": false, "properties": { "RetryCriteriaList": { "items": { "$ref": "#/definitions/AWS::IoT::JobTemplate.RetryCriteria" }, "type": "array" } }, "type": "object" }, "AWS::IoT::JobTemplate.JobExecutionsRolloutConfig": { "additionalProperties": false, "properties": { "ExponentialRolloutRate": { "$ref": "#/definitions/AWS::IoT::JobTemplate.ExponentialRolloutRate" }, "MaximumPerMinute": { "type": "number" } }, "type": "object" }, "AWS::IoT::JobTemplate.MaintenanceWindow": { "additionalProperties": false, "properties": { "DurationInMinutes": { "type": "number" }, "StartTime": { "type": "string" } }, "type": "object" }, "AWS::IoT::JobTemplate.PresignedUrlConfig": { "additionalProperties": false, "properties": { "ExpiresInSec": { "type": "number" }, "RoleArn": { "type": "string" } }, "required": [ "RoleArn" ], "type": "object" }, "AWS::IoT::JobTemplate.RateIncreaseCriteria": { "additionalProperties": false, "properties": { "NumberOfNotifiedThings": { "type": "number" }, "NumberOfSucceededThings": { "type": "number" } }, "type": "object" }, "AWS::IoT::JobTemplate.RetryCriteria": { "additionalProperties": false, "properties": { "FailureType": { "type": "string" }, "NumberOfRetries": { "type": "number" } }, "type": "object" }, "AWS::IoT::JobTemplate.TimeoutConfig": { "additionalProperties": false, "properties": { "InProgressTimeoutInMinutes": { "type": "number" } }, "required": [ "InProgressTimeoutInMinutes" ], "type": "object" }, "AWS::IoT::Logging": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AccountId": { "type": "string" }, "DefaultLogLevel": { "type": "string" }, "RoleArn": { "type": "string" } }, "required": [ "AccountId", "DefaultLogLevel", "RoleArn" ], "type": "object" }, "Type": { "enum": [ "AWS::IoT::Logging" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::IoT::MitigationAction": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ActionName": { "type": "string" }, "ActionParams": { "$ref": "#/definitions/AWS::IoT::MitigationAction.ActionParams" }, "RoleArn": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "ActionParams", "RoleArn" ], "type": "object" }, "Type": { "enum": [ "AWS::IoT::MitigationAction" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::IoT::MitigationAction.ActionParams": { "additionalProperties": false, "properties": { "AddThingsToThingGroupParams": { "$ref": "#/definitions/AWS::IoT::MitigationAction.AddThingsToThingGroupParams" }, "EnableIoTLoggingParams": { "$ref": "#/definitions/AWS::IoT::MitigationAction.EnableIoTLoggingParams" }, "PublishFindingToSnsParams": { "$ref": "#/definitions/AWS::IoT::MitigationAction.PublishFindingToSnsParams" }, "ReplaceDefaultPolicyVersionParams": { "$ref": "#/definitions/AWS::IoT::MitigationAction.ReplaceDefaultPolicyVersionParams" }, "UpdateCACertificateParams": { "$ref": "#/definitions/AWS::IoT::MitigationAction.UpdateCACertificateParams" }, "UpdateDeviceCertificateParams": { "$ref": "#/definitions/AWS::IoT::MitigationAction.UpdateDeviceCertificateParams" } }, "type": "object" }, "AWS::IoT::MitigationAction.AddThingsToThingGroupParams": { "additionalProperties": false, "properties": { "OverrideDynamicGroups": { "type": "boolean" }, "ThingGroupNames": { "items": { "type": "string" }, "type": "array" } }, "required": [ "ThingGroupNames" ], "type": "object" }, "AWS::IoT::MitigationAction.EnableIoTLoggingParams": { "additionalProperties": false, "properties": { "LogLevel": { "type": "string" }, "RoleArnForLogging": { "type": "string" } }, "required": [ "LogLevel", "RoleArnForLogging" ], "type": "object" }, "AWS::IoT::MitigationAction.PublishFindingToSnsParams": { "additionalProperties": false, "properties": { "TopicArn": { "type": "string" } }, "required": [ "TopicArn" ], "type": "object" }, "AWS::IoT::MitigationAction.ReplaceDefaultPolicyVersionParams": { "additionalProperties": false, "properties": { "TemplateName": { "type": "string" } }, "required": [ "TemplateName" ], "type": "object" }, "AWS::IoT::MitigationAction.UpdateCACertificateParams": { "additionalProperties": false, "properties": { "Action": { "type": "string" } }, "required": [ "Action" ], "type": "object" }, "AWS::IoT::MitigationAction.UpdateDeviceCertificateParams": { "additionalProperties": false, "properties": { "Action": { "type": "string" } }, "required": [ "Action" ], "type": "object" }, "AWS::IoT::Policy": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "PolicyDocument": { "type": "object" }, "PolicyName": { "type": "string" } }, "required": [ "PolicyDocument" ], "type": "object" }, "Type": { "enum": [ "AWS::IoT::Policy" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::IoT::PolicyPrincipalAttachment": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "PolicyName": { "type": "string" }, "Principal": { "type": "string" } }, "required": [ "PolicyName", "Principal" ], "type": "object" }, "Type": { "enum": [ "AWS::IoT::PolicyPrincipalAttachment" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::IoT::ProvisioningTemplate": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "Enabled": { "type": "boolean" }, "PreProvisioningHook": { "$ref": "#/definitions/AWS::IoT::ProvisioningTemplate.ProvisioningHook" }, "ProvisioningRoleArn": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "TemplateBody": { "type": "string" }, "TemplateName": { "type": "string" }, "TemplateType": { "type": "string" } }, "required": [ "ProvisioningRoleArn", "TemplateBody" ], "type": "object" }, "Type": { "enum": [ "AWS::IoT::ProvisioningTemplate" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::IoT::ProvisioningTemplate.ProvisioningHook": { "additionalProperties": false, "properties": { "PayloadVersion": { "type": "string" }, "TargetArn": { "type": "string" } }, "type": "object" }, "AWS::IoT::ResourceSpecificLogging": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "LogLevel": { "type": "string" }, "TargetName": { "type": "string" }, "TargetType": { "type": "string" } }, "required": [ "LogLevel", "TargetName", "TargetType" ], "type": "object" }, "Type": { "enum": [ "AWS::IoT::ResourceSpecificLogging" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::IoT::RoleAlias": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "CredentialDurationSeconds": { "type": "number" }, "RoleAlias": { "type": "string" }, "RoleArn": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "RoleArn" ], "type": "object" }, "Type": { "enum": [ "AWS::IoT::RoleAlias" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::IoT::ScheduledAudit": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "DayOfMonth": { "type": "string" }, "DayOfWeek": { "type": "string" }, "Frequency": { "type": "string" }, "ScheduledAuditName": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "TargetCheckNames": { "items": { "type": "string" }, "type": "array" } }, "required": [ "Frequency", "TargetCheckNames" ], "type": "object" }, "Type": { "enum": [ "AWS::IoT::ScheduledAudit" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::IoT::SecurityProfile": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AdditionalMetricsToRetainV2": { "items": { "$ref": "#/definitions/AWS::IoT::SecurityProfile.MetricToRetain" }, "type": "array" }, "AlertTargets": { "additionalProperties": false, "patternProperties": { "^[a-zA-Z0-9]+$": { "$ref": "#/definitions/AWS::IoT::SecurityProfile.AlertTarget" } }, "type": "object" }, "Behaviors": { "items": { "$ref": "#/definitions/AWS::IoT::SecurityProfile.Behavior" }, "type": "array" }, "SecurityProfileDescription": { "type": "string" }, "SecurityProfileName": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "TargetArns": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "Type": { "enum": [ "AWS::IoT::SecurityProfile" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::IoT::SecurityProfile.AlertTarget": { "additionalProperties": false, "properties": { "AlertTargetArn": { "type": "string" }, "RoleArn": { "type": "string" } }, "required": [ "AlertTargetArn", "RoleArn" ], "type": "object" }, "AWS::IoT::SecurityProfile.Behavior": { "additionalProperties": false, "properties": { "Criteria": { "$ref": "#/definitions/AWS::IoT::SecurityProfile.BehaviorCriteria" }, "Metric": { "type": "string" }, "MetricDimension": { "$ref": "#/definitions/AWS::IoT::SecurityProfile.MetricDimension" }, "Name": { "type": "string" }, "SuppressAlerts": { "type": "boolean" } }, "required": [ "Name" ], "type": "object" }, "AWS::IoT::SecurityProfile.BehaviorCriteria": { "additionalProperties": false, "properties": { "ComparisonOperator": { "type": "string" }, "ConsecutiveDatapointsToAlarm": { "type": "number" }, "ConsecutiveDatapointsToClear": { "type": "number" }, "DurationSeconds": { "type": "number" }, "MlDetectionConfig": { "$ref": "#/definitions/AWS::IoT::SecurityProfile.MachineLearningDetectionConfig" }, "StatisticalThreshold": { "$ref": "#/definitions/AWS::IoT::SecurityProfile.StatisticalThreshold" }, "Value": { "$ref": "#/definitions/AWS::IoT::SecurityProfile.MetricValue" } }, "type": "object" }, "AWS::IoT::SecurityProfile.MachineLearningDetectionConfig": { "additionalProperties": false, "properties": { "ConfidenceLevel": { "type": "string" } }, "type": "object" }, "AWS::IoT::SecurityProfile.MetricDimension": { "additionalProperties": false, "properties": { "DimensionName": { "type": "string" }, "Operator": { "type": "string" } }, "required": [ "DimensionName" ], "type": "object" }, "AWS::IoT::SecurityProfile.MetricToRetain": { "additionalProperties": false, "properties": { "Metric": { "type": "string" }, "MetricDimension": { "$ref": "#/definitions/AWS::IoT::SecurityProfile.MetricDimension" } }, "required": [ "Metric" ], "type": "object" }, "AWS::IoT::SecurityProfile.MetricValue": { "additionalProperties": false, "properties": { "Cidrs": { "items": { "type": "string" }, "type": "array" }, "Count": { "type": "string" }, "Number": { "type": "number" }, "Numbers": { "items": { "type": "number" }, "type": "array" }, "Ports": { "items": { "type": "number" }, "type": "array" }, "Strings": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::IoT::SecurityProfile.StatisticalThreshold": { "additionalProperties": false, "properties": { "Statistic": { "type": "string" } }, "type": "object" }, "AWS::IoT::Thing": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AttributePayload": { "$ref": "#/definitions/AWS::IoT::Thing.AttributePayload" }, "ThingName": { "type": "string" } }, "type": "object" }, "Type": { "enum": [ "AWS::IoT::Thing" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::IoT::Thing.AttributePayload": { "additionalProperties": false, "properties": { "Attributes": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" } }, "type": "object" }, "AWS::IoT::ThingGroup": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ParentGroupName": { "type": "string" }, "QueryString": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "ThingGroupName": { "type": "string" }, "ThingGroupProperties": { "$ref": "#/definitions/AWS::IoT::ThingGroup.ThingGroupProperties" } }, "type": "object" }, "Type": { "enum": [ "AWS::IoT::ThingGroup" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::IoT::ThingGroup.AttributePayload": { "additionalProperties": false, "properties": { "Attributes": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" } }, "type": "object" }, "AWS::IoT::ThingGroup.ThingGroupProperties": { "additionalProperties": false, "properties": { "AttributePayload": { "$ref": "#/definitions/AWS::IoT::ThingGroup.AttributePayload" }, "ThingGroupDescription": { "type": "string" } }, "type": "object" }, "AWS::IoT::ThingPrincipalAttachment": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Principal": { "type": "string" }, "ThingName": { "type": "string" } }, "required": [ "Principal", "ThingName" ], "type": "object" }, "Type": { "enum": [ "AWS::IoT::ThingPrincipalAttachment" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::IoT::ThingType": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "DeprecateThingType": { "type": "boolean" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "ThingTypeName": { "type": "string" }, "ThingTypeProperties": { "$ref": "#/definitions/AWS::IoT::ThingType.ThingTypeProperties" } }, "type": "object" }, "Type": { "enum": [ "AWS::IoT::ThingType" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::IoT::ThingType.ThingTypeProperties": { "additionalProperties": false, "properties": { "SearchableAttributes": { "items": { "type": "string" }, "type": "array" }, "ThingTypeDescription": { "type": "string" } }, "type": "object" }, "AWS::IoT::TopicRule": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "RuleName": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "TopicRulePayload": { "$ref": "#/definitions/AWS::IoT::TopicRule.TopicRulePayload" } }, "required": [ "TopicRulePayload" ], "type": "object" }, "Type": { "enum": [ "AWS::IoT::TopicRule" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::IoT::TopicRule.Action": { "additionalProperties": false, "properties": { "CloudwatchAlarm": { "$ref": "#/definitions/AWS::IoT::TopicRule.CloudwatchAlarmAction" }, "CloudwatchLogs": { "$ref": "#/definitions/AWS::IoT::TopicRule.CloudwatchLogsAction" }, "CloudwatchMetric": { "$ref": "#/definitions/AWS::IoT::TopicRule.CloudwatchMetricAction" }, "DynamoDB": { "$ref": "#/definitions/AWS::IoT::TopicRule.DynamoDBAction" }, "DynamoDBv2": { "$ref": "#/definitions/AWS::IoT::TopicRule.DynamoDBv2Action" }, "Elasticsearch": { "$ref": "#/definitions/AWS::IoT::TopicRule.ElasticsearchAction" }, "Firehose": { "$ref": "#/definitions/AWS::IoT::TopicRule.FirehoseAction" }, "Http": { "$ref": "#/definitions/AWS::IoT::TopicRule.HttpAction" }, "IotAnalytics": { "$ref": "#/definitions/AWS::IoT::TopicRule.IotAnalyticsAction" }, "IotEvents": { "$ref": "#/definitions/AWS::IoT::TopicRule.IotEventsAction" }, "IotSiteWise": { "$ref": "#/definitions/AWS::IoT::TopicRule.IotSiteWiseAction" }, "Kafka": { "$ref": "#/definitions/AWS::IoT::TopicRule.KafkaAction" }, "Kinesis": { "$ref": "#/definitions/AWS::IoT::TopicRule.KinesisAction" }, "Lambda": { "$ref": "#/definitions/AWS::IoT::TopicRule.LambdaAction" }, "Location": { "$ref": "#/definitions/AWS::IoT::TopicRule.LocationAction" }, "OpenSearch": { "$ref": "#/definitions/AWS::IoT::TopicRule.OpenSearchAction" }, "Republish": { "$ref": "#/definitions/AWS::IoT::TopicRule.RepublishAction" }, "S3": { "$ref": "#/definitions/AWS::IoT::TopicRule.S3Action" }, "Sns": { "$ref": "#/definitions/AWS::IoT::TopicRule.SnsAction" }, "Sqs": { "$ref": "#/definitions/AWS::IoT::TopicRule.SqsAction" }, "StepFunctions": { "$ref": "#/definitions/AWS::IoT::TopicRule.StepFunctionsAction" }, "Timestream": { "$ref": "#/definitions/AWS::IoT::TopicRule.TimestreamAction" } }, "type": "object" }, "AWS::IoT::TopicRule.AssetPropertyTimestamp": { "additionalProperties": false, "properties": { "OffsetInNanos": { "type": "string" }, "TimeInSeconds": { "type": "string" } }, "required": [ "TimeInSeconds" ], "type": "object" }, "AWS::IoT::TopicRule.AssetPropertyValue": { "additionalProperties": false, "properties": { "Quality": { "type": "string" }, "Timestamp": { "$ref": "#/definitions/AWS::IoT::TopicRule.AssetPropertyTimestamp" }, "Value": { "$ref": "#/definitions/AWS::IoT::TopicRule.AssetPropertyVariant" } }, "required": [ "Timestamp", "Value" ], "type": "object" }, "AWS::IoT::TopicRule.AssetPropertyVariant": { "additionalProperties": false, "properties": { "BooleanValue": { "type": "string" }, "DoubleValue": { "type": "string" }, "IntegerValue": { "type": "string" }, "StringValue": { "type": "string" } }, "type": "object" }, "AWS::IoT::TopicRule.CloudwatchAlarmAction": { "additionalProperties": false, "properties": { "AlarmName": { "type": "string" }, "RoleArn": { "type": "string" }, "StateReason": { "type": "string" }, "StateValue": { "type": "string" } }, "required": [ "AlarmName", "RoleArn", "StateReason", "StateValue" ], "type": "object" }, "AWS::IoT::TopicRule.CloudwatchLogsAction": { "additionalProperties": false, "properties": { "BatchMode": { "type": "boolean" }, "LogGroupName": { "type": "string" }, "RoleArn": { "type": "string" } }, "required": [ "LogGroupName", "RoleArn" ], "type": "object" }, "AWS::IoT::TopicRule.CloudwatchMetricAction": { "additionalProperties": false, "properties": { "MetricName": { "type": "string" }, "MetricNamespace": { "type": "string" }, "MetricTimestamp": { "type": "string" }, "MetricUnit": { "type": "string" }, "MetricValue": { "type": "string" }, "RoleArn": { "type": "string" } }, "required": [ "MetricName", "MetricNamespace", "MetricUnit", "MetricValue", "RoleArn" ], "type": "object" }, "AWS::IoT::TopicRule.DynamoDBAction": { "additionalProperties": false, "properties": { "HashKeyField": { "type": "string" }, "HashKeyType": { "type": "string" }, "HashKeyValue": { "type": "string" }, "PayloadField": { "type": "string" }, "RangeKeyField": { "type": "string" }, "RangeKeyType": { "type": "string" }, "RangeKeyValue": { "type": "string" }, "RoleArn": { "type": "string" }, "TableName": { "type": "string" } }, "required": [ "HashKeyField", "HashKeyValue", "RoleArn", "TableName" ], "type": "object" }, "AWS::IoT::TopicRule.DynamoDBv2Action": { "additionalProperties": false, "properties": { "PutItem": { "$ref": "#/definitions/AWS::IoT::TopicRule.PutItemInput" }, "RoleArn": { "type": "string" } }, "type": "object" }, "AWS::IoT::TopicRule.ElasticsearchAction": { "additionalProperties": false, "properties": { "Endpoint": { "type": "string" }, "Id": { "type": "string" }, "Index": { "type": "string" }, "RoleArn": { "type": "string" }, "Type": { "type": "string" } }, "required": [ "Endpoint", "Id", "Index", "RoleArn", "Type" ], "type": "object" }, "AWS::IoT::TopicRule.FirehoseAction": { "additionalProperties": false, "properties": { "BatchMode": { "type": "boolean" }, "DeliveryStreamName": { "type": "string" }, "RoleArn": { "type": "string" }, "Separator": { "type": "string" } }, "required": [ "DeliveryStreamName", "RoleArn" ], "type": "object" }, "AWS::IoT::TopicRule.HttpAction": { "additionalProperties": false, "properties": { "Auth": { "$ref": "#/definitions/AWS::IoT::TopicRule.HttpAuthorization" }, "ConfirmationUrl": { "type": "string" }, "Headers": { "items": { "$ref": "#/definitions/AWS::IoT::TopicRule.HttpActionHeader" }, "type": "array" }, "Url": { "type": "string" } }, "required": [ "Url" ], "type": "object" }, "AWS::IoT::TopicRule.HttpActionHeader": { "additionalProperties": false, "properties": { "Key": { "type": "string" }, "Value": { "type": "string" } }, "required": [ "Key", "Value" ], "type": "object" }, "AWS::IoT::TopicRule.HttpAuthorization": { "additionalProperties": false, "properties": { "Sigv4": { "$ref": "#/definitions/AWS::IoT::TopicRule.SigV4Authorization" } }, "type": "object" }, "AWS::IoT::TopicRule.IotAnalyticsAction": { "additionalProperties": false, "properties": { "BatchMode": { "type": "boolean" }, "ChannelName": { "type": "string" }, "RoleArn": { "type": "string" } }, "required": [ "ChannelName", "RoleArn" ], "type": "object" }, "AWS::IoT::TopicRule.IotEventsAction": { "additionalProperties": false, "properties": { "BatchMode": { "type": "boolean" }, "InputName": { "type": "string" }, "MessageId": { "type": "string" }, "RoleArn": { "type": "string" } }, "required": [ "InputName", "RoleArn" ], "type": "object" }, "AWS::IoT::TopicRule.IotSiteWiseAction": { "additionalProperties": false, "properties": { "PutAssetPropertyValueEntries": { "items": { "$ref": "#/definitions/AWS::IoT::TopicRule.PutAssetPropertyValueEntry" }, "type": "array" }, "RoleArn": { "type": "string" } }, "required": [ "PutAssetPropertyValueEntries", "RoleArn" ], "type": "object" }, "AWS::IoT::TopicRule.KafkaAction": { "additionalProperties": false, "properties": { "ClientProperties": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" }, "DestinationArn": { "type": "string" }, "Key": { "type": "string" }, "Partition": { "type": "string" }, "Topic": { "type": "string" } }, "required": [ "ClientProperties", "DestinationArn", "Topic" ], "type": "object" }, "AWS::IoT::TopicRule.KinesisAction": { "additionalProperties": false, "properties": { "PartitionKey": { "type": "string" }, "RoleArn": { "type": "string" }, "StreamName": { "type": "string" } }, "required": [ "RoleArn", "StreamName" ], "type": "object" }, "AWS::IoT::TopicRule.LambdaAction": { "additionalProperties": false, "properties": { "FunctionArn": { "type": "string" } }, "type": "object" }, "AWS::IoT::TopicRule.LocationAction": { "additionalProperties": false, "properties": { "DeviceId": { "type": "string" }, "Latitude": { "type": "string" }, "Longitude": { "type": "string" }, "RoleArn": { "type": "string" }, "Timestamp": { "$ref": "#/definitions/AWS::IoT::TopicRule.Timestamp" }, "TrackerName": { "type": "string" } }, "required": [ "DeviceId", "Latitude", "Longitude", "RoleArn", "TrackerName" ], "type": "object" }, "AWS::IoT::TopicRule.OpenSearchAction": { "additionalProperties": false, "properties": { "Endpoint": { "type": "string" }, "Id": { "type": "string" }, "Index": { "type": "string" }, "RoleArn": { "type": "string" }, "Type": { "type": "string" } }, "required": [ "Endpoint", "Id", "Index", "RoleArn", "Type" ], "type": "object" }, "AWS::IoT::TopicRule.PutAssetPropertyValueEntry": { "additionalProperties": false, "properties": { "AssetId": { "type": "string" }, "EntryId": { "type": "string" }, "PropertyAlias": { "type": "string" }, "PropertyId": { "type": "string" }, "PropertyValues": { "items": { "$ref": "#/definitions/AWS::IoT::TopicRule.AssetPropertyValue" }, "type": "array" } }, "required": [ "PropertyValues" ], "type": "object" }, "AWS::IoT::TopicRule.PutItemInput": { "additionalProperties": false, "properties": { "TableName": { "type": "string" } }, "required": [ "TableName" ], "type": "object" }, "AWS::IoT::TopicRule.RepublishAction": { "additionalProperties": false, "properties": { "Headers": { "$ref": "#/definitions/AWS::IoT::TopicRule.RepublishActionHeaders" }, "Qos": { "type": "number" }, "RoleArn": { "type": "string" }, "Topic": { "type": "string" } }, "required": [ "RoleArn", "Topic" ], "type": "object" }, "AWS::IoT::TopicRule.RepublishActionHeaders": { "additionalProperties": false, "properties": { "ContentType": { "type": "string" }, "CorrelationData": { "type": "string" }, "MessageExpiry": { "type": "string" }, "PayloadFormatIndicator": { "type": "string" }, "ResponseTopic": { "type": "string" }, "UserProperties": { "items": { "$ref": "#/definitions/AWS::IoT::TopicRule.UserProperty" }, "type": "array" } }, "type": "object" }, "AWS::IoT::TopicRule.S3Action": { "additionalProperties": false, "properties": { "BucketName": { "type": "string" }, "CannedAcl": { "type": "string" }, "Key": { "type": "string" }, "RoleArn": { "type": "string" } }, "required": [ "BucketName", "Key", "RoleArn" ], "type": "object" }, "AWS::IoT::TopicRule.SigV4Authorization": { "additionalProperties": false, "properties": { "RoleArn": { "type": "string" }, "ServiceName": { "type": "string" }, "SigningRegion": { "type": "string" } }, "required": [ "RoleArn", "ServiceName", "SigningRegion" ], "type": "object" }, "AWS::IoT::TopicRule.SnsAction": { "additionalProperties": false, "properties": { "MessageFormat": { "type": "string" }, "RoleArn": { "type": "string" }, "TargetArn": { "type": "string" } }, "required": [ "RoleArn", "TargetArn" ], "type": "object" }, "AWS::IoT::TopicRule.SqsAction": { "additionalProperties": false, "properties": { "QueueUrl": { "type": "string" }, "RoleArn": { "type": "string" }, "UseBase64": { "type": "boolean" } }, "required": [ "QueueUrl", "RoleArn" ], "type": "object" }, "AWS::IoT::TopicRule.StepFunctionsAction": { "additionalProperties": false, "properties": { "ExecutionNamePrefix": { "type": "string" }, "RoleArn": { "type": "string" }, "StateMachineName": { "type": "string" } }, "required": [ "RoleArn", "StateMachineName" ], "type": "object" }, "AWS::IoT::TopicRule.Timestamp": { "additionalProperties": false, "properties": { "Unit": { "type": "string" }, "Value": { "type": "string" } }, "required": [ "Value" ], "type": "object" }, "AWS::IoT::TopicRule.TimestreamAction": { "additionalProperties": false, "properties": { "DatabaseName": { "type": "string" }, "Dimensions": { "items": { "$ref": "#/definitions/AWS::IoT::TopicRule.TimestreamDimension" }, "type": "array" }, "RoleArn": { "type": "string" }, "TableName": { "type": "string" }, "Timestamp": { "$ref": "#/definitions/AWS::IoT::TopicRule.TimestreamTimestamp" } }, "required": [ "DatabaseName", "Dimensions", "RoleArn", "TableName" ], "type": "object" }, "AWS::IoT::TopicRule.TimestreamDimension": { "additionalProperties": false, "properties": { "Name": { "type": "string" }, "Value": { "type": "string" } }, "required": [ "Name", "Value" ], "type": "object" }, "AWS::IoT::TopicRule.TimestreamTimestamp": { "additionalProperties": false, "properties": { "Unit": { "type": "string" }, "Value": { "type": "string" } }, "required": [ "Unit", "Value" ], "type": "object" }, "AWS::IoT::TopicRule.TopicRulePayload": { "additionalProperties": false, "properties": { "Actions": { "items": { "$ref": "#/definitions/AWS::IoT::TopicRule.Action" }, "type": "array" }, "AwsIotSqlVersion": { "type": "string" }, "Description": { "type": "string" }, "ErrorAction": { "$ref": "#/definitions/AWS::IoT::TopicRule.Action" }, "RuleDisabled": { "type": "boolean" }, "Sql": { "type": "string" } }, "required": [ "Actions", "Sql" ], "type": "object" }, "AWS::IoT::TopicRule.UserProperty": { "additionalProperties": false, "properties": { "Key": { "type": "string" }, "Value": { "type": "string" } }, "required": [ "Key", "Value" ], "type": "object" }, "AWS::IoT::TopicRuleDestination": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "HttpUrlProperties": { "$ref": "#/definitions/AWS::IoT::TopicRuleDestination.HttpUrlDestinationSummary" }, "Status": { "type": "string" }, "VpcProperties": { "$ref": "#/definitions/AWS::IoT::TopicRuleDestination.VpcDestinationProperties" } }, "type": "object" }, "Type": { "enum": [ "AWS::IoT::TopicRuleDestination" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::IoT::TopicRuleDestination.HttpUrlDestinationSummary": { "additionalProperties": false, "properties": { "ConfirmationUrl": { "type": "string" } }, "type": "object" }, "AWS::IoT::TopicRuleDestination.VpcDestinationProperties": { "additionalProperties": false, "properties": { "RoleArn": { "type": "string" }, "SecurityGroups": { "items": { "type": "string" }, "type": "array" }, "SubnetIds": { "items": { "type": "string" }, "type": "array" }, "VpcId": { "type": "string" } }, "type": "object" }, "AWS::IoTAnalytics::Channel": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ChannelName": { "type": "string" }, "ChannelStorage": { "$ref": "#/definitions/AWS::IoTAnalytics::Channel.ChannelStorage" }, "RetentionPeriod": { "$ref": "#/definitions/AWS::IoTAnalytics::Channel.RetentionPeriod" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "type": "object" }, "Type": { "enum": [ "AWS::IoTAnalytics::Channel" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::IoTAnalytics::Channel.ChannelStorage": { "additionalProperties": false, "properties": { "CustomerManagedS3": { "$ref": "#/definitions/AWS::IoTAnalytics::Channel.CustomerManagedS3" }, "ServiceManagedS3": { "type": "object" } }, "type": "object" }, "AWS::IoTAnalytics::Channel.CustomerManagedS3": { "additionalProperties": false, "properties": { "Bucket": { "type": "string" }, "KeyPrefix": { "type": "string" }, "RoleArn": { "type": "string" } }, "required": [ "Bucket", "RoleArn" ], "type": "object" }, "AWS::IoTAnalytics::Channel.RetentionPeriod": { "additionalProperties": false, "properties": { "NumberOfDays": { "type": "number" }, "Unlimited": { "type": "boolean" } }, "type": "object" }, "AWS::IoTAnalytics::Dataset": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Actions": { "items": { "$ref": "#/definitions/AWS::IoTAnalytics::Dataset.Action" }, "type": "array" }, "ContentDeliveryRules": { "items": { "$ref": "#/definitions/AWS::IoTAnalytics::Dataset.DatasetContentDeliveryRule" }, "type": "array" }, "DatasetName": { "type": "string" }, "LateDataRules": { "items": { "$ref": "#/definitions/AWS::IoTAnalytics::Dataset.LateDataRule" }, "type": "array" }, "RetentionPeriod": { "$ref": "#/definitions/AWS::IoTAnalytics::Dataset.RetentionPeriod" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "Triggers": { "items": { "$ref": "#/definitions/AWS::IoTAnalytics::Dataset.Trigger" }, "type": "array" }, "VersioningConfiguration": { "$ref": "#/definitions/AWS::IoTAnalytics::Dataset.VersioningConfiguration" } }, "required": [ "Actions" ], "type": "object" }, "Type": { "enum": [ "AWS::IoTAnalytics::Dataset" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::IoTAnalytics::Dataset.Action": { "additionalProperties": false, "properties": { "ActionName": { "type": "string" }, "ContainerAction": { "$ref": "#/definitions/AWS::IoTAnalytics::Dataset.ContainerAction" }, "QueryAction": { "$ref": "#/definitions/AWS::IoTAnalytics::Dataset.QueryAction" } }, "required": [ "ActionName" ], "type": "object" }, "AWS::IoTAnalytics::Dataset.ContainerAction": { "additionalProperties": false, "properties": { "ExecutionRoleArn": { "type": "string" }, "Image": { "type": "string" }, "ResourceConfiguration": { "$ref": "#/definitions/AWS::IoTAnalytics::Dataset.ResourceConfiguration" }, "Variables": { "items": { "$ref": "#/definitions/AWS::IoTAnalytics::Dataset.Variable" }, "type": "array" } }, "required": [ "ExecutionRoleArn", "Image", "ResourceConfiguration" ], "type": "object" }, "AWS::IoTAnalytics::Dataset.DatasetContentDeliveryRule": { "additionalProperties": false, "properties": { "Destination": { "$ref": "#/definitions/AWS::IoTAnalytics::Dataset.DatasetContentDeliveryRuleDestination" }, "EntryName": { "type": "string" } }, "required": [ "Destination" ], "type": "object" }, "AWS::IoTAnalytics::Dataset.DatasetContentDeliveryRuleDestination": { "additionalProperties": false, "properties": { "IotEventsDestinationConfiguration": { "$ref": "#/definitions/AWS::IoTAnalytics::Dataset.IotEventsDestinationConfiguration" }, "S3DestinationConfiguration": { "$ref": "#/definitions/AWS::IoTAnalytics::Dataset.S3DestinationConfiguration" } }, "type": "object" }, "AWS::IoTAnalytics::Dataset.DatasetContentVersionValue": { "additionalProperties": false, "properties": { "DatasetName": { "type": "string" } }, "required": [ "DatasetName" ], "type": "object" }, "AWS::IoTAnalytics::Dataset.DeltaTime": { "additionalProperties": false, "properties": { "OffsetSeconds": { "type": "number" }, "TimeExpression": { "type": "string" } }, "required": [ "OffsetSeconds", "TimeExpression" ], "type": "object" }, "AWS::IoTAnalytics::Dataset.DeltaTimeSessionWindowConfiguration": { "additionalProperties": false, "properties": { "TimeoutInMinutes": { "type": "number" } }, "required": [ "TimeoutInMinutes" ], "type": "object" }, "AWS::IoTAnalytics::Dataset.Filter": { "additionalProperties": false, "properties": { "DeltaTime": { "$ref": "#/definitions/AWS::IoTAnalytics::Dataset.DeltaTime" } }, "type": "object" }, "AWS::IoTAnalytics::Dataset.GlueConfiguration": { "additionalProperties": false, "properties": { "DatabaseName": { "type": "string" }, "TableName": { "type": "string" } }, "required": [ "DatabaseName", "TableName" ], "type": "object" }, "AWS::IoTAnalytics::Dataset.IotEventsDestinationConfiguration": { "additionalProperties": false, "properties": { "InputName": { "type": "string" }, "RoleArn": { "type": "string" } }, "required": [ "InputName", "RoleArn" ], "type": "object" }, "AWS::IoTAnalytics::Dataset.LateDataRule": { "additionalProperties": false, "properties": { "RuleConfiguration": { "$ref": "#/definitions/AWS::IoTAnalytics::Dataset.LateDataRuleConfiguration" }, "RuleName": { "type": "string" } }, "required": [ "RuleConfiguration" ], "type": "object" }, "AWS::IoTAnalytics::Dataset.LateDataRuleConfiguration": { "additionalProperties": false, "properties": { "DeltaTimeSessionWindowConfiguration": { "$ref": "#/definitions/AWS::IoTAnalytics::Dataset.DeltaTimeSessionWindowConfiguration" } }, "type": "object" }, "AWS::IoTAnalytics::Dataset.OutputFileUriValue": { "additionalProperties": false, "properties": { "FileName": { "type": "string" } }, "required": [ "FileName" ], "type": "object" }, "AWS::IoTAnalytics::Dataset.QueryAction": { "additionalProperties": false, "properties": { "Filters": { "items": { "$ref": "#/definitions/AWS::IoTAnalytics::Dataset.Filter" }, "type": "array" }, "SqlQuery": { "type": "string" } }, "required": [ "SqlQuery" ], "type": "object" }, "AWS::IoTAnalytics::Dataset.ResourceConfiguration": { "additionalProperties": false, "properties": { "ComputeType": { "type": "string" }, "VolumeSizeInGB": { "type": "number" } }, "required": [ "ComputeType", "VolumeSizeInGB" ], "type": "object" }, "AWS::IoTAnalytics::Dataset.RetentionPeriod": { "additionalProperties": false, "properties": { "NumberOfDays": { "type": "number" }, "Unlimited": { "type": "boolean" } }, "type": "object" }, "AWS::IoTAnalytics::Dataset.S3DestinationConfiguration": { "additionalProperties": false, "properties": { "Bucket": { "type": "string" }, "GlueConfiguration": { "$ref": "#/definitions/AWS::IoTAnalytics::Dataset.GlueConfiguration" }, "Key": { "type": "string" }, "RoleArn": { "type": "string" } }, "required": [ "Bucket", "Key", "RoleArn" ], "type": "object" }, "AWS::IoTAnalytics::Dataset.Schedule": { "additionalProperties": false, "properties": { "ScheduleExpression": { "type": "string" } }, "required": [ "ScheduleExpression" ], "type": "object" }, "AWS::IoTAnalytics::Dataset.Trigger": { "additionalProperties": false, "properties": { "Schedule": { "$ref": "#/definitions/AWS::IoTAnalytics::Dataset.Schedule" }, "TriggeringDataset": { "$ref": "#/definitions/AWS::IoTAnalytics::Dataset.TriggeringDataset" } }, "type": "object" }, "AWS::IoTAnalytics::Dataset.TriggeringDataset": { "additionalProperties": false, "properties": { "DatasetName": { "type": "string" } }, "required": [ "DatasetName" ], "type": "object" }, "AWS::IoTAnalytics::Dataset.Variable": { "additionalProperties": false, "properties": { "DatasetContentVersionValue": { "$ref": "#/definitions/AWS::IoTAnalytics::Dataset.DatasetContentVersionValue" }, "DoubleValue": { "type": "number" }, "OutputFileUriValue": { "$ref": "#/definitions/AWS::IoTAnalytics::Dataset.OutputFileUriValue" }, "StringValue": { "type": "string" }, "VariableName": { "type": "string" } }, "required": [ "VariableName" ], "type": "object" }, "AWS::IoTAnalytics::Dataset.VersioningConfiguration": { "additionalProperties": false, "properties": { "MaxVersions": { "type": "number" }, "Unlimited": { "type": "boolean" } }, "type": "object" }, "AWS::IoTAnalytics::Datastore": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "DatastoreName": { "type": "string" }, "DatastorePartitions": { "$ref": "#/definitions/AWS::IoTAnalytics::Datastore.DatastorePartitions" }, "DatastoreStorage": { "$ref": "#/definitions/AWS::IoTAnalytics::Datastore.DatastoreStorage" }, "FileFormatConfiguration": { "$ref": "#/definitions/AWS::IoTAnalytics::Datastore.FileFormatConfiguration" }, "RetentionPeriod": { "$ref": "#/definitions/AWS::IoTAnalytics::Datastore.RetentionPeriod" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "type": "object" }, "Type": { "enum": [ "AWS::IoTAnalytics::Datastore" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::IoTAnalytics::Datastore.Column": { "additionalProperties": false, "properties": { "Name": { "type": "string" }, "Type": { "type": "string" } }, "required": [ "Name", "Type" ], "type": "object" }, "AWS::IoTAnalytics::Datastore.CustomerManagedS3": { "additionalProperties": false, "properties": { "Bucket": { "type": "string" }, "KeyPrefix": { "type": "string" }, "RoleArn": { "type": "string" } }, "required": [ "Bucket", "RoleArn" ], "type": "object" }, "AWS::IoTAnalytics::Datastore.CustomerManagedS3Storage": { "additionalProperties": false, "properties": { "Bucket": { "type": "string" }, "KeyPrefix": { "type": "string" } }, "required": [ "Bucket" ], "type": "object" }, "AWS::IoTAnalytics::Datastore.DatastorePartition": { "additionalProperties": false, "properties": { "Partition": { "$ref": "#/definitions/AWS::IoTAnalytics::Datastore.Partition" }, "TimestampPartition": { "$ref": "#/definitions/AWS::IoTAnalytics::Datastore.TimestampPartition" } }, "type": "object" }, "AWS::IoTAnalytics::Datastore.DatastorePartitions": { "additionalProperties": false, "properties": { "Partitions": { "items": { "$ref": "#/definitions/AWS::IoTAnalytics::Datastore.DatastorePartition" }, "type": "array" } }, "type": "object" }, "AWS::IoTAnalytics::Datastore.DatastoreStorage": { "additionalProperties": false, "properties": { "CustomerManagedS3": { "$ref": "#/definitions/AWS::IoTAnalytics::Datastore.CustomerManagedS3" }, "IotSiteWiseMultiLayerStorage": { "$ref": "#/definitions/AWS::IoTAnalytics::Datastore.IotSiteWiseMultiLayerStorage" }, "ServiceManagedS3": { "type": "object" } }, "type": "object" }, "AWS::IoTAnalytics::Datastore.FileFormatConfiguration": { "additionalProperties": false, "properties": { "JsonConfiguration": { "type": "object" }, "ParquetConfiguration": { "$ref": "#/definitions/AWS::IoTAnalytics::Datastore.ParquetConfiguration" } }, "type": "object" }, "AWS::IoTAnalytics::Datastore.IotSiteWiseMultiLayerStorage": { "additionalProperties": false, "properties": { "CustomerManagedS3Storage": { "$ref": "#/definitions/AWS::IoTAnalytics::Datastore.CustomerManagedS3Storage" } }, "type": "object" }, "AWS::IoTAnalytics::Datastore.ParquetConfiguration": { "additionalProperties": false, "properties": { "SchemaDefinition": { "$ref": "#/definitions/AWS::IoTAnalytics::Datastore.SchemaDefinition" } }, "type": "object" }, "AWS::IoTAnalytics::Datastore.Partition": { "additionalProperties": false, "properties": { "AttributeName": { "type": "string" } }, "required": [ "AttributeName" ], "type": "object" }, "AWS::IoTAnalytics::Datastore.RetentionPeriod": { "additionalProperties": false, "properties": { "NumberOfDays": { "type": "number" }, "Unlimited": { "type": "boolean" } }, "type": "object" }, "AWS::IoTAnalytics::Datastore.SchemaDefinition": { "additionalProperties": false, "properties": { "Columns": { "items": { "$ref": "#/definitions/AWS::IoTAnalytics::Datastore.Column" }, "type": "array" } }, "type": "object" }, "AWS::IoTAnalytics::Datastore.TimestampPartition": { "additionalProperties": false, "properties": { "AttributeName": { "type": "string" }, "TimestampFormat": { "type": "string" } }, "required": [ "AttributeName" ], "type": "object" }, "AWS::IoTAnalytics::Pipeline": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "PipelineActivities": { "items": { "$ref": "#/definitions/AWS::IoTAnalytics::Pipeline.Activity" }, "type": "array" }, "PipelineName": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "PipelineActivities" ], "type": "object" }, "Type": { "enum": [ "AWS::IoTAnalytics::Pipeline" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::IoTAnalytics::Pipeline.Activity": { "additionalProperties": false, "properties": { "AddAttributes": { "$ref": "#/definitions/AWS::IoTAnalytics::Pipeline.AddAttributes" }, "Channel": { "$ref": "#/definitions/AWS::IoTAnalytics::Pipeline.Channel" }, "Datastore": { "$ref": "#/definitions/AWS::IoTAnalytics::Pipeline.Datastore" }, "DeviceRegistryEnrich": { "$ref": "#/definitions/AWS::IoTAnalytics::Pipeline.DeviceRegistryEnrich" }, "DeviceShadowEnrich": { "$ref": "#/definitions/AWS::IoTAnalytics::Pipeline.DeviceShadowEnrich" }, "Filter": { "$ref": "#/definitions/AWS::IoTAnalytics::Pipeline.Filter" }, "Lambda": { "$ref": "#/definitions/AWS::IoTAnalytics::Pipeline.Lambda" }, "Math": { "$ref": "#/definitions/AWS::IoTAnalytics::Pipeline.Math" }, "RemoveAttributes": { "$ref": "#/definitions/AWS::IoTAnalytics::Pipeline.RemoveAttributes" }, "SelectAttributes": { "$ref": "#/definitions/AWS::IoTAnalytics::Pipeline.SelectAttributes" } }, "type": "object" }, "AWS::IoTAnalytics::Pipeline.AddAttributes": { "additionalProperties": false, "properties": { "Attributes": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" }, "Name": { "type": "string" }, "Next": { "type": "string" } }, "required": [ "Attributes", "Name" ], "type": "object" }, "AWS::IoTAnalytics::Pipeline.Channel": { "additionalProperties": false, "properties": { "ChannelName": { "type": "string" }, "Name": { "type": "string" }, "Next": { "type": "string" } }, "required": [ "ChannelName", "Name" ], "type": "object" }, "AWS::IoTAnalytics::Pipeline.Datastore": { "additionalProperties": false, "properties": { "DatastoreName": { "type": "string" }, "Name": { "type": "string" } }, "required": [ "DatastoreName", "Name" ], "type": "object" }, "AWS::IoTAnalytics::Pipeline.DeviceRegistryEnrich": { "additionalProperties": false, "properties": { "Attribute": { "type": "string" }, "Name": { "type": "string" }, "Next": { "type": "string" }, "RoleArn": { "type": "string" }, "ThingName": { "type": "string" } }, "required": [ "Attribute", "Name", "RoleArn", "ThingName" ], "type": "object" }, "AWS::IoTAnalytics::Pipeline.DeviceShadowEnrich": { "additionalProperties": false, "properties": { "Attribute": { "type": "string" }, "Name": { "type": "string" }, "Next": { "type": "string" }, "RoleArn": { "type": "string" }, "ThingName": { "type": "string" } }, "required": [ "Attribute", "Name", "RoleArn", "ThingName" ], "type": "object" }, "AWS::IoTAnalytics::Pipeline.Filter": { "additionalProperties": false, "properties": { "Filter": { "type": "string" }, "Name": { "type": "string" }, "Next": { "type": "string" } }, "required": [ "Filter", "Name" ], "type": "object" }, "AWS::IoTAnalytics::Pipeline.Lambda": { "additionalProperties": false, "properties": { "BatchSize": { "type": "number" }, "LambdaName": { "type": "string" }, "Name": { "type": "string" }, "Next": { "type": "string" } }, "required": [ "BatchSize", "LambdaName", "Name" ], "type": "object" }, "AWS::IoTAnalytics::Pipeline.Math": { "additionalProperties": false, "properties": { "Attribute": { "type": "string" }, "Math": { "type": "string" }, "Name": { "type": "string" }, "Next": { "type": "string" } }, "required": [ "Attribute", "Math", "Name" ], "type": "object" }, "AWS::IoTAnalytics::Pipeline.RemoveAttributes": { "additionalProperties": false, "properties": { "Attributes": { "items": { "type": "string" }, "type": "array" }, "Name": { "type": "string" }, "Next": { "type": "string" } }, "required": [ "Attributes", "Name" ], "type": "object" }, "AWS::IoTAnalytics::Pipeline.SelectAttributes": { "additionalProperties": false, "properties": { "Attributes": { "items": { "type": "string" }, "type": "array" }, "Name": { "type": "string" }, "Next": { "type": "string" } }, "required": [ "Attributes", "Name" ], "type": "object" }, "AWS::IoTCoreDeviceAdvisor::SuiteDefinition": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "SuiteDefinitionConfiguration": { "$ref": "#/definitions/AWS::IoTCoreDeviceAdvisor::SuiteDefinition.SuiteDefinitionConfiguration" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "SuiteDefinitionConfiguration" ], "type": "object" }, "Type": { "enum": [ "AWS::IoTCoreDeviceAdvisor::SuiteDefinition" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::IoTCoreDeviceAdvisor::SuiteDefinition.DeviceUnderTest": { "additionalProperties": false, "properties": { "CertificateArn": { "type": "string" }, "ThingArn": { "type": "string" } }, "type": "object" }, "AWS::IoTCoreDeviceAdvisor::SuiteDefinition.SuiteDefinitionConfiguration": { "additionalProperties": false, "properties": { "DevicePermissionRoleArn": { "type": "string" }, "Devices": { "items": { "$ref": "#/definitions/AWS::IoTCoreDeviceAdvisor::SuiteDefinition.DeviceUnderTest" }, "type": "array" }, "IntendedForQualification": { "type": "boolean" }, "RootGroup": { "type": "string" }, "SuiteDefinitionName": { "type": "string" } }, "required": [ "DevicePermissionRoleArn", "RootGroup" ], "type": "object" }, "AWS::IoTEvents::AlarmModel": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AlarmCapabilities": { "$ref": "#/definitions/AWS::IoTEvents::AlarmModel.AlarmCapabilities" }, "AlarmEventActions": { "$ref": "#/definitions/AWS::IoTEvents::AlarmModel.AlarmEventActions" }, "AlarmModelDescription": { "type": "string" }, "AlarmModelName": { "type": "string" }, "AlarmRule": { "$ref": "#/definitions/AWS::IoTEvents::AlarmModel.AlarmRule" }, "Key": { "type": "string" }, "RoleArn": { "type": "string" }, "Severity": { "type": "number" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "AlarmRule", "RoleArn" ], "type": "object" }, "Type": { "enum": [ "AWS::IoTEvents::AlarmModel" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::IoTEvents::AlarmModel.AcknowledgeFlow": { "additionalProperties": false, "properties": { "Enabled": { "type": "boolean" } }, "type": "object" }, "AWS::IoTEvents::AlarmModel.AlarmAction": { "additionalProperties": false, "properties": { "DynamoDB": { "$ref": "#/definitions/AWS::IoTEvents::AlarmModel.DynamoDB" }, "DynamoDBv2": { "$ref": "#/definitions/AWS::IoTEvents::AlarmModel.DynamoDBv2" }, "Firehose": { "$ref": "#/definitions/AWS::IoTEvents::AlarmModel.Firehose" }, "IotEvents": { "$ref": "#/definitions/AWS::IoTEvents::AlarmModel.IotEvents" }, "IotSiteWise": { "$ref": "#/definitions/AWS::IoTEvents::AlarmModel.IotSiteWise" }, "IotTopicPublish": { "$ref": "#/definitions/AWS::IoTEvents::AlarmModel.IotTopicPublish" }, "Lambda": { "$ref": "#/definitions/AWS::IoTEvents::AlarmModel.Lambda" }, "Sns": { "$ref": "#/definitions/AWS::IoTEvents::AlarmModel.Sns" }, "Sqs": { "$ref": "#/definitions/AWS::IoTEvents::AlarmModel.Sqs" } }, "type": "object" }, "AWS::IoTEvents::AlarmModel.AlarmCapabilities": { "additionalProperties": false, "properties": { "AcknowledgeFlow": { "$ref": "#/definitions/AWS::IoTEvents::AlarmModel.AcknowledgeFlow" }, "InitializationConfiguration": { "$ref": "#/definitions/AWS::IoTEvents::AlarmModel.InitializationConfiguration" } }, "type": "object" }, "AWS::IoTEvents::AlarmModel.AlarmEventActions": { "additionalProperties": false, "properties": { "AlarmActions": { "items": { "$ref": "#/definitions/AWS::IoTEvents::AlarmModel.AlarmAction" }, "type": "array" } }, "type": "object" }, "AWS::IoTEvents::AlarmModel.AlarmRule": { "additionalProperties": false, "properties": { "SimpleRule": { "$ref": "#/definitions/AWS::IoTEvents::AlarmModel.SimpleRule" } }, "type": "object" }, "AWS::IoTEvents::AlarmModel.AssetPropertyTimestamp": { "additionalProperties": false, "properties": { "OffsetInNanos": { "type": "string" }, "TimeInSeconds": { "type": "string" } }, "required": [ "TimeInSeconds" ], "type": "object" }, "AWS::IoTEvents::AlarmModel.AssetPropertyValue": { "additionalProperties": false, "properties": { "Quality": { "type": "string" }, "Timestamp": { "$ref": "#/definitions/AWS::IoTEvents::AlarmModel.AssetPropertyTimestamp" }, "Value": { "$ref": "#/definitions/AWS::IoTEvents::AlarmModel.AssetPropertyVariant" } }, "required": [ "Value" ], "type": "object" }, "AWS::IoTEvents::AlarmModel.AssetPropertyVariant": { "additionalProperties": false, "properties": { "BooleanValue": { "type": "string" }, "DoubleValue": { "type": "string" }, "IntegerValue": { "type": "string" }, "StringValue": { "type": "string" } }, "type": "object" }, "AWS::IoTEvents::AlarmModel.DynamoDB": { "additionalProperties": false, "properties": { "HashKeyField": { "type": "string" }, "HashKeyType": { "type": "string" }, "HashKeyValue": { "type": "string" }, "Operation": { "type": "string" }, "Payload": { "$ref": "#/definitions/AWS::IoTEvents::AlarmModel.Payload" }, "PayloadField": { "type": "string" }, "RangeKeyField": { "type": "string" }, "RangeKeyType": { "type": "string" }, "RangeKeyValue": { "type": "string" }, "TableName": { "type": "string" } }, "required": [ "HashKeyField", "HashKeyValue", "TableName" ], "type": "object" }, "AWS::IoTEvents::AlarmModel.DynamoDBv2": { "additionalProperties": false, "properties": { "Payload": { "$ref": "#/definitions/AWS::IoTEvents::AlarmModel.Payload" }, "TableName": { "type": "string" } }, "required": [ "TableName" ], "type": "object" }, "AWS::IoTEvents::AlarmModel.Firehose": { "additionalProperties": false, "properties": { "DeliveryStreamName": { "type": "string" }, "Payload": { "$ref": "#/definitions/AWS::IoTEvents::AlarmModel.Payload" }, "Separator": { "type": "string" } }, "required": [ "DeliveryStreamName" ], "type": "object" }, "AWS::IoTEvents::AlarmModel.InitializationConfiguration": { "additionalProperties": false, "properties": { "DisabledOnInitialization": { "type": "boolean" } }, "required": [ "DisabledOnInitialization" ], "type": "object" }, "AWS::IoTEvents::AlarmModel.IotEvents": { "additionalProperties": false, "properties": { "InputName": { "type": "string" }, "Payload": { "$ref": "#/definitions/AWS::IoTEvents::AlarmModel.Payload" } }, "required": [ "InputName" ], "type": "object" }, "AWS::IoTEvents::AlarmModel.IotSiteWise": { "additionalProperties": false, "properties": { "AssetId": { "type": "string" }, "EntryId": { "type": "string" }, "PropertyAlias": { "type": "string" }, "PropertyId": { "type": "string" }, "PropertyValue": { "$ref": "#/definitions/AWS::IoTEvents::AlarmModel.AssetPropertyValue" } }, "type": "object" }, "AWS::IoTEvents::AlarmModel.IotTopicPublish": { "additionalProperties": false, "properties": { "MqttTopic": { "type": "string" }, "Payload": { "$ref": "#/definitions/AWS::IoTEvents::AlarmModel.Payload" } }, "required": [ "MqttTopic" ], "type": "object" }, "AWS::IoTEvents::AlarmModel.Lambda": { "additionalProperties": false, "properties": { "FunctionArn": { "type": "string" }, "Payload": { "$ref": "#/definitions/AWS::IoTEvents::AlarmModel.Payload" } }, "required": [ "FunctionArn" ], "type": "object" }, "AWS::IoTEvents::AlarmModel.Payload": { "additionalProperties": false, "properties": { "ContentExpression": { "type": "string" }, "Type": { "type": "string" } }, "required": [ "ContentExpression", "Type" ], "type": "object" }, "AWS::IoTEvents::AlarmModel.SimpleRule": { "additionalProperties": false, "properties": { "ComparisonOperator": { "type": "string" }, "InputProperty": { "type": "string" }, "Threshold": { "type": "string" } }, "required": [ "ComparisonOperator", "InputProperty", "Threshold" ], "type": "object" }, "AWS::IoTEvents::AlarmModel.Sns": { "additionalProperties": false, "properties": { "Payload": { "$ref": "#/definitions/AWS::IoTEvents::AlarmModel.Payload" }, "TargetArn": { "type": "string" } }, "required": [ "TargetArn" ], "type": "object" }, "AWS::IoTEvents::AlarmModel.Sqs": { "additionalProperties": false, "properties": { "Payload": { "$ref": "#/definitions/AWS::IoTEvents::AlarmModel.Payload" }, "QueueUrl": { "type": "string" }, "UseBase64": { "type": "boolean" } }, "required": [ "QueueUrl" ], "type": "object" }, "AWS::IoTEvents::DetectorModel": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "DetectorModelDefinition": { "$ref": "#/definitions/AWS::IoTEvents::DetectorModel.DetectorModelDefinition" }, "DetectorModelDescription": { "type": "string" }, "DetectorModelName": { "type": "string" }, "EvaluationMethod": { "type": "string" }, "Key": { "type": "string" }, "RoleArn": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "DetectorModelDefinition", "RoleArn" ], "type": "object" }, "Type": { "enum": [ "AWS::IoTEvents::DetectorModel" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::IoTEvents::DetectorModel.Action": { "additionalProperties": false, "properties": { "ClearTimer": { "$ref": "#/definitions/AWS::IoTEvents::DetectorModel.ClearTimer" }, "DynamoDB": { "$ref": "#/definitions/AWS::IoTEvents::DetectorModel.DynamoDB" }, "DynamoDBv2": { "$ref": "#/definitions/AWS::IoTEvents::DetectorModel.DynamoDBv2" }, "Firehose": { "$ref": "#/definitions/AWS::IoTEvents::DetectorModel.Firehose" }, "IotEvents": { "$ref": "#/definitions/AWS::IoTEvents::DetectorModel.IotEvents" }, "IotSiteWise": { "$ref": "#/definitions/AWS::IoTEvents::DetectorModel.IotSiteWise" }, "IotTopicPublish": { "$ref": "#/definitions/AWS::IoTEvents::DetectorModel.IotTopicPublish" }, "Lambda": { "$ref": "#/definitions/AWS::IoTEvents::DetectorModel.Lambda" }, "ResetTimer": { "$ref": "#/definitions/AWS::IoTEvents::DetectorModel.ResetTimer" }, "SetTimer": { "$ref": "#/definitions/AWS::IoTEvents::DetectorModel.SetTimer" }, "SetVariable": { "$ref": "#/definitions/AWS::IoTEvents::DetectorModel.SetVariable" }, "Sns": { "$ref": "#/definitions/AWS::IoTEvents::DetectorModel.Sns" }, "Sqs": { "$ref": "#/definitions/AWS::IoTEvents::DetectorModel.Sqs" } }, "type": "object" }, "AWS::IoTEvents::DetectorModel.AssetPropertyTimestamp": { "additionalProperties": false, "properties": { "OffsetInNanos": { "type": "string" }, "TimeInSeconds": { "type": "string" } }, "required": [ "TimeInSeconds" ], "type": "object" }, "AWS::IoTEvents::DetectorModel.AssetPropertyValue": { "additionalProperties": false, "properties": { "Quality": { "type": "string" }, "Timestamp": { "$ref": "#/definitions/AWS::IoTEvents::DetectorModel.AssetPropertyTimestamp" }, "Value": { "$ref": "#/definitions/AWS::IoTEvents::DetectorModel.AssetPropertyVariant" } }, "required": [ "Value" ], "type": "object" }, "AWS::IoTEvents::DetectorModel.AssetPropertyVariant": { "additionalProperties": false, "properties": { "BooleanValue": { "type": "string" }, "DoubleValue": { "type": "string" }, "IntegerValue": { "type": "string" }, "StringValue": { "type": "string" } }, "type": "object" }, "AWS::IoTEvents::DetectorModel.ClearTimer": { "additionalProperties": false, "properties": { "TimerName": { "type": "string" } }, "required": [ "TimerName" ], "type": "object" }, "AWS::IoTEvents::DetectorModel.DetectorModelDefinition": { "additionalProperties": false, "properties": { "InitialStateName": { "type": "string" }, "States": { "items": { "$ref": "#/definitions/AWS::IoTEvents::DetectorModel.State" }, "type": "array" } }, "required": [ "InitialStateName", "States" ], "type": "object" }, "AWS::IoTEvents::DetectorModel.DynamoDB": { "additionalProperties": false, "properties": { "HashKeyField": { "type": "string" }, "HashKeyType": { "type": "string" }, "HashKeyValue": { "type": "string" }, "Operation": { "type": "string" }, "Payload": { "$ref": "#/definitions/AWS::IoTEvents::DetectorModel.Payload" }, "PayloadField": { "type": "string" }, "RangeKeyField": { "type": "string" }, "RangeKeyType": { "type": "string" }, "RangeKeyValue": { "type": "string" }, "TableName": { "type": "string" } }, "required": [ "HashKeyField", "HashKeyValue", "TableName" ], "type": "object" }, "AWS::IoTEvents::DetectorModel.DynamoDBv2": { "additionalProperties": false, "properties": { "Payload": { "$ref": "#/definitions/AWS::IoTEvents::DetectorModel.Payload" }, "TableName": { "type": "string" } }, "required": [ "TableName" ], "type": "object" }, "AWS::IoTEvents::DetectorModel.Event": { "additionalProperties": false, "properties": { "Actions": { "items": { "$ref": "#/definitions/AWS::IoTEvents::DetectorModel.Action" }, "type": "array" }, "Condition": { "type": "string" }, "EventName": { "type": "string" } }, "required": [ "EventName" ], "type": "object" }, "AWS::IoTEvents::DetectorModel.Firehose": { "additionalProperties": false, "properties": { "DeliveryStreamName": { "type": "string" }, "Payload": { "$ref": "#/definitions/AWS::IoTEvents::DetectorModel.Payload" }, "Separator": { "type": "string" } }, "required": [ "DeliveryStreamName" ], "type": "object" }, "AWS::IoTEvents::DetectorModel.IotEvents": { "additionalProperties": false, "properties": { "InputName": { "type": "string" }, "Payload": { "$ref": "#/definitions/AWS::IoTEvents::DetectorModel.Payload" } }, "required": [ "InputName" ], "type": "object" }, "AWS::IoTEvents::DetectorModel.IotSiteWise": { "additionalProperties": false, "properties": { "AssetId": { "type": "string" }, "EntryId": { "type": "string" }, "PropertyAlias": { "type": "string" }, "PropertyId": { "type": "string" }, "PropertyValue": { "$ref": "#/definitions/AWS::IoTEvents::DetectorModel.AssetPropertyValue" } }, "required": [ "PropertyValue" ], "type": "object" }, "AWS::IoTEvents::DetectorModel.IotTopicPublish": { "additionalProperties": false, "properties": { "MqttTopic": { "type": "string" }, "Payload": { "$ref": "#/definitions/AWS::IoTEvents::DetectorModel.Payload" } }, "required": [ "MqttTopic" ], "type": "object" }, "AWS::IoTEvents::DetectorModel.Lambda": { "additionalProperties": false, "properties": { "FunctionArn": { "type": "string" }, "Payload": { "$ref": "#/definitions/AWS::IoTEvents::DetectorModel.Payload" } }, "required": [ "FunctionArn" ], "type": "object" }, "AWS::IoTEvents::DetectorModel.OnEnter": { "additionalProperties": false, "properties": { "Events": { "items": { "$ref": "#/definitions/AWS::IoTEvents::DetectorModel.Event" }, "type": "array" } }, "type": "object" }, "AWS::IoTEvents::DetectorModel.OnExit": { "additionalProperties": false, "properties": { "Events": { "items": { "$ref": "#/definitions/AWS::IoTEvents::DetectorModel.Event" }, "type": "array" } }, "type": "object" }, "AWS::IoTEvents::DetectorModel.OnInput": { "additionalProperties": false, "properties": { "Events": { "items": { "$ref": "#/definitions/AWS::IoTEvents::DetectorModel.Event" }, "type": "array" }, "TransitionEvents": { "items": { "$ref": "#/definitions/AWS::IoTEvents::DetectorModel.TransitionEvent" }, "type": "array" } }, "type": "object" }, "AWS::IoTEvents::DetectorModel.Payload": { "additionalProperties": false, "properties": { "ContentExpression": { "type": "string" }, "Type": { "type": "string" } }, "required": [ "ContentExpression", "Type" ], "type": "object" }, "AWS::IoTEvents::DetectorModel.ResetTimer": { "additionalProperties": false, "properties": { "TimerName": { "type": "string" } }, "required": [ "TimerName" ], "type": "object" }, "AWS::IoTEvents::DetectorModel.SetTimer": { "additionalProperties": false, "properties": { "DurationExpression": { "type": "string" }, "Seconds": { "type": "number" }, "TimerName": { "type": "string" } }, "required": [ "TimerName" ], "type": "object" }, "AWS::IoTEvents::DetectorModel.SetVariable": { "additionalProperties": false, "properties": { "Value": { "type": "string" }, "VariableName": { "type": "string" } }, "required": [ "Value", "VariableName" ], "type": "object" }, "AWS::IoTEvents::DetectorModel.Sns": { "additionalProperties": false, "properties": { "Payload": { "$ref": "#/definitions/AWS::IoTEvents::DetectorModel.Payload" }, "TargetArn": { "type": "string" } }, "required": [ "TargetArn" ], "type": "object" }, "AWS::IoTEvents::DetectorModel.Sqs": { "additionalProperties": false, "properties": { "Payload": { "$ref": "#/definitions/AWS::IoTEvents::DetectorModel.Payload" }, "QueueUrl": { "type": "string" }, "UseBase64": { "type": "boolean" } }, "required": [ "QueueUrl" ], "type": "object" }, "AWS::IoTEvents::DetectorModel.State": { "additionalProperties": false, "properties": { "OnEnter": { "$ref": "#/definitions/AWS::IoTEvents::DetectorModel.OnEnter" }, "OnExit": { "$ref": "#/definitions/AWS::IoTEvents::DetectorModel.OnExit" }, "OnInput": { "$ref": "#/definitions/AWS::IoTEvents::DetectorModel.OnInput" }, "StateName": { "type": "string" } }, "required": [ "StateName" ], "type": "object" }, "AWS::IoTEvents::DetectorModel.TransitionEvent": { "additionalProperties": false, "properties": { "Actions": { "items": { "$ref": "#/definitions/AWS::IoTEvents::DetectorModel.Action" }, "type": "array" }, "Condition": { "type": "string" }, "EventName": { "type": "string" }, "NextState": { "type": "string" } }, "required": [ "Condition", "EventName", "NextState" ], "type": "object" }, "AWS::IoTEvents::Input": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "InputDefinition": { "$ref": "#/definitions/AWS::IoTEvents::Input.InputDefinition" }, "InputDescription": { "type": "string" }, "InputName": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "InputDefinition" ], "type": "object" }, "Type": { "enum": [ "AWS::IoTEvents::Input" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::IoTEvents::Input.Attribute": { "additionalProperties": false, "properties": { "JsonPath": { "type": "string" } }, "required": [ "JsonPath" ], "type": "object" }, "AWS::IoTEvents::Input.InputDefinition": { "additionalProperties": false, "properties": { "Attributes": { "items": { "$ref": "#/definitions/AWS::IoTEvents::Input.Attribute" }, "type": "array" } }, "required": [ "Attributes" ], "type": "object" }, "AWS::IoTFleetHub::Application": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ApplicationDescription": { "type": "string" }, "ApplicationName": { "type": "string" }, "RoleArn": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "ApplicationName", "RoleArn" ], "type": "object" }, "Type": { "enum": [ "AWS::IoTFleetHub::Application" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::IoTFleetWise::Campaign": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Action": { "type": "string" }, "CollectionScheme": { "$ref": "#/definitions/AWS::IoTFleetWise::Campaign.CollectionScheme" }, "Compression": { "type": "string" }, "DataDestinationConfigs": { "items": { "$ref": "#/definitions/AWS::IoTFleetWise::Campaign.DataDestinationConfig" }, "type": "array" }, "DataExtraDimensions": { "items": { "type": "string" }, "type": "array" }, "Description": { "type": "string" }, "DiagnosticsMode": { "type": "string" }, "ExpiryTime": { "type": "string" }, "Name": { "type": "string" }, "PostTriggerCollectionDuration": { "type": "number" }, "Priority": { "type": "number" }, "SignalCatalogArn": { "type": "string" }, "SignalsToCollect": { "items": { "$ref": "#/definitions/AWS::IoTFleetWise::Campaign.SignalInformation" }, "type": "array" }, "SpoolingMode": { "type": "string" }, "StartTime": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "TargetArn": { "type": "string" } }, "required": [ "Action", "CollectionScheme", "Name", "SignalCatalogArn", "TargetArn" ], "type": "object" }, "Type": { "enum": [ "AWS::IoTFleetWise::Campaign" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::IoTFleetWise::Campaign.CollectionScheme": { "additionalProperties": false, "properties": { "ConditionBasedCollectionScheme": { "$ref": "#/definitions/AWS::IoTFleetWise::Campaign.ConditionBasedCollectionScheme" }, "TimeBasedCollectionScheme": { "$ref": "#/definitions/AWS::IoTFleetWise::Campaign.TimeBasedCollectionScheme" } }, "type": "object" }, "AWS::IoTFleetWise::Campaign.ConditionBasedCollectionScheme": { "additionalProperties": false, "properties": { "ConditionLanguageVersion": { "type": "number" }, "Expression": { "type": "string" }, "MinimumTriggerIntervalMs": { "type": "number" }, "TriggerMode": { "type": "string" } }, "required": [ "Expression" ], "type": "object" }, "AWS::IoTFleetWise::Campaign.DataDestinationConfig": { "additionalProperties": false, "properties": { "S3Config": { "$ref": "#/definitions/AWS::IoTFleetWise::Campaign.S3Config" }, "TimestreamConfig": { "$ref": "#/definitions/AWS::IoTFleetWise::Campaign.TimestreamConfig" } }, "type": "object" }, "AWS::IoTFleetWise::Campaign.S3Config": { "additionalProperties": false, "properties": { "BucketArn": { "type": "string" }, "DataFormat": { "type": "string" }, "Prefix": { "type": "string" }, "StorageCompressionFormat": { "type": "string" } }, "required": [ "BucketArn" ], "type": "object" }, "AWS::IoTFleetWise::Campaign.SignalInformation": { "additionalProperties": false, "properties": { "MaxSampleCount": { "type": "number" }, "MinimumSamplingIntervalMs": { "type": "number" }, "Name": { "type": "string" } }, "required": [ "Name" ], "type": "object" }, "AWS::IoTFleetWise::Campaign.TimeBasedCollectionScheme": { "additionalProperties": false, "properties": { "PeriodMs": { "type": "number" } }, "required": [ "PeriodMs" ], "type": "object" }, "AWS::IoTFleetWise::Campaign.TimestreamConfig": { "additionalProperties": false, "properties": { "ExecutionRoleArn": { "type": "string" }, "TimestreamTableArn": { "type": "string" } }, "required": [ "ExecutionRoleArn", "TimestreamTableArn" ], "type": "object" }, "AWS::IoTFleetWise::DecoderManifest": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "ModelManifestArn": { "type": "string" }, "Name": { "type": "string" }, "NetworkInterfaces": { "items": { "$ref": "#/definitions/AWS::IoTFleetWise::DecoderManifest.NetworkInterfacesItems" }, "type": "array" }, "SignalDecoders": { "items": { "$ref": "#/definitions/AWS::IoTFleetWise::DecoderManifest.SignalDecodersItems" }, "type": "array" }, "Status": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "ModelManifestArn", "Name" ], "type": "object" }, "Type": { "enum": [ "AWS::IoTFleetWise::DecoderManifest" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::IoTFleetWise::DecoderManifest.CanInterface": { "additionalProperties": false, "properties": { "Name": { "type": "string" }, "ProtocolName": { "type": "string" }, "ProtocolVersion": { "type": "string" } }, "required": [ "Name" ], "type": "object" }, "AWS::IoTFleetWise::DecoderManifest.CanSignal": { "additionalProperties": false, "properties": { "Factor": { "type": "string" }, "IsBigEndian": { "type": "string" }, "IsSigned": { "type": "string" }, "Length": { "type": "string" }, "MessageId": { "type": "string" }, "Name": { "type": "string" }, "Offset": { "type": "string" }, "StartBit": { "type": "string" } }, "required": [ "Factor", "IsBigEndian", "IsSigned", "Length", "MessageId", "Offset", "StartBit" ], "type": "object" }, "AWS::IoTFleetWise::DecoderManifest.NetworkInterfacesItems": { "additionalProperties": false, "properties": { "CanInterface": { "$ref": "#/definitions/AWS::IoTFleetWise::DecoderManifest.CanInterface" }, "InterfaceId": { "type": "string" }, "ObdInterface": { "$ref": "#/definitions/AWS::IoTFleetWise::DecoderManifest.ObdInterface" }, "Type": { "type": "string" } }, "required": [ "InterfaceId", "Type" ], "type": "object" }, "AWS::IoTFleetWise::DecoderManifest.ObdInterface": { "additionalProperties": false, "properties": { "DtcRequestIntervalSeconds": { "type": "string" }, "HasTransmissionEcu": { "type": "string" }, "Name": { "type": "string" }, "ObdStandard": { "type": "string" }, "PidRequestIntervalSeconds": { "type": "string" }, "RequestMessageId": { "type": "string" }, "UseExtendedIds": { "type": "string" } }, "required": [ "Name", "RequestMessageId" ], "type": "object" }, "AWS::IoTFleetWise::DecoderManifest.ObdSignal": { "additionalProperties": false, "properties": { "BitMaskLength": { "type": "string" }, "BitRightShift": { "type": "string" }, "ByteLength": { "type": "string" }, "Offset": { "type": "string" }, "Pid": { "type": "string" }, "PidResponseLength": { "type": "string" }, "Scaling": { "type": "string" }, "ServiceMode": { "type": "string" }, "StartByte": { "type": "string" } }, "required": [ "ByteLength", "Offset", "Pid", "PidResponseLength", "Scaling", "ServiceMode", "StartByte" ], "type": "object" }, "AWS::IoTFleetWise::DecoderManifest.SignalDecodersItems": { "additionalProperties": false, "properties": { "CanSignal": { "$ref": "#/definitions/AWS::IoTFleetWise::DecoderManifest.CanSignal" }, "FullyQualifiedName": { "type": "string" }, "InterfaceId": { "type": "string" }, "ObdSignal": { "$ref": "#/definitions/AWS::IoTFleetWise::DecoderManifest.ObdSignal" }, "Type": { "type": "string" } }, "required": [ "FullyQualifiedName", "InterfaceId", "Type" ], "type": "object" }, "AWS::IoTFleetWise::Fleet": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "Id": { "type": "string" }, "SignalCatalogArn": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "Id", "SignalCatalogArn" ], "type": "object" }, "Type": { "enum": [ "AWS::IoTFleetWise::Fleet" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::IoTFleetWise::ModelManifest": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "Name": { "type": "string" }, "Nodes": { "items": { "type": "string" }, "type": "array" }, "SignalCatalogArn": { "type": "string" }, "Status": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "Name", "SignalCatalogArn" ], "type": "object" }, "Type": { "enum": [ "AWS::IoTFleetWise::ModelManifest" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::IoTFleetWise::SignalCatalog": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "Name": { "type": "string" }, "NodeCounts": { "$ref": "#/definitions/AWS::IoTFleetWise::SignalCatalog.NodeCounts" }, "Nodes": { "items": { "$ref": "#/definitions/AWS::IoTFleetWise::SignalCatalog.Node" }, "type": "array" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "type": "object" }, "Type": { "enum": [ "AWS::IoTFleetWise::SignalCatalog" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::IoTFleetWise::SignalCatalog.Actuator": { "additionalProperties": false, "properties": { "AllowedValues": { "items": { "type": "string" }, "type": "array" }, "AssignedValue": { "type": "string" }, "DataType": { "type": "string" }, "Description": { "type": "string" }, "FullyQualifiedName": { "type": "string" }, "Max": { "type": "number" }, "Min": { "type": "number" }, "Unit": { "type": "string" } }, "required": [ "DataType", "FullyQualifiedName" ], "type": "object" }, "AWS::IoTFleetWise::SignalCatalog.Attribute": { "additionalProperties": false, "properties": { "AllowedValues": { "items": { "type": "string" }, "type": "array" }, "AssignedValue": { "type": "string" }, "DataType": { "type": "string" }, "DefaultValue": { "type": "string" }, "Description": { "type": "string" }, "FullyQualifiedName": { "type": "string" }, "Max": { "type": "number" }, "Min": { "type": "number" }, "Unit": { "type": "string" } }, "required": [ "DataType", "FullyQualifiedName" ], "type": "object" }, "AWS::IoTFleetWise::SignalCatalog.Branch": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "FullyQualifiedName": { "type": "string" } }, "required": [ "FullyQualifiedName" ], "type": "object" }, "AWS::IoTFleetWise::SignalCatalog.Node": { "additionalProperties": false, "properties": { "Actuator": { "$ref": "#/definitions/AWS::IoTFleetWise::SignalCatalog.Actuator" }, "Attribute": { "$ref": "#/definitions/AWS::IoTFleetWise::SignalCatalog.Attribute" }, "Branch": { "$ref": "#/definitions/AWS::IoTFleetWise::SignalCatalog.Branch" }, "Sensor": { "$ref": "#/definitions/AWS::IoTFleetWise::SignalCatalog.Sensor" } }, "type": "object" }, "AWS::IoTFleetWise::SignalCatalog.NodeCounts": { "additionalProperties": false, "properties": { "TotalActuators": { "type": "number" }, "TotalAttributes": { "type": "number" }, "TotalBranches": { "type": "number" }, "TotalNodes": { "type": "number" }, "TotalSensors": { "type": "number" } }, "type": "object" }, "AWS::IoTFleetWise::SignalCatalog.Sensor": { "additionalProperties": false, "properties": { "AllowedValues": { "items": { "type": "string" }, "type": "array" }, "DataType": { "type": "string" }, "Description": { "type": "string" }, "FullyQualifiedName": { "type": "string" }, "Max": { "type": "number" }, "Min": { "type": "number" }, "Unit": { "type": "string" } }, "required": [ "DataType", "FullyQualifiedName" ], "type": "object" }, "AWS::IoTFleetWise::Vehicle": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AssociationBehavior": { "type": "string" }, "Attributes": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" }, "DecoderManifestArn": { "type": "string" }, "ModelManifestArn": { "type": "string" }, "Name": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "DecoderManifestArn", "ModelManifestArn", "Name" ], "type": "object" }, "Type": { "enum": [ "AWS::IoTFleetWise::Vehicle" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::IoTSiteWise::AccessPolicy": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AccessPolicyIdentity": { "$ref": "#/definitions/AWS::IoTSiteWise::AccessPolicy.AccessPolicyIdentity" }, "AccessPolicyPermission": { "type": "string" }, "AccessPolicyResource": { "$ref": "#/definitions/AWS::IoTSiteWise::AccessPolicy.AccessPolicyResource" } }, "required": [ "AccessPolicyIdentity", "AccessPolicyPermission", "AccessPolicyResource" ], "type": "object" }, "Type": { "enum": [ "AWS::IoTSiteWise::AccessPolicy" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::IoTSiteWise::AccessPolicy.AccessPolicyIdentity": { "additionalProperties": false, "properties": { "IamRole": { "$ref": "#/definitions/AWS::IoTSiteWise::AccessPolicy.IamRole" }, "IamUser": { "$ref": "#/definitions/AWS::IoTSiteWise::AccessPolicy.IamUser" }, "User": { "$ref": "#/definitions/AWS::IoTSiteWise::AccessPolicy.User" } }, "type": "object" }, "AWS::IoTSiteWise::AccessPolicy.AccessPolicyResource": { "additionalProperties": false, "properties": { "Portal": { "$ref": "#/definitions/AWS::IoTSiteWise::AccessPolicy.Portal" }, "Project": { "$ref": "#/definitions/AWS::IoTSiteWise::AccessPolicy.Project" } }, "type": "object" }, "AWS::IoTSiteWise::AccessPolicy.IamRole": { "additionalProperties": false, "properties": { "arn": { "type": "string" } }, "type": "object" }, "AWS::IoTSiteWise::AccessPolicy.IamUser": { "additionalProperties": false, "properties": { "arn": { "type": "string" } }, "type": "object" }, "AWS::IoTSiteWise::AccessPolicy.Portal": { "additionalProperties": false, "properties": { "id": { "type": "string" } }, "type": "object" }, "AWS::IoTSiteWise::AccessPolicy.Project": { "additionalProperties": false, "properties": { "id": { "type": "string" } }, "type": "object" }, "AWS::IoTSiteWise::AccessPolicy.User": { "additionalProperties": false, "properties": { "id": { "type": "string" } }, "type": "object" }, "AWS::IoTSiteWise::Asset": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AssetDescription": { "type": "string" }, "AssetHierarchies": { "items": { "$ref": "#/definitions/AWS::IoTSiteWise::Asset.AssetHierarchy" }, "type": "array" }, "AssetModelId": { "type": "string" }, "AssetName": { "type": "string" }, "AssetProperties": { "items": { "$ref": "#/definitions/AWS::IoTSiteWise::Asset.AssetProperty" }, "type": "array" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "AssetModelId", "AssetName" ], "type": "object" }, "Type": { "enum": [ "AWS::IoTSiteWise::Asset" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::IoTSiteWise::Asset.AssetHierarchy": { "additionalProperties": false, "properties": { "ChildAssetId": { "type": "string" }, "LogicalId": { "type": "string" } }, "required": [ "ChildAssetId", "LogicalId" ], "type": "object" }, "AWS::IoTSiteWise::Asset.AssetProperty": { "additionalProperties": false, "properties": { "Alias": { "type": "string" }, "LogicalId": { "type": "string" }, "NotificationState": { "type": "string" }, "Unit": { "type": "string" } }, "required": [ "LogicalId" ], "type": "object" }, "AWS::IoTSiteWise::AssetModel": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AssetModelCompositeModels": { "items": { "$ref": "#/definitions/AWS::IoTSiteWise::AssetModel.AssetModelCompositeModel" }, "type": "array" }, "AssetModelDescription": { "type": "string" }, "AssetModelHierarchies": { "items": { "$ref": "#/definitions/AWS::IoTSiteWise::AssetModel.AssetModelHierarchy" }, "type": "array" }, "AssetModelName": { "type": "string" }, "AssetModelProperties": { "items": { "$ref": "#/definitions/AWS::IoTSiteWise::AssetModel.AssetModelProperty" }, "type": "array" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "AssetModelName" ], "type": "object" }, "Type": { "enum": [ "AWS::IoTSiteWise::AssetModel" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::IoTSiteWise::AssetModel.AssetModelCompositeModel": { "additionalProperties": false, "properties": { "CompositeModelProperties": { "items": { "$ref": "#/definitions/AWS::IoTSiteWise::AssetModel.AssetModelProperty" }, "type": "array" }, "Description": { "type": "string" }, "Name": { "type": "string" }, "Type": { "type": "string" } }, "required": [ "Name", "Type" ], "type": "object" }, "AWS::IoTSiteWise::AssetModel.AssetModelHierarchy": { "additionalProperties": false, "properties": { "ChildAssetModelId": { "type": "string" }, "LogicalId": { "type": "string" }, "Name": { "type": "string" } }, "required": [ "ChildAssetModelId", "LogicalId", "Name" ], "type": "object" }, "AWS::IoTSiteWise::AssetModel.AssetModelProperty": { "additionalProperties": false, "properties": { "DataType": { "type": "string" }, "DataTypeSpec": { "type": "string" }, "LogicalId": { "type": "string" }, "Name": { "type": "string" }, "Type": { "$ref": "#/definitions/AWS::IoTSiteWise::AssetModel.PropertyType" }, "Unit": { "type": "string" } }, "required": [ "DataType", "LogicalId", "Name", "Type" ], "type": "object" }, "AWS::IoTSiteWise::AssetModel.Attribute": { "additionalProperties": false, "properties": { "DefaultValue": { "type": "string" } }, "type": "object" }, "AWS::IoTSiteWise::AssetModel.ExpressionVariable": { "additionalProperties": false, "properties": { "Name": { "type": "string" }, "Value": { "$ref": "#/definitions/AWS::IoTSiteWise::AssetModel.VariableValue" } }, "required": [ "Name", "Value" ], "type": "object" }, "AWS::IoTSiteWise::AssetModel.Metric": { "additionalProperties": false, "properties": { "Expression": { "type": "string" }, "Variables": { "items": { "$ref": "#/definitions/AWS::IoTSiteWise::AssetModel.ExpressionVariable" }, "type": "array" }, "Window": { "$ref": "#/definitions/AWS::IoTSiteWise::AssetModel.MetricWindow" } }, "required": [ "Expression", "Variables", "Window" ], "type": "object" }, "AWS::IoTSiteWise::AssetModel.MetricWindow": { "additionalProperties": false, "properties": { "Tumbling": { "$ref": "#/definitions/AWS::IoTSiteWise::AssetModel.TumblingWindow" } }, "type": "object" }, "AWS::IoTSiteWise::AssetModel.PropertyType": { "additionalProperties": false, "properties": { "Attribute": { "$ref": "#/definitions/AWS::IoTSiteWise::AssetModel.Attribute" }, "Metric": { "$ref": "#/definitions/AWS::IoTSiteWise::AssetModel.Metric" }, "Transform": { "$ref": "#/definitions/AWS::IoTSiteWise::AssetModel.Transform" }, "TypeName": { "type": "string" } }, "required": [ "TypeName" ], "type": "object" }, "AWS::IoTSiteWise::AssetModel.Transform": { "additionalProperties": false, "properties": { "Expression": { "type": "string" }, "Variables": { "items": { "$ref": "#/definitions/AWS::IoTSiteWise::AssetModel.ExpressionVariable" }, "type": "array" } }, "required": [ "Expression", "Variables" ], "type": "object" }, "AWS::IoTSiteWise::AssetModel.TumblingWindow": { "additionalProperties": false, "properties": { "Interval": { "type": "string" }, "Offset": { "type": "string" } }, "required": [ "Interval" ], "type": "object" }, "AWS::IoTSiteWise::AssetModel.VariableValue": { "additionalProperties": false, "properties": { "HierarchyLogicalId": { "type": "string" }, "PropertyLogicalId": { "type": "string" } }, "required": [ "PropertyLogicalId" ], "type": "object" }, "AWS::IoTSiteWise::Dashboard": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "DashboardDefinition": { "type": "string" }, "DashboardDescription": { "type": "string" }, "DashboardName": { "type": "string" }, "ProjectId": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "DashboardDefinition", "DashboardDescription", "DashboardName" ], "type": "object" }, "Type": { "enum": [ "AWS::IoTSiteWise::Dashboard" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::IoTSiteWise::Gateway": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "GatewayCapabilitySummaries": { "items": { "$ref": "#/definitions/AWS::IoTSiteWise::Gateway.GatewayCapabilitySummary" }, "type": "array" }, "GatewayName": { "type": "string" }, "GatewayPlatform": { "$ref": "#/definitions/AWS::IoTSiteWise::Gateway.GatewayPlatform" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "GatewayName", "GatewayPlatform" ], "type": "object" }, "Type": { "enum": [ "AWS::IoTSiteWise::Gateway" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::IoTSiteWise::Gateway.GatewayCapabilitySummary": { "additionalProperties": false, "properties": { "CapabilityConfiguration": { "type": "string" }, "CapabilityNamespace": { "type": "string" } }, "required": [ "CapabilityNamespace" ], "type": "object" }, "AWS::IoTSiteWise::Gateway.GatewayPlatform": { "additionalProperties": false, "properties": { "Greengrass": { "$ref": "#/definitions/AWS::IoTSiteWise::Gateway.Greengrass" }, "GreengrassV2": { "$ref": "#/definitions/AWS::IoTSiteWise::Gateway.GreengrassV2" } }, "type": "object" }, "AWS::IoTSiteWise::Gateway.Greengrass": { "additionalProperties": false, "properties": { "GroupArn": { "type": "string" } }, "required": [ "GroupArn" ], "type": "object" }, "AWS::IoTSiteWise::Gateway.GreengrassV2": { "additionalProperties": false, "properties": { "CoreDeviceThingName": { "type": "string" } }, "required": [ "CoreDeviceThingName" ], "type": "object" }, "AWS::IoTSiteWise::Portal": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Alarms": { "$ref": "#/definitions/AWS::IoTSiteWise::Portal.Alarms" }, "NotificationSenderEmail": { "type": "string" }, "PortalAuthMode": { "type": "string" }, "PortalContactEmail": { "type": "string" }, "PortalDescription": { "type": "string" }, "PortalName": { "type": "string" }, "RoleArn": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "PortalContactEmail", "PortalName", "RoleArn" ], "type": "object" }, "Type": { "enum": [ "AWS::IoTSiteWise::Portal" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::IoTSiteWise::Portal.Alarms": { "additionalProperties": false, "properties": { "AlarmRoleArn": { "type": "string" }, "NotificationLambdaArn": { "type": "string" } }, "type": "object" }, "AWS::IoTSiteWise::Project": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AssetIds": { "items": { "type": "string" }, "type": "array" }, "PortalId": { "type": "string" }, "ProjectDescription": { "type": "string" }, "ProjectName": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "PortalId", "ProjectName" ], "type": "object" }, "Type": { "enum": [ "AWS::IoTSiteWise::Project" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::IoTThingsGraph::FlowTemplate": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "CompatibleNamespaceVersion": { "type": "number" }, "Definition": { "$ref": "#/definitions/AWS::IoTThingsGraph::FlowTemplate.DefinitionDocument" } }, "required": [ "Definition" ], "type": "object" }, "Type": { "enum": [ "AWS::IoTThingsGraph::FlowTemplate" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::IoTThingsGraph::FlowTemplate.DefinitionDocument": { "additionalProperties": false, "properties": { "Language": { "type": "string" }, "Text": { "type": "string" } }, "required": [ "Language", "Text" ], "type": "object" }, "AWS::IoTTwinMaker::ComponentType": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ComponentTypeId": { "type": "string" }, "Description": { "type": "string" }, "ExtendsFrom": { "items": { "type": "string" }, "type": "array" }, "Functions": { "additionalProperties": false, "patternProperties": { "^[a-zA-Z0-9]+$": { "$ref": "#/definitions/AWS::IoTTwinMaker::ComponentType.Function" } }, "type": "object" }, "IsSingleton": { "type": "boolean" }, "PropertyDefinitions": { "additionalProperties": false, "patternProperties": { "^[a-zA-Z0-9]+$": { "$ref": "#/definitions/AWS::IoTTwinMaker::ComponentType.PropertyDefinition" } }, "type": "object" }, "PropertyGroups": { "additionalProperties": false, "patternProperties": { "^[a-zA-Z0-9]+$": { "$ref": "#/definitions/AWS::IoTTwinMaker::ComponentType.PropertyGroup" } }, "type": "object" }, "Tags": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" }, "WorkspaceId": { "type": "string" } }, "required": [ "ComponentTypeId", "WorkspaceId" ], "type": "object" }, "Type": { "enum": [ "AWS::IoTTwinMaker::ComponentType" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::IoTTwinMaker::ComponentType.DataConnector": { "additionalProperties": false, "properties": { "IsNative": { "type": "boolean" }, "Lambda": { "$ref": "#/definitions/AWS::IoTTwinMaker::ComponentType.LambdaFunction" } }, "type": "object" }, "AWS::IoTTwinMaker::ComponentType.DataType": { "additionalProperties": false, "properties": { "AllowedValues": { "items": { "$ref": "#/definitions/AWS::IoTTwinMaker::ComponentType.DataValue" }, "type": "array" }, "NestedType": { "$ref": "#/definitions/AWS::IoTTwinMaker::ComponentType.DataType" }, "Relationship": { "$ref": "#/definitions/AWS::IoTTwinMaker::ComponentType.Relationship" }, "Type": { "type": "string" }, "UnitOfMeasure": { "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::IoTTwinMaker::ComponentType.DataValue": { "additionalProperties": false, "properties": { "BooleanValue": { "type": "boolean" }, "DoubleValue": { "type": "number" }, "Expression": { "type": "string" }, "IntegerValue": { "type": "number" }, "ListValue": { "items": { "$ref": "#/definitions/AWS::IoTTwinMaker::ComponentType.DataValue" }, "type": "array" }, "LongValue": { "type": "number" }, "MapValue": { "additionalProperties": false, "patternProperties": { "^[a-zA-Z0-9]+$": { "$ref": "#/definitions/AWS::IoTTwinMaker::ComponentType.DataValue" } }, "type": "object" }, "RelationshipValue": { "$ref": "#/definitions/AWS::IoTTwinMaker::ComponentType.RelationshipValue" }, "StringValue": { "type": "string" } }, "type": "object" }, "AWS::IoTTwinMaker::ComponentType.Error": { "additionalProperties": false, "properties": { "Code": { "type": "string" }, "Message": { "type": "string" } }, "type": "object" }, "AWS::IoTTwinMaker::ComponentType.Function": { "additionalProperties": false, "properties": { "ImplementedBy": { "$ref": "#/definitions/AWS::IoTTwinMaker::ComponentType.DataConnector" }, "RequiredProperties": { "items": { "type": "string" }, "type": "array" }, "Scope": { "type": "string" } }, "type": "object" }, "AWS::IoTTwinMaker::ComponentType.LambdaFunction": { "additionalProperties": false, "properties": { "Arn": { "type": "string" } }, "required": [ "Arn" ], "type": "object" }, "AWS::IoTTwinMaker::ComponentType.PropertyDefinition": { "additionalProperties": false, "properties": { "Configurations": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" }, "DataType": { "$ref": "#/definitions/AWS::IoTTwinMaker::ComponentType.DataType" }, "DefaultValue": { "$ref": "#/definitions/AWS::IoTTwinMaker::ComponentType.DataValue" }, "IsExternalId": { "type": "boolean" }, "IsRequiredInEntity": { "type": "boolean" }, "IsStoredExternally": { "type": "boolean" }, "IsTimeSeries": { "type": "boolean" } }, "type": "object" }, "AWS::IoTTwinMaker::ComponentType.PropertyGroup": { "additionalProperties": false, "properties": { "GroupType": { "type": "string" }, "PropertyNames": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::IoTTwinMaker::ComponentType.Relationship": { "additionalProperties": false, "properties": { "RelationshipType": { "type": "string" }, "TargetComponentTypeId": { "type": "string" } }, "type": "object" }, "AWS::IoTTwinMaker::ComponentType.RelationshipValue": { "additionalProperties": false, "properties": { "TargetComponentName": { "type": "string" }, "TargetEntityId": { "type": "string" } }, "type": "object" }, "AWS::IoTTwinMaker::ComponentType.Status": { "additionalProperties": false, "properties": { "Error": { "$ref": "#/definitions/AWS::IoTTwinMaker::ComponentType.Error" }, "State": { "type": "string" } }, "type": "object" }, "AWS::IoTTwinMaker::Entity": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Components": { "additionalProperties": false, "patternProperties": { "^[a-zA-Z0-9]+$": { "$ref": "#/definitions/AWS::IoTTwinMaker::Entity.Component" } }, "type": "object" }, "Description": { "type": "string" }, "EntityId": { "type": "string" }, "EntityName": { "type": "string" }, "ParentEntityId": { "type": "string" }, "Tags": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" }, "WorkspaceId": { "type": "string" } }, "required": [ "EntityName", "WorkspaceId" ], "type": "object" }, "Type": { "enum": [ "AWS::IoTTwinMaker::Entity" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::IoTTwinMaker::Entity.Component": { "additionalProperties": false, "properties": { "ComponentName": { "type": "string" }, "ComponentTypeId": { "type": "string" }, "DefinedIn": { "type": "string" }, "Description": { "type": "string" }, "Properties": { "additionalProperties": false, "patternProperties": { "^[a-zA-Z0-9]+$": { "$ref": "#/definitions/AWS::IoTTwinMaker::Entity.Property" } }, "type": "object" }, "PropertyGroups": { "additionalProperties": false, "patternProperties": { "^[a-zA-Z0-9]+$": { "$ref": "#/definitions/AWS::IoTTwinMaker::Entity.PropertyGroup" } }, "type": "object" }, "Status": { "$ref": "#/definitions/AWS::IoTTwinMaker::Entity.Status" } }, "type": "object" }, "AWS::IoTTwinMaker::Entity.DataType": { "additionalProperties": false, "properties": { "AllowedValues": { "items": { "$ref": "#/definitions/AWS::IoTTwinMaker::Entity.DataValue" }, "type": "array" }, "NestedType": { "$ref": "#/definitions/AWS::IoTTwinMaker::Entity.DataType" }, "Relationship": { "$ref": "#/definitions/AWS::IoTTwinMaker::Entity.Relationship" }, "Type": { "type": "string" }, "UnitOfMeasure": { "type": "string" } }, "type": "object" }, "AWS::IoTTwinMaker::Entity.DataValue": { "additionalProperties": false, "properties": { "BooleanValue": { "type": "boolean" }, "DoubleValue": { "type": "number" }, "Expression": { "type": "string" }, "IntegerValue": { "type": "number" }, "ListValue": { "items": { "$ref": "#/definitions/AWS::IoTTwinMaker::Entity.DataValue" }, "type": "array" }, "LongValue": { "type": "number" }, "MapValue": { "additionalProperties": false, "patternProperties": { "^[a-zA-Z0-9]+$": { "$ref": "#/definitions/AWS::IoTTwinMaker::Entity.DataValue" } }, "type": "object" }, "RelationshipValue": { "$ref": "#/definitions/AWS::IoTTwinMaker::Entity.RelationshipValue" }, "StringValue": { "type": "string" } }, "type": "object" }, "AWS::IoTTwinMaker::Entity.Definition": { "additionalProperties": false, "properties": { "Configuration": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" }, "DataType": { "$ref": "#/definitions/AWS::IoTTwinMaker::Entity.DataType" }, "DefaultValue": { "$ref": "#/definitions/AWS::IoTTwinMaker::Entity.DataValue" }, "IsExternalId": { "type": "boolean" }, "IsFinal": { "type": "boolean" }, "IsImported": { "type": "boolean" }, "IsInherited": { "type": "boolean" }, "IsRequiredInEntity": { "type": "boolean" }, "IsStoredExternally": { "type": "boolean" }, "IsTimeSeries": { "type": "boolean" } }, "type": "object" }, "AWS::IoTTwinMaker::Entity.Error": { "additionalProperties": false, "properties": { "Code": { "type": "string" }, "Message": { "type": "string" } }, "type": "object" }, "AWS::IoTTwinMaker::Entity.Property": { "additionalProperties": false, "properties": { "Definition": { "$ref": "#/definitions/AWS::IoTTwinMaker::Entity.Definition" }, "Value": { "$ref": "#/definitions/AWS::IoTTwinMaker::Entity.DataValue" } }, "type": "object" }, "AWS::IoTTwinMaker::Entity.PropertyGroup": { "additionalProperties": false, "properties": { "GroupType": { "type": "string" }, "PropertyNames": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::IoTTwinMaker::Entity.Relationship": { "additionalProperties": false, "properties": { "RelationshipType": { "type": "string" }, "TargetComponentTypeId": { "type": "string" } }, "type": "object" }, "AWS::IoTTwinMaker::Entity.RelationshipValue": { "additionalProperties": false, "properties": { "TargetComponentName": { "type": "string" }, "TargetEntityId": { "type": "string" } }, "type": "object" }, "AWS::IoTTwinMaker::Entity.Status": { "additionalProperties": false, "properties": { "Error": { "$ref": "#/definitions/AWS::IoTTwinMaker::Entity.Error" }, "State": { "type": "string" } }, "type": "object" }, "AWS::IoTTwinMaker::Scene": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Capabilities": { "items": { "type": "string" }, "type": "array" }, "ContentLocation": { "type": "string" }, "Description": { "type": "string" }, "SceneId": { "type": "string" }, "SceneMetadata": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" }, "Tags": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" }, "WorkspaceId": { "type": "string" } }, "required": [ "ContentLocation", "SceneId", "WorkspaceId" ], "type": "object" }, "Type": { "enum": [ "AWS::IoTTwinMaker::Scene" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::IoTTwinMaker::SyncJob": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "SyncRole": { "type": "string" }, "SyncSource": { "type": "string" }, "Tags": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" }, "WorkspaceId": { "type": "string" } }, "required": [ "SyncRole", "SyncSource", "WorkspaceId" ], "type": "object" }, "Type": { "enum": [ "AWS::IoTTwinMaker::SyncJob" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::IoTTwinMaker::Workspace": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "Role": { "type": "string" }, "S3Location": { "type": "string" }, "Tags": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" }, "WorkspaceId": { "type": "string" } }, "required": [ "Role", "S3Location", "WorkspaceId" ], "type": "object" }, "Type": { "enum": [ "AWS::IoTTwinMaker::Workspace" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::IoTWireless::Destination": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "Expression": { "type": "string" }, "ExpressionType": { "type": "string" }, "Name": { "type": "string" }, "RoleArn": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "Expression", "ExpressionType", "Name", "RoleArn" ], "type": "object" }, "Type": { "enum": [ "AWS::IoTWireless::Destination" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::IoTWireless::DeviceProfile": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "LoRaWAN": { "$ref": "#/definitions/AWS::IoTWireless::DeviceProfile.LoRaWANDeviceProfile" }, "Name": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "type": "object" }, "Type": { "enum": [ "AWS::IoTWireless::DeviceProfile" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::IoTWireless::DeviceProfile.LoRaWANDeviceProfile": { "additionalProperties": false, "properties": { "ClassBTimeout": { "type": "number" }, "ClassCTimeout": { "type": "number" }, "FactoryPresetFreqsList": { "items": { "type": "number" }, "type": "array" }, "MacVersion": { "type": "string" }, "MaxDutyCycle": { "type": "number" }, "MaxEirp": { "type": "number" }, "PingSlotDr": { "type": "number" }, "PingSlotFreq": { "type": "number" }, "PingSlotPeriod": { "type": "number" }, "RegParamsRevision": { "type": "string" }, "RfRegion": { "type": "string" }, "RxDataRate2": { "type": "number" }, "RxDelay1": { "type": "number" }, "RxDrOffset1": { "type": "number" }, "RxFreq2": { "type": "number" }, "Supports32BitFCnt": { "type": "boolean" }, "SupportsClassB": { "type": "boolean" }, "SupportsClassC": { "type": "boolean" }, "SupportsJoin": { "type": "boolean" } }, "type": "object" }, "AWS::IoTWireless::FuotaTask": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AssociateMulticastGroup": { "type": "string" }, "AssociateWirelessDevice": { "type": "string" }, "Description": { "type": "string" }, "DisassociateMulticastGroup": { "type": "string" }, "DisassociateWirelessDevice": { "type": "string" }, "FirmwareUpdateImage": { "type": "string" }, "FirmwareUpdateRole": { "type": "string" }, "LoRaWAN": { "$ref": "#/definitions/AWS::IoTWireless::FuotaTask.LoRaWAN" }, "Name": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "FirmwareUpdateImage", "FirmwareUpdateRole", "LoRaWAN" ], "type": "object" }, "Type": { "enum": [ "AWS::IoTWireless::FuotaTask" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::IoTWireless::FuotaTask.LoRaWAN": { "additionalProperties": false, "properties": { "RfRegion": { "type": "string" }, "StartTime": { "type": "string" } }, "required": [ "RfRegion" ], "type": "object" }, "AWS::IoTWireless::MulticastGroup": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AssociateWirelessDevice": { "type": "string" }, "Description": { "type": "string" }, "DisassociateWirelessDevice": { "type": "string" }, "LoRaWAN": { "$ref": "#/definitions/AWS::IoTWireless::MulticastGroup.LoRaWAN" }, "Name": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "LoRaWAN" ], "type": "object" }, "Type": { "enum": [ "AWS::IoTWireless::MulticastGroup" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::IoTWireless::MulticastGroup.LoRaWAN": { "additionalProperties": false, "properties": { "DlClass": { "type": "string" }, "NumberOfDevicesInGroup": { "type": "number" }, "NumberOfDevicesRequested": { "type": "number" }, "RfRegion": { "type": "string" } }, "required": [ "DlClass", "RfRegion" ], "type": "object" }, "AWS::IoTWireless::NetworkAnalyzerConfiguration": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "Name": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "TraceContent": { "$ref": "#/definitions/AWS::IoTWireless::NetworkAnalyzerConfiguration.TraceContent" }, "WirelessDevices": { "items": { "type": "string" }, "type": "array" }, "WirelessGateways": { "items": { "type": "string" }, "type": "array" } }, "required": [ "Name" ], "type": "object" }, "Type": { "enum": [ "AWS::IoTWireless::NetworkAnalyzerConfiguration" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::IoTWireless::NetworkAnalyzerConfiguration.TraceContent": { "additionalProperties": false, "properties": { "LogLevel": { "type": "string" }, "WirelessDeviceFrameInfo": { "type": "string" } }, "type": "object" }, "AWS::IoTWireless::PartnerAccount": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AccountLinked": { "type": "boolean" }, "PartnerAccountId": { "type": "string" }, "PartnerType": { "type": "string" }, "Sidewalk": { "$ref": "#/definitions/AWS::IoTWireless::PartnerAccount.SidewalkAccountInfo" }, "SidewalkResponse": { "$ref": "#/definitions/AWS::IoTWireless::PartnerAccount.SidewalkAccountInfoWithFingerprint" }, "SidewalkUpdate": { "$ref": "#/definitions/AWS::IoTWireless::PartnerAccount.SidewalkUpdateAccount" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "type": "object" }, "Type": { "enum": [ "AWS::IoTWireless::PartnerAccount" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::IoTWireless::PartnerAccount.SidewalkAccountInfo": { "additionalProperties": false, "properties": { "AppServerPrivateKey": { "type": "string" } }, "required": [ "AppServerPrivateKey" ], "type": "object" }, "AWS::IoTWireless::PartnerAccount.SidewalkAccountInfoWithFingerprint": { "additionalProperties": false, "properties": { "AmazonId": { "type": "string" }, "Arn": { "type": "string" }, "Fingerprint": { "type": "string" } }, "type": "object" }, "AWS::IoTWireless::PartnerAccount.SidewalkUpdateAccount": { "additionalProperties": false, "properties": { "AppServerPrivateKey": { "type": "string" } }, "type": "object" }, "AWS::IoTWireless::ServiceProfile": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "LoRaWAN": { "$ref": "#/definitions/AWS::IoTWireless::ServiceProfile.LoRaWANServiceProfile" }, "Name": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "type": "object" }, "Type": { "enum": [ "AWS::IoTWireless::ServiceProfile" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::IoTWireless::ServiceProfile.LoRaWANServiceProfile": { "additionalProperties": false, "properties": { "AddGwMetadata": { "type": "boolean" }, "ChannelMask": { "type": "string" }, "DevStatusReqFreq": { "type": "number" }, "DlBucketSize": { "type": "number" }, "DlRate": { "type": "number" }, "DlRatePolicy": { "type": "string" }, "DrMax": { "type": "number" }, "DrMin": { "type": "number" }, "HrAllowed": { "type": "boolean" }, "MinGwDiversity": { "type": "number" }, "NwkGeoLoc": { "type": "boolean" }, "PrAllowed": { "type": "boolean" }, "RaAllowed": { "type": "boolean" }, "ReportDevStatusBattery": { "type": "boolean" }, "ReportDevStatusMargin": { "type": "boolean" }, "TargetPer": { "type": "number" }, "UlBucketSize": { "type": "number" }, "UlRate": { "type": "number" }, "UlRatePolicy": { "type": "string" } }, "type": "object" }, "AWS::IoTWireless::TaskDefinition": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AutoCreateTasks": { "type": "boolean" }, "LoRaWANUpdateGatewayTaskEntry": { "$ref": "#/definitions/AWS::IoTWireless::TaskDefinition.LoRaWANUpdateGatewayTaskEntry" }, "Name": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "TaskDefinitionType": { "type": "string" }, "Update": { "$ref": "#/definitions/AWS::IoTWireless::TaskDefinition.UpdateWirelessGatewayTaskCreate" } }, "required": [ "AutoCreateTasks" ], "type": "object" }, "Type": { "enum": [ "AWS::IoTWireless::TaskDefinition" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::IoTWireless::TaskDefinition.LoRaWANGatewayVersion": { "additionalProperties": false, "properties": { "Model": { "type": "string" }, "PackageVersion": { "type": "string" }, "Station": { "type": "string" } }, "type": "object" }, "AWS::IoTWireless::TaskDefinition.LoRaWANUpdateGatewayTaskCreate": { "additionalProperties": false, "properties": { "CurrentVersion": { "$ref": "#/definitions/AWS::IoTWireless::TaskDefinition.LoRaWANGatewayVersion" }, "SigKeyCrc": { "type": "number" }, "UpdateSignature": { "type": "string" }, "UpdateVersion": { "$ref": "#/definitions/AWS::IoTWireless::TaskDefinition.LoRaWANGatewayVersion" } }, "type": "object" }, "AWS::IoTWireless::TaskDefinition.LoRaWANUpdateGatewayTaskEntry": { "additionalProperties": false, "properties": { "CurrentVersion": { "$ref": "#/definitions/AWS::IoTWireless::TaskDefinition.LoRaWANGatewayVersion" }, "UpdateVersion": { "$ref": "#/definitions/AWS::IoTWireless::TaskDefinition.LoRaWANGatewayVersion" } }, "type": "object" }, "AWS::IoTWireless::TaskDefinition.UpdateWirelessGatewayTaskCreate": { "additionalProperties": false, "properties": { "LoRaWAN": { "$ref": "#/definitions/AWS::IoTWireless::TaskDefinition.LoRaWANUpdateGatewayTaskCreate" }, "UpdateDataRole": { "type": "string" }, "UpdateDataSource": { "type": "string" } }, "type": "object" }, "AWS::IoTWireless::WirelessDevice": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "DestinationName": { "type": "string" }, "LastUplinkReceivedAt": { "type": "string" }, "LoRaWAN": { "$ref": "#/definitions/AWS::IoTWireless::WirelessDevice.LoRaWANDevice" }, "Name": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "ThingArn": { "type": "string" }, "Type": { "type": "string" } }, "required": [ "DestinationName", "Type" ], "type": "object" }, "Type": { "enum": [ "AWS::IoTWireless::WirelessDevice" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::IoTWireless::WirelessDevice.AbpV10x": { "additionalProperties": false, "properties": { "DevAddr": { "type": "string" }, "SessionKeys": { "$ref": "#/definitions/AWS::IoTWireless::WirelessDevice.SessionKeysAbpV10x" } }, "required": [ "DevAddr", "SessionKeys" ], "type": "object" }, "AWS::IoTWireless::WirelessDevice.AbpV11": { "additionalProperties": false, "properties": { "DevAddr": { "type": "string" }, "SessionKeys": { "$ref": "#/definitions/AWS::IoTWireless::WirelessDevice.SessionKeysAbpV11" } }, "required": [ "DevAddr", "SessionKeys" ], "type": "object" }, "AWS::IoTWireless::WirelessDevice.LoRaWANDevice": { "additionalProperties": false, "properties": { "AbpV10x": { "$ref": "#/definitions/AWS::IoTWireless::WirelessDevice.AbpV10x" }, "AbpV11": { "$ref": "#/definitions/AWS::IoTWireless::WirelessDevice.AbpV11" }, "DevEui": { "type": "string" }, "DeviceProfileId": { "type": "string" }, "OtaaV10x": { "$ref": "#/definitions/AWS::IoTWireless::WirelessDevice.OtaaV10x" }, "OtaaV11": { "$ref": "#/definitions/AWS::IoTWireless::WirelessDevice.OtaaV11" }, "ServiceProfileId": { "type": "string" } }, "type": "object" }, "AWS::IoTWireless::WirelessDevice.OtaaV10x": { "additionalProperties": false, "properties": { "AppEui": { "type": "string" }, "AppKey": { "type": "string" } }, "required": [ "AppEui", "AppKey" ], "type": "object" }, "AWS::IoTWireless::WirelessDevice.OtaaV11": { "additionalProperties": false, "properties": { "AppKey": { "type": "string" }, "JoinEui": { "type": "string" }, "NwkKey": { "type": "string" } }, "required": [ "AppKey", "JoinEui", "NwkKey" ], "type": "object" }, "AWS::IoTWireless::WirelessDevice.SessionKeysAbpV10x": { "additionalProperties": false, "properties": { "AppSKey": { "type": "string" }, "NwkSKey": { "type": "string" } }, "required": [ "AppSKey", "NwkSKey" ], "type": "object" }, "AWS::IoTWireless::WirelessDevice.SessionKeysAbpV11": { "additionalProperties": false, "properties": { "AppSKey": { "type": "string" }, "FNwkSIntKey": { "type": "string" }, "NwkSEncKey": { "type": "string" }, "SNwkSIntKey": { "type": "string" } }, "required": [ "AppSKey", "FNwkSIntKey", "NwkSEncKey", "SNwkSIntKey" ], "type": "object" }, "AWS::IoTWireless::WirelessDeviceImportTask": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "DestinationName": { "type": "string" }, "Sidewalk": { "$ref": "#/definitions/AWS::IoTWireless::WirelessDeviceImportTask.Sidewalk" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "DestinationName", "Sidewalk" ], "type": "object" }, "Type": { "enum": [ "AWS::IoTWireless::WirelessDeviceImportTask" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::IoTWireless::WirelessDeviceImportTask.Sidewalk": { "additionalProperties": false, "properties": { "DeviceCreationFile": { "type": "string" }, "DeviceCreationFileList": { "items": { "type": "string" }, "type": "array" }, "Role": { "type": "string" }, "SidewalkManufacturingSn": { "type": "string" } }, "type": "object" }, "AWS::IoTWireless::WirelessGateway": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "LastUplinkReceivedAt": { "type": "string" }, "LoRaWAN": { "$ref": "#/definitions/AWS::IoTWireless::WirelessGateway.LoRaWANGateway" }, "Name": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "ThingArn": { "type": "string" }, "ThingName": { "type": "string" } }, "required": [ "LoRaWAN" ], "type": "object" }, "Type": { "enum": [ "AWS::IoTWireless::WirelessGateway" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::IoTWireless::WirelessGateway.LoRaWANGateway": { "additionalProperties": false, "properties": { "GatewayEui": { "type": "string" }, "RfRegion": { "type": "string" } }, "required": [ "GatewayEui", "RfRegion" ], "type": "object" }, "AWS::KMS::Alias": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AliasName": { "type": "string" }, "TargetKeyId": { "type": "string" } }, "required": [ "AliasName", "TargetKeyId" ], "type": "object" }, "Type": { "enum": [ "AWS::KMS::Alias" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::KMS::Key": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "BypassPolicyLockoutSafetyCheck": { "type": "boolean" }, "Description": { "type": "string" }, "EnableKeyRotation": { "type": "boolean" }, "Enabled": { "type": "boolean" }, "KeyPolicy": { "type": "object" }, "KeySpec": { "type": "string" }, "KeyUsage": { "type": "string" }, "MultiRegion": { "type": "boolean" }, "Origin": { "type": "string" }, "PendingWindowInDays": { "type": "number" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "type": "object" }, "Type": { "enum": [ "AWS::KMS::Key" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::KMS::ReplicaKey": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "Enabled": { "type": "boolean" }, "KeyPolicy": { "type": "object" }, "PendingWindowInDays": { "type": "number" }, "PrimaryKeyArn": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "KeyPolicy", "PrimaryKeyArn" ], "type": "object" }, "Type": { "enum": [ "AWS::KMS::ReplicaKey" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::KafkaConnect::Connector": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Capacity": { "$ref": "#/definitions/AWS::KafkaConnect::Connector.Capacity" }, "ConnectorConfiguration": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" }, "ConnectorDescription": { "type": "string" }, "ConnectorName": { "type": "string" }, "KafkaCluster": { "$ref": "#/definitions/AWS::KafkaConnect::Connector.KafkaCluster" }, "KafkaClusterClientAuthentication": { "$ref": "#/definitions/AWS::KafkaConnect::Connector.KafkaClusterClientAuthentication" }, "KafkaClusterEncryptionInTransit": { "$ref": "#/definitions/AWS::KafkaConnect::Connector.KafkaClusterEncryptionInTransit" }, "KafkaConnectVersion": { "type": "string" }, "LogDelivery": { "$ref": "#/definitions/AWS::KafkaConnect::Connector.LogDelivery" }, "Plugins": { "items": { "$ref": "#/definitions/AWS::KafkaConnect::Connector.Plugin" }, "type": "array" }, "ServiceExecutionRoleArn": { "type": "string" }, "WorkerConfiguration": { "$ref": "#/definitions/AWS::KafkaConnect::Connector.WorkerConfiguration" } }, "required": [ "Capacity", "ConnectorConfiguration", "ConnectorName", "KafkaCluster", "KafkaClusterClientAuthentication", "KafkaClusterEncryptionInTransit", "KafkaConnectVersion", "Plugins", "ServiceExecutionRoleArn" ], "type": "object" }, "Type": { "enum": [ "AWS::KafkaConnect::Connector" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::KafkaConnect::Connector.ApacheKafkaCluster": { "additionalProperties": false, "properties": { "BootstrapServers": { "type": "string" }, "Vpc": { "$ref": "#/definitions/AWS::KafkaConnect::Connector.Vpc" } }, "required": [ "BootstrapServers", "Vpc" ], "type": "object" }, "AWS::KafkaConnect::Connector.AutoScaling": { "additionalProperties": false, "properties": { "MaxWorkerCount": { "type": "number" }, "McuCount": { "type": "number" }, "MinWorkerCount": { "type": "number" }, "ScaleInPolicy": { "$ref": "#/definitions/AWS::KafkaConnect::Connector.ScaleInPolicy" }, "ScaleOutPolicy": { "$ref": "#/definitions/AWS::KafkaConnect::Connector.ScaleOutPolicy" } }, "required": [ "MaxWorkerCount", "McuCount", "MinWorkerCount", "ScaleInPolicy", "ScaleOutPolicy" ], "type": "object" }, "AWS::KafkaConnect::Connector.Capacity": { "additionalProperties": false, "properties": { "AutoScaling": { "$ref": "#/definitions/AWS::KafkaConnect::Connector.AutoScaling" }, "ProvisionedCapacity": { "$ref": "#/definitions/AWS::KafkaConnect::Connector.ProvisionedCapacity" } }, "type": "object" }, "AWS::KafkaConnect::Connector.CloudWatchLogsLogDelivery": { "additionalProperties": false, "properties": { "Enabled": { "type": "boolean" }, "LogGroup": { "type": "string" } }, "required": [ "Enabled" ], "type": "object" }, "AWS::KafkaConnect::Connector.CustomPlugin": { "additionalProperties": false, "properties": { "CustomPluginArn": { "type": "string" }, "Revision": { "type": "number" } }, "required": [ "CustomPluginArn", "Revision" ], "type": "object" }, "AWS::KafkaConnect::Connector.FirehoseLogDelivery": { "additionalProperties": false, "properties": { "DeliveryStream": { "type": "string" }, "Enabled": { "type": "boolean" } }, "required": [ "Enabled" ], "type": "object" }, "AWS::KafkaConnect::Connector.KafkaCluster": { "additionalProperties": false, "properties": { "ApacheKafkaCluster": { "$ref": "#/definitions/AWS::KafkaConnect::Connector.ApacheKafkaCluster" } }, "required": [ "ApacheKafkaCluster" ], "type": "object" }, "AWS::KafkaConnect::Connector.KafkaClusterClientAuthentication": { "additionalProperties": false, "properties": { "AuthenticationType": { "type": "string" } }, "required": [ "AuthenticationType" ], "type": "object" }, "AWS::KafkaConnect::Connector.KafkaClusterEncryptionInTransit": { "additionalProperties": false, "properties": { "EncryptionType": { "type": "string" } }, "required": [ "EncryptionType" ], "type": "object" }, "AWS::KafkaConnect::Connector.LogDelivery": { "additionalProperties": false, "properties": { "WorkerLogDelivery": { "$ref": "#/definitions/AWS::KafkaConnect::Connector.WorkerLogDelivery" } }, "required": [ "WorkerLogDelivery" ], "type": "object" }, "AWS::KafkaConnect::Connector.Plugin": { "additionalProperties": false, "properties": { "CustomPlugin": { "$ref": "#/definitions/AWS::KafkaConnect::Connector.CustomPlugin" } }, "required": [ "CustomPlugin" ], "type": "object" }, "AWS::KafkaConnect::Connector.ProvisionedCapacity": { "additionalProperties": false, "properties": { "McuCount": { "type": "number" }, "WorkerCount": { "type": "number" } }, "required": [ "WorkerCount" ], "type": "object" }, "AWS::KafkaConnect::Connector.S3LogDelivery": { "additionalProperties": false, "properties": { "Bucket": { "type": "string" }, "Enabled": { "type": "boolean" }, "Prefix": { "type": "string" } }, "required": [ "Enabled" ], "type": "object" }, "AWS::KafkaConnect::Connector.ScaleInPolicy": { "additionalProperties": false, "properties": { "CpuUtilizationPercentage": { "type": "number" } }, "required": [ "CpuUtilizationPercentage" ], "type": "object" }, "AWS::KafkaConnect::Connector.ScaleOutPolicy": { "additionalProperties": false, "properties": { "CpuUtilizationPercentage": { "type": "number" } }, "required": [ "CpuUtilizationPercentage" ], "type": "object" }, "AWS::KafkaConnect::Connector.Vpc": { "additionalProperties": false, "properties": { "SecurityGroups": { "items": { "type": "string" }, "type": "array" }, "Subnets": { "items": { "type": "string" }, "type": "array" } }, "required": [ "SecurityGroups", "Subnets" ], "type": "object" }, "AWS::KafkaConnect::Connector.WorkerConfiguration": { "additionalProperties": false, "properties": { "Revision": { "type": "number" }, "WorkerConfigurationArn": { "type": "string" } }, "required": [ "Revision", "WorkerConfigurationArn" ], "type": "object" }, "AWS::KafkaConnect::Connector.WorkerLogDelivery": { "additionalProperties": false, "properties": { "CloudWatchLogs": { "$ref": "#/definitions/AWS::KafkaConnect::Connector.CloudWatchLogsLogDelivery" }, "Firehose": { "$ref": "#/definitions/AWS::KafkaConnect::Connector.FirehoseLogDelivery" }, "S3": { "$ref": "#/definitions/AWS::KafkaConnect::Connector.S3LogDelivery" } }, "type": "object" }, "AWS::Kendra::DataSource": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "CustomDocumentEnrichmentConfiguration": { "$ref": "#/definitions/AWS::Kendra::DataSource.CustomDocumentEnrichmentConfiguration" }, "DataSourceConfiguration": { "$ref": "#/definitions/AWS::Kendra::DataSource.DataSourceConfiguration" }, "Description": { "type": "string" }, "IndexId": { "type": "string" }, "Name": { "type": "string" }, "RoleArn": { "type": "string" }, "Schedule": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "Type": { "type": "string" } }, "required": [ "IndexId", "Name", "Type" ], "type": "object" }, "Type": { "enum": [ "AWS::Kendra::DataSource" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Kendra::DataSource.AccessControlListConfiguration": { "additionalProperties": false, "properties": { "KeyPath": { "type": "string" } }, "type": "object" }, "AWS::Kendra::DataSource.AclConfiguration": { "additionalProperties": false, "properties": { "AllowedGroupsColumnName": { "type": "string" } }, "required": [ "AllowedGroupsColumnName" ], "type": "object" }, "AWS::Kendra::DataSource.ColumnConfiguration": { "additionalProperties": false, "properties": { "ChangeDetectingColumns": { "items": { "type": "string" }, "type": "array" }, "DocumentDataColumnName": { "type": "string" }, "DocumentIdColumnName": { "type": "string" }, "DocumentTitleColumnName": { "type": "string" }, "FieldMappings": { "items": { "$ref": "#/definitions/AWS::Kendra::DataSource.DataSourceToIndexFieldMapping" }, "type": "array" } }, "required": [ "ChangeDetectingColumns", "DocumentDataColumnName", "DocumentIdColumnName" ], "type": "object" }, "AWS::Kendra::DataSource.ConfluenceAttachmentConfiguration": { "additionalProperties": false, "properties": { "AttachmentFieldMappings": { "items": { "$ref": "#/definitions/AWS::Kendra::DataSource.ConfluenceAttachmentToIndexFieldMapping" }, "type": "array" }, "CrawlAttachments": { "type": "boolean" } }, "type": "object" }, "AWS::Kendra::DataSource.ConfluenceAttachmentToIndexFieldMapping": { "additionalProperties": false, "properties": { "DataSourceFieldName": { "type": "string" }, "DateFieldFormat": { "type": "string" }, "IndexFieldName": { "type": "string" } }, "required": [ "DataSourceFieldName", "IndexFieldName" ], "type": "object" }, "AWS::Kendra::DataSource.ConfluenceBlogConfiguration": { "additionalProperties": false, "properties": { "BlogFieldMappings": { "items": { "$ref": "#/definitions/AWS::Kendra::DataSource.ConfluenceBlogToIndexFieldMapping" }, "type": "array" } }, "type": "object" }, "AWS::Kendra::DataSource.ConfluenceBlogToIndexFieldMapping": { "additionalProperties": false, "properties": { "DataSourceFieldName": { "type": "string" }, "DateFieldFormat": { "type": "string" }, "IndexFieldName": { "type": "string" } }, "required": [ "DataSourceFieldName", "IndexFieldName" ], "type": "object" }, "AWS::Kendra::DataSource.ConfluenceConfiguration": { "additionalProperties": false, "properties": { "AttachmentConfiguration": { "$ref": "#/definitions/AWS::Kendra::DataSource.ConfluenceAttachmentConfiguration" }, "BlogConfiguration": { "$ref": "#/definitions/AWS::Kendra::DataSource.ConfluenceBlogConfiguration" }, "ExclusionPatterns": { "items": { "type": "string" }, "type": "array" }, "InclusionPatterns": { "items": { "type": "string" }, "type": "array" }, "PageConfiguration": { "$ref": "#/definitions/AWS::Kendra::DataSource.ConfluencePageConfiguration" }, "SecretArn": { "type": "string" }, "ServerUrl": { "type": "string" }, "SpaceConfiguration": { "$ref": "#/definitions/AWS::Kendra::DataSource.ConfluenceSpaceConfiguration" }, "Version": { "type": "string" }, "VpcConfiguration": { "$ref": "#/definitions/AWS::Kendra::DataSource.DataSourceVpcConfiguration" } }, "required": [ "SecretArn", "ServerUrl", "Version" ], "type": "object" }, "AWS::Kendra::DataSource.ConfluencePageConfiguration": { "additionalProperties": false, "properties": { "PageFieldMappings": { "items": { "$ref": "#/definitions/AWS::Kendra::DataSource.ConfluencePageToIndexFieldMapping" }, "type": "array" } }, "type": "object" }, "AWS::Kendra::DataSource.ConfluencePageToIndexFieldMapping": { "additionalProperties": false, "properties": { "DataSourceFieldName": { "type": "string" }, "DateFieldFormat": { "type": "string" }, "IndexFieldName": { "type": "string" } }, "required": [ "DataSourceFieldName", "IndexFieldName" ], "type": "object" }, "AWS::Kendra::DataSource.ConfluenceSpaceConfiguration": { "additionalProperties": false, "properties": { "CrawlArchivedSpaces": { "type": "boolean" }, "CrawlPersonalSpaces": { "type": "boolean" }, "ExcludeSpaces": { "items": { "type": "string" }, "type": "array" }, "IncludeSpaces": { "items": { "type": "string" }, "type": "array" }, "SpaceFieldMappings": { "items": { "$ref": "#/definitions/AWS::Kendra::DataSource.ConfluenceSpaceToIndexFieldMapping" }, "type": "array" } }, "type": "object" }, "AWS::Kendra::DataSource.ConfluenceSpaceToIndexFieldMapping": { "additionalProperties": false, "properties": { "DataSourceFieldName": { "type": "string" }, "DateFieldFormat": { "type": "string" }, "IndexFieldName": { "type": "string" } }, "required": [ "DataSourceFieldName", "IndexFieldName" ], "type": "object" }, "AWS::Kendra::DataSource.ConnectionConfiguration": { "additionalProperties": false, "properties": { "DatabaseHost": { "type": "string" }, "DatabaseName": { "type": "string" }, "DatabasePort": { "type": "number" }, "SecretArn": { "type": "string" }, "TableName": { "type": "string" } }, "required": [ "DatabaseHost", "DatabaseName", "DatabasePort", "SecretArn", "TableName" ], "type": "object" }, "AWS::Kendra::DataSource.CustomDocumentEnrichmentConfiguration": { "additionalProperties": false, "properties": { "InlineConfigurations": { "items": { "$ref": "#/definitions/AWS::Kendra::DataSource.InlineCustomDocumentEnrichmentConfiguration" }, "type": "array" }, "PostExtractionHookConfiguration": { "$ref": "#/definitions/AWS::Kendra::DataSource.HookConfiguration" }, "PreExtractionHookConfiguration": { "$ref": "#/definitions/AWS::Kendra::DataSource.HookConfiguration" }, "RoleArn": { "type": "string" } }, "type": "object" }, "AWS::Kendra::DataSource.DataSourceConfiguration": { "additionalProperties": false, "properties": { "ConfluenceConfiguration": { "$ref": "#/definitions/AWS::Kendra::DataSource.ConfluenceConfiguration" }, "DatabaseConfiguration": { "$ref": "#/definitions/AWS::Kendra::DataSource.DatabaseConfiguration" }, "GoogleDriveConfiguration": { "$ref": "#/definitions/AWS::Kendra::DataSource.GoogleDriveConfiguration" }, "OneDriveConfiguration": { "$ref": "#/definitions/AWS::Kendra::DataSource.OneDriveConfiguration" }, "S3Configuration": { "$ref": "#/definitions/AWS::Kendra::DataSource.S3DataSourceConfiguration" }, "SalesforceConfiguration": { "$ref": "#/definitions/AWS::Kendra::DataSource.SalesforceConfiguration" }, "ServiceNowConfiguration": { "$ref": "#/definitions/AWS::Kendra::DataSource.ServiceNowConfiguration" }, "SharePointConfiguration": { "$ref": "#/definitions/AWS::Kendra::DataSource.SharePointConfiguration" }, "TemplateConfiguration": { "$ref": "#/definitions/AWS::Kendra::DataSource.TemplateConfiguration" }, "WebCrawlerConfiguration": { "$ref": "#/definitions/AWS::Kendra::DataSource.WebCrawlerConfiguration" }, "WorkDocsConfiguration": { "$ref": "#/definitions/AWS::Kendra::DataSource.WorkDocsConfiguration" } }, "type": "object" }, "AWS::Kendra::DataSource.DataSourceToIndexFieldMapping": { "additionalProperties": false, "properties": { "DataSourceFieldName": { "type": "string" }, "DateFieldFormat": { "type": "string" }, "IndexFieldName": { "type": "string" } }, "required": [ "DataSourceFieldName", "IndexFieldName" ], "type": "object" }, "AWS::Kendra::DataSource.DataSourceVpcConfiguration": { "additionalProperties": false, "properties": { "SecurityGroupIds": { "items": { "type": "string" }, "type": "array" }, "SubnetIds": { "items": { "type": "string" }, "type": "array" } }, "required": [ "SecurityGroupIds", "SubnetIds" ], "type": "object" }, "AWS::Kendra::DataSource.DatabaseConfiguration": { "additionalProperties": false, "properties": { "AclConfiguration": { "$ref": "#/definitions/AWS::Kendra::DataSource.AclConfiguration" }, "ColumnConfiguration": { "$ref": "#/definitions/AWS::Kendra::DataSource.ColumnConfiguration" }, "ConnectionConfiguration": { "$ref": "#/definitions/AWS::Kendra::DataSource.ConnectionConfiguration" }, "DatabaseEngineType": { "type": "string" }, "SqlConfiguration": { "$ref": "#/definitions/AWS::Kendra::DataSource.SqlConfiguration" }, "VpcConfiguration": { "$ref": "#/definitions/AWS::Kendra::DataSource.DataSourceVpcConfiguration" } }, "required": [ "ColumnConfiguration", "ConnectionConfiguration", "DatabaseEngineType" ], "type": "object" }, "AWS::Kendra::DataSource.DocumentAttributeCondition": { "additionalProperties": false, "properties": { "ConditionDocumentAttributeKey": { "type": "string" }, "ConditionOnValue": { "$ref": "#/definitions/AWS::Kendra::DataSource.DocumentAttributeValue" }, "Operator": { "type": "string" } }, "required": [ "ConditionDocumentAttributeKey", "Operator" ], "type": "object" }, "AWS::Kendra::DataSource.DocumentAttributeTarget": { "additionalProperties": false, "properties": { "TargetDocumentAttributeKey": { "type": "string" }, "TargetDocumentAttributeValue": { "$ref": "#/definitions/AWS::Kendra::DataSource.DocumentAttributeValue" }, "TargetDocumentAttributeValueDeletion": { "type": "boolean" } }, "required": [ "TargetDocumentAttributeKey" ], "type": "object" }, "AWS::Kendra::DataSource.DocumentAttributeValue": { "additionalProperties": false, "properties": { "DateValue": { "type": "string" }, "LongValue": { "type": "number" }, "StringListValue": { "items": { "type": "string" }, "type": "array" }, "StringValue": { "type": "string" } }, "type": "object" }, "AWS::Kendra::DataSource.DocumentsMetadataConfiguration": { "additionalProperties": false, "properties": { "S3Prefix": { "type": "string" } }, "type": "object" }, "AWS::Kendra::DataSource.GoogleDriveConfiguration": { "additionalProperties": false, "properties": { "ExcludeMimeTypes": { "items": { "type": "string" }, "type": "array" }, "ExcludeSharedDrives": { "items": { "type": "string" }, "type": "array" }, "ExcludeUserAccounts": { "items": { "type": "string" }, "type": "array" }, "ExclusionPatterns": { "items": { "type": "string" }, "type": "array" }, "FieldMappings": { "items": { "$ref": "#/definitions/AWS::Kendra::DataSource.DataSourceToIndexFieldMapping" }, "type": "array" }, "InclusionPatterns": { "items": { "type": "string" }, "type": "array" }, "SecretArn": { "type": "string" } }, "required": [ "SecretArn" ], "type": "object" }, "AWS::Kendra::DataSource.HookConfiguration": { "additionalProperties": false, "properties": { "InvocationCondition": { "$ref": "#/definitions/AWS::Kendra::DataSource.DocumentAttributeCondition" }, "LambdaArn": { "type": "string" }, "S3Bucket": { "type": "string" } }, "required": [ "LambdaArn", "S3Bucket" ], "type": "object" }, "AWS::Kendra::DataSource.InlineCustomDocumentEnrichmentConfiguration": { "additionalProperties": false, "properties": { "Condition": { "$ref": "#/definitions/AWS::Kendra::DataSource.DocumentAttributeCondition" }, "DocumentContentDeletion": { "type": "boolean" }, "Target": { "$ref": "#/definitions/AWS::Kendra::DataSource.DocumentAttributeTarget" } }, "type": "object" }, "AWS::Kendra::DataSource.OneDriveConfiguration": { "additionalProperties": false, "properties": { "DisableLocalGroups": { "type": "boolean" }, "ExclusionPatterns": { "items": { "type": "string" }, "type": "array" }, "FieldMappings": { "items": { "$ref": "#/definitions/AWS::Kendra::DataSource.DataSourceToIndexFieldMapping" }, "type": "array" }, "InclusionPatterns": { "items": { "type": "string" }, "type": "array" }, "OneDriveUsers": { "$ref": "#/definitions/AWS::Kendra::DataSource.OneDriveUsers" }, "SecretArn": { "type": "string" }, "TenantDomain": { "type": "string" } }, "required": [ "OneDriveUsers", "SecretArn", "TenantDomain" ], "type": "object" }, "AWS::Kendra::DataSource.OneDriveUsers": { "additionalProperties": false, "properties": { "OneDriveUserList": { "items": { "type": "string" }, "type": "array" }, "OneDriveUserS3Path": { "$ref": "#/definitions/AWS::Kendra::DataSource.S3Path" } }, "type": "object" }, "AWS::Kendra::DataSource.ProxyConfiguration": { "additionalProperties": false, "properties": { "Credentials": { "type": "string" }, "Host": { "type": "string" }, "Port": { "type": "number" } }, "required": [ "Host", "Port" ], "type": "object" }, "AWS::Kendra::DataSource.S3DataSourceConfiguration": { "additionalProperties": false, "properties": { "AccessControlListConfiguration": { "$ref": "#/definitions/AWS::Kendra::DataSource.AccessControlListConfiguration" }, "BucketName": { "type": "string" }, "DocumentsMetadataConfiguration": { "$ref": "#/definitions/AWS::Kendra::DataSource.DocumentsMetadataConfiguration" }, "ExclusionPatterns": { "items": { "type": "string" }, "type": "array" }, "InclusionPatterns": { "items": { "type": "string" }, "type": "array" }, "InclusionPrefixes": { "items": { "type": "string" }, "type": "array" } }, "required": [ "BucketName" ], "type": "object" }, "AWS::Kendra::DataSource.S3Path": { "additionalProperties": false, "properties": { "Bucket": { "type": "string" }, "Key": { "type": "string" } }, "required": [ "Bucket", "Key" ], "type": "object" }, "AWS::Kendra::DataSource.SalesforceChatterFeedConfiguration": { "additionalProperties": false, "properties": { "DocumentDataFieldName": { "type": "string" }, "DocumentTitleFieldName": { "type": "string" }, "FieldMappings": { "items": { "$ref": "#/definitions/AWS::Kendra::DataSource.DataSourceToIndexFieldMapping" }, "type": "array" }, "IncludeFilterTypes": { "items": { "type": "string" }, "type": "array" } }, "required": [ "DocumentDataFieldName" ], "type": "object" }, "AWS::Kendra::DataSource.SalesforceConfiguration": { "additionalProperties": false, "properties": { "ChatterFeedConfiguration": { "$ref": "#/definitions/AWS::Kendra::DataSource.SalesforceChatterFeedConfiguration" }, "CrawlAttachments": { "type": "boolean" }, "ExcludeAttachmentFilePatterns": { "items": { "type": "string" }, "type": "array" }, "IncludeAttachmentFilePatterns": { "items": { "type": "string" }, "type": "array" }, "KnowledgeArticleConfiguration": { "$ref": "#/definitions/AWS::Kendra::DataSource.SalesforceKnowledgeArticleConfiguration" }, "SecretArn": { "type": "string" }, "ServerUrl": { "type": "string" }, "StandardObjectAttachmentConfiguration": { "$ref": "#/definitions/AWS::Kendra::DataSource.SalesforceStandardObjectAttachmentConfiguration" }, "StandardObjectConfigurations": { "items": { "$ref": "#/definitions/AWS::Kendra::DataSource.SalesforceStandardObjectConfiguration" }, "type": "array" } }, "required": [ "SecretArn", "ServerUrl" ], "type": "object" }, "AWS::Kendra::DataSource.SalesforceCustomKnowledgeArticleTypeConfiguration": { "additionalProperties": false, "properties": { "DocumentDataFieldName": { "type": "string" }, "DocumentTitleFieldName": { "type": "string" }, "FieldMappings": { "items": { "$ref": "#/definitions/AWS::Kendra::DataSource.DataSourceToIndexFieldMapping" }, "type": "array" }, "Name": { "type": "string" } }, "required": [ "DocumentDataFieldName", "Name" ], "type": "object" }, "AWS::Kendra::DataSource.SalesforceKnowledgeArticleConfiguration": { "additionalProperties": false, "properties": { "CustomKnowledgeArticleTypeConfigurations": { "items": { "$ref": "#/definitions/AWS::Kendra::DataSource.SalesforceCustomKnowledgeArticleTypeConfiguration" }, "type": "array" }, "IncludedStates": { "items": { "type": "string" }, "type": "array" }, "StandardKnowledgeArticleTypeConfiguration": { "$ref": "#/definitions/AWS::Kendra::DataSource.SalesforceStandardKnowledgeArticleTypeConfiguration" } }, "required": [ "IncludedStates" ], "type": "object" }, "AWS::Kendra::DataSource.SalesforceStandardKnowledgeArticleTypeConfiguration": { "additionalProperties": false, "properties": { "DocumentDataFieldName": { "type": "string" }, "DocumentTitleFieldName": { "type": "string" }, "FieldMappings": { "items": { "$ref": "#/definitions/AWS::Kendra::DataSource.DataSourceToIndexFieldMapping" }, "type": "array" } }, "required": [ "DocumentDataFieldName" ], "type": "object" }, "AWS::Kendra::DataSource.SalesforceStandardObjectAttachmentConfiguration": { "additionalProperties": false, "properties": { "DocumentTitleFieldName": { "type": "string" }, "FieldMappings": { "items": { "$ref": "#/definitions/AWS::Kendra::DataSource.DataSourceToIndexFieldMapping" }, "type": "array" } }, "type": "object" }, "AWS::Kendra::DataSource.SalesforceStandardObjectConfiguration": { "additionalProperties": false, "properties": { "DocumentDataFieldName": { "type": "string" }, "DocumentTitleFieldName": { "type": "string" }, "FieldMappings": { "items": { "$ref": "#/definitions/AWS::Kendra::DataSource.DataSourceToIndexFieldMapping" }, "type": "array" }, "Name": { "type": "string" } }, "required": [ "DocumentDataFieldName", "Name" ], "type": "object" }, "AWS::Kendra::DataSource.ServiceNowConfiguration": { "additionalProperties": false, "properties": { "AuthenticationType": { "type": "string" }, "HostUrl": { "type": "string" }, "KnowledgeArticleConfiguration": { "$ref": "#/definitions/AWS::Kendra::DataSource.ServiceNowKnowledgeArticleConfiguration" }, "SecretArn": { "type": "string" }, "ServiceCatalogConfiguration": { "$ref": "#/definitions/AWS::Kendra::DataSource.ServiceNowServiceCatalogConfiguration" }, "ServiceNowBuildVersion": { "type": "string" } }, "required": [ "HostUrl", "SecretArn", "ServiceNowBuildVersion" ], "type": "object" }, "AWS::Kendra::DataSource.ServiceNowKnowledgeArticleConfiguration": { "additionalProperties": false, "properties": { "CrawlAttachments": { "type": "boolean" }, "DocumentDataFieldName": { "type": "string" }, "DocumentTitleFieldName": { "type": "string" }, "ExcludeAttachmentFilePatterns": { "items": { "type": "string" }, "type": "array" }, "FieldMappings": { "items": { "$ref": "#/definitions/AWS::Kendra::DataSource.DataSourceToIndexFieldMapping" }, "type": "array" }, "FilterQuery": { "type": "string" }, "IncludeAttachmentFilePatterns": { "items": { "type": "string" }, "type": "array" } }, "required": [ "DocumentDataFieldName" ], "type": "object" }, "AWS::Kendra::DataSource.ServiceNowServiceCatalogConfiguration": { "additionalProperties": false, "properties": { "CrawlAttachments": { "type": "boolean" }, "DocumentDataFieldName": { "type": "string" }, "DocumentTitleFieldName": { "type": "string" }, "ExcludeAttachmentFilePatterns": { "items": { "type": "string" }, "type": "array" }, "FieldMappings": { "items": { "$ref": "#/definitions/AWS::Kendra::DataSource.DataSourceToIndexFieldMapping" }, "type": "array" }, "IncludeAttachmentFilePatterns": { "items": { "type": "string" }, "type": "array" } }, "required": [ "DocumentDataFieldName" ], "type": "object" }, "AWS::Kendra::DataSource.SharePointConfiguration": { "additionalProperties": false, "properties": { "CrawlAttachments": { "type": "boolean" }, "DisableLocalGroups": { "type": "boolean" }, "DocumentTitleFieldName": { "type": "string" }, "ExclusionPatterns": { "items": { "type": "string" }, "type": "array" }, "FieldMappings": { "items": { "$ref": "#/definitions/AWS::Kendra::DataSource.DataSourceToIndexFieldMapping" }, "type": "array" }, "InclusionPatterns": { "items": { "type": "string" }, "type": "array" }, "SecretArn": { "type": "string" }, "SharePointVersion": { "type": "string" }, "SslCertificateS3Path": { "$ref": "#/definitions/AWS::Kendra::DataSource.S3Path" }, "Urls": { "items": { "type": "string" }, "type": "array" }, "UseChangeLog": { "type": "boolean" }, "VpcConfiguration": { "$ref": "#/definitions/AWS::Kendra::DataSource.DataSourceVpcConfiguration" } }, "required": [ "SecretArn", "SharePointVersion", "Urls" ], "type": "object" }, "AWS::Kendra::DataSource.SqlConfiguration": { "additionalProperties": false, "properties": { "QueryIdentifiersEnclosingOption": { "type": "string" } }, "type": "object" }, "AWS::Kendra::DataSource.TemplateConfiguration": { "additionalProperties": false, "properties": { "Template": { "type": "string" } }, "required": [ "Template" ], "type": "object" }, "AWS::Kendra::DataSource.WebCrawlerAuthenticationConfiguration": { "additionalProperties": false, "properties": { "BasicAuthentication": { "items": { "$ref": "#/definitions/AWS::Kendra::DataSource.WebCrawlerBasicAuthentication" }, "type": "array" } }, "type": "object" }, "AWS::Kendra::DataSource.WebCrawlerBasicAuthentication": { "additionalProperties": false, "properties": { "Credentials": { "type": "string" }, "Host": { "type": "string" }, "Port": { "type": "number" } }, "required": [ "Credentials", "Host", "Port" ], "type": "object" }, "AWS::Kendra::DataSource.WebCrawlerConfiguration": { "additionalProperties": false, "properties": { "AuthenticationConfiguration": { "$ref": "#/definitions/AWS::Kendra::DataSource.WebCrawlerAuthenticationConfiguration" }, "CrawlDepth": { "type": "number" }, "MaxContentSizePerPageInMegaBytes": { "type": "number" }, "MaxLinksPerPage": { "type": "number" }, "MaxUrlsPerMinuteCrawlRate": { "type": "number" }, "ProxyConfiguration": { "$ref": "#/definitions/AWS::Kendra::DataSource.ProxyConfiguration" }, "UrlExclusionPatterns": { "items": { "type": "string" }, "type": "array" }, "UrlInclusionPatterns": { "items": { "type": "string" }, "type": "array" }, "Urls": { "$ref": "#/definitions/AWS::Kendra::DataSource.WebCrawlerUrls" } }, "required": [ "Urls" ], "type": "object" }, "AWS::Kendra::DataSource.WebCrawlerSeedUrlConfiguration": { "additionalProperties": false, "properties": { "SeedUrls": { "items": { "type": "string" }, "type": "array" }, "WebCrawlerMode": { "type": "string" } }, "required": [ "SeedUrls" ], "type": "object" }, "AWS::Kendra::DataSource.WebCrawlerSiteMapsConfiguration": { "additionalProperties": false, "properties": { "SiteMaps": { "items": { "type": "string" }, "type": "array" } }, "required": [ "SiteMaps" ], "type": "object" }, "AWS::Kendra::DataSource.WebCrawlerUrls": { "additionalProperties": false, "properties": { "SeedUrlConfiguration": { "$ref": "#/definitions/AWS::Kendra::DataSource.WebCrawlerSeedUrlConfiguration" }, "SiteMapsConfiguration": { "$ref": "#/definitions/AWS::Kendra::DataSource.WebCrawlerSiteMapsConfiguration" } }, "type": "object" }, "AWS::Kendra::DataSource.WorkDocsConfiguration": { "additionalProperties": false, "properties": { "CrawlComments": { "type": "boolean" }, "ExclusionPatterns": { "items": { "type": "string" }, "type": "array" }, "FieldMappings": { "items": { "$ref": "#/definitions/AWS::Kendra::DataSource.DataSourceToIndexFieldMapping" }, "type": "array" }, "InclusionPatterns": { "items": { "type": "string" }, "type": "array" }, "OrganizationId": { "type": "string" }, "UseChangeLog": { "type": "boolean" } }, "required": [ "OrganizationId" ], "type": "object" }, "AWS::Kendra::Faq": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "FileFormat": { "type": "string" }, "IndexId": { "type": "string" }, "Name": { "type": "string" }, "RoleArn": { "type": "string" }, "S3Path": { "$ref": "#/definitions/AWS::Kendra::Faq.S3Path" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "IndexId", "Name", "RoleArn", "S3Path" ], "type": "object" }, "Type": { "enum": [ "AWS::Kendra::Faq" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Kendra::Faq.S3Path": { "additionalProperties": false, "properties": { "Bucket": { "type": "string" }, "Key": { "type": "string" } }, "required": [ "Bucket", "Key" ], "type": "object" }, "AWS::Kendra::Index": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "CapacityUnits": { "$ref": "#/definitions/AWS::Kendra::Index.CapacityUnitsConfiguration" }, "Description": { "type": "string" }, "DocumentMetadataConfigurations": { "items": { "$ref": "#/definitions/AWS::Kendra::Index.DocumentMetadataConfiguration" }, "type": "array" }, "Edition": { "type": "string" }, "Name": { "type": "string" }, "RoleArn": { "type": "string" }, "ServerSideEncryptionConfiguration": { "$ref": "#/definitions/AWS::Kendra::Index.ServerSideEncryptionConfiguration" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "UserContextPolicy": { "type": "string" }, "UserTokenConfigurations": { "items": { "$ref": "#/definitions/AWS::Kendra::Index.UserTokenConfiguration" }, "type": "array" } }, "required": [ "Edition", "Name", "RoleArn" ], "type": "object" }, "Type": { "enum": [ "AWS::Kendra::Index" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Kendra::Index.CapacityUnitsConfiguration": { "additionalProperties": false, "properties": { "QueryCapacityUnits": { "type": "number" }, "StorageCapacityUnits": { "type": "number" } }, "required": [ "QueryCapacityUnits", "StorageCapacityUnits" ], "type": "object" }, "AWS::Kendra::Index.DocumentMetadataConfiguration": { "additionalProperties": false, "properties": { "Name": { "type": "string" }, "Relevance": { "$ref": "#/definitions/AWS::Kendra::Index.Relevance" }, "Search": { "$ref": "#/definitions/AWS::Kendra::Index.Search" }, "Type": { "type": "string" } }, "required": [ "Name", "Type" ], "type": "object" }, "AWS::Kendra::Index.JsonTokenTypeConfiguration": { "additionalProperties": false, "properties": { "GroupAttributeField": { "type": "string" }, "UserNameAttributeField": { "type": "string" } }, "required": [ "GroupAttributeField", "UserNameAttributeField" ], "type": "object" }, "AWS::Kendra::Index.JwtTokenTypeConfiguration": { "additionalProperties": false, "properties": { "ClaimRegex": { "type": "string" }, "GroupAttributeField": { "type": "string" }, "Issuer": { "type": "string" }, "KeyLocation": { "type": "string" }, "SecretManagerArn": { "type": "string" }, "URL": { "type": "string" }, "UserNameAttributeField": { "type": "string" } }, "required": [ "KeyLocation" ], "type": "object" }, "AWS::Kendra::Index.Relevance": { "additionalProperties": false, "properties": { "Duration": { "type": "string" }, "Freshness": { "type": "boolean" }, "Importance": { "type": "number" }, "RankOrder": { "type": "string" }, "ValueImportanceItems": { "items": { "$ref": "#/definitions/AWS::Kendra::Index.ValueImportanceItem" }, "type": "array" } }, "type": "object" }, "AWS::Kendra::Index.Search": { "additionalProperties": false, "properties": { "Displayable": { "type": "boolean" }, "Facetable": { "type": "boolean" }, "Searchable": { "type": "boolean" }, "Sortable": { "type": "boolean" } }, "type": "object" }, "AWS::Kendra::Index.ServerSideEncryptionConfiguration": { "additionalProperties": false, "properties": { "KmsKeyId": { "type": "string" } }, "type": "object" }, "AWS::Kendra::Index.UserTokenConfiguration": { "additionalProperties": false, "properties": { "JsonTokenTypeConfiguration": { "$ref": "#/definitions/AWS::Kendra::Index.JsonTokenTypeConfiguration" }, "JwtTokenTypeConfiguration": { "$ref": "#/definitions/AWS::Kendra::Index.JwtTokenTypeConfiguration" } }, "type": "object" }, "AWS::Kendra::Index.ValueImportanceItem": { "additionalProperties": false, "properties": { "Key": { "type": "string" }, "Value": { "type": "number" } }, "type": "object" }, "AWS::KendraRanking::ExecutionPlan": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "CapacityUnits": { "$ref": "#/definitions/AWS::KendraRanking::ExecutionPlan.CapacityUnitsConfiguration" }, "Description": { "type": "string" }, "Name": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "Name" ], "type": "object" }, "Type": { "enum": [ "AWS::KendraRanking::ExecutionPlan" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::KendraRanking::ExecutionPlan.CapacityUnitsConfiguration": { "additionalProperties": false, "properties": { "RescoreCapacityUnits": { "type": "number" } }, "required": [ "RescoreCapacityUnits" ], "type": "object" }, "AWS::Kinesis::Stream": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Name": { "type": "string" }, "RetentionPeriodHours": { "type": "number" }, "ShardCount": { "type": "number" }, "StreamEncryption": { "$ref": "#/definitions/AWS::Kinesis::Stream.StreamEncryption" }, "StreamModeDetails": { "$ref": "#/definitions/AWS::Kinesis::Stream.StreamModeDetails" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "type": "object" }, "Type": { "enum": [ "AWS::Kinesis::Stream" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::Kinesis::Stream.StreamEncryption": { "additionalProperties": false, "properties": { "EncryptionType": { "type": "string" }, "KeyId": { "type": "string" } }, "required": [ "EncryptionType", "KeyId" ], "type": "object" }, "AWS::Kinesis::Stream.StreamModeDetails": { "additionalProperties": false, "properties": { "StreamMode": { "type": "string" } }, "required": [ "StreamMode" ], "type": "object" }, "AWS::Kinesis::StreamConsumer": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ConsumerName": { "type": "string" }, "StreamARN": { "type": "string" } }, "required": [ "ConsumerName", "StreamARN" ], "type": "object" }, "Type": { "enum": [ "AWS::Kinesis::StreamConsumer" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::KinesisAnalytics::Application": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ApplicationCode": { "type": "string" }, "ApplicationDescription": { "type": "string" }, "ApplicationName": { "type": "string" }, "Inputs": { "items": { "$ref": "#/definitions/AWS::KinesisAnalytics::Application.Input" }, "type": "array" } }, "required": [ "Inputs" ], "type": "object" }, "Type": { "enum": [ "AWS::KinesisAnalytics::Application" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::KinesisAnalytics::Application.CSVMappingParameters": { "additionalProperties": false, "properties": { "RecordColumnDelimiter": { "type": "string" }, "RecordRowDelimiter": { "type": "string" } }, "required": [ "RecordColumnDelimiter", "RecordRowDelimiter" ], "type": "object" }, "AWS::KinesisAnalytics::Application.Input": { "additionalProperties": false, "properties": { "InputParallelism": { "$ref": "#/definitions/AWS::KinesisAnalytics::Application.InputParallelism" }, "InputProcessingConfiguration": { "$ref": "#/definitions/AWS::KinesisAnalytics::Application.InputProcessingConfiguration" }, "InputSchema": { "$ref": "#/definitions/AWS::KinesisAnalytics::Application.InputSchema" }, "KinesisFirehoseInput": { "$ref": "#/definitions/AWS::KinesisAnalytics::Application.KinesisFirehoseInput" }, "KinesisStreamsInput": { "$ref": "#/definitions/AWS::KinesisAnalytics::Application.KinesisStreamsInput" }, "NamePrefix": { "type": "string" } }, "required": [ "InputSchema", "NamePrefix" ], "type": "object" }, "AWS::KinesisAnalytics::Application.InputLambdaProcessor": { "additionalProperties": false, "properties": { "ResourceARN": { "type": "string" }, "RoleARN": { "type": "string" } }, "required": [ "ResourceARN", "RoleARN" ], "type": "object" }, "AWS::KinesisAnalytics::Application.InputParallelism": { "additionalProperties": false, "properties": { "Count": { "type": "number" } }, "type": "object" }, "AWS::KinesisAnalytics::Application.InputProcessingConfiguration": { "additionalProperties": false, "properties": { "InputLambdaProcessor": { "$ref": "#/definitions/AWS::KinesisAnalytics::Application.InputLambdaProcessor" } }, "type": "object" }, "AWS::KinesisAnalytics::Application.InputSchema": { "additionalProperties": false, "properties": { "RecordColumns": { "items": { "$ref": "#/definitions/AWS::KinesisAnalytics::Application.RecordColumn" }, "type": "array" }, "RecordEncoding": { "type": "string" }, "RecordFormat": { "$ref": "#/definitions/AWS::KinesisAnalytics::Application.RecordFormat" } }, "required": [ "RecordColumns", "RecordFormat" ], "type": "object" }, "AWS::KinesisAnalytics::Application.JSONMappingParameters": { "additionalProperties": false, "properties": { "RecordRowPath": { "type": "string" } }, "required": [ "RecordRowPath" ], "type": "object" }, "AWS::KinesisAnalytics::Application.KinesisFirehoseInput": { "additionalProperties": false, "properties": { "ResourceARN": { "type": "string" }, "RoleARN": { "type": "string" } }, "required": [ "ResourceARN", "RoleARN" ], "type": "object" }, "AWS::KinesisAnalytics::Application.KinesisStreamsInput": { "additionalProperties": false, "properties": { "ResourceARN": { "type": "string" }, "RoleARN": { "type": "string" } }, "required": [ "ResourceARN", "RoleARN" ], "type": "object" }, "AWS::KinesisAnalytics::Application.MappingParameters": { "additionalProperties": false, "properties": { "CSVMappingParameters": { "$ref": "#/definitions/AWS::KinesisAnalytics::Application.CSVMappingParameters" }, "JSONMappingParameters": { "$ref": "#/definitions/AWS::KinesisAnalytics::Application.JSONMappingParameters" } }, "type": "object" }, "AWS::KinesisAnalytics::Application.RecordColumn": { "additionalProperties": false, "properties": { "Mapping": { "type": "string" }, "Name": { "type": "string" }, "SqlType": { "type": "string" } }, "required": [ "Name", "SqlType" ], "type": "object" }, "AWS::KinesisAnalytics::Application.RecordFormat": { "additionalProperties": false, "properties": { "MappingParameters": { "$ref": "#/definitions/AWS::KinesisAnalytics::Application.MappingParameters" }, "RecordFormatType": { "type": "string" } }, "required": [ "RecordFormatType" ], "type": "object" }, "AWS::KinesisAnalytics::ApplicationOutput": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ApplicationName": { "type": "string" }, "Output": { "$ref": "#/definitions/AWS::KinesisAnalytics::ApplicationOutput.Output" } }, "required": [ "ApplicationName", "Output" ], "type": "object" }, "Type": { "enum": [ "AWS::KinesisAnalytics::ApplicationOutput" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::KinesisAnalytics::ApplicationOutput.DestinationSchema": { "additionalProperties": false, "properties": { "RecordFormatType": { "type": "string" } }, "type": "object" }, "AWS::KinesisAnalytics::ApplicationOutput.KinesisFirehoseOutput": { "additionalProperties": false, "properties": { "ResourceARN": { "type": "string" }, "RoleARN": { "type": "string" } }, "required": [ "ResourceARN", "RoleARN" ], "type": "object" }, "AWS::KinesisAnalytics::ApplicationOutput.KinesisStreamsOutput": { "additionalProperties": false, "properties": { "ResourceARN": { "type": "string" }, "RoleARN": { "type": "string" } }, "required": [ "ResourceARN", "RoleARN" ], "type": "object" }, "AWS::KinesisAnalytics::ApplicationOutput.LambdaOutput": { "additionalProperties": false, "properties": { "ResourceARN": { "type": "string" }, "RoleARN": { "type": "string" } }, "required": [ "ResourceARN", "RoleARN" ], "type": "object" }, "AWS::KinesisAnalytics::ApplicationOutput.Output": { "additionalProperties": false, "properties": { "DestinationSchema": { "$ref": "#/definitions/AWS::KinesisAnalytics::ApplicationOutput.DestinationSchema" }, "KinesisFirehoseOutput": { "$ref": "#/definitions/AWS::KinesisAnalytics::ApplicationOutput.KinesisFirehoseOutput" }, "KinesisStreamsOutput": { "$ref": "#/definitions/AWS::KinesisAnalytics::ApplicationOutput.KinesisStreamsOutput" }, "LambdaOutput": { "$ref": "#/definitions/AWS::KinesisAnalytics::ApplicationOutput.LambdaOutput" }, "Name": { "type": "string" } }, "required": [ "DestinationSchema" ], "type": "object" }, "AWS::KinesisAnalytics::ApplicationReferenceDataSource": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ApplicationName": { "type": "string" }, "ReferenceDataSource": { "$ref": "#/definitions/AWS::KinesisAnalytics::ApplicationReferenceDataSource.ReferenceDataSource" } }, "required": [ "ApplicationName", "ReferenceDataSource" ], "type": "object" }, "Type": { "enum": [ "AWS::KinesisAnalytics::ApplicationReferenceDataSource" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::KinesisAnalytics::ApplicationReferenceDataSource.CSVMappingParameters": { "additionalProperties": false, "properties": { "RecordColumnDelimiter": { "type": "string" }, "RecordRowDelimiter": { "type": "string" } }, "required": [ "RecordColumnDelimiter", "RecordRowDelimiter" ], "type": "object" }, "AWS::KinesisAnalytics::ApplicationReferenceDataSource.JSONMappingParameters": { "additionalProperties": false, "properties": { "RecordRowPath": { "type": "string" } }, "required": [ "RecordRowPath" ], "type": "object" }, "AWS::KinesisAnalytics::ApplicationReferenceDataSource.MappingParameters": { "additionalProperties": false, "properties": { "CSVMappingParameters": { "$ref": "#/definitions/AWS::KinesisAnalytics::ApplicationReferenceDataSource.CSVMappingParameters" }, "JSONMappingParameters": { "$ref": "#/definitions/AWS::KinesisAnalytics::ApplicationReferenceDataSource.JSONMappingParameters" } }, "type": "object" }, "AWS::KinesisAnalytics::ApplicationReferenceDataSource.RecordColumn": { "additionalProperties": false, "properties": { "Mapping": { "type": "string" }, "Name": { "type": "string" }, "SqlType": { "type": "string" } }, "required": [ "Name", "SqlType" ], "type": "object" }, "AWS::KinesisAnalytics::ApplicationReferenceDataSource.RecordFormat": { "additionalProperties": false, "properties": { "MappingParameters": { "$ref": "#/definitions/AWS::KinesisAnalytics::ApplicationReferenceDataSource.MappingParameters" }, "RecordFormatType": { "type": "string" } }, "required": [ "RecordFormatType" ], "type": "object" }, "AWS::KinesisAnalytics::ApplicationReferenceDataSource.ReferenceDataSource": { "additionalProperties": false, "properties": { "ReferenceSchema": { "$ref": "#/definitions/AWS::KinesisAnalytics::ApplicationReferenceDataSource.ReferenceSchema" }, "S3ReferenceDataSource": { "$ref": "#/definitions/AWS::KinesisAnalytics::ApplicationReferenceDataSource.S3ReferenceDataSource" }, "TableName": { "type": "string" } }, "required": [ "ReferenceSchema" ], "type": "object" }, "AWS::KinesisAnalytics::ApplicationReferenceDataSource.ReferenceSchema": { "additionalProperties": false, "properties": { "RecordColumns": { "items": { "$ref": "#/definitions/AWS::KinesisAnalytics::ApplicationReferenceDataSource.RecordColumn" }, "type": "array" }, "RecordEncoding": { "type": "string" }, "RecordFormat": { "$ref": "#/definitions/AWS::KinesisAnalytics::ApplicationReferenceDataSource.RecordFormat" } }, "required": [ "RecordColumns", "RecordFormat" ], "type": "object" }, "AWS::KinesisAnalytics::ApplicationReferenceDataSource.S3ReferenceDataSource": { "additionalProperties": false, "properties": { "BucketARN": { "type": "string" }, "FileKey": { "type": "string" }, "ReferenceRoleARN": { "type": "string" } }, "required": [ "BucketARN", "FileKey", "ReferenceRoleARN" ], "type": "object" }, "AWS::KinesisAnalyticsV2::Application": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ApplicationConfiguration": { "$ref": "#/definitions/AWS::KinesisAnalyticsV2::Application.ApplicationConfiguration" }, "ApplicationDescription": { "type": "string" }, "ApplicationMaintenanceConfiguration": { "$ref": "#/definitions/AWS::KinesisAnalyticsV2::Application.ApplicationMaintenanceConfiguration" }, "ApplicationMode": { "type": "string" }, "ApplicationName": { "type": "string" }, "RunConfiguration": { "$ref": "#/definitions/AWS::KinesisAnalyticsV2::Application.RunConfiguration" }, "RuntimeEnvironment": { "type": "string" }, "ServiceExecutionRole": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "RuntimeEnvironment", "ServiceExecutionRole" ], "type": "object" }, "Type": { "enum": [ "AWS::KinesisAnalyticsV2::Application" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::KinesisAnalyticsV2::Application.ApplicationCodeConfiguration": { "additionalProperties": false, "properties": { "CodeContent": { "$ref": "#/definitions/AWS::KinesisAnalyticsV2::Application.CodeContent" }, "CodeContentType": { "type": "string" } }, "required": [ "CodeContent", "CodeContentType" ], "type": "object" }, "AWS::KinesisAnalyticsV2::Application.ApplicationConfiguration": { "additionalProperties": false, "properties": { "ApplicationCodeConfiguration": { "$ref": "#/definitions/AWS::KinesisAnalyticsV2::Application.ApplicationCodeConfiguration" }, "ApplicationSnapshotConfiguration": { "$ref": "#/definitions/AWS::KinesisAnalyticsV2::Application.ApplicationSnapshotConfiguration" }, "EnvironmentProperties": { "$ref": "#/definitions/AWS::KinesisAnalyticsV2::Application.EnvironmentProperties" }, "FlinkApplicationConfiguration": { "$ref": "#/definitions/AWS::KinesisAnalyticsV2::Application.FlinkApplicationConfiguration" }, "SqlApplicationConfiguration": { "$ref": "#/definitions/AWS::KinesisAnalyticsV2::Application.SqlApplicationConfiguration" }, "VpcConfigurations": { "items": { "$ref": "#/definitions/AWS::KinesisAnalyticsV2::Application.VpcConfiguration" }, "type": "array" }, "ZeppelinApplicationConfiguration": { "$ref": "#/definitions/AWS::KinesisAnalyticsV2::Application.ZeppelinApplicationConfiguration" } }, "type": "object" }, "AWS::KinesisAnalyticsV2::Application.ApplicationMaintenanceConfiguration": { "additionalProperties": false, "properties": { "ApplicationMaintenanceWindowStartTime": { "type": "string" } }, "required": [ "ApplicationMaintenanceWindowStartTime" ], "type": "object" }, "AWS::KinesisAnalyticsV2::Application.ApplicationRestoreConfiguration": { "additionalProperties": false, "properties": { "ApplicationRestoreType": { "type": "string" }, "SnapshotName": { "type": "string" } }, "required": [ "ApplicationRestoreType" ], "type": "object" }, "AWS::KinesisAnalyticsV2::Application.ApplicationSnapshotConfiguration": { "additionalProperties": false, "properties": { "SnapshotsEnabled": { "type": "boolean" } }, "required": [ "SnapshotsEnabled" ], "type": "object" }, "AWS::KinesisAnalyticsV2::Application.CSVMappingParameters": { "additionalProperties": false, "properties": { "RecordColumnDelimiter": { "type": "string" }, "RecordRowDelimiter": { "type": "string" } }, "required": [ "RecordColumnDelimiter", "RecordRowDelimiter" ], "type": "object" }, "AWS::KinesisAnalyticsV2::Application.CatalogConfiguration": { "additionalProperties": false, "properties": { "GlueDataCatalogConfiguration": { "$ref": "#/definitions/AWS::KinesisAnalyticsV2::Application.GlueDataCatalogConfiguration" } }, "type": "object" }, "AWS::KinesisAnalyticsV2::Application.CheckpointConfiguration": { "additionalProperties": false, "properties": { "CheckpointInterval": { "type": "number" }, "CheckpointingEnabled": { "type": "boolean" }, "ConfigurationType": { "type": "string" }, "MinPauseBetweenCheckpoints": { "type": "number" } }, "required": [ "ConfigurationType" ], "type": "object" }, "AWS::KinesisAnalyticsV2::Application.CodeContent": { "additionalProperties": false, "properties": { "S3ContentLocation": { "$ref": "#/definitions/AWS::KinesisAnalyticsV2::Application.S3ContentLocation" }, "TextContent": { "type": "string" }, "ZipFileContent": { "type": "string" } }, "type": "object" }, "AWS::KinesisAnalyticsV2::Application.CustomArtifactConfiguration": { "additionalProperties": false, "properties": { "ArtifactType": { "type": "string" }, "MavenReference": { "$ref": "#/definitions/AWS::KinesisAnalyticsV2::Application.MavenReference" }, "S3ContentLocation": { "$ref": "#/definitions/AWS::KinesisAnalyticsV2::Application.S3ContentLocation" } }, "required": [ "ArtifactType" ], "type": "object" }, "AWS::KinesisAnalyticsV2::Application.DeployAsApplicationConfiguration": { "additionalProperties": false, "properties": { "S3ContentLocation": { "$ref": "#/definitions/AWS::KinesisAnalyticsV2::Application.S3ContentBaseLocation" } }, "required": [ "S3ContentLocation" ], "type": "object" }, "AWS::KinesisAnalyticsV2::Application.EnvironmentProperties": { "additionalProperties": false, "properties": { "PropertyGroups": { "items": { "$ref": "#/definitions/AWS::KinesisAnalyticsV2::Application.PropertyGroup" }, "type": "array" } }, "type": "object" }, "AWS::KinesisAnalyticsV2::Application.FlinkApplicationConfiguration": { "additionalProperties": false, "properties": { "CheckpointConfiguration": { "$ref": "#/definitions/AWS::KinesisAnalyticsV2::Application.CheckpointConfiguration" }, "MonitoringConfiguration": { "$ref": "#/definitions/AWS::KinesisAnalyticsV2::Application.MonitoringConfiguration" }, "ParallelismConfiguration": { "$ref": "#/definitions/AWS::KinesisAnalyticsV2::Application.ParallelismConfiguration" } }, "type": "object" }, "AWS::KinesisAnalyticsV2::Application.FlinkRunConfiguration": { "additionalProperties": false, "properties": { "AllowNonRestoredState": { "type": "boolean" } }, "type": "object" }, "AWS::KinesisAnalyticsV2::Application.GlueDataCatalogConfiguration": { "additionalProperties": false, "properties": { "DatabaseARN": { "type": "string" } }, "type": "object" }, "AWS::KinesisAnalyticsV2::Application.Input": { "additionalProperties": false, "properties": { "InputParallelism": { "$ref": "#/definitions/AWS::KinesisAnalyticsV2::Application.InputParallelism" }, "InputProcessingConfiguration": { "$ref": "#/definitions/AWS::KinesisAnalyticsV2::Application.InputProcessingConfiguration" }, "InputSchema": { "$ref": "#/definitions/AWS::KinesisAnalyticsV2::Application.InputSchema" }, "KinesisFirehoseInput": { "$ref": "#/definitions/AWS::KinesisAnalyticsV2::Application.KinesisFirehoseInput" }, "KinesisStreamsInput": { "$ref": "#/definitions/AWS::KinesisAnalyticsV2::Application.KinesisStreamsInput" }, "NamePrefix": { "type": "string" } }, "required": [ "InputSchema", "NamePrefix" ], "type": "object" }, "AWS::KinesisAnalyticsV2::Application.InputLambdaProcessor": { "additionalProperties": false, "properties": { "ResourceARN": { "type": "string" } }, "required": [ "ResourceARN" ], "type": "object" }, "AWS::KinesisAnalyticsV2::Application.InputParallelism": { "additionalProperties": false, "properties": { "Count": { "type": "number" } }, "type": "object" }, "AWS::KinesisAnalyticsV2::Application.InputProcessingConfiguration": { "additionalProperties": false, "properties": { "InputLambdaProcessor": { "$ref": "#/definitions/AWS::KinesisAnalyticsV2::Application.InputLambdaProcessor" } }, "type": "object" }, "AWS::KinesisAnalyticsV2::Application.InputSchema": { "additionalProperties": false, "properties": { "RecordColumns": { "items": { "$ref": "#/definitions/AWS::KinesisAnalyticsV2::Application.RecordColumn" }, "type": "array" }, "RecordEncoding": { "type": "string" }, "RecordFormat": { "$ref": "#/definitions/AWS::KinesisAnalyticsV2::Application.RecordFormat" } }, "required": [ "RecordColumns", "RecordFormat" ], "type": "object" }, "AWS::KinesisAnalyticsV2::Application.JSONMappingParameters": { "additionalProperties": false, "properties": { "RecordRowPath": { "type": "string" } }, "required": [ "RecordRowPath" ], "type": "object" }, "AWS::KinesisAnalyticsV2::Application.KinesisFirehoseInput": { "additionalProperties": false, "properties": { "ResourceARN": { "type": "string" } }, "required": [ "ResourceARN" ], "type": "object" }, "AWS::KinesisAnalyticsV2::Application.KinesisStreamsInput": { "additionalProperties": false, "properties": { "ResourceARN": { "type": "string" } }, "required": [ "ResourceARN" ], "type": "object" }, "AWS::KinesisAnalyticsV2::Application.MappingParameters": { "additionalProperties": false, "properties": { "CSVMappingParameters": { "$ref": "#/definitions/AWS::KinesisAnalyticsV2::Application.CSVMappingParameters" }, "JSONMappingParameters": { "$ref": "#/definitions/AWS::KinesisAnalyticsV2::Application.JSONMappingParameters" } }, "type": "object" }, "AWS::KinesisAnalyticsV2::Application.MavenReference": { "additionalProperties": false, "properties": { "ArtifactId": { "type": "string" }, "GroupId": { "type": "string" }, "Version": { "type": "string" } }, "required": [ "ArtifactId", "GroupId", "Version" ], "type": "object" }, "AWS::KinesisAnalyticsV2::Application.MonitoringConfiguration": { "additionalProperties": false, "properties": { "ConfigurationType": { "type": "string" }, "LogLevel": { "type": "string" }, "MetricsLevel": { "type": "string" } }, "required": [ "ConfigurationType" ], "type": "object" }, "AWS::KinesisAnalyticsV2::Application.ParallelismConfiguration": { "additionalProperties": false, "properties": { "AutoScalingEnabled": { "type": "boolean" }, "ConfigurationType": { "type": "string" }, "Parallelism": { "type": "number" }, "ParallelismPerKPU": { "type": "number" } }, "required": [ "ConfigurationType" ], "type": "object" }, "AWS::KinesisAnalyticsV2::Application.PropertyGroup": { "additionalProperties": false, "properties": { "PropertyGroupId": { "type": "string" }, "PropertyMap": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" } }, "type": "object" }, "AWS::KinesisAnalyticsV2::Application.RecordColumn": { "additionalProperties": false, "properties": { "Mapping": { "type": "string" }, "Name": { "type": "string" }, "SqlType": { "type": "string" } }, "required": [ "Name", "SqlType" ], "type": "object" }, "AWS::KinesisAnalyticsV2::Application.RecordFormat": { "additionalProperties": false, "properties": { "MappingParameters": { "$ref": "#/definitions/AWS::KinesisAnalyticsV2::Application.MappingParameters" }, "RecordFormatType": { "type": "string" } }, "required": [ "RecordFormatType" ], "type": "object" }, "AWS::KinesisAnalyticsV2::Application.RunConfiguration": { "additionalProperties": false, "properties": { "ApplicationRestoreConfiguration": { "$ref": "#/definitions/AWS::KinesisAnalyticsV2::Application.ApplicationRestoreConfiguration" }, "FlinkRunConfiguration": { "$ref": "#/definitions/AWS::KinesisAnalyticsV2::Application.FlinkRunConfiguration" } }, "type": "object" }, "AWS::KinesisAnalyticsV2::Application.S3ContentBaseLocation": { "additionalProperties": false, "properties": { "BasePath": { "type": "string" }, "BucketARN": { "type": "string" } }, "required": [ "BucketARN" ], "type": "object" }, "AWS::KinesisAnalyticsV2::Application.S3ContentLocation": { "additionalProperties": false, "properties": { "BucketARN": { "type": "string" }, "FileKey": { "type": "string" }, "ObjectVersion": { "type": "string" } }, "required": [ "BucketARN", "FileKey" ], "type": "object" }, "AWS::KinesisAnalyticsV2::Application.SqlApplicationConfiguration": { "additionalProperties": false, "properties": { "Inputs": { "items": { "$ref": "#/definitions/AWS::KinesisAnalyticsV2::Application.Input" }, "type": "array" } }, "type": "object" }, "AWS::KinesisAnalyticsV2::Application.VpcConfiguration": { "additionalProperties": false, "properties": { "SecurityGroupIds": { "items": { "type": "string" }, "type": "array" }, "SubnetIds": { "items": { "type": "string" }, "type": "array" } }, "required": [ "SecurityGroupIds", "SubnetIds" ], "type": "object" }, "AWS::KinesisAnalyticsV2::Application.ZeppelinApplicationConfiguration": { "additionalProperties": false, "properties": { "CatalogConfiguration": { "$ref": "#/definitions/AWS::KinesisAnalyticsV2::Application.CatalogConfiguration" }, "CustomArtifactsConfiguration": { "items": { "$ref": "#/definitions/AWS::KinesisAnalyticsV2::Application.CustomArtifactConfiguration" }, "type": "array" }, "DeployAsApplicationConfiguration": { "$ref": "#/definitions/AWS::KinesisAnalyticsV2::Application.DeployAsApplicationConfiguration" }, "MonitoringConfiguration": { "$ref": "#/definitions/AWS::KinesisAnalyticsV2::Application.ZeppelinMonitoringConfiguration" } }, "type": "object" }, "AWS::KinesisAnalyticsV2::Application.ZeppelinMonitoringConfiguration": { "additionalProperties": false, "properties": { "LogLevel": { "type": "string" } }, "type": "object" }, "AWS::KinesisAnalyticsV2::ApplicationCloudWatchLoggingOption": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ApplicationName": { "type": "string" }, "CloudWatchLoggingOption": { "$ref": "#/definitions/AWS::KinesisAnalyticsV2::ApplicationCloudWatchLoggingOption.CloudWatchLoggingOption" } }, "required": [ "ApplicationName", "CloudWatchLoggingOption" ], "type": "object" }, "Type": { "enum": [ "AWS::KinesisAnalyticsV2::ApplicationCloudWatchLoggingOption" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::KinesisAnalyticsV2::ApplicationCloudWatchLoggingOption.CloudWatchLoggingOption": { "additionalProperties": false, "properties": { "LogStreamARN": { "type": "string" } }, "required": [ "LogStreamARN" ], "type": "object" }, "AWS::KinesisAnalyticsV2::ApplicationOutput": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ApplicationName": { "type": "string" }, "Output": { "$ref": "#/definitions/AWS::KinesisAnalyticsV2::ApplicationOutput.Output" } }, "required": [ "ApplicationName", "Output" ], "type": "object" }, "Type": { "enum": [ "AWS::KinesisAnalyticsV2::ApplicationOutput" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::KinesisAnalyticsV2::ApplicationOutput.DestinationSchema": { "additionalProperties": false, "properties": { "RecordFormatType": { "type": "string" } }, "type": "object" }, "AWS::KinesisAnalyticsV2::ApplicationOutput.KinesisFirehoseOutput": { "additionalProperties": false, "properties": { "ResourceARN": { "type": "string" } }, "required": [ "ResourceARN" ], "type": "object" }, "AWS::KinesisAnalyticsV2::ApplicationOutput.KinesisStreamsOutput": { "additionalProperties": false, "properties": { "ResourceARN": { "type": "string" } }, "required": [ "ResourceARN" ], "type": "object" }, "AWS::KinesisAnalyticsV2::ApplicationOutput.LambdaOutput": { "additionalProperties": false, "properties": { "ResourceARN": { "type": "string" } }, "required": [ "ResourceARN" ], "type": "object" }, "AWS::KinesisAnalyticsV2::ApplicationOutput.Output": { "additionalProperties": false, "properties": { "DestinationSchema": { "$ref": "#/definitions/AWS::KinesisAnalyticsV2::ApplicationOutput.DestinationSchema" }, "KinesisFirehoseOutput": { "$ref": "#/definitions/AWS::KinesisAnalyticsV2::ApplicationOutput.KinesisFirehoseOutput" }, "KinesisStreamsOutput": { "$ref": "#/definitions/AWS::KinesisAnalyticsV2::ApplicationOutput.KinesisStreamsOutput" }, "LambdaOutput": { "$ref": "#/definitions/AWS::KinesisAnalyticsV2::ApplicationOutput.LambdaOutput" }, "Name": { "type": "string" } }, "required": [ "DestinationSchema" ], "type": "object" }, "AWS::KinesisAnalyticsV2::ApplicationReferenceDataSource": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ApplicationName": { "type": "string" }, "ReferenceDataSource": { "$ref": "#/definitions/AWS::KinesisAnalyticsV2::ApplicationReferenceDataSource.ReferenceDataSource" } }, "required": [ "ApplicationName", "ReferenceDataSource" ], "type": "object" }, "Type": { "enum": [ "AWS::KinesisAnalyticsV2::ApplicationReferenceDataSource" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::KinesisAnalyticsV2::ApplicationReferenceDataSource.CSVMappingParameters": { "additionalProperties": false, "properties": { "RecordColumnDelimiter": { "type": "string" }, "RecordRowDelimiter": { "type": "string" } }, "required": [ "RecordColumnDelimiter", "RecordRowDelimiter" ], "type": "object" }, "AWS::KinesisAnalyticsV2::ApplicationReferenceDataSource.JSONMappingParameters": { "additionalProperties": false, "properties": { "RecordRowPath": { "type": "string" } }, "required": [ "RecordRowPath" ], "type": "object" }, "AWS::KinesisAnalyticsV2::ApplicationReferenceDataSource.MappingParameters": { "additionalProperties": false, "properties": { "CSVMappingParameters": { "$ref": "#/definitions/AWS::KinesisAnalyticsV2::ApplicationReferenceDataSource.CSVMappingParameters" }, "JSONMappingParameters": { "$ref": "#/definitions/AWS::KinesisAnalyticsV2::ApplicationReferenceDataSource.JSONMappingParameters" } }, "type": "object" }, "AWS::KinesisAnalyticsV2::ApplicationReferenceDataSource.RecordColumn": { "additionalProperties": false, "properties": { "Mapping": { "type": "string" }, "Name": { "type": "string" }, "SqlType": { "type": "string" } }, "required": [ "Name", "SqlType" ], "type": "object" }, "AWS::KinesisAnalyticsV2::ApplicationReferenceDataSource.RecordFormat": { "additionalProperties": false, "properties": { "MappingParameters": { "$ref": "#/definitions/AWS::KinesisAnalyticsV2::ApplicationReferenceDataSource.MappingParameters" }, "RecordFormatType": { "type": "string" } }, "required": [ "RecordFormatType" ], "type": "object" }, "AWS::KinesisAnalyticsV2::ApplicationReferenceDataSource.ReferenceDataSource": { "additionalProperties": false, "properties": { "ReferenceSchema": { "$ref": "#/definitions/AWS::KinesisAnalyticsV2::ApplicationReferenceDataSource.ReferenceSchema" }, "S3ReferenceDataSource": { "$ref": "#/definitions/AWS::KinesisAnalyticsV2::ApplicationReferenceDataSource.S3ReferenceDataSource" }, "TableName": { "type": "string" } }, "required": [ "ReferenceSchema" ], "type": "object" }, "AWS::KinesisAnalyticsV2::ApplicationReferenceDataSource.ReferenceSchema": { "additionalProperties": false, "properties": { "RecordColumns": { "items": { "$ref": "#/definitions/AWS::KinesisAnalyticsV2::ApplicationReferenceDataSource.RecordColumn" }, "type": "array" }, "RecordEncoding": { "type": "string" }, "RecordFormat": { "$ref": "#/definitions/AWS::KinesisAnalyticsV2::ApplicationReferenceDataSource.RecordFormat" } }, "required": [ "RecordColumns", "RecordFormat" ], "type": "object" }, "AWS::KinesisAnalyticsV2::ApplicationReferenceDataSource.S3ReferenceDataSource": { "additionalProperties": false, "properties": { "BucketARN": { "type": "string" }, "FileKey": { "type": "string" } }, "required": [ "BucketARN", "FileKey" ], "type": "object" }, "AWS::KinesisFirehose::DeliveryStream": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AmazonOpenSearchServerlessDestinationConfiguration": { "$ref": "#/definitions/AWS::KinesisFirehose::DeliveryStream.AmazonOpenSearchServerlessDestinationConfiguration" }, "AmazonopensearchserviceDestinationConfiguration": { "$ref": "#/definitions/AWS::KinesisFirehose::DeliveryStream.AmazonopensearchserviceDestinationConfiguration" }, "DeliveryStreamEncryptionConfigurationInput": { "$ref": "#/definitions/AWS::KinesisFirehose::DeliveryStream.DeliveryStreamEncryptionConfigurationInput" }, "DeliveryStreamName": { "type": "string" }, "DeliveryStreamType": { "type": "string" }, "ElasticsearchDestinationConfiguration": { "$ref": "#/definitions/AWS::KinesisFirehose::DeliveryStream.ElasticsearchDestinationConfiguration" }, "ExtendedS3DestinationConfiguration": { "$ref": "#/definitions/AWS::KinesisFirehose::DeliveryStream.ExtendedS3DestinationConfiguration" }, "HttpEndpointDestinationConfiguration": { "$ref": "#/definitions/AWS::KinesisFirehose::DeliveryStream.HttpEndpointDestinationConfiguration" }, "KinesisStreamSourceConfiguration": { "$ref": "#/definitions/AWS::KinesisFirehose::DeliveryStream.KinesisStreamSourceConfiguration" }, "RedshiftDestinationConfiguration": { "$ref": "#/definitions/AWS::KinesisFirehose::DeliveryStream.RedshiftDestinationConfiguration" }, "S3DestinationConfiguration": { "$ref": "#/definitions/AWS::KinesisFirehose::DeliveryStream.S3DestinationConfiguration" }, "SplunkDestinationConfiguration": { "$ref": "#/definitions/AWS::KinesisFirehose::DeliveryStream.SplunkDestinationConfiguration" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "type": "object" }, "Type": { "enum": [ "AWS::KinesisFirehose::DeliveryStream" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::KinesisFirehose::DeliveryStream.AmazonOpenSearchServerlessBufferingHints": { "additionalProperties": false, "properties": { "IntervalInSeconds": { "type": "number" }, "SizeInMBs": { "type": "number" } }, "type": "object" }, "AWS::KinesisFirehose::DeliveryStream.AmazonOpenSearchServerlessDestinationConfiguration": { "additionalProperties": false, "properties": { "BufferingHints": { "$ref": "#/definitions/AWS::KinesisFirehose::DeliveryStream.AmazonOpenSearchServerlessBufferingHints" }, "CloudWatchLoggingOptions": { "$ref": "#/definitions/AWS::KinesisFirehose::DeliveryStream.CloudWatchLoggingOptions" }, "CollectionEndpoint": { "type": "string" }, "IndexName": { "type": "string" }, "ProcessingConfiguration": { "$ref": "#/definitions/AWS::KinesisFirehose::DeliveryStream.ProcessingConfiguration" }, "RetryOptions": { "$ref": "#/definitions/AWS::KinesisFirehose::DeliveryStream.AmazonOpenSearchServerlessRetryOptions" }, "RoleARN": { "type": "string" }, "S3BackupMode": { "type": "string" }, "S3Configuration": { "$ref": "#/definitions/AWS::KinesisFirehose::DeliveryStream.S3DestinationConfiguration" }, "VpcConfiguration": { "$ref": "#/definitions/AWS::KinesisFirehose::DeliveryStream.VpcConfiguration" } }, "required": [ "IndexName", "RoleARN", "S3Configuration" ], "type": "object" }, "AWS::KinesisFirehose::DeliveryStream.AmazonOpenSearchServerlessRetryOptions": { "additionalProperties": false, "properties": { "DurationInSeconds": { "type": "number" } }, "type": "object" }, "AWS::KinesisFirehose::DeliveryStream.AmazonopensearchserviceBufferingHints": { "additionalProperties": false, "properties": { "IntervalInSeconds": { "type": "number" }, "SizeInMBs": { "type": "number" } }, "type": "object" }, "AWS::KinesisFirehose::DeliveryStream.AmazonopensearchserviceDestinationConfiguration": { "additionalProperties": false, "properties": { "BufferingHints": { "$ref": "#/definitions/AWS::KinesisFirehose::DeliveryStream.AmazonopensearchserviceBufferingHints" }, "CloudWatchLoggingOptions": { "$ref": "#/definitions/AWS::KinesisFirehose::DeliveryStream.CloudWatchLoggingOptions" }, "ClusterEndpoint": { "type": "string" }, "DocumentIdOptions": { "$ref": "#/definitions/AWS::KinesisFirehose::DeliveryStream.DocumentIdOptions" }, "DomainARN": { "type": "string" }, "IndexName": { "type": "string" }, "IndexRotationPeriod": { "type": "string" }, "ProcessingConfiguration": { "$ref": "#/definitions/AWS::KinesisFirehose::DeliveryStream.ProcessingConfiguration" }, "RetryOptions": { "$ref": "#/definitions/AWS::KinesisFirehose::DeliveryStream.AmazonopensearchserviceRetryOptions" }, "RoleARN": { "type": "string" }, "S3BackupMode": { "type": "string" }, "S3Configuration": { "$ref": "#/definitions/AWS::KinesisFirehose::DeliveryStream.S3DestinationConfiguration" }, "TypeName": { "type": "string" }, "VpcConfiguration": { "$ref": "#/definitions/AWS::KinesisFirehose::DeliveryStream.VpcConfiguration" } }, "required": [ "IndexName", "RoleARN", "S3Configuration" ], "type": "object" }, "AWS::KinesisFirehose::DeliveryStream.AmazonopensearchserviceRetryOptions": { "additionalProperties": false, "properties": { "DurationInSeconds": { "type": "number" } }, "type": "object" }, "AWS::KinesisFirehose::DeliveryStream.BufferingHints": { "additionalProperties": false, "properties": { "IntervalInSeconds": { "type": "number" }, "SizeInMBs": { "type": "number" } }, "type": "object" }, "AWS::KinesisFirehose::DeliveryStream.CloudWatchLoggingOptions": { "additionalProperties": false, "properties": { "Enabled": { "type": "boolean" }, "LogGroupName": { "type": "string" }, "LogStreamName": { "type": "string" } }, "type": "object" }, "AWS::KinesisFirehose::DeliveryStream.CopyCommand": { "additionalProperties": false, "properties": { "CopyOptions": { "type": "string" }, "DataTableColumns": { "type": "string" }, "DataTableName": { "type": "string" } }, "required": [ "DataTableName" ], "type": "object" }, "AWS::KinesisFirehose::DeliveryStream.DataFormatConversionConfiguration": { "additionalProperties": false, "properties": { "Enabled": { "type": "boolean" }, "InputFormatConfiguration": { "$ref": "#/definitions/AWS::KinesisFirehose::DeliveryStream.InputFormatConfiguration" }, "OutputFormatConfiguration": { "$ref": "#/definitions/AWS::KinesisFirehose::DeliveryStream.OutputFormatConfiguration" }, "SchemaConfiguration": { "$ref": "#/definitions/AWS::KinesisFirehose::DeliveryStream.SchemaConfiguration" } }, "type": "object" }, "AWS::KinesisFirehose::DeliveryStream.DeliveryStreamEncryptionConfigurationInput": { "additionalProperties": false, "properties": { "KeyARN": { "type": "string" }, "KeyType": { "type": "string" } }, "required": [ "KeyType" ], "type": "object" }, "AWS::KinesisFirehose::DeliveryStream.Deserializer": { "additionalProperties": false, "properties": { "HiveJsonSerDe": { "$ref": "#/definitions/AWS::KinesisFirehose::DeliveryStream.HiveJsonSerDe" }, "OpenXJsonSerDe": { "$ref": "#/definitions/AWS::KinesisFirehose::DeliveryStream.OpenXJsonSerDe" } }, "type": "object" }, "AWS::KinesisFirehose::DeliveryStream.DocumentIdOptions": { "additionalProperties": false, "properties": { "DefaultDocumentIdFormat": { "type": "string" } }, "required": [ "DefaultDocumentIdFormat" ], "type": "object" }, "AWS::KinesisFirehose::DeliveryStream.DynamicPartitioningConfiguration": { "additionalProperties": false, "properties": { "Enabled": { "type": "boolean" }, "RetryOptions": { "$ref": "#/definitions/AWS::KinesisFirehose::DeliveryStream.RetryOptions" } }, "type": "object" }, "AWS::KinesisFirehose::DeliveryStream.ElasticsearchBufferingHints": { "additionalProperties": false, "properties": { "IntervalInSeconds": { "type": "number" }, "SizeInMBs": { "type": "number" } }, "type": "object" }, "AWS::KinesisFirehose::DeliveryStream.ElasticsearchDestinationConfiguration": { "additionalProperties": false, "properties": { "BufferingHints": { "$ref": "#/definitions/AWS::KinesisFirehose::DeliveryStream.ElasticsearchBufferingHints" }, "CloudWatchLoggingOptions": { "$ref": "#/definitions/AWS::KinesisFirehose::DeliveryStream.CloudWatchLoggingOptions" }, "ClusterEndpoint": { "type": "string" }, "DocumentIdOptions": { "$ref": "#/definitions/AWS::KinesisFirehose::DeliveryStream.DocumentIdOptions" }, "DomainARN": { "type": "string" }, "IndexName": { "type": "string" }, "IndexRotationPeriod": { "type": "string" }, "ProcessingConfiguration": { "$ref": "#/definitions/AWS::KinesisFirehose::DeliveryStream.ProcessingConfiguration" }, "RetryOptions": { "$ref": "#/definitions/AWS::KinesisFirehose::DeliveryStream.ElasticsearchRetryOptions" }, "RoleARN": { "type": "string" }, "S3BackupMode": { "type": "string" }, "S3Configuration": { "$ref": "#/definitions/AWS::KinesisFirehose::DeliveryStream.S3DestinationConfiguration" }, "TypeName": { "type": "string" }, "VpcConfiguration": { "$ref": "#/definitions/AWS::KinesisFirehose::DeliveryStream.VpcConfiguration" } }, "required": [ "IndexName", "RoleARN", "S3Configuration" ], "type": "object" }, "AWS::KinesisFirehose::DeliveryStream.ElasticsearchRetryOptions": { "additionalProperties": false, "properties": { "DurationInSeconds": { "type": "number" } }, "type": "object" }, "AWS::KinesisFirehose::DeliveryStream.EncryptionConfiguration": { "additionalProperties": false, "properties": { "KMSEncryptionConfig": { "$ref": "#/definitions/AWS::KinesisFirehose::DeliveryStream.KMSEncryptionConfig" }, "NoEncryptionConfig": { "type": "string" } }, "type": "object" }, "AWS::KinesisFirehose::DeliveryStream.ExtendedS3DestinationConfiguration": { "additionalProperties": false, "properties": { "BucketARN": { "type": "string" }, "BufferingHints": { "$ref": "#/definitions/AWS::KinesisFirehose::DeliveryStream.BufferingHints" }, "CloudWatchLoggingOptions": { "$ref": "#/definitions/AWS::KinesisFirehose::DeliveryStream.CloudWatchLoggingOptions" }, "CompressionFormat": { "type": "string" }, "DataFormatConversionConfiguration": { "$ref": "#/definitions/AWS::KinesisFirehose::DeliveryStream.DataFormatConversionConfiguration" }, "DynamicPartitioningConfiguration": { "$ref": "#/definitions/AWS::KinesisFirehose::DeliveryStream.DynamicPartitioningConfiguration" }, "EncryptionConfiguration": { "$ref": "#/definitions/AWS::KinesisFirehose::DeliveryStream.EncryptionConfiguration" }, "ErrorOutputPrefix": { "type": "string" }, "Prefix": { "type": "string" }, "ProcessingConfiguration": { "$ref": "#/definitions/AWS::KinesisFirehose::DeliveryStream.ProcessingConfiguration" }, "RoleARN": { "type": "string" }, "S3BackupConfiguration": { "$ref": "#/definitions/AWS::KinesisFirehose::DeliveryStream.S3DestinationConfiguration" }, "S3BackupMode": { "type": "string" } }, "required": [ "BucketARN", "RoleARN" ], "type": "object" }, "AWS::KinesisFirehose::DeliveryStream.HiveJsonSerDe": { "additionalProperties": false, "properties": { "TimestampFormats": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::KinesisFirehose::DeliveryStream.HttpEndpointCommonAttribute": { "additionalProperties": false, "properties": { "AttributeName": { "type": "string" }, "AttributeValue": { "type": "string" } }, "required": [ "AttributeName", "AttributeValue" ], "type": "object" }, "AWS::KinesisFirehose::DeliveryStream.HttpEndpointConfiguration": { "additionalProperties": false, "properties": { "AccessKey": { "type": "string" }, "Name": { "type": "string" }, "Url": { "type": "string" } }, "required": [ "Url" ], "type": "object" }, "AWS::KinesisFirehose::DeliveryStream.HttpEndpointDestinationConfiguration": { "additionalProperties": false, "properties": { "BufferingHints": { "$ref": "#/definitions/AWS::KinesisFirehose::DeliveryStream.BufferingHints" }, "CloudWatchLoggingOptions": { "$ref": "#/definitions/AWS::KinesisFirehose::DeliveryStream.CloudWatchLoggingOptions" }, "EndpointConfiguration": { "$ref": "#/definitions/AWS::KinesisFirehose::DeliveryStream.HttpEndpointConfiguration" }, "ProcessingConfiguration": { "$ref": "#/definitions/AWS::KinesisFirehose::DeliveryStream.ProcessingConfiguration" }, "RequestConfiguration": { "$ref": "#/definitions/AWS::KinesisFirehose::DeliveryStream.HttpEndpointRequestConfiguration" }, "RetryOptions": { "$ref": "#/definitions/AWS::KinesisFirehose::DeliveryStream.RetryOptions" }, "RoleARN": { "type": "string" }, "S3BackupMode": { "type": "string" }, "S3Configuration": { "$ref": "#/definitions/AWS::KinesisFirehose::DeliveryStream.S3DestinationConfiguration" } }, "required": [ "EndpointConfiguration", "S3Configuration" ], "type": "object" }, "AWS::KinesisFirehose::DeliveryStream.HttpEndpointRequestConfiguration": { "additionalProperties": false, "properties": { "CommonAttributes": { "items": { "$ref": "#/definitions/AWS::KinesisFirehose::DeliveryStream.HttpEndpointCommonAttribute" }, "type": "array" }, "ContentEncoding": { "type": "string" } }, "type": "object" }, "AWS::KinesisFirehose::DeliveryStream.InputFormatConfiguration": { "additionalProperties": false, "properties": { "Deserializer": { "$ref": "#/definitions/AWS::KinesisFirehose::DeliveryStream.Deserializer" } }, "type": "object" }, "AWS::KinesisFirehose::DeliveryStream.KMSEncryptionConfig": { "additionalProperties": false, "properties": { "AWSKMSKeyARN": { "type": "string" } }, "required": [ "AWSKMSKeyARN" ], "type": "object" }, "AWS::KinesisFirehose::DeliveryStream.KinesisStreamSourceConfiguration": { "additionalProperties": false, "properties": { "KinesisStreamARN": { "type": "string" }, "RoleARN": { "type": "string" } }, "required": [ "KinesisStreamARN", "RoleARN" ], "type": "object" }, "AWS::KinesisFirehose::DeliveryStream.OpenXJsonSerDe": { "additionalProperties": false, "properties": { "CaseInsensitive": { "type": "boolean" }, "ColumnToJsonKeyMappings": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" }, "ConvertDotsInJsonKeysToUnderscores": { "type": "boolean" } }, "type": "object" }, "AWS::KinesisFirehose::DeliveryStream.OrcSerDe": { "additionalProperties": false, "properties": { "BlockSizeBytes": { "type": "number" }, "BloomFilterColumns": { "items": { "type": "string" }, "type": "array" }, "BloomFilterFalsePositiveProbability": { "type": "number" }, "Compression": { "type": "string" }, "DictionaryKeyThreshold": { "type": "number" }, "EnablePadding": { "type": "boolean" }, "FormatVersion": { "type": "string" }, "PaddingTolerance": { "type": "number" }, "RowIndexStride": { "type": "number" }, "StripeSizeBytes": { "type": "number" } }, "type": "object" }, "AWS::KinesisFirehose::DeliveryStream.OutputFormatConfiguration": { "additionalProperties": false, "properties": { "Serializer": { "$ref": "#/definitions/AWS::KinesisFirehose::DeliveryStream.Serializer" } }, "type": "object" }, "AWS::KinesisFirehose::DeliveryStream.ParquetSerDe": { "additionalProperties": false, "properties": { "BlockSizeBytes": { "type": "number" }, "Compression": { "type": "string" }, "EnableDictionaryCompression": { "type": "boolean" }, "MaxPaddingBytes": { "type": "number" }, "PageSizeBytes": { "type": "number" }, "WriterVersion": { "type": "string" } }, "type": "object" }, "AWS::KinesisFirehose::DeliveryStream.ProcessingConfiguration": { "additionalProperties": false, "properties": { "Enabled": { "type": "boolean" }, "Processors": { "items": { "$ref": "#/definitions/AWS::KinesisFirehose::DeliveryStream.Processor" }, "type": "array" } }, "type": "object" }, "AWS::KinesisFirehose::DeliveryStream.Processor": { "additionalProperties": false, "properties": { "Parameters": { "items": { "$ref": "#/definitions/AWS::KinesisFirehose::DeliveryStream.ProcessorParameter" }, "type": "array" }, "Type": { "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::KinesisFirehose::DeliveryStream.ProcessorParameter": { "additionalProperties": false, "properties": { "ParameterName": { "type": "string" }, "ParameterValue": { "type": "string" } }, "required": [ "ParameterName", "ParameterValue" ], "type": "object" }, "AWS::KinesisFirehose::DeliveryStream.RedshiftDestinationConfiguration": { "additionalProperties": false, "properties": { "CloudWatchLoggingOptions": { "$ref": "#/definitions/AWS::KinesisFirehose::DeliveryStream.CloudWatchLoggingOptions" }, "ClusterJDBCURL": { "type": "string" }, "CopyCommand": { "$ref": "#/definitions/AWS::KinesisFirehose::DeliveryStream.CopyCommand" }, "Password": { "type": "string" }, "ProcessingConfiguration": { "$ref": "#/definitions/AWS::KinesisFirehose::DeliveryStream.ProcessingConfiguration" }, "RetryOptions": { "$ref": "#/definitions/AWS::KinesisFirehose::DeliveryStream.RedshiftRetryOptions" }, "RoleARN": { "type": "string" }, "S3BackupConfiguration": { "$ref": "#/definitions/AWS::KinesisFirehose::DeliveryStream.S3DestinationConfiguration" }, "S3BackupMode": { "type": "string" }, "S3Configuration": { "$ref": "#/definitions/AWS::KinesisFirehose::DeliveryStream.S3DestinationConfiguration" }, "Username": { "type": "string" } }, "required": [ "ClusterJDBCURL", "CopyCommand", "Password", "RoleARN", "S3Configuration", "Username" ], "type": "object" }, "AWS::KinesisFirehose::DeliveryStream.RedshiftRetryOptions": { "additionalProperties": false, "properties": { "DurationInSeconds": { "type": "number" } }, "type": "object" }, "AWS::KinesisFirehose::DeliveryStream.RetryOptions": { "additionalProperties": false, "properties": { "DurationInSeconds": { "type": "number" } }, "type": "object" }, "AWS::KinesisFirehose::DeliveryStream.S3DestinationConfiguration": { "additionalProperties": false, "properties": { "BucketARN": { "type": "string" }, "BufferingHints": { "$ref": "#/definitions/AWS::KinesisFirehose::DeliveryStream.BufferingHints" }, "CloudWatchLoggingOptions": { "$ref": "#/definitions/AWS::KinesisFirehose::DeliveryStream.CloudWatchLoggingOptions" }, "CompressionFormat": { "type": "string" }, "EncryptionConfiguration": { "$ref": "#/definitions/AWS::KinesisFirehose::DeliveryStream.EncryptionConfiguration" }, "ErrorOutputPrefix": { "type": "string" }, "Prefix": { "type": "string" }, "RoleARN": { "type": "string" } }, "required": [ "BucketARN", "RoleARN" ], "type": "object" }, "AWS::KinesisFirehose::DeliveryStream.SchemaConfiguration": { "additionalProperties": false, "properties": { "CatalogId": { "type": "string" }, "DatabaseName": { "type": "string" }, "Region": { "type": "string" }, "RoleARN": { "type": "string" }, "TableName": { "type": "string" }, "VersionId": { "type": "string" } }, "type": "object" }, "AWS::KinesisFirehose::DeliveryStream.Serializer": { "additionalProperties": false, "properties": { "OrcSerDe": { "$ref": "#/definitions/AWS::KinesisFirehose::DeliveryStream.OrcSerDe" }, "ParquetSerDe": { "$ref": "#/definitions/AWS::KinesisFirehose::DeliveryStream.ParquetSerDe" } }, "type": "object" }, "AWS::KinesisFirehose::DeliveryStream.SplunkDestinationConfiguration": { "additionalProperties": false, "properties": { "CloudWatchLoggingOptions": { "$ref": "#/definitions/AWS::KinesisFirehose::DeliveryStream.CloudWatchLoggingOptions" }, "HECAcknowledgmentTimeoutInSeconds": { "type": "number" }, "HECEndpoint": { "type": "string" }, "HECEndpointType": { "type": "string" }, "HECToken": { "type": "string" }, "ProcessingConfiguration": { "$ref": "#/definitions/AWS::KinesisFirehose::DeliveryStream.ProcessingConfiguration" }, "RetryOptions": { "$ref": "#/definitions/AWS::KinesisFirehose::DeliveryStream.SplunkRetryOptions" }, "S3BackupMode": { "type": "string" }, "S3Configuration": { "$ref": "#/definitions/AWS::KinesisFirehose::DeliveryStream.S3DestinationConfiguration" } }, "required": [ "HECEndpoint", "HECEndpointType", "HECToken", "S3Configuration" ], "type": "object" }, "AWS::KinesisFirehose::DeliveryStream.SplunkRetryOptions": { "additionalProperties": false, "properties": { "DurationInSeconds": { "type": "number" } }, "type": "object" }, "AWS::KinesisFirehose::DeliveryStream.VpcConfiguration": { "additionalProperties": false, "properties": { "RoleARN": { "type": "string" }, "SecurityGroupIds": { "items": { "type": "string" }, "type": "array" }, "SubnetIds": { "items": { "type": "string" }, "type": "array" } }, "required": [ "RoleARN", "SecurityGroupIds", "SubnetIds" ], "type": "object" }, "AWS::KinesisVideo::SignalingChannel": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "MessageTtlSeconds": { "type": "number" }, "Name": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "Type": { "type": "string" } }, "type": "object" }, "Type": { "enum": [ "AWS::KinesisVideo::SignalingChannel" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::KinesisVideo::Stream": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "DataRetentionInHours": { "type": "number" }, "DeviceName": { "type": "string" }, "KmsKeyId": { "type": "string" }, "MediaType": { "type": "string" }, "Name": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "type": "object" }, "Type": { "enum": [ "AWS::KinesisVideo::Stream" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::LakeFormation::DataCellsFilter": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ColumnNames": { "items": { "type": "string" }, "type": "array" }, "ColumnWildcard": { "$ref": "#/definitions/AWS::LakeFormation::DataCellsFilter.ColumnWildcard" }, "DatabaseName": { "type": "string" }, "Name": { "type": "string" }, "RowFilter": { "$ref": "#/definitions/AWS::LakeFormation::DataCellsFilter.RowFilter" }, "TableCatalogId": { "type": "string" }, "TableName": { "type": "string" } }, "required": [ "DatabaseName", "Name", "TableCatalogId", "TableName" ], "type": "object" }, "Type": { "enum": [ "AWS::LakeFormation::DataCellsFilter" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::LakeFormation::DataCellsFilter.ColumnWildcard": { "additionalProperties": false, "properties": { "ExcludedColumnNames": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::LakeFormation::DataCellsFilter.RowFilter": { "additionalProperties": false, "properties": { "AllRowsWildcard": { "type": "object" }, "FilterExpression": { "type": "string" } }, "type": "object" }, "AWS::LakeFormation::DataLakeSettings": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Admins": { "$ref": "#/definitions/AWS::LakeFormation::DataLakeSettings.Admins" }, "AllowExternalDataFiltering": { "type": "boolean" }, "AuthorizedSessionTagValueList": { "items": { "type": "string" }, "type": "array" }, "CreateDatabaseDefaultPermissions": { "$ref": "#/definitions/AWS::LakeFormation::DataLakeSettings.CreateDatabaseDefaultPermissions" }, "CreateTableDefaultPermissions": { "$ref": "#/definitions/AWS::LakeFormation::DataLakeSettings.CreateTableDefaultPermissions" }, "ExternalDataFilteringAllowList": { "$ref": "#/definitions/AWS::LakeFormation::DataLakeSettings.ExternalDataFilteringAllowList" }, "Parameters": { "type": "object" }, "TrustedResourceOwners": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "Type": { "enum": [ "AWS::LakeFormation::DataLakeSettings" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::LakeFormation::DataLakeSettings.Admins": { "additionalProperties": false, "properties": {}, "type": "object" }, "AWS::LakeFormation::DataLakeSettings.CreateDatabaseDefaultPermissions": { "additionalProperties": false, "properties": {}, "type": "object" }, "AWS::LakeFormation::DataLakeSettings.CreateTableDefaultPermissions": { "additionalProperties": false, "properties": {}, "type": "object" }, "AWS::LakeFormation::DataLakeSettings.DataLakePrincipal": { "additionalProperties": false, "properties": { "DataLakePrincipalIdentifier": { "type": "string" } }, "required": [ "DataLakePrincipalIdentifier" ], "type": "object" }, "AWS::LakeFormation::DataLakeSettings.ExternalDataFilteringAllowList": { "additionalProperties": false, "properties": {}, "type": "object" }, "AWS::LakeFormation::DataLakeSettings.PrincipalPermissions": { "additionalProperties": false, "properties": { "Permissions": { "items": { "type": "string" }, "type": "array" }, "Principal": { "$ref": "#/definitions/AWS::LakeFormation::DataLakeSettings.DataLakePrincipal" } }, "required": [ "Permissions", "Principal" ], "type": "object" }, "AWS::LakeFormation::Permissions": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "DataLakePrincipal": { "$ref": "#/definitions/AWS::LakeFormation::Permissions.DataLakePrincipal" }, "Permissions": { "items": { "type": "string" }, "type": "array" }, "PermissionsWithGrantOption": { "items": { "type": "string" }, "type": "array" }, "Resource": { "$ref": "#/definitions/AWS::LakeFormation::Permissions.Resource" } }, "required": [ "DataLakePrincipal", "Resource" ], "type": "object" }, "Type": { "enum": [ "AWS::LakeFormation::Permissions" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::LakeFormation::Permissions.ColumnWildcard": { "additionalProperties": false, "properties": { "ExcludedColumnNames": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::LakeFormation::Permissions.DataLakePrincipal": { "additionalProperties": false, "properties": { "DataLakePrincipalIdentifier": { "type": "string" } }, "type": "object" }, "AWS::LakeFormation::Permissions.DataLocationResource": { "additionalProperties": false, "properties": { "CatalogId": { "type": "string" }, "S3Resource": { "type": "string" } }, "type": "object" }, "AWS::LakeFormation::Permissions.DatabaseResource": { "additionalProperties": false, "properties": { "CatalogId": { "type": "string" }, "Name": { "type": "string" } }, "type": "object" }, "AWS::LakeFormation::Permissions.Resource": { "additionalProperties": false, "properties": { "DataLocationResource": { "$ref": "#/definitions/AWS::LakeFormation::Permissions.DataLocationResource" }, "DatabaseResource": { "$ref": "#/definitions/AWS::LakeFormation::Permissions.DatabaseResource" }, "TableResource": { "$ref": "#/definitions/AWS::LakeFormation::Permissions.TableResource" }, "TableWithColumnsResource": { "$ref": "#/definitions/AWS::LakeFormation::Permissions.TableWithColumnsResource" } }, "type": "object" }, "AWS::LakeFormation::Permissions.TableResource": { "additionalProperties": false, "properties": { "CatalogId": { "type": "string" }, "DatabaseName": { "type": "string" }, "Name": { "type": "string" }, "TableWildcard": { "$ref": "#/definitions/AWS::LakeFormation::Permissions.TableWildcard" } }, "type": "object" }, "AWS::LakeFormation::Permissions.TableWildcard": { "additionalProperties": false, "properties": {}, "type": "object" }, "AWS::LakeFormation::Permissions.TableWithColumnsResource": { "additionalProperties": false, "properties": { "CatalogId": { "type": "string" }, "ColumnNames": { "items": { "type": "string" }, "type": "array" }, "ColumnWildcard": { "$ref": "#/definitions/AWS::LakeFormation::Permissions.ColumnWildcard" }, "DatabaseName": { "type": "string" }, "Name": { "type": "string" } }, "type": "object" }, "AWS::LakeFormation::PrincipalPermissions": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Catalog": { "type": "string" }, "Permissions": { "items": { "type": "string" }, "type": "array" }, "PermissionsWithGrantOption": { "items": { "type": "string" }, "type": "array" }, "Principal": { "$ref": "#/definitions/AWS::LakeFormation::PrincipalPermissions.DataLakePrincipal" }, "Resource": { "$ref": "#/definitions/AWS::LakeFormation::PrincipalPermissions.Resource" } }, "required": [ "Permissions", "PermissionsWithGrantOption", "Principal", "Resource" ], "type": "object" }, "Type": { "enum": [ "AWS::LakeFormation::PrincipalPermissions" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::LakeFormation::PrincipalPermissions.ColumnWildcard": { "additionalProperties": false, "properties": { "ExcludedColumnNames": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::LakeFormation::PrincipalPermissions.DataCellsFilterResource": { "additionalProperties": false, "properties": { "DatabaseName": { "type": "string" }, "Name": { "type": "string" }, "TableCatalogId": { "type": "string" }, "TableName": { "type": "string" } }, "required": [ "DatabaseName", "Name", "TableCatalogId", "TableName" ], "type": "object" }, "AWS::LakeFormation::PrincipalPermissions.DataLakePrincipal": { "additionalProperties": false, "properties": { "DataLakePrincipalIdentifier": { "type": "string" } }, "type": "object" }, "AWS::LakeFormation::PrincipalPermissions.DataLocationResource": { "additionalProperties": false, "properties": { "CatalogId": { "type": "string" }, "ResourceArn": { "type": "string" } }, "required": [ "CatalogId", "ResourceArn" ], "type": "object" }, "AWS::LakeFormation::PrincipalPermissions.DatabaseResource": { "additionalProperties": false, "properties": { "CatalogId": { "type": "string" }, "Name": { "type": "string" } }, "required": [ "CatalogId", "Name" ], "type": "object" }, "AWS::LakeFormation::PrincipalPermissions.LFTag": { "additionalProperties": false, "properties": { "TagKey": { "type": "string" }, "TagValues": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::LakeFormation::PrincipalPermissions.LFTagKeyResource": { "additionalProperties": false, "properties": { "CatalogId": { "type": "string" }, "TagKey": { "type": "string" }, "TagValues": { "items": { "type": "string" }, "type": "array" } }, "required": [ "CatalogId", "TagKey", "TagValues" ], "type": "object" }, "AWS::LakeFormation::PrincipalPermissions.LFTagPolicyResource": { "additionalProperties": false, "properties": { "CatalogId": { "type": "string" }, "Expression": { "items": { "$ref": "#/definitions/AWS::LakeFormation::PrincipalPermissions.LFTag" }, "type": "array" }, "ResourceType": { "type": "string" } }, "required": [ "CatalogId", "Expression", "ResourceType" ], "type": "object" }, "AWS::LakeFormation::PrincipalPermissions.Resource": { "additionalProperties": false, "properties": { "Catalog": { "type": "object" }, "DataCellsFilter": { "$ref": "#/definitions/AWS::LakeFormation::PrincipalPermissions.DataCellsFilterResource" }, "DataLocation": { "$ref": "#/definitions/AWS::LakeFormation::PrincipalPermissions.DataLocationResource" }, "Database": { "$ref": "#/definitions/AWS::LakeFormation::PrincipalPermissions.DatabaseResource" }, "LFTag": { "$ref": "#/definitions/AWS::LakeFormation::PrincipalPermissions.LFTagKeyResource" }, "LFTagPolicy": { "$ref": "#/definitions/AWS::LakeFormation::PrincipalPermissions.LFTagPolicyResource" }, "Table": { "$ref": "#/definitions/AWS::LakeFormation::PrincipalPermissions.TableResource" }, "TableWithColumns": { "$ref": "#/definitions/AWS::LakeFormation::PrincipalPermissions.TableWithColumnsResource" } }, "type": "object" }, "AWS::LakeFormation::PrincipalPermissions.TableResource": { "additionalProperties": false, "properties": { "CatalogId": { "type": "string" }, "DatabaseName": { "type": "string" }, "Name": { "type": "string" }, "TableWildcard": { "type": "object" } }, "required": [ "CatalogId", "DatabaseName" ], "type": "object" }, "AWS::LakeFormation::PrincipalPermissions.TableWithColumnsResource": { "additionalProperties": false, "properties": { "CatalogId": { "type": "string" }, "ColumnNames": { "items": { "type": "string" }, "type": "array" }, "ColumnWildcard": { "$ref": "#/definitions/AWS::LakeFormation::PrincipalPermissions.ColumnWildcard" }, "DatabaseName": { "type": "string" }, "Name": { "type": "string" } }, "required": [ "CatalogId", "DatabaseName", "Name" ], "type": "object" }, "AWS::LakeFormation::Resource": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ResourceArn": { "type": "string" }, "RoleArn": { "type": "string" }, "UseServiceLinkedRole": { "type": "boolean" }, "WithFederation": { "type": "boolean" } }, "required": [ "ResourceArn", "UseServiceLinkedRole" ], "type": "object" }, "Type": { "enum": [ "AWS::LakeFormation::Resource" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::LakeFormation::Tag": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "CatalogId": { "type": "string" }, "TagKey": { "type": "string" }, "TagValues": { "items": { "type": "string" }, "type": "array" } }, "required": [ "TagKey", "TagValues" ], "type": "object" }, "Type": { "enum": [ "AWS::LakeFormation::Tag" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::LakeFormation::TagAssociation": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "LFTags": { "items": { "$ref": "#/definitions/AWS::LakeFormation::TagAssociation.LFTagPair" }, "type": "array" }, "Resource": { "$ref": "#/definitions/AWS::LakeFormation::TagAssociation.Resource" } }, "required": [ "LFTags", "Resource" ], "type": "object" }, "Type": { "enum": [ "AWS::LakeFormation::TagAssociation" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::LakeFormation::TagAssociation.DatabaseResource": { "additionalProperties": false, "properties": { "CatalogId": { "type": "string" }, "Name": { "type": "string" } }, "required": [ "CatalogId", "Name" ], "type": "object" }, "AWS::LakeFormation::TagAssociation.LFTagPair": { "additionalProperties": false, "properties": { "CatalogId": { "type": "string" }, "TagKey": { "type": "string" }, "TagValues": { "items": { "type": "string" }, "type": "array" } }, "required": [ "CatalogId", "TagKey", "TagValues" ], "type": "object" }, "AWS::LakeFormation::TagAssociation.Resource": { "additionalProperties": false, "properties": { "Catalog": { "type": "object" }, "Database": { "$ref": "#/definitions/AWS::LakeFormation::TagAssociation.DatabaseResource" }, "Table": { "$ref": "#/definitions/AWS::LakeFormation::TagAssociation.TableResource" }, "TableWithColumns": { "$ref": "#/definitions/AWS::LakeFormation::TagAssociation.TableWithColumnsResource" } }, "type": "object" }, "AWS::LakeFormation::TagAssociation.TableResource": { "additionalProperties": false, "properties": { "CatalogId": { "type": "string" }, "DatabaseName": { "type": "string" }, "Name": { "type": "string" }, "TableWildcard": { "type": "object" } }, "required": [ "CatalogId", "DatabaseName" ], "type": "object" }, "AWS::LakeFormation::TagAssociation.TableWithColumnsResource": { "additionalProperties": false, "properties": { "CatalogId": { "type": "string" }, "ColumnNames": { "items": { "type": "string" }, "type": "array" }, "DatabaseName": { "type": "string" }, "Name": { "type": "string" } }, "required": [ "CatalogId", "ColumnNames", "DatabaseName", "Name" ], "type": "object" }, "AWS::Lambda::Alias": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "FunctionName": { "type": "string" }, "FunctionVersion": { "type": "string" }, "Name": { "type": "string" }, "ProvisionedConcurrencyConfig": { "$ref": "#/definitions/AWS::Lambda::Alias.ProvisionedConcurrencyConfiguration" }, "RoutingConfig": { "$ref": "#/definitions/AWS::Lambda::Alias.AliasRoutingConfiguration" } }, "required": [ "FunctionName", "FunctionVersion", "Name" ], "type": "object" }, "Type": { "enum": [ "AWS::Lambda::Alias" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Lambda::Alias.AliasRoutingConfiguration": { "additionalProperties": false, "properties": { "AdditionalVersionWeights": { "items": { "$ref": "#/definitions/AWS::Lambda::Alias.VersionWeight" }, "type": "array" } }, "required": [ "AdditionalVersionWeights" ], "type": "object" }, "AWS::Lambda::Alias.ProvisionedConcurrencyConfiguration": { "additionalProperties": false, "properties": { "ProvisionedConcurrentExecutions": { "type": "number" } }, "required": [ "ProvisionedConcurrentExecutions" ], "type": "object" }, "AWS::Lambda::Alias.VersionWeight": { "additionalProperties": false, "properties": { "FunctionVersion": { "type": "string" }, "FunctionWeight": { "type": "number" } }, "required": [ "FunctionVersion", "FunctionWeight" ], "type": "object" }, "AWS::Lambda::CodeSigningConfig": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AllowedPublishers": { "$ref": "#/definitions/AWS::Lambda::CodeSigningConfig.AllowedPublishers" }, "CodeSigningPolicies": { "$ref": "#/definitions/AWS::Lambda::CodeSigningConfig.CodeSigningPolicies" }, "Description": { "type": "string" } }, "required": [ "AllowedPublishers" ], "type": "object" }, "Type": { "enum": [ "AWS::Lambda::CodeSigningConfig" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Lambda::CodeSigningConfig.AllowedPublishers": { "additionalProperties": false, "properties": { "SigningProfileVersionArns": { "items": { "type": "string" }, "type": "array" } }, "required": [ "SigningProfileVersionArns" ], "type": "object" }, "AWS::Lambda::CodeSigningConfig.CodeSigningPolicies": { "additionalProperties": false, "properties": { "UntrustedArtifactOnDeployment": { "type": "string" } }, "required": [ "UntrustedArtifactOnDeployment" ], "type": "object" }, "AWS::Lambda::EventInvokeConfig": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "DestinationConfig": { "$ref": "#/definitions/AWS::Lambda::EventInvokeConfig.DestinationConfig" }, "FunctionName": { "type": "string" }, "MaximumEventAgeInSeconds": { "type": "number" }, "MaximumRetryAttempts": { "type": "number" }, "Qualifier": { "type": "string" } }, "required": [ "FunctionName", "Qualifier" ], "type": "object" }, "Type": { "enum": [ "AWS::Lambda::EventInvokeConfig" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Lambda::EventInvokeConfig.DestinationConfig": { "additionalProperties": false, "properties": { "OnFailure": { "$ref": "#/definitions/AWS::Lambda::EventInvokeConfig.OnFailure" }, "OnSuccess": { "$ref": "#/definitions/AWS::Lambda::EventInvokeConfig.OnSuccess" } }, "type": "object" }, "AWS::Lambda::EventInvokeConfig.OnFailure": { "additionalProperties": false, "properties": { "Destination": { "type": "string" } }, "required": [ "Destination" ], "type": "object" }, "AWS::Lambda::EventInvokeConfig.OnSuccess": { "additionalProperties": false, "properties": { "Destination": { "type": "string" } }, "required": [ "Destination" ], "type": "object" }, "AWS::Lambda::EventSourceMapping": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AmazonManagedKafkaEventSourceConfig": { "$ref": "#/definitions/AWS::Lambda::EventSourceMapping.AmazonManagedKafkaEventSourceConfig" }, "BatchSize": { "type": "number" }, "BisectBatchOnFunctionError": { "type": "boolean" }, "DestinationConfig": { "$ref": "#/definitions/AWS::Lambda::EventSourceMapping.DestinationConfig" }, "DocumentDBEventSourceConfig": { "$ref": "#/definitions/AWS::Lambda::EventSourceMapping.DocumentDBEventSourceConfig" }, "Enabled": { "type": "boolean" }, "EventSourceArn": { "type": "string" }, "FilterCriteria": { "$ref": "#/definitions/AWS::Lambda::EventSourceMapping.FilterCriteria" }, "FunctionName": { "type": "string" }, "FunctionResponseTypes": { "items": { "type": "string" }, "type": "array" }, "MaximumBatchingWindowInSeconds": { "type": "number" }, "MaximumRecordAgeInSeconds": { "type": "number" }, "MaximumRetryAttempts": { "type": "number" }, "ParallelizationFactor": { "type": "number" }, "Queues": { "items": { "type": "string" }, "type": "array" }, "ScalingConfig": { "$ref": "#/definitions/AWS::Lambda::EventSourceMapping.ScalingConfig" }, "SelfManagedEventSource": { "$ref": "#/definitions/AWS::Lambda::EventSourceMapping.SelfManagedEventSource" }, "SelfManagedKafkaEventSourceConfig": { "$ref": "#/definitions/AWS::Lambda::EventSourceMapping.SelfManagedKafkaEventSourceConfig" }, "SourceAccessConfigurations": { "items": { "$ref": "#/definitions/AWS::Lambda::EventSourceMapping.SourceAccessConfiguration" }, "type": "array" }, "StartingPosition": { "type": "string" }, "StartingPositionTimestamp": { "type": "number" }, "Topics": { "items": { "type": "string" }, "type": "array" }, "TumblingWindowInSeconds": { "type": "number" } }, "required": [ "FunctionName" ], "type": "object" }, "Type": { "enum": [ "AWS::Lambda::EventSourceMapping" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Lambda::EventSourceMapping.AmazonManagedKafkaEventSourceConfig": { "additionalProperties": false, "properties": { "ConsumerGroupId": { "type": "string" } }, "type": "object" }, "AWS::Lambda::EventSourceMapping.DestinationConfig": { "additionalProperties": false, "properties": { "OnFailure": { "$ref": "#/definitions/AWS::Lambda::EventSourceMapping.OnFailure" } }, "type": "object" }, "AWS::Lambda::EventSourceMapping.DocumentDBEventSourceConfig": { "additionalProperties": false, "properties": { "CollectionName": { "type": "string" }, "DatabaseName": { "type": "string" }, "FullDocument": { "type": "string" } }, "type": "object" }, "AWS::Lambda::EventSourceMapping.Endpoints": { "additionalProperties": false, "properties": { "KafkaBootstrapServers": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::Lambda::EventSourceMapping.Filter": { "additionalProperties": false, "properties": { "Pattern": { "type": "string" } }, "type": "object" }, "AWS::Lambda::EventSourceMapping.FilterCriteria": { "additionalProperties": false, "properties": { "Filters": { "items": { "$ref": "#/definitions/AWS::Lambda::EventSourceMapping.Filter" }, "type": "array" } }, "type": "object" }, "AWS::Lambda::EventSourceMapping.OnFailure": { "additionalProperties": false, "properties": { "Destination": { "type": "string" } }, "type": "object" }, "AWS::Lambda::EventSourceMapping.ScalingConfig": { "additionalProperties": false, "properties": { "MaximumConcurrency": { "type": "number" } }, "type": "object" }, "AWS::Lambda::EventSourceMapping.SelfManagedEventSource": { "additionalProperties": false, "properties": { "Endpoints": { "$ref": "#/definitions/AWS::Lambda::EventSourceMapping.Endpoints" } }, "type": "object" }, "AWS::Lambda::EventSourceMapping.SelfManagedKafkaEventSourceConfig": { "additionalProperties": false, "properties": { "ConsumerGroupId": { "type": "string" } }, "type": "object" }, "AWS::Lambda::EventSourceMapping.SourceAccessConfiguration": { "additionalProperties": false, "properties": { "Type": { "type": "string" }, "URI": { "type": "string" } }, "type": "object" }, "AWS::Lambda::Function": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Architectures": { "items": { "type": "string" }, "type": "array" }, "Code": { "$ref": "#/definitions/AWS::Lambda::Function.Code" }, "CodeSigningConfigArn": { "type": "string" }, "DeadLetterConfig": { "$ref": "#/definitions/AWS::Lambda::Function.DeadLetterConfig" }, "Description": { "type": "string" }, "Environment": { "$ref": "#/definitions/AWS::Lambda::Function.Environment" }, "EphemeralStorage": { "$ref": "#/definitions/AWS::Lambda::Function.EphemeralStorage" }, "FileSystemConfigs": { "items": { "$ref": "#/definitions/AWS::Lambda::Function.FileSystemConfig" }, "type": "array" }, "FunctionName": { "type": "string" }, "Handler": { "type": "string" }, "ImageConfig": { "$ref": "#/definitions/AWS::Lambda::Function.ImageConfig" }, "KmsKeyArn": { "type": "string" }, "Layers": { "items": { "type": "string" }, "type": "array" }, "MemorySize": { "type": "number" }, "PackageType": { "type": "string" }, "ReservedConcurrentExecutions": { "type": "number" }, "Role": { "type": "string" }, "Runtime": { "type": "string" }, "RuntimeManagementConfig": { "$ref": "#/definitions/AWS::Lambda::Function.RuntimeManagementConfig" }, "SnapStart": { "$ref": "#/definitions/AWS::Lambda::Function.SnapStart" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "Timeout": { "type": "number" }, "TracingConfig": { "$ref": "#/definitions/AWS::Lambda::Function.TracingConfig" }, "VpcConfig": { "$ref": "#/definitions/AWS::Lambda::Function.VpcConfig" } }, "required": [ "Code", "Role" ], "type": "object" }, "Type": { "enum": [ "AWS::Lambda::Function" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Lambda::Function.Code": { "additionalProperties": false, "properties": { "ImageUri": { "type": "string" }, "S3Bucket": { "type": "string" }, "S3Key": { "type": "string" }, "S3ObjectVersion": { "type": "string" }, "ZipFile": { "type": "string" } }, "type": "object" }, "AWS::Lambda::Function.DeadLetterConfig": { "additionalProperties": false, "properties": { "TargetArn": { "type": "string" } }, "type": "object" }, "AWS::Lambda::Function.Environment": { "additionalProperties": false, "properties": { "Variables": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" } }, "type": "object" }, "AWS::Lambda::Function.EphemeralStorage": { "additionalProperties": false, "properties": { "Size": { "type": "number" } }, "required": [ "Size" ], "type": "object" }, "AWS::Lambda::Function.FileSystemConfig": { "additionalProperties": false, "properties": { "Arn": { "type": "string" }, "LocalMountPath": { "type": "string" } }, "required": [ "Arn", "LocalMountPath" ], "type": "object" }, "AWS::Lambda::Function.ImageConfig": { "additionalProperties": false, "properties": { "Command": { "items": { "type": "string" }, "type": "array" }, "EntryPoint": { "items": { "type": "string" }, "type": "array" }, "WorkingDirectory": { "type": "string" } }, "type": "object" }, "AWS::Lambda::Function.RuntimeManagementConfig": { "additionalProperties": false, "properties": { "RuntimeVersionArn": { "type": "string" }, "UpdateRuntimeOn": { "type": "string" } }, "required": [ "UpdateRuntimeOn" ], "type": "object" }, "AWS::Lambda::Function.SnapStart": { "additionalProperties": false, "properties": { "ApplyOn": { "type": "string" } }, "required": [ "ApplyOn" ], "type": "object" }, "AWS::Lambda::Function.SnapStartResponse": { "additionalProperties": false, "properties": { "ApplyOn": { "type": "string" }, "OptimizationStatus": { "type": "string" } }, "type": "object" }, "AWS::Lambda::Function.TracingConfig": { "additionalProperties": false, "properties": { "Mode": { "type": "string" } }, "type": "object" }, "AWS::Lambda::Function.VpcConfig": { "additionalProperties": false, "properties": { "SecurityGroupIds": { "items": { "type": "string" }, "type": "array" }, "SubnetIds": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::Lambda::LayerVersion": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "CompatibleArchitectures": { "items": { "type": "string" }, "type": "array" }, "CompatibleRuntimes": { "items": { "type": "string" }, "type": "array" }, "Content": { "$ref": "#/definitions/AWS::Lambda::LayerVersion.Content" }, "Description": { "type": "string" }, "LayerName": { "type": "string" }, "LicenseInfo": { "type": "string" } }, "required": [ "Content" ], "type": "object" }, "Type": { "enum": [ "AWS::Lambda::LayerVersion" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Lambda::LayerVersion.Content": { "additionalProperties": false, "properties": { "S3Bucket": { "type": "string" }, "S3Key": { "type": "string" }, "S3ObjectVersion": { "type": "string" } }, "required": [ "S3Bucket", "S3Key" ], "type": "object" }, "AWS::Lambda::LayerVersionPermission": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Action": { "type": "string" }, "LayerVersionArn": { "type": "string" }, "OrganizationId": { "type": "string" }, "Principal": { "type": "string" } }, "required": [ "Action", "LayerVersionArn", "Principal" ], "type": "object" }, "Type": { "enum": [ "AWS::Lambda::LayerVersionPermission" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Lambda::Permission": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Action": { "type": "string" }, "EventSourceToken": { "type": "string" }, "FunctionName": { "type": "string" }, "FunctionUrlAuthType": { "type": "string" }, "Principal": { "type": "string" }, "PrincipalOrgID": { "type": "string" }, "SourceAccount": { "type": "string" }, "SourceArn": { "type": "string" } }, "required": [ "Action", "FunctionName", "Principal" ], "type": "object" }, "Type": { "enum": [ "AWS::Lambda::Permission" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Lambda::Url": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AuthType": { "type": "string" }, "Cors": { "$ref": "#/definitions/AWS::Lambda::Url.Cors" }, "InvokeMode": { "type": "string" }, "Qualifier": { "type": "string" }, "TargetFunctionArn": { "type": "string" } }, "required": [ "AuthType", "TargetFunctionArn" ], "type": "object" }, "Type": { "enum": [ "AWS::Lambda::Url" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Lambda::Url.Cors": { "additionalProperties": false, "properties": { "AllowCredentials": { "type": "boolean" }, "AllowHeaders": { "items": { "type": "string" }, "type": "array" }, "AllowMethods": { "items": { "type": "string" }, "type": "array" }, "AllowOrigins": { "items": { "type": "string" }, "type": "array" }, "ExposeHeaders": { "items": { "type": "string" }, "type": "array" }, "MaxAge": { "type": "number" } }, "type": "object" }, "AWS::Lambda::Version": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "CodeSha256": { "type": "string" }, "Description": { "type": "string" }, "FunctionName": { "type": "string" }, "ProvisionedConcurrencyConfig": { "$ref": "#/definitions/AWS::Lambda::Version.ProvisionedConcurrencyConfiguration" } }, "required": [ "FunctionName" ], "type": "object" }, "Type": { "enum": [ "AWS::Lambda::Version" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Lambda::Version.ProvisionedConcurrencyConfiguration": { "additionalProperties": false, "properties": { "ProvisionedConcurrentExecutions": { "type": "number" } }, "required": [ "ProvisionedConcurrentExecutions" ], "type": "object" }, "AWS::Lex::Bot": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AutoBuildBotLocales": { "type": "boolean" }, "BotFileS3Location": { "$ref": "#/definitions/AWS::Lex::Bot.S3Location" }, "BotLocales": { "items": { "$ref": "#/definitions/AWS::Lex::Bot.BotLocale" }, "type": "array" }, "BotTags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "DataPrivacy": { "$ref": "#/definitions/AWS::Lex::Bot.DataPrivacy" }, "Description": { "type": "string" }, "IdleSessionTTLInSeconds": { "type": "number" }, "Name": { "type": "string" }, "RoleArn": { "type": "string" }, "TestBotAliasSettings": { "$ref": "#/definitions/AWS::Lex::Bot.TestBotAliasSettings" }, "TestBotAliasTags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "DataPrivacy", "IdleSessionTTLInSeconds", "Name", "RoleArn" ], "type": "object" }, "Type": { "enum": [ "AWS::Lex::Bot" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Lex::Bot.AdvancedRecognitionSetting": { "additionalProperties": false, "properties": { "AudioRecognitionStrategy": { "type": "string" } }, "type": "object" }, "AWS::Lex::Bot.AllowedInputTypes": { "additionalProperties": false, "properties": { "AllowAudioInput": { "type": "boolean" }, "AllowDTMFInput": { "type": "boolean" } }, "required": [ "AllowAudioInput", "AllowDTMFInput" ], "type": "object" }, "AWS::Lex::Bot.AudioAndDTMFInputSpecification": { "additionalProperties": false, "properties": { "AudioSpecification": { "$ref": "#/definitions/AWS::Lex::Bot.AudioSpecification" }, "DTMFSpecification": { "$ref": "#/definitions/AWS::Lex::Bot.DTMFSpecification" }, "StartTimeoutMs": { "type": "number" } }, "required": [ "StartTimeoutMs" ], "type": "object" }, "AWS::Lex::Bot.AudioLogDestination": { "additionalProperties": false, "properties": { "S3Bucket": { "$ref": "#/definitions/AWS::Lex::Bot.S3BucketLogDestination" } }, "required": [ "S3Bucket" ], "type": "object" }, "AWS::Lex::Bot.AudioLogSetting": { "additionalProperties": false, "properties": { "Destination": { "$ref": "#/definitions/AWS::Lex::Bot.AudioLogDestination" }, "Enabled": { "type": "boolean" } }, "required": [ "Destination", "Enabled" ], "type": "object" }, "AWS::Lex::Bot.AudioSpecification": { "additionalProperties": false, "properties": { "EndTimeoutMs": { "type": "number" }, "MaxLengthMs": { "type": "number" } }, "required": [ "EndTimeoutMs", "MaxLengthMs" ], "type": "object" }, "AWS::Lex::Bot.BotAliasLocaleSettings": { "additionalProperties": false, "properties": { "CodeHookSpecification": { "$ref": "#/definitions/AWS::Lex::Bot.CodeHookSpecification" }, "Enabled": { "type": "boolean" } }, "required": [ "Enabled" ], "type": "object" }, "AWS::Lex::Bot.BotAliasLocaleSettingsItem": { "additionalProperties": false, "properties": { "BotAliasLocaleSetting": { "$ref": "#/definitions/AWS::Lex::Bot.BotAliasLocaleSettings" }, "LocaleId": { "type": "string" } }, "required": [ "BotAliasLocaleSetting", "LocaleId" ], "type": "object" }, "AWS::Lex::Bot.BotLocale": { "additionalProperties": false, "properties": { "CustomVocabulary": { "$ref": "#/definitions/AWS::Lex::Bot.CustomVocabulary" }, "Description": { "type": "string" }, "Intents": { "items": { "$ref": "#/definitions/AWS::Lex::Bot.Intent" }, "type": "array" }, "LocaleId": { "type": "string" }, "NluConfidenceThreshold": { "type": "number" }, "SlotTypes": { "items": { "$ref": "#/definitions/AWS::Lex::Bot.SlotType" }, "type": "array" }, "VoiceSettings": { "$ref": "#/definitions/AWS::Lex::Bot.VoiceSettings" } }, "required": [ "LocaleId", "NluConfidenceThreshold" ], "type": "object" }, "AWS::Lex::Bot.Button": { "additionalProperties": false, "properties": { "Text": { "type": "string" }, "Value": { "type": "string" } }, "required": [ "Text", "Value" ], "type": "object" }, "AWS::Lex::Bot.CloudWatchLogGroupLogDestination": { "additionalProperties": false, "properties": { "CloudWatchLogGroupArn": { "type": "string" }, "LogPrefix": { "type": "string" } }, "required": [ "CloudWatchLogGroupArn", "LogPrefix" ], "type": "object" }, "AWS::Lex::Bot.CodeHookSpecification": { "additionalProperties": false, "properties": { "LambdaCodeHook": { "$ref": "#/definitions/AWS::Lex::Bot.LambdaCodeHook" } }, "required": [ "LambdaCodeHook" ], "type": "object" }, "AWS::Lex::Bot.Condition": { "additionalProperties": false, "properties": { "ExpressionString": { "type": "string" } }, "required": [ "ExpressionString" ], "type": "object" }, "AWS::Lex::Bot.ConditionalBranch": { "additionalProperties": false, "properties": { "Condition": { "$ref": "#/definitions/AWS::Lex::Bot.Condition" }, "Name": { "type": "string" }, "NextStep": { "$ref": "#/definitions/AWS::Lex::Bot.DialogState" }, "Response": { "$ref": "#/definitions/AWS::Lex::Bot.ResponseSpecification" } }, "required": [ "Condition", "Name", "NextStep" ], "type": "object" }, "AWS::Lex::Bot.ConditionalSpecification": { "additionalProperties": false, "properties": { "ConditionalBranches": { "items": { "$ref": "#/definitions/AWS::Lex::Bot.ConditionalBranch" }, "type": "array" }, "DefaultBranch": { "$ref": "#/definitions/AWS::Lex::Bot.DefaultConditionalBranch" }, "IsActive": { "type": "boolean" } }, "required": [ "ConditionalBranches", "DefaultBranch", "IsActive" ], "type": "object" }, "AWS::Lex::Bot.ConversationLogSettings": { "additionalProperties": false, "properties": { "AudioLogSettings": { "items": { "$ref": "#/definitions/AWS::Lex::Bot.AudioLogSetting" }, "type": "array" }, "TextLogSettings": { "items": { "$ref": "#/definitions/AWS::Lex::Bot.TextLogSetting" }, "type": "array" } }, "type": "object" }, "AWS::Lex::Bot.CustomPayload": { "additionalProperties": false, "properties": { "Value": { "type": "string" } }, "required": [ "Value" ], "type": "object" }, "AWS::Lex::Bot.CustomVocabulary": { "additionalProperties": false, "properties": { "CustomVocabularyItems": { "items": { "$ref": "#/definitions/AWS::Lex::Bot.CustomVocabularyItem" }, "type": "array" } }, "required": [ "CustomVocabularyItems" ], "type": "object" }, "AWS::Lex::Bot.CustomVocabularyItem": { "additionalProperties": false, "properties": { "DisplayAs": { "type": "string" }, "Phrase": { "type": "string" }, "Weight": { "type": "number" } }, "required": [ "Phrase" ], "type": "object" }, "AWS::Lex::Bot.DTMFSpecification": { "additionalProperties": false, "properties": { "DeletionCharacter": { "type": "string" }, "EndCharacter": { "type": "string" }, "EndTimeoutMs": { "type": "number" }, "MaxLength": { "type": "number" } }, "required": [ "DeletionCharacter", "EndCharacter", "EndTimeoutMs", "MaxLength" ], "type": "object" }, "AWS::Lex::Bot.DataPrivacy": { "additionalProperties": false, "properties": { "ChildDirected": { "type": "boolean" } }, "required": [ "ChildDirected" ], "type": "object" }, "AWS::Lex::Bot.DefaultConditionalBranch": { "additionalProperties": false, "properties": { "NextStep": { "$ref": "#/definitions/AWS::Lex::Bot.DialogState" }, "Response": { "$ref": "#/definitions/AWS::Lex::Bot.ResponseSpecification" } }, "type": "object" }, "AWS::Lex::Bot.DialogAction": { "additionalProperties": false, "properties": { "SlotToElicit": { "type": "string" }, "SuppressNextMessage": { "type": "boolean" }, "Type": { "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::Lex::Bot.DialogCodeHookInvocationSetting": { "additionalProperties": false, "properties": { "EnableCodeHookInvocation": { "type": "boolean" }, "InvocationLabel": { "type": "string" }, "IsActive": { "type": "boolean" }, "PostCodeHookSpecification": { "$ref": "#/definitions/AWS::Lex::Bot.PostDialogCodeHookInvocationSpecification" } }, "required": [ "EnableCodeHookInvocation", "IsActive", "PostCodeHookSpecification" ], "type": "object" }, "AWS::Lex::Bot.DialogCodeHookSetting": { "additionalProperties": false, "properties": { "Enabled": { "type": "boolean" } }, "required": [ "Enabled" ], "type": "object" }, "AWS::Lex::Bot.DialogState": { "additionalProperties": false, "properties": { "DialogAction": { "$ref": "#/definitions/AWS::Lex::Bot.DialogAction" }, "Intent": { "$ref": "#/definitions/AWS::Lex::Bot.IntentOverride" }, "SessionAttributes": { "items": { "$ref": "#/definitions/AWS::Lex::Bot.SessionAttribute" }, "type": "array" } }, "type": "object" }, "AWS::Lex::Bot.ElicitationCodeHookInvocationSetting": { "additionalProperties": false, "properties": { "EnableCodeHookInvocation": { "type": "boolean" }, "InvocationLabel": { "type": "string" } }, "required": [ "EnableCodeHookInvocation" ], "type": "object" }, "AWS::Lex::Bot.ExternalSourceSetting": { "additionalProperties": false, "properties": { "GrammarSlotTypeSetting": { "$ref": "#/definitions/AWS::Lex::Bot.GrammarSlotTypeSetting" } }, "type": "object" }, "AWS::Lex::Bot.FulfillmentCodeHookSetting": { "additionalProperties": false, "properties": { "Enabled": { "type": "boolean" }, "FulfillmentUpdatesSpecification": { "$ref": "#/definitions/AWS::Lex::Bot.FulfillmentUpdatesSpecification" }, "IsActive": { "type": "boolean" }, "PostFulfillmentStatusSpecification": { "$ref": "#/definitions/AWS::Lex::Bot.PostFulfillmentStatusSpecification" } }, "required": [ "Enabled" ], "type": "object" }, "AWS::Lex::Bot.FulfillmentStartResponseSpecification": { "additionalProperties": false, "properties": { "AllowInterrupt": { "type": "boolean" }, "DelayInSeconds": { "type": "number" }, "MessageGroups": { "items": { "$ref": "#/definitions/AWS::Lex::Bot.MessageGroup" }, "type": "array" } }, "required": [ "DelayInSeconds", "MessageGroups" ], "type": "object" }, "AWS::Lex::Bot.FulfillmentUpdateResponseSpecification": { "additionalProperties": false, "properties": { "AllowInterrupt": { "type": "boolean" }, "FrequencyInSeconds": { "type": "number" }, "MessageGroups": { "items": { "$ref": "#/definitions/AWS::Lex::Bot.MessageGroup" }, "type": "array" } }, "required": [ "FrequencyInSeconds", "MessageGroups" ], "type": "object" }, "AWS::Lex::Bot.FulfillmentUpdatesSpecification": { "additionalProperties": false, "properties": { "Active": { "type": "boolean" }, "StartResponse": { "$ref": "#/definitions/AWS::Lex::Bot.FulfillmentStartResponseSpecification" }, "TimeoutInSeconds": { "type": "number" }, "UpdateResponse": { "$ref": "#/definitions/AWS::Lex::Bot.FulfillmentUpdateResponseSpecification" } }, "required": [ "Active" ], "type": "object" }, "AWS::Lex::Bot.GrammarSlotTypeSetting": { "additionalProperties": false, "properties": { "Source": { "$ref": "#/definitions/AWS::Lex::Bot.GrammarSlotTypeSource" } }, "type": "object" }, "AWS::Lex::Bot.GrammarSlotTypeSource": { "additionalProperties": false, "properties": { "KmsKeyArn": { "type": "string" }, "S3BucketName": { "type": "string" }, "S3ObjectKey": { "type": "string" } }, "required": [ "S3BucketName", "S3ObjectKey" ], "type": "object" }, "AWS::Lex::Bot.ImageResponseCard": { "additionalProperties": false, "properties": { "Buttons": { "items": { "$ref": "#/definitions/AWS::Lex::Bot.Button" }, "type": "array" }, "ImageUrl": { "type": "string" }, "Subtitle": { "type": "string" }, "Title": { "type": "string" } }, "required": [ "Title" ], "type": "object" }, "AWS::Lex::Bot.InitialResponseSetting": { "additionalProperties": false, "properties": { "CodeHook": { "$ref": "#/definitions/AWS::Lex::Bot.DialogCodeHookInvocationSetting" }, "Conditional": { "$ref": "#/definitions/AWS::Lex::Bot.ConditionalSpecification" }, "InitialResponse": { "$ref": "#/definitions/AWS::Lex::Bot.ResponseSpecification" }, "NextStep": { "$ref": "#/definitions/AWS::Lex::Bot.DialogState" } }, "type": "object" }, "AWS::Lex::Bot.InputContext": { "additionalProperties": false, "properties": { "Name": { "type": "string" } }, "required": [ "Name" ], "type": "object" }, "AWS::Lex::Bot.Intent": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "DialogCodeHook": { "$ref": "#/definitions/AWS::Lex::Bot.DialogCodeHookSetting" }, "FulfillmentCodeHook": { "$ref": "#/definitions/AWS::Lex::Bot.FulfillmentCodeHookSetting" }, "InitialResponseSetting": { "$ref": "#/definitions/AWS::Lex::Bot.InitialResponseSetting" }, "InputContexts": { "items": { "$ref": "#/definitions/AWS::Lex::Bot.InputContext" }, "type": "array" }, "IntentClosingSetting": { "$ref": "#/definitions/AWS::Lex::Bot.IntentClosingSetting" }, "IntentConfirmationSetting": { "$ref": "#/definitions/AWS::Lex::Bot.IntentConfirmationSetting" }, "KendraConfiguration": { "$ref": "#/definitions/AWS::Lex::Bot.KendraConfiguration" }, "Name": { "type": "string" }, "OutputContexts": { "items": { "$ref": "#/definitions/AWS::Lex::Bot.OutputContext" }, "type": "array" }, "ParentIntentSignature": { "type": "string" }, "SampleUtterances": { "items": { "$ref": "#/definitions/AWS::Lex::Bot.SampleUtterance" }, "type": "array" }, "SlotPriorities": { "items": { "$ref": "#/definitions/AWS::Lex::Bot.SlotPriority" }, "type": "array" }, "Slots": { "items": { "$ref": "#/definitions/AWS::Lex::Bot.Slot" }, "type": "array" } }, "required": [ "Name" ], "type": "object" }, "AWS::Lex::Bot.IntentClosingSetting": { "additionalProperties": false, "properties": { "ClosingResponse": { "$ref": "#/definitions/AWS::Lex::Bot.ResponseSpecification" }, "Conditional": { "$ref": "#/definitions/AWS::Lex::Bot.ConditionalSpecification" }, "IsActive": { "type": "boolean" }, "NextStep": { "$ref": "#/definitions/AWS::Lex::Bot.DialogState" } }, "type": "object" }, "AWS::Lex::Bot.IntentConfirmationSetting": { "additionalProperties": false, "properties": { "CodeHook": { "$ref": "#/definitions/AWS::Lex::Bot.DialogCodeHookInvocationSetting" }, "ConfirmationConditional": { "$ref": "#/definitions/AWS::Lex::Bot.ConditionalSpecification" }, "ConfirmationNextStep": { "$ref": "#/definitions/AWS::Lex::Bot.DialogState" }, "ConfirmationResponse": { "$ref": "#/definitions/AWS::Lex::Bot.ResponseSpecification" }, "DeclinationConditional": { "$ref": "#/definitions/AWS::Lex::Bot.ConditionalSpecification" }, "DeclinationNextStep": { "$ref": "#/definitions/AWS::Lex::Bot.DialogState" }, "DeclinationResponse": { "$ref": "#/definitions/AWS::Lex::Bot.ResponseSpecification" }, "ElicitationCodeHook": { "$ref": "#/definitions/AWS::Lex::Bot.ElicitationCodeHookInvocationSetting" }, "FailureConditional": { "$ref": "#/definitions/AWS::Lex::Bot.ConditionalSpecification" }, "FailureNextStep": { "$ref": "#/definitions/AWS::Lex::Bot.DialogState" }, "FailureResponse": { "$ref": "#/definitions/AWS::Lex::Bot.ResponseSpecification" }, "IsActive": { "type": "boolean" }, "PromptSpecification": { "$ref": "#/definitions/AWS::Lex::Bot.PromptSpecification" } }, "required": [ "PromptSpecification" ], "type": "object" }, "AWS::Lex::Bot.IntentOverride": { "additionalProperties": false, "properties": { "Name": { "type": "string" }, "Slots": { "items": { "$ref": "#/definitions/AWS::Lex::Bot.SlotValueOverrideMap" }, "type": "array" } }, "type": "object" }, "AWS::Lex::Bot.KendraConfiguration": { "additionalProperties": false, "properties": { "KendraIndex": { "type": "string" }, "QueryFilterString": { "type": "string" }, "QueryFilterStringEnabled": { "type": "boolean" } }, "required": [ "KendraIndex" ], "type": "object" }, "AWS::Lex::Bot.LambdaCodeHook": { "additionalProperties": false, "properties": { "CodeHookInterfaceVersion": { "type": "string" }, "LambdaArn": { "type": "string" } }, "required": [ "CodeHookInterfaceVersion", "LambdaArn" ], "type": "object" }, "AWS::Lex::Bot.Message": { "additionalProperties": false, "properties": { "CustomPayload": { "$ref": "#/definitions/AWS::Lex::Bot.CustomPayload" }, "ImageResponseCard": { "$ref": "#/definitions/AWS::Lex::Bot.ImageResponseCard" }, "PlainTextMessage": { "$ref": "#/definitions/AWS::Lex::Bot.PlainTextMessage" }, "SSMLMessage": { "$ref": "#/definitions/AWS::Lex::Bot.SSMLMessage" } }, "type": "object" }, "AWS::Lex::Bot.MessageGroup": { "additionalProperties": false, "properties": { "Message": { "$ref": "#/definitions/AWS::Lex::Bot.Message" }, "Variations": { "items": { "$ref": "#/definitions/AWS::Lex::Bot.Message" }, "type": "array" } }, "required": [ "Message" ], "type": "object" }, "AWS::Lex::Bot.MultipleValuesSetting": { "additionalProperties": false, "properties": { "AllowMultipleValues": { "type": "boolean" } }, "type": "object" }, "AWS::Lex::Bot.ObfuscationSetting": { "additionalProperties": false, "properties": { "ObfuscationSettingType": { "type": "string" } }, "required": [ "ObfuscationSettingType" ], "type": "object" }, "AWS::Lex::Bot.OutputContext": { "additionalProperties": false, "properties": { "Name": { "type": "string" }, "TimeToLiveInSeconds": { "type": "number" }, "TurnsToLive": { "type": "number" } }, "required": [ "Name", "TimeToLiveInSeconds", "TurnsToLive" ], "type": "object" }, "AWS::Lex::Bot.PlainTextMessage": { "additionalProperties": false, "properties": { "Value": { "type": "string" } }, "required": [ "Value" ], "type": "object" }, "AWS::Lex::Bot.PostDialogCodeHookInvocationSpecification": { "additionalProperties": false, "properties": { "FailureConditional": { "$ref": "#/definitions/AWS::Lex::Bot.ConditionalSpecification" }, "FailureNextStep": { "$ref": "#/definitions/AWS::Lex::Bot.DialogState" }, "FailureResponse": { "$ref": "#/definitions/AWS::Lex::Bot.ResponseSpecification" }, "SuccessConditional": { "$ref": "#/definitions/AWS::Lex::Bot.ConditionalSpecification" }, "SuccessNextStep": { "$ref": "#/definitions/AWS::Lex::Bot.DialogState" }, "SuccessResponse": { "$ref": "#/definitions/AWS::Lex::Bot.ResponseSpecification" }, "TimeoutConditional": { "$ref": "#/definitions/AWS::Lex::Bot.ConditionalSpecification" }, "TimeoutNextStep": { "$ref": "#/definitions/AWS::Lex::Bot.DialogState" }, "TimeoutResponse": { "$ref": "#/definitions/AWS::Lex::Bot.ResponseSpecification" } }, "type": "object" }, "AWS::Lex::Bot.PostFulfillmentStatusSpecification": { "additionalProperties": false, "properties": { "FailureConditional": { "$ref": "#/definitions/AWS::Lex::Bot.ConditionalSpecification" }, "FailureNextStep": { "$ref": "#/definitions/AWS::Lex::Bot.DialogState" }, "FailureResponse": { "$ref": "#/definitions/AWS::Lex::Bot.ResponseSpecification" }, "SuccessConditional": { "$ref": "#/definitions/AWS::Lex::Bot.ConditionalSpecification" }, "SuccessNextStep": { "$ref": "#/definitions/AWS::Lex::Bot.DialogState" }, "SuccessResponse": { "$ref": "#/definitions/AWS::Lex::Bot.ResponseSpecification" }, "TimeoutConditional": { "$ref": "#/definitions/AWS::Lex::Bot.ConditionalSpecification" }, "TimeoutNextStep": { "$ref": "#/definitions/AWS::Lex::Bot.DialogState" }, "TimeoutResponse": { "$ref": "#/definitions/AWS::Lex::Bot.ResponseSpecification" } }, "type": "object" }, "AWS::Lex::Bot.PromptAttemptSpecification": { "additionalProperties": false, "properties": { "AllowInterrupt": { "type": "boolean" }, "AllowedInputTypes": { "$ref": "#/definitions/AWS::Lex::Bot.AllowedInputTypes" }, "AudioAndDTMFInputSpecification": { "$ref": "#/definitions/AWS::Lex::Bot.AudioAndDTMFInputSpecification" }, "TextInputSpecification": { "$ref": "#/definitions/AWS::Lex::Bot.TextInputSpecification" } }, "required": [ "AllowedInputTypes" ], "type": "object" }, "AWS::Lex::Bot.PromptSpecification": { "additionalProperties": false, "properties": { "AllowInterrupt": { "type": "boolean" }, "MaxRetries": { "type": "number" }, "MessageGroupsList": { "items": { "$ref": "#/definitions/AWS::Lex::Bot.MessageGroup" }, "type": "array" }, "MessageSelectionStrategy": { "type": "string" }, "PromptAttemptsSpecification": { "additionalProperties": false, "patternProperties": { "^[a-zA-Z0-9]+$": { "$ref": "#/definitions/AWS::Lex::Bot.PromptAttemptSpecification" } }, "type": "object" } }, "required": [ "MaxRetries", "MessageGroupsList" ], "type": "object" }, "AWS::Lex::Bot.ResponseSpecification": { "additionalProperties": false, "properties": { "AllowInterrupt": { "type": "boolean" }, "MessageGroupsList": { "items": { "$ref": "#/definitions/AWS::Lex::Bot.MessageGroup" }, "type": "array" } }, "required": [ "MessageGroupsList" ], "type": "object" }, "AWS::Lex::Bot.S3BucketLogDestination": { "additionalProperties": false, "properties": { "KmsKeyArn": { "type": "string" }, "LogPrefix": { "type": "string" }, "S3BucketArn": { "type": "string" } }, "required": [ "LogPrefix", "S3BucketArn" ], "type": "object" }, "AWS::Lex::Bot.S3Location": { "additionalProperties": false, "properties": { "S3Bucket": { "type": "string" }, "S3ObjectKey": { "type": "string" }, "S3ObjectVersion": { "type": "string" } }, "required": [ "S3Bucket", "S3ObjectKey" ], "type": "object" }, "AWS::Lex::Bot.SSMLMessage": { "additionalProperties": false, "properties": { "Value": { "type": "string" } }, "required": [ "Value" ], "type": "object" }, "AWS::Lex::Bot.SampleUtterance": { "additionalProperties": false, "properties": { "Utterance": { "type": "string" } }, "required": [ "Utterance" ], "type": "object" }, "AWS::Lex::Bot.SampleValue": { "additionalProperties": false, "properties": { "Value": { "type": "string" } }, "required": [ "Value" ], "type": "object" }, "AWS::Lex::Bot.SentimentAnalysisSettings": { "additionalProperties": false, "properties": { "DetectSentiment": { "type": "boolean" } }, "required": [ "DetectSentiment" ], "type": "object" }, "AWS::Lex::Bot.SessionAttribute": { "additionalProperties": false, "properties": { "Key": { "type": "string" }, "Value": { "type": "string" } }, "required": [ "Key" ], "type": "object" }, "AWS::Lex::Bot.Slot": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "MultipleValuesSetting": { "$ref": "#/definitions/AWS::Lex::Bot.MultipleValuesSetting" }, "Name": { "type": "string" }, "ObfuscationSetting": { "$ref": "#/definitions/AWS::Lex::Bot.ObfuscationSetting" }, "SlotTypeName": { "type": "string" }, "ValueElicitationSetting": { "$ref": "#/definitions/AWS::Lex::Bot.SlotValueElicitationSetting" } }, "required": [ "Name", "SlotTypeName", "ValueElicitationSetting" ], "type": "object" }, "AWS::Lex::Bot.SlotCaptureSetting": { "additionalProperties": false, "properties": { "CaptureConditional": { "$ref": "#/definitions/AWS::Lex::Bot.ConditionalSpecification" }, "CaptureNextStep": { "$ref": "#/definitions/AWS::Lex::Bot.DialogState" }, "CaptureResponse": { "$ref": "#/definitions/AWS::Lex::Bot.ResponseSpecification" }, "CodeHook": { "$ref": "#/definitions/AWS::Lex::Bot.DialogCodeHookInvocationSetting" }, "ElicitationCodeHook": { "$ref": "#/definitions/AWS::Lex::Bot.ElicitationCodeHookInvocationSetting" }, "FailureConditional": { "$ref": "#/definitions/AWS::Lex::Bot.ConditionalSpecification" }, "FailureNextStep": { "$ref": "#/definitions/AWS::Lex::Bot.DialogState" }, "FailureResponse": { "$ref": "#/definitions/AWS::Lex::Bot.ResponseSpecification" } }, "type": "object" }, "AWS::Lex::Bot.SlotDefaultValue": { "additionalProperties": false, "properties": { "DefaultValue": { "type": "string" } }, "required": [ "DefaultValue" ], "type": "object" }, "AWS::Lex::Bot.SlotDefaultValueSpecification": { "additionalProperties": false, "properties": { "DefaultValueList": { "items": { "$ref": "#/definitions/AWS::Lex::Bot.SlotDefaultValue" }, "type": "array" } }, "required": [ "DefaultValueList" ], "type": "object" }, "AWS::Lex::Bot.SlotPriority": { "additionalProperties": false, "properties": { "Priority": { "type": "number" }, "SlotName": { "type": "string" } }, "required": [ "Priority", "SlotName" ], "type": "object" }, "AWS::Lex::Bot.SlotType": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "ExternalSourceSetting": { "$ref": "#/definitions/AWS::Lex::Bot.ExternalSourceSetting" }, "Name": { "type": "string" }, "ParentSlotTypeSignature": { "type": "string" }, "SlotTypeValues": { "items": { "$ref": "#/definitions/AWS::Lex::Bot.SlotTypeValue" }, "type": "array" }, "ValueSelectionSetting": { "$ref": "#/definitions/AWS::Lex::Bot.SlotValueSelectionSetting" } }, "required": [ "Name" ], "type": "object" }, "AWS::Lex::Bot.SlotTypeValue": { "additionalProperties": false, "properties": { "SampleValue": { "$ref": "#/definitions/AWS::Lex::Bot.SampleValue" }, "Synonyms": { "items": { "$ref": "#/definitions/AWS::Lex::Bot.SampleValue" }, "type": "array" } }, "required": [ "SampleValue" ], "type": "object" }, "AWS::Lex::Bot.SlotValue": { "additionalProperties": false, "properties": { "InterpretedValue": { "type": "string" } }, "type": "object" }, "AWS::Lex::Bot.SlotValueElicitationSetting": { "additionalProperties": false, "properties": { "DefaultValueSpecification": { "$ref": "#/definitions/AWS::Lex::Bot.SlotDefaultValueSpecification" }, "PromptSpecification": { "$ref": "#/definitions/AWS::Lex::Bot.PromptSpecification" }, "SampleUtterances": { "items": { "$ref": "#/definitions/AWS::Lex::Bot.SampleUtterance" }, "type": "array" }, "SlotCaptureSetting": { "$ref": "#/definitions/AWS::Lex::Bot.SlotCaptureSetting" }, "SlotConstraint": { "type": "string" }, "WaitAndContinueSpecification": { "$ref": "#/definitions/AWS::Lex::Bot.WaitAndContinueSpecification" } }, "required": [ "SlotConstraint" ], "type": "object" }, "AWS::Lex::Bot.SlotValueOverride": { "additionalProperties": false, "properties": { "Shape": { "type": "string" }, "Value": { "$ref": "#/definitions/AWS::Lex::Bot.SlotValue" }, "Values": { "items": { "$ref": "#/definitions/AWS::Lex::Bot.SlotValueOverride" }, "type": "array" } }, "type": "object" }, "AWS::Lex::Bot.SlotValueOverrideMap": { "additionalProperties": false, "properties": { "SlotName": { "type": "string" }, "SlotValueOverride": { "$ref": "#/definitions/AWS::Lex::Bot.SlotValueOverride" } }, "type": "object" }, "AWS::Lex::Bot.SlotValueRegexFilter": { "additionalProperties": false, "properties": { "Pattern": { "type": "string" } }, "required": [ "Pattern" ], "type": "object" }, "AWS::Lex::Bot.SlotValueSelectionSetting": { "additionalProperties": false, "properties": { "AdvancedRecognitionSetting": { "$ref": "#/definitions/AWS::Lex::Bot.AdvancedRecognitionSetting" }, "RegexFilter": { "$ref": "#/definitions/AWS::Lex::Bot.SlotValueRegexFilter" }, "ResolutionStrategy": { "type": "string" } }, "required": [ "ResolutionStrategy" ], "type": "object" }, "AWS::Lex::Bot.StillWaitingResponseSpecification": { "additionalProperties": false, "properties": { "AllowInterrupt": { "type": "boolean" }, "FrequencyInSeconds": { "type": "number" }, "MessageGroupsList": { "items": { "$ref": "#/definitions/AWS::Lex::Bot.MessageGroup" }, "type": "array" }, "TimeoutInSeconds": { "type": "number" } }, "required": [ "FrequencyInSeconds", "MessageGroupsList", "TimeoutInSeconds" ], "type": "object" }, "AWS::Lex::Bot.TestBotAliasSettings": { "additionalProperties": false, "properties": { "BotAliasLocaleSettings": { "items": { "$ref": "#/definitions/AWS::Lex::Bot.BotAliasLocaleSettingsItem" }, "type": "array" }, "ConversationLogSettings": { "$ref": "#/definitions/AWS::Lex::Bot.ConversationLogSettings" }, "Description": { "type": "string" }, "SentimentAnalysisSettings": { "$ref": "#/definitions/AWS::Lex::Bot.SentimentAnalysisSettings" } }, "type": "object" }, "AWS::Lex::Bot.TextInputSpecification": { "additionalProperties": false, "properties": { "StartTimeoutMs": { "type": "number" } }, "required": [ "StartTimeoutMs" ], "type": "object" }, "AWS::Lex::Bot.TextLogDestination": { "additionalProperties": false, "properties": { "CloudWatch": { "$ref": "#/definitions/AWS::Lex::Bot.CloudWatchLogGroupLogDestination" } }, "required": [ "CloudWatch" ], "type": "object" }, "AWS::Lex::Bot.TextLogSetting": { "additionalProperties": false, "properties": { "Destination": { "$ref": "#/definitions/AWS::Lex::Bot.TextLogDestination" }, "Enabled": { "type": "boolean" } }, "required": [ "Destination", "Enabled" ], "type": "object" }, "AWS::Lex::Bot.VoiceSettings": { "additionalProperties": false, "properties": { "Engine": { "type": "string" }, "VoiceId": { "type": "string" } }, "required": [ "VoiceId" ], "type": "object" }, "AWS::Lex::Bot.WaitAndContinueSpecification": { "additionalProperties": false, "properties": { "ContinueResponse": { "$ref": "#/definitions/AWS::Lex::Bot.ResponseSpecification" }, "IsActive": { "type": "boolean" }, "StillWaitingResponse": { "$ref": "#/definitions/AWS::Lex::Bot.StillWaitingResponseSpecification" }, "WaitingResponse": { "$ref": "#/definitions/AWS::Lex::Bot.ResponseSpecification" } }, "required": [ "ContinueResponse", "WaitingResponse" ], "type": "object" }, "AWS::Lex::BotAlias": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "BotAliasLocaleSettings": { "items": { "$ref": "#/definitions/AWS::Lex::BotAlias.BotAliasLocaleSettingsItem" }, "type": "array" }, "BotAliasName": { "type": "string" }, "BotAliasTags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "BotId": { "type": "string" }, "BotVersion": { "type": "string" }, "ConversationLogSettings": { "$ref": "#/definitions/AWS::Lex::BotAlias.ConversationLogSettings" }, "Description": { "type": "string" }, "SentimentAnalysisSettings": { "$ref": "#/definitions/AWS::Lex::BotAlias.SentimentAnalysisSettings" } }, "required": [ "BotAliasName", "BotId" ], "type": "object" }, "Type": { "enum": [ "AWS::Lex::BotAlias" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Lex::BotAlias.AudioLogDestination": { "additionalProperties": false, "properties": { "S3Bucket": { "$ref": "#/definitions/AWS::Lex::BotAlias.S3BucketLogDestination" } }, "required": [ "S3Bucket" ], "type": "object" }, "AWS::Lex::BotAlias.AudioLogSetting": { "additionalProperties": false, "properties": { "Destination": { "$ref": "#/definitions/AWS::Lex::BotAlias.AudioLogDestination" }, "Enabled": { "type": "boolean" } }, "required": [ "Destination", "Enabled" ], "type": "object" }, "AWS::Lex::BotAlias.BotAliasLocaleSettings": { "additionalProperties": false, "properties": { "CodeHookSpecification": { "$ref": "#/definitions/AWS::Lex::BotAlias.CodeHookSpecification" }, "Enabled": { "type": "boolean" } }, "required": [ "Enabled" ], "type": "object" }, "AWS::Lex::BotAlias.BotAliasLocaleSettingsItem": { "additionalProperties": false, "properties": { "BotAliasLocaleSetting": { "$ref": "#/definitions/AWS::Lex::BotAlias.BotAliasLocaleSettings" }, "LocaleId": { "type": "string" } }, "required": [ "BotAliasLocaleSetting", "LocaleId" ], "type": "object" }, "AWS::Lex::BotAlias.CloudWatchLogGroupLogDestination": { "additionalProperties": false, "properties": { "CloudWatchLogGroupArn": { "type": "string" }, "LogPrefix": { "type": "string" } }, "required": [ "CloudWatchLogGroupArn", "LogPrefix" ], "type": "object" }, "AWS::Lex::BotAlias.CodeHookSpecification": { "additionalProperties": false, "properties": { "LambdaCodeHook": { "$ref": "#/definitions/AWS::Lex::BotAlias.LambdaCodeHook" } }, "required": [ "LambdaCodeHook" ], "type": "object" }, "AWS::Lex::BotAlias.ConversationLogSettings": { "additionalProperties": false, "properties": { "AudioLogSettings": { "items": { "$ref": "#/definitions/AWS::Lex::BotAlias.AudioLogSetting" }, "type": "array" }, "TextLogSettings": { "items": { "$ref": "#/definitions/AWS::Lex::BotAlias.TextLogSetting" }, "type": "array" } }, "type": "object" }, "AWS::Lex::BotAlias.LambdaCodeHook": { "additionalProperties": false, "properties": { "CodeHookInterfaceVersion": { "type": "string" }, "LambdaArn": { "type": "string" } }, "required": [ "CodeHookInterfaceVersion", "LambdaArn" ], "type": "object" }, "AWS::Lex::BotAlias.S3BucketLogDestination": { "additionalProperties": false, "properties": { "KmsKeyArn": { "type": "string" }, "LogPrefix": { "type": "string" }, "S3BucketArn": { "type": "string" } }, "required": [ "LogPrefix", "S3BucketArn" ], "type": "object" }, "AWS::Lex::BotAlias.SentimentAnalysisSettings": { "additionalProperties": false, "properties": { "DetectSentiment": { "type": "boolean" } }, "required": [ "DetectSentiment" ], "type": "object" }, "AWS::Lex::BotAlias.TextLogDestination": { "additionalProperties": false, "properties": { "CloudWatch": { "$ref": "#/definitions/AWS::Lex::BotAlias.CloudWatchLogGroupLogDestination" } }, "required": [ "CloudWatch" ], "type": "object" }, "AWS::Lex::BotAlias.TextLogSetting": { "additionalProperties": false, "properties": { "Destination": { "$ref": "#/definitions/AWS::Lex::BotAlias.TextLogDestination" }, "Enabled": { "type": "boolean" } }, "required": [ "Destination", "Enabled" ], "type": "object" }, "AWS::Lex::BotVersion": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "BotId": { "type": "string" }, "BotVersionLocaleSpecification": { "items": { "$ref": "#/definitions/AWS::Lex::BotVersion.BotVersionLocaleSpecification" }, "type": "array" }, "Description": { "type": "string" } }, "required": [ "BotId", "BotVersionLocaleSpecification" ], "type": "object" }, "Type": { "enum": [ "AWS::Lex::BotVersion" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Lex::BotVersion.BotVersionLocaleDetails": { "additionalProperties": false, "properties": { "SourceBotVersion": { "type": "string" } }, "required": [ "SourceBotVersion" ], "type": "object" }, "AWS::Lex::BotVersion.BotVersionLocaleSpecification": { "additionalProperties": false, "properties": { "BotVersionLocaleDetails": { "$ref": "#/definitions/AWS::Lex::BotVersion.BotVersionLocaleDetails" }, "LocaleId": { "type": "string" } }, "required": [ "BotVersionLocaleDetails", "LocaleId" ], "type": "object" }, "AWS::Lex::ResourcePolicy": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Policy": { "type": "object" }, "ResourceArn": { "type": "string" } }, "required": [ "Policy", "ResourceArn" ], "type": "object" }, "Type": { "enum": [ "AWS::Lex::ResourcePolicy" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::LicenseManager::Grant": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AllowedOperations": { "items": { "type": "string" }, "type": "array" }, "GrantName": { "type": "string" }, "HomeRegion": { "type": "string" }, "LicenseArn": { "type": "string" }, "Principals": { "items": { "type": "string" }, "type": "array" }, "Status": { "type": "string" } }, "type": "object" }, "Type": { "enum": [ "AWS::LicenseManager::Grant" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::LicenseManager::License": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Beneficiary": { "type": "string" }, "ConsumptionConfiguration": { "$ref": "#/definitions/AWS::LicenseManager::License.ConsumptionConfiguration" }, "Entitlements": { "items": { "$ref": "#/definitions/AWS::LicenseManager::License.Entitlement" }, "type": "array" }, "HomeRegion": { "type": "string" }, "Issuer": { "$ref": "#/definitions/AWS::LicenseManager::License.IssuerData" }, "LicenseMetadata": { "items": { "$ref": "#/definitions/AWS::LicenseManager::License.Metadata" }, "type": "array" }, "LicenseName": { "type": "string" }, "ProductName": { "type": "string" }, "ProductSKU": { "type": "string" }, "Status": { "type": "string" }, "Validity": { "$ref": "#/definitions/AWS::LicenseManager::License.ValidityDateFormat" } }, "required": [ "ConsumptionConfiguration", "Entitlements", "HomeRegion", "Issuer", "LicenseName", "ProductName", "Validity" ], "type": "object" }, "Type": { "enum": [ "AWS::LicenseManager::License" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::LicenseManager::License.BorrowConfiguration": { "additionalProperties": false, "properties": { "AllowEarlyCheckIn": { "type": "boolean" }, "MaxTimeToLiveInMinutes": { "type": "number" } }, "required": [ "AllowEarlyCheckIn", "MaxTimeToLiveInMinutes" ], "type": "object" }, "AWS::LicenseManager::License.ConsumptionConfiguration": { "additionalProperties": false, "properties": { "BorrowConfiguration": { "$ref": "#/definitions/AWS::LicenseManager::License.BorrowConfiguration" }, "ProvisionalConfiguration": { "$ref": "#/definitions/AWS::LicenseManager::License.ProvisionalConfiguration" }, "RenewType": { "type": "string" } }, "type": "object" }, "AWS::LicenseManager::License.Entitlement": { "additionalProperties": false, "properties": { "AllowCheckIn": { "type": "boolean" }, "MaxCount": { "type": "number" }, "Name": { "type": "string" }, "Overage": { "type": "boolean" }, "Unit": { "type": "string" }, "Value": { "type": "string" } }, "required": [ "Name", "Unit" ], "type": "object" }, "AWS::LicenseManager::License.IssuerData": { "additionalProperties": false, "properties": { "Name": { "type": "string" }, "SignKey": { "type": "string" } }, "required": [ "Name" ], "type": "object" }, "AWS::LicenseManager::License.Metadata": { "additionalProperties": false, "properties": { "Name": { "type": "string" }, "Value": { "type": "string" } }, "required": [ "Name", "Value" ], "type": "object" }, "AWS::LicenseManager::License.ProvisionalConfiguration": { "additionalProperties": false, "properties": { "MaxTimeToLiveInMinutes": { "type": "number" } }, "required": [ "MaxTimeToLiveInMinutes" ], "type": "object" }, "AWS::LicenseManager::License.ValidityDateFormat": { "additionalProperties": false, "properties": { "Begin": { "type": "string" }, "End": { "type": "string" } }, "required": [ "Begin", "End" ], "type": "object" }, "AWS::Lightsail::Alarm": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AlarmName": { "type": "string" }, "ComparisonOperator": { "type": "string" }, "ContactProtocols": { "items": { "type": "string" }, "type": "array" }, "DatapointsToAlarm": { "type": "number" }, "EvaluationPeriods": { "type": "number" }, "MetricName": { "type": "string" }, "MonitoredResourceName": { "type": "string" }, "NotificationEnabled": { "type": "boolean" }, "NotificationTriggers": { "items": { "type": "string" }, "type": "array" }, "Threshold": { "type": "number" }, "TreatMissingData": { "type": "string" } }, "required": [ "AlarmName", "ComparisonOperator", "EvaluationPeriods", "MetricName", "MonitoredResourceName", "Threshold" ], "type": "object" }, "Type": { "enum": [ "AWS::Lightsail::Alarm" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Lightsail::Bucket": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AccessRules": { "$ref": "#/definitions/AWS::Lightsail::Bucket.AccessRules" }, "BucketName": { "type": "string" }, "BundleId": { "type": "string" }, "ObjectVersioning": { "type": "boolean" }, "ReadOnlyAccessAccounts": { "items": { "type": "string" }, "type": "array" }, "ResourcesReceivingAccess": { "items": { "type": "string" }, "type": "array" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "BucketName", "BundleId" ], "type": "object" }, "Type": { "enum": [ "AWS::Lightsail::Bucket" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Lightsail::Bucket.AccessRules": { "additionalProperties": false, "properties": { "AllowPublicOverrides": { "type": "boolean" }, "GetObject": { "type": "string" } }, "type": "object" }, "AWS::Lightsail::Certificate": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "CertificateName": { "type": "string" }, "DomainName": { "type": "string" }, "SubjectAlternativeNames": { "items": { "type": "string" }, "type": "array" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "CertificateName", "DomainName" ], "type": "object" }, "Type": { "enum": [ "AWS::Lightsail::Certificate" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Lightsail::Container": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ContainerServiceDeployment": { "$ref": "#/definitions/AWS::Lightsail::Container.ContainerServiceDeployment" }, "IsDisabled": { "type": "boolean" }, "Power": { "type": "string" }, "PublicDomainNames": { "items": { "$ref": "#/definitions/AWS::Lightsail::Container.PublicDomainName" }, "type": "array" }, "Scale": { "type": "number" }, "ServiceName": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "Power", "Scale", "ServiceName" ], "type": "object" }, "Type": { "enum": [ "AWS::Lightsail::Container" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Lightsail::Container.Container": { "additionalProperties": false, "properties": { "Command": { "items": { "type": "string" }, "type": "array" }, "ContainerName": { "type": "string" }, "Environment": { "items": { "$ref": "#/definitions/AWS::Lightsail::Container.EnvironmentVariable" }, "type": "array" }, "Image": { "type": "string" }, "Ports": { "items": { "$ref": "#/definitions/AWS::Lightsail::Container.PortInfo" }, "type": "array" } }, "type": "object" }, "AWS::Lightsail::Container.ContainerServiceDeployment": { "additionalProperties": false, "properties": { "Containers": { "items": { "$ref": "#/definitions/AWS::Lightsail::Container.Container" }, "type": "array" }, "PublicEndpoint": { "$ref": "#/definitions/AWS::Lightsail::Container.PublicEndpoint" } }, "type": "object" }, "AWS::Lightsail::Container.EnvironmentVariable": { "additionalProperties": false, "properties": { "Value": { "type": "string" }, "Variable": { "type": "string" } }, "type": "object" }, "AWS::Lightsail::Container.HealthCheckConfig": { "additionalProperties": false, "properties": { "HealthyThreshold": { "type": "number" }, "IntervalSeconds": { "type": "number" }, "Path": { "type": "string" }, "SuccessCodes": { "type": "string" }, "TimeoutSeconds": { "type": "number" }, "UnhealthyThreshold": { "type": "number" } }, "type": "object" }, "AWS::Lightsail::Container.PortInfo": { "additionalProperties": false, "properties": { "Port": { "type": "string" }, "Protocol": { "type": "string" } }, "type": "object" }, "AWS::Lightsail::Container.PublicDomainName": { "additionalProperties": false, "properties": { "CertificateName": { "type": "string" }, "DomainNames": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::Lightsail::Container.PublicEndpoint": { "additionalProperties": false, "properties": { "ContainerName": { "type": "string" }, "ContainerPort": { "type": "number" }, "HealthCheckConfig": { "$ref": "#/definitions/AWS::Lightsail::Container.HealthCheckConfig" } }, "type": "object" }, "AWS::Lightsail::Database": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AvailabilityZone": { "type": "string" }, "BackupRetention": { "type": "boolean" }, "CaCertificateIdentifier": { "type": "string" }, "MasterDatabaseName": { "type": "string" }, "MasterUserPassword": { "type": "string" }, "MasterUsername": { "type": "string" }, "PreferredBackupWindow": { "type": "string" }, "PreferredMaintenanceWindow": { "type": "string" }, "PubliclyAccessible": { "type": "boolean" }, "RelationalDatabaseBlueprintId": { "type": "string" }, "RelationalDatabaseBundleId": { "type": "string" }, "RelationalDatabaseName": { "type": "string" }, "RelationalDatabaseParameters": { "items": { "$ref": "#/definitions/AWS::Lightsail::Database.RelationalDatabaseParameter" }, "type": "array" }, "RotateMasterUserPassword": { "type": "boolean" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "MasterDatabaseName", "MasterUsername", "RelationalDatabaseBlueprintId", "RelationalDatabaseBundleId", "RelationalDatabaseName" ], "type": "object" }, "Type": { "enum": [ "AWS::Lightsail::Database" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Lightsail::Database.RelationalDatabaseParameter": { "additionalProperties": false, "properties": { "AllowedValues": { "type": "string" }, "ApplyMethod": { "type": "string" }, "ApplyType": { "type": "string" }, "DataType": { "type": "string" }, "Description": { "type": "string" }, "IsModifiable": { "type": "boolean" }, "ParameterName": { "type": "string" }, "ParameterValue": { "type": "string" } }, "type": "object" }, "AWS::Lightsail::Disk": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AddOns": { "items": { "$ref": "#/definitions/AWS::Lightsail::Disk.AddOn" }, "type": "array" }, "AvailabilityZone": { "type": "string" }, "DiskName": { "type": "string" }, "Location": { "$ref": "#/definitions/AWS::Lightsail::Disk.Location" }, "SizeInGb": { "type": "number" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "DiskName", "SizeInGb" ], "type": "object" }, "Type": { "enum": [ "AWS::Lightsail::Disk" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Lightsail::Disk.AddOn": { "additionalProperties": false, "properties": { "AddOnType": { "type": "string" }, "AutoSnapshotAddOnRequest": { "$ref": "#/definitions/AWS::Lightsail::Disk.AutoSnapshotAddOn" }, "Status": { "type": "string" } }, "required": [ "AddOnType" ], "type": "object" }, "AWS::Lightsail::Disk.AutoSnapshotAddOn": { "additionalProperties": false, "properties": { "SnapshotTimeOfDay": { "type": "string" } }, "type": "object" }, "AWS::Lightsail::Disk.Location": { "additionalProperties": false, "properties": { "AvailabilityZone": { "type": "string" }, "RegionName": { "type": "string" } }, "type": "object" }, "AWS::Lightsail::Distribution": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "BundleId": { "type": "string" }, "CacheBehaviorSettings": { "$ref": "#/definitions/AWS::Lightsail::Distribution.CacheSettings" }, "CacheBehaviors": { "items": { "$ref": "#/definitions/AWS::Lightsail::Distribution.CacheBehaviorPerPath" }, "type": "array" }, "CertificateName": { "type": "string" }, "DefaultCacheBehavior": { "$ref": "#/definitions/AWS::Lightsail::Distribution.CacheBehavior" }, "DistributionName": { "type": "string" }, "IpAddressType": { "type": "string" }, "IsEnabled": { "type": "boolean" }, "Origin": { "$ref": "#/definitions/AWS::Lightsail::Distribution.InputOrigin" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "BundleId", "DefaultCacheBehavior", "DistributionName", "Origin" ], "type": "object" }, "Type": { "enum": [ "AWS::Lightsail::Distribution" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Lightsail::Distribution.CacheBehavior": { "additionalProperties": false, "properties": { "Behavior": { "type": "string" } }, "type": "object" }, "AWS::Lightsail::Distribution.CacheBehaviorPerPath": { "additionalProperties": false, "properties": { "Behavior": { "type": "string" }, "Path": { "type": "string" } }, "type": "object" }, "AWS::Lightsail::Distribution.CacheSettings": { "additionalProperties": false, "properties": { "AllowedHTTPMethods": { "type": "string" }, "CachedHTTPMethods": { "type": "string" }, "DefaultTTL": { "type": "number" }, "ForwardedCookies": { "$ref": "#/definitions/AWS::Lightsail::Distribution.CookieObject" }, "ForwardedHeaders": { "$ref": "#/definitions/AWS::Lightsail::Distribution.HeaderObject" }, "ForwardedQueryStrings": { "$ref": "#/definitions/AWS::Lightsail::Distribution.QueryStringObject" }, "MaximumTTL": { "type": "number" }, "MinimumTTL": { "type": "number" } }, "type": "object" }, "AWS::Lightsail::Distribution.CookieObject": { "additionalProperties": false, "properties": { "CookiesAllowList": { "items": { "type": "string" }, "type": "array" }, "Option": { "type": "string" } }, "type": "object" }, "AWS::Lightsail::Distribution.HeaderObject": { "additionalProperties": false, "properties": { "HeadersAllowList": { "items": { "type": "string" }, "type": "array" }, "Option": { "type": "string" } }, "type": "object" }, "AWS::Lightsail::Distribution.InputOrigin": { "additionalProperties": false, "properties": { "Name": { "type": "string" }, "ProtocolPolicy": { "type": "string" }, "RegionName": { "type": "string" } }, "type": "object" }, "AWS::Lightsail::Distribution.QueryStringObject": { "additionalProperties": false, "properties": { "Option": { "type": "boolean" }, "QueryStringsAllowList": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::Lightsail::Instance": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AddOns": { "items": { "$ref": "#/definitions/AWS::Lightsail::Instance.AddOn" }, "type": "array" }, "AvailabilityZone": { "type": "string" }, "BlueprintId": { "type": "string" }, "BundleId": { "type": "string" }, "Hardware": { "$ref": "#/definitions/AWS::Lightsail::Instance.Hardware" }, "InstanceName": { "type": "string" }, "KeyPairName": { "type": "string" }, "Location": { "$ref": "#/definitions/AWS::Lightsail::Instance.Location" }, "Networking": { "$ref": "#/definitions/AWS::Lightsail::Instance.Networking" }, "State": { "$ref": "#/definitions/AWS::Lightsail::Instance.State" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "UserData": { "type": "string" } }, "required": [ "BlueprintId", "BundleId", "InstanceName" ], "type": "object" }, "Type": { "enum": [ "AWS::Lightsail::Instance" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Lightsail::Instance.AddOn": { "additionalProperties": false, "properties": { "AddOnType": { "type": "string" }, "AutoSnapshotAddOnRequest": { "$ref": "#/definitions/AWS::Lightsail::Instance.AutoSnapshotAddOn" }, "Status": { "type": "string" } }, "required": [ "AddOnType" ], "type": "object" }, "AWS::Lightsail::Instance.AutoSnapshotAddOn": { "additionalProperties": false, "properties": { "SnapshotTimeOfDay": { "type": "string" } }, "type": "object" }, "AWS::Lightsail::Instance.Disk": { "additionalProperties": false, "properties": { "AttachedTo": { "type": "string" }, "AttachmentState": { "type": "string" }, "DiskName": { "type": "string" }, "IOPS": { "type": "number" }, "IsSystemDisk": { "type": "boolean" }, "Path": { "type": "string" }, "SizeInGb": { "type": "string" } }, "required": [ "DiskName", "Path" ], "type": "object" }, "AWS::Lightsail::Instance.Hardware": { "additionalProperties": false, "properties": { "CpuCount": { "type": "number" }, "Disks": { "items": { "$ref": "#/definitions/AWS::Lightsail::Instance.Disk" }, "type": "array" }, "RamSizeInGb": { "type": "number" } }, "type": "object" }, "AWS::Lightsail::Instance.Location": { "additionalProperties": false, "properties": { "AvailabilityZone": { "type": "string" }, "RegionName": { "type": "string" } }, "type": "object" }, "AWS::Lightsail::Instance.MonthlyTransfer": { "additionalProperties": false, "properties": { "GbPerMonthAllocated": { "type": "string" } }, "type": "object" }, "AWS::Lightsail::Instance.Networking": { "additionalProperties": false, "properties": { "MonthlyTransfer": { "$ref": "#/definitions/AWS::Lightsail::Instance.MonthlyTransfer" }, "Ports": { "items": { "$ref": "#/definitions/AWS::Lightsail::Instance.Port" }, "type": "array" } }, "required": [ "Ports" ], "type": "object" }, "AWS::Lightsail::Instance.Port": { "additionalProperties": false, "properties": { "AccessDirection": { "type": "string" }, "AccessFrom": { "type": "string" }, "AccessType": { "type": "string" }, "CidrListAliases": { "items": { "type": "string" }, "type": "array" }, "Cidrs": { "items": { "type": "string" }, "type": "array" }, "CommonName": { "type": "string" }, "FromPort": { "type": "number" }, "Ipv6Cidrs": { "items": { "type": "string" }, "type": "array" }, "Protocol": { "type": "string" }, "ToPort": { "type": "number" } }, "type": "object" }, "AWS::Lightsail::Instance.State": { "additionalProperties": false, "properties": { "Code": { "type": "number" }, "Name": { "type": "string" } }, "type": "object" }, "AWS::Lightsail::LoadBalancer": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AttachedInstances": { "items": { "type": "string" }, "type": "array" }, "HealthCheckPath": { "type": "string" }, "InstancePort": { "type": "number" }, "IpAddressType": { "type": "string" }, "LoadBalancerName": { "type": "string" }, "SessionStickinessEnabled": { "type": "boolean" }, "SessionStickinessLBCookieDurationSeconds": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "TlsPolicyName": { "type": "string" } }, "required": [ "InstancePort", "LoadBalancerName" ], "type": "object" }, "Type": { "enum": [ "AWS::Lightsail::LoadBalancer" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Lightsail::LoadBalancerTlsCertificate": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "CertificateAlternativeNames": { "items": { "type": "string" }, "type": "array" }, "CertificateDomainName": { "type": "string" }, "CertificateName": { "type": "string" }, "HttpsRedirectionEnabled": { "type": "boolean" }, "IsAttached": { "type": "boolean" }, "LoadBalancerName": { "type": "string" } }, "required": [ "CertificateDomainName", "CertificateName", "LoadBalancerName" ], "type": "object" }, "Type": { "enum": [ "AWS::Lightsail::LoadBalancerTlsCertificate" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Lightsail::StaticIp": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AttachedTo": { "type": "string" }, "StaticIpName": { "type": "string" } }, "required": [ "StaticIpName" ], "type": "object" }, "Type": { "enum": [ "AWS::Lightsail::StaticIp" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Location::GeofenceCollection": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "CollectionName": { "type": "string" }, "Description": { "type": "string" }, "KmsKeyId": { "type": "string" } }, "required": [ "CollectionName" ], "type": "object" }, "Type": { "enum": [ "AWS::Location::GeofenceCollection" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Location::Map": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Configuration": { "$ref": "#/definitions/AWS::Location::Map.MapConfiguration" }, "Description": { "type": "string" }, "MapName": { "type": "string" }, "PricingPlan": { "type": "string" } }, "required": [ "Configuration", "MapName" ], "type": "object" }, "Type": { "enum": [ "AWS::Location::Map" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Location::Map.MapConfiguration": { "additionalProperties": false, "properties": { "Style": { "type": "string" } }, "required": [ "Style" ], "type": "object" }, "AWS::Location::PlaceIndex": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "DataSource": { "type": "string" }, "DataSourceConfiguration": { "$ref": "#/definitions/AWS::Location::PlaceIndex.DataSourceConfiguration" }, "Description": { "type": "string" }, "IndexName": { "type": "string" }, "PricingPlan": { "type": "string" } }, "required": [ "DataSource", "IndexName" ], "type": "object" }, "Type": { "enum": [ "AWS::Location::PlaceIndex" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Location::PlaceIndex.DataSourceConfiguration": { "additionalProperties": false, "properties": { "IntendedUse": { "type": "string" } }, "type": "object" }, "AWS::Location::RouteCalculator": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "CalculatorName": { "type": "string" }, "DataSource": { "type": "string" }, "Description": { "type": "string" }, "PricingPlan": { "type": "string" } }, "required": [ "CalculatorName", "DataSource" ], "type": "object" }, "Type": { "enum": [ "AWS::Location::RouteCalculator" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Location::Tracker": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "KmsKeyId": { "type": "string" }, "PositionFiltering": { "type": "string" }, "TrackerName": { "type": "string" } }, "required": [ "TrackerName" ], "type": "object" }, "Type": { "enum": [ "AWS::Location::Tracker" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Location::TrackerConsumer": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ConsumerArn": { "type": "string" }, "TrackerName": { "type": "string" } }, "required": [ "ConsumerArn", "TrackerName" ], "type": "object" }, "Type": { "enum": [ "AWS::Location::TrackerConsumer" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Logs::AccountPolicy": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "PolicyDocument": { "type": "string" }, "PolicyName": { "type": "string" }, "PolicyType": { "type": "string" }, "Scope": { "type": "string" } }, "required": [ "PolicyDocument", "PolicyName", "PolicyType" ], "type": "object" }, "Type": { "enum": [ "AWS::Logs::AccountPolicy" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Logs::Destination": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "DestinationName": { "type": "string" }, "DestinationPolicy": { "type": "string" }, "RoleArn": { "type": "string" }, "TargetArn": { "type": "string" } }, "required": [ "DestinationName", "RoleArn", "TargetArn" ], "type": "object" }, "Type": { "enum": [ "AWS::Logs::Destination" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Logs::LogGroup": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "DataProtectionPolicy": { "type": "object" }, "KmsKeyId": { "type": "string" }, "LogGroupName": { "type": "string" }, "RetentionInDays": { "type": "number" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "type": "object" }, "Type": { "enum": [ "AWS::Logs::LogGroup" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::Logs::LogStream": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "LogGroupName": { "type": "string" }, "LogStreamName": { "type": "string" } }, "required": [ "LogGroupName" ], "type": "object" }, "Type": { "enum": [ "AWS::Logs::LogStream" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Logs::MetricFilter": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "FilterName": { "type": "string" }, "FilterPattern": { "type": "string" }, "LogGroupName": { "type": "string" }, "MetricTransformations": { "items": { "$ref": "#/definitions/AWS::Logs::MetricFilter.MetricTransformation" }, "type": "array" } }, "required": [ "FilterPattern", "LogGroupName", "MetricTransformations" ], "type": "object" }, "Type": { "enum": [ "AWS::Logs::MetricFilter" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Logs::MetricFilter.Dimension": { "additionalProperties": false, "properties": { "Key": { "type": "string" }, "Value": { "type": "string" } }, "required": [ "Key", "Value" ], "type": "object" }, "AWS::Logs::MetricFilter.MetricTransformation": { "additionalProperties": false, "properties": { "DefaultValue": { "type": "number" }, "Dimensions": { "items": { "$ref": "#/definitions/AWS::Logs::MetricFilter.Dimension" }, "type": "array" }, "MetricName": { "type": "string" }, "MetricNamespace": { "type": "string" }, "MetricValue": { "type": "string" }, "Unit": { "type": "string" } }, "required": [ "MetricName", "MetricNamespace", "MetricValue" ], "type": "object" }, "AWS::Logs::QueryDefinition": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "LogGroupNames": { "items": { "type": "string" }, "type": "array" }, "Name": { "type": "string" }, "QueryString": { "type": "string" } }, "required": [ "Name", "QueryString" ], "type": "object" }, "Type": { "enum": [ "AWS::Logs::QueryDefinition" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Logs::ResourcePolicy": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "PolicyDocument": { "type": "string" }, "PolicyName": { "type": "string" } }, "required": [ "PolicyDocument", "PolicyName" ], "type": "object" }, "Type": { "enum": [ "AWS::Logs::ResourcePolicy" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Logs::SubscriptionFilter": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "DestinationArn": { "type": "string" }, "Distribution": { "type": "string" }, "FilterName": { "type": "string" }, "FilterPattern": { "type": "string" }, "LogGroupName": { "type": "string" }, "RoleArn": { "type": "string" } }, "required": [ "DestinationArn", "FilterPattern", "LogGroupName" ], "type": "object" }, "Type": { "enum": [ "AWS::Logs::SubscriptionFilter" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::LookoutEquipment::InferenceScheduler": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "DataDelayOffsetInMinutes": { "type": "number" }, "DataInputConfiguration": { "$ref": "#/definitions/AWS::LookoutEquipment::InferenceScheduler.DataInputConfiguration" }, "DataOutputConfiguration": { "$ref": "#/definitions/AWS::LookoutEquipment::InferenceScheduler.DataOutputConfiguration" }, "DataUploadFrequency": { "type": "string" }, "InferenceSchedulerName": { "type": "string" }, "ModelName": { "type": "string" }, "RoleArn": { "type": "string" }, "ServerSideKmsKeyId": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "DataInputConfiguration", "DataOutputConfiguration", "DataUploadFrequency", "ModelName", "RoleArn" ], "type": "object" }, "Type": { "enum": [ "AWS::LookoutEquipment::InferenceScheduler" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::LookoutEquipment::InferenceScheduler.DataInputConfiguration": { "additionalProperties": false, "properties": { "InferenceInputNameConfiguration": { "$ref": "#/definitions/AWS::LookoutEquipment::InferenceScheduler.InputNameConfiguration" }, "InputTimeZoneOffset": { "type": "string" }, "S3InputConfiguration": { "$ref": "#/definitions/AWS::LookoutEquipment::InferenceScheduler.S3InputConfiguration" } }, "required": [ "S3InputConfiguration" ], "type": "object" }, "AWS::LookoutEquipment::InferenceScheduler.DataOutputConfiguration": { "additionalProperties": false, "properties": { "KmsKeyId": { "type": "string" }, "S3OutputConfiguration": { "$ref": "#/definitions/AWS::LookoutEquipment::InferenceScheduler.S3OutputConfiguration" } }, "required": [ "S3OutputConfiguration" ], "type": "object" }, "AWS::LookoutEquipment::InferenceScheduler.InputNameConfiguration": { "additionalProperties": false, "properties": { "ComponentTimestampDelimiter": { "type": "string" }, "TimestampFormat": { "type": "string" } }, "type": "object" }, "AWS::LookoutEquipment::InferenceScheduler.S3InputConfiguration": { "additionalProperties": false, "properties": { "Bucket": { "type": "string" }, "Prefix": { "type": "string" } }, "required": [ "Bucket" ], "type": "object" }, "AWS::LookoutEquipment::InferenceScheduler.S3OutputConfiguration": { "additionalProperties": false, "properties": { "Bucket": { "type": "string" }, "Prefix": { "type": "string" } }, "required": [ "Bucket" ], "type": "object" }, "AWS::LookoutMetrics::Alert": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Action": { "$ref": "#/definitions/AWS::LookoutMetrics::Alert.Action" }, "AlertDescription": { "type": "string" }, "AlertName": { "type": "string" }, "AlertSensitivityThreshold": { "type": "number" }, "AnomalyDetectorArn": { "type": "string" } }, "required": [ "Action", "AlertSensitivityThreshold", "AnomalyDetectorArn" ], "type": "object" }, "Type": { "enum": [ "AWS::LookoutMetrics::Alert" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::LookoutMetrics::Alert.Action": { "additionalProperties": false, "properties": { "LambdaConfiguration": { "$ref": "#/definitions/AWS::LookoutMetrics::Alert.LambdaConfiguration" }, "SNSConfiguration": { "$ref": "#/definitions/AWS::LookoutMetrics::Alert.SNSConfiguration" } }, "type": "object" }, "AWS::LookoutMetrics::Alert.LambdaConfiguration": { "additionalProperties": false, "properties": { "LambdaArn": { "type": "string" }, "RoleArn": { "type": "string" } }, "required": [ "LambdaArn", "RoleArn" ], "type": "object" }, "AWS::LookoutMetrics::Alert.SNSConfiguration": { "additionalProperties": false, "properties": { "RoleArn": { "type": "string" }, "SnsTopicArn": { "type": "string" } }, "required": [ "RoleArn", "SnsTopicArn" ], "type": "object" }, "AWS::LookoutMetrics::AnomalyDetector": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AnomalyDetectorConfig": { "$ref": "#/definitions/AWS::LookoutMetrics::AnomalyDetector.AnomalyDetectorConfig" }, "AnomalyDetectorDescription": { "type": "string" }, "AnomalyDetectorName": { "type": "string" }, "KmsKeyArn": { "type": "string" }, "MetricSetList": { "items": { "$ref": "#/definitions/AWS::LookoutMetrics::AnomalyDetector.MetricSet" }, "type": "array" } }, "required": [ "AnomalyDetectorConfig", "MetricSetList" ], "type": "object" }, "Type": { "enum": [ "AWS::LookoutMetrics::AnomalyDetector" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::LookoutMetrics::AnomalyDetector.AnomalyDetectorConfig": { "additionalProperties": false, "properties": { "AnomalyDetectorFrequency": { "type": "string" } }, "required": [ "AnomalyDetectorFrequency" ], "type": "object" }, "AWS::LookoutMetrics::AnomalyDetector.AppFlowConfig": { "additionalProperties": false, "properties": { "FlowName": { "type": "string" }, "RoleArn": { "type": "string" } }, "required": [ "FlowName", "RoleArn" ], "type": "object" }, "AWS::LookoutMetrics::AnomalyDetector.CloudwatchConfig": { "additionalProperties": false, "properties": { "RoleArn": { "type": "string" } }, "required": [ "RoleArn" ], "type": "object" }, "AWS::LookoutMetrics::AnomalyDetector.CsvFormatDescriptor": { "additionalProperties": false, "properties": { "Charset": { "type": "string" }, "ContainsHeader": { "type": "boolean" }, "Delimiter": { "type": "string" }, "FileCompression": { "type": "string" }, "HeaderList": { "items": { "type": "string" }, "type": "array" }, "QuoteSymbol": { "type": "string" } }, "type": "object" }, "AWS::LookoutMetrics::AnomalyDetector.FileFormatDescriptor": { "additionalProperties": false, "properties": { "CsvFormatDescriptor": { "$ref": "#/definitions/AWS::LookoutMetrics::AnomalyDetector.CsvFormatDescriptor" }, "JsonFormatDescriptor": { "$ref": "#/definitions/AWS::LookoutMetrics::AnomalyDetector.JsonFormatDescriptor" } }, "type": "object" }, "AWS::LookoutMetrics::AnomalyDetector.JsonFormatDescriptor": { "additionalProperties": false, "properties": { "Charset": { "type": "string" }, "FileCompression": { "type": "string" } }, "type": "object" }, "AWS::LookoutMetrics::AnomalyDetector.Metric": { "additionalProperties": false, "properties": { "AggregationFunction": { "type": "string" }, "MetricName": { "type": "string" }, "Namespace": { "type": "string" } }, "required": [ "AggregationFunction", "MetricName" ], "type": "object" }, "AWS::LookoutMetrics::AnomalyDetector.MetricSet": { "additionalProperties": false, "properties": { "DimensionList": { "items": { "type": "string" }, "type": "array" }, "MetricList": { "items": { "$ref": "#/definitions/AWS::LookoutMetrics::AnomalyDetector.Metric" }, "type": "array" }, "MetricSetDescription": { "type": "string" }, "MetricSetFrequency": { "type": "string" }, "MetricSetName": { "type": "string" }, "MetricSource": { "$ref": "#/definitions/AWS::LookoutMetrics::AnomalyDetector.MetricSource" }, "Offset": { "type": "number" }, "TimestampColumn": { "$ref": "#/definitions/AWS::LookoutMetrics::AnomalyDetector.TimestampColumn" }, "Timezone": { "type": "string" } }, "required": [ "MetricList", "MetricSetName", "MetricSource" ], "type": "object" }, "AWS::LookoutMetrics::AnomalyDetector.MetricSource": { "additionalProperties": false, "properties": { "AppFlowConfig": { "$ref": "#/definitions/AWS::LookoutMetrics::AnomalyDetector.AppFlowConfig" }, "CloudwatchConfig": { "$ref": "#/definitions/AWS::LookoutMetrics::AnomalyDetector.CloudwatchConfig" }, "RDSSourceConfig": { "$ref": "#/definitions/AWS::LookoutMetrics::AnomalyDetector.RDSSourceConfig" }, "RedshiftSourceConfig": { "$ref": "#/definitions/AWS::LookoutMetrics::AnomalyDetector.RedshiftSourceConfig" }, "S3SourceConfig": { "$ref": "#/definitions/AWS::LookoutMetrics::AnomalyDetector.S3SourceConfig" } }, "type": "object" }, "AWS::LookoutMetrics::AnomalyDetector.RDSSourceConfig": { "additionalProperties": false, "properties": { "DBInstanceIdentifier": { "type": "string" }, "DatabaseHost": { "type": "string" }, "DatabaseName": { "type": "string" }, "DatabasePort": { "type": "number" }, "RoleArn": { "type": "string" }, "SecretManagerArn": { "type": "string" }, "TableName": { "type": "string" }, "VpcConfiguration": { "$ref": "#/definitions/AWS::LookoutMetrics::AnomalyDetector.VpcConfiguration" } }, "required": [ "DBInstanceIdentifier", "DatabaseHost", "DatabaseName", "DatabasePort", "RoleArn", "SecretManagerArn", "TableName", "VpcConfiguration" ], "type": "object" }, "AWS::LookoutMetrics::AnomalyDetector.RedshiftSourceConfig": { "additionalProperties": false, "properties": { "ClusterIdentifier": { "type": "string" }, "DatabaseHost": { "type": "string" }, "DatabaseName": { "type": "string" }, "DatabasePort": { "type": "number" }, "RoleArn": { "type": "string" }, "SecretManagerArn": { "type": "string" }, "TableName": { "type": "string" }, "VpcConfiguration": { "$ref": "#/definitions/AWS::LookoutMetrics::AnomalyDetector.VpcConfiguration" } }, "required": [ "ClusterIdentifier", "DatabaseHost", "DatabaseName", "DatabasePort", "RoleArn", "SecretManagerArn", "TableName", "VpcConfiguration" ], "type": "object" }, "AWS::LookoutMetrics::AnomalyDetector.S3SourceConfig": { "additionalProperties": false, "properties": { "FileFormatDescriptor": { "$ref": "#/definitions/AWS::LookoutMetrics::AnomalyDetector.FileFormatDescriptor" }, "HistoricalDataPathList": { "items": { "type": "string" }, "type": "array" }, "RoleArn": { "type": "string" }, "TemplatedPathList": { "items": { "type": "string" }, "type": "array" } }, "required": [ "FileFormatDescriptor", "RoleArn" ], "type": "object" }, "AWS::LookoutMetrics::AnomalyDetector.TimestampColumn": { "additionalProperties": false, "properties": { "ColumnFormat": { "type": "string" }, "ColumnName": { "type": "string" } }, "type": "object" }, "AWS::LookoutMetrics::AnomalyDetector.VpcConfiguration": { "additionalProperties": false, "properties": { "SecurityGroupIdList": { "items": { "type": "string" }, "type": "array" }, "SubnetIdList": { "items": { "type": "string" }, "type": "array" } }, "required": [ "SecurityGroupIdList", "SubnetIdList" ], "type": "object" }, "AWS::LookoutVision::Project": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ProjectName": { "type": "string" } }, "required": [ "ProjectName" ], "type": "object" }, "Type": { "enum": [ "AWS::LookoutVision::Project" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::M2::Application": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Definition": { "$ref": "#/definitions/AWS::M2::Application.Definition" }, "Description": { "type": "string" }, "EngineType": { "type": "string" }, "KmsKeyId": { "type": "string" }, "Name": { "type": "string" }, "RoleArn": { "type": "string" }, "Tags": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" } }, "required": [ "Definition", "EngineType", "Name" ], "type": "object" }, "Type": { "enum": [ "AWS::M2::Application" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::M2::Application.Definition": { "additionalProperties": false, "properties": { "Content": { "type": "string" }, "S3Location": { "type": "string" } }, "type": "object" }, "AWS::M2::Environment": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "EngineType": { "type": "string" }, "EngineVersion": { "type": "string" }, "HighAvailabilityConfig": { "$ref": "#/definitions/AWS::M2::Environment.HighAvailabilityConfig" }, "InstanceType": { "type": "string" }, "KmsKeyId": { "type": "string" }, "Name": { "type": "string" }, "PreferredMaintenanceWindow": { "type": "string" }, "PubliclyAccessible": { "type": "boolean" }, "SecurityGroupIds": { "items": { "type": "string" }, "type": "array" }, "StorageConfigurations": { "items": { "$ref": "#/definitions/AWS::M2::Environment.StorageConfiguration" }, "type": "array" }, "SubnetIds": { "items": { "type": "string" }, "type": "array" }, "Tags": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" } }, "required": [ "EngineType", "InstanceType", "Name" ], "type": "object" }, "Type": { "enum": [ "AWS::M2::Environment" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::M2::Environment.EfsStorageConfiguration": { "additionalProperties": false, "properties": { "FileSystemId": { "type": "string" }, "MountPoint": { "type": "string" } }, "required": [ "FileSystemId", "MountPoint" ], "type": "object" }, "AWS::M2::Environment.FsxStorageConfiguration": { "additionalProperties": false, "properties": { "FileSystemId": { "type": "string" }, "MountPoint": { "type": "string" } }, "required": [ "FileSystemId", "MountPoint" ], "type": "object" }, "AWS::M2::Environment.HighAvailabilityConfig": { "additionalProperties": false, "properties": { "DesiredCapacity": { "type": "number" } }, "required": [ "DesiredCapacity" ], "type": "object" }, "AWS::M2::Environment.StorageConfiguration": { "additionalProperties": false, "properties": { "Efs": { "$ref": "#/definitions/AWS::M2::Environment.EfsStorageConfiguration" }, "Fsx": { "$ref": "#/definitions/AWS::M2::Environment.FsxStorageConfiguration" } }, "type": "object" }, "AWS::MSK::BatchScramSecret": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ClusterArn": { "type": "string" }, "SecretArnList": { "items": { "type": "string" }, "type": "array" } }, "required": [ "ClusterArn" ], "type": "object" }, "Type": { "enum": [ "AWS::MSK::BatchScramSecret" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::MSK::Cluster": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "BrokerNodeGroupInfo": { "$ref": "#/definitions/AWS::MSK::Cluster.BrokerNodeGroupInfo" }, "ClientAuthentication": { "$ref": "#/definitions/AWS::MSK::Cluster.ClientAuthentication" }, "ClusterName": { "type": "string" }, "ConfigurationInfo": { "$ref": "#/definitions/AWS::MSK::Cluster.ConfigurationInfo" }, "CurrentVersion": { "type": "string" }, "EncryptionInfo": { "$ref": "#/definitions/AWS::MSK::Cluster.EncryptionInfo" }, "EnhancedMonitoring": { "type": "string" }, "KafkaVersion": { "type": "string" }, "LoggingInfo": { "$ref": "#/definitions/AWS::MSK::Cluster.LoggingInfo" }, "NumberOfBrokerNodes": { "type": "number" }, "OpenMonitoring": { "$ref": "#/definitions/AWS::MSK::Cluster.OpenMonitoring" }, "StorageMode": { "type": "string" }, "Tags": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" } }, "required": [ "BrokerNodeGroupInfo", "ClusterName", "KafkaVersion", "NumberOfBrokerNodes" ], "type": "object" }, "Type": { "enum": [ "AWS::MSK::Cluster" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::MSK::Cluster.BrokerLogs": { "additionalProperties": false, "properties": { "CloudWatchLogs": { "$ref": "#/definitions/AWS::MSK::Cluster.CloudWatchLogs" }, "Firehose": { "$ref": "#/definitions/AWS::MSK::Cluster.Firehose" }, "S3": { "$ref": "#/definitions/AWS::MSK::Cluster.S3" } }, "type": "object" }, "AWS::MSK::Cluster.BrokerNodeGroupInfo": { "additionalProperties": false, "properties": { "BrokerAZDistribution": { "type": "string" }, "ClientSubnets": { "items": { "type": "string" }, "type": "array" }, "ConnectivityInfo": { "$ref": "#/definitions/AWS::MSK::Cluster.ConnectivityInfo" }, "InstanceType": { "type": "string" }, "SecurityGroups": { "items": { "type": "string" }, "type": "array" }, "StorageInfo": { "$ref": "#/definitions/AWS::MSK::Cluster.StorageInfo" } }, "required": [ "ClientSubnets", "InstanceType" ], "type": "object" }, "AWS::MSK::Cluster.ClientAuthentication": { "additionalProperties": false, "properties": { "Sasl": { "$ref": "#/definitions/AWS::MSK::Cluster.Sasl" }, "Tls": { "$ref": "#/definitions/AWS::MSK::Cluster.Tls" }, "Unauthenticated": { "$ref": "#/definitions/AWS::MSK::Cluster.Unauthenticated" } }, "type": "object" }, "AWS::MSK::Cluster.CloudWatchLogs": { "additionalProperties": false, "properties": { "Enabled": { "type": "boolean" }, "LogGroup": { "type": "string" } }, "required": [ "Enabled" ], "type": "object" }, "AWS::MSK::Cluster.ConfigurationInfo": { "additionalProperties": false, "properties": { "Arn": { "type": "string" }, "Revision": { "type": "number" } }, "required": [ "Arn", "Revision" ], "type": "object" }, "AWS::MSK::Cluster.ConnectivityInfo": { "additionalProperties": false, "properties": { "PublicAccess": { "$ref": "#/definitions/AWS::MSK::Cluster.PublicAccess" }, "VpcConnectivity": { "$ref": "#/definitions/AWS::MSK::Cluster.VpcConnectivity" } }, "type": "object" }, "AWS::MSK::Cluster.EBSStorageInfo": { "additionalProperties": false, "properties": { "ProvisionedThroughput": { "$ref": "#/definitions/AWS::MSK::Cluster.ProvisionedThroughput" }, "VolumeSize": { "type": "number" } }, "type": "object" }, "AWS::MSK::Cluster.EncryptionAtRest": { "additionalProperties": false, "properties": { "DataVolumeKMSKeyId": { "type": "string" } }, "required": [ "DataVolumeKMSKeyId" ], "type": "object" }, "AWS::MSK::Cluster.EncryptionInTransit": { "additionalProperties": false, "properties": { "ClientBroker": { "type": "string" }, "InCluster": { "type": "boolean" } }, "type": "object" }, "AWS::MSK::Cluster.EncryptionInfo": { "additionalProperties": false, "properties": { "EncryptionAtRest": { "$ref": "#/definitions/AWS::MSK::Cluster.EncryptionAtRest" }, "EncryptionInTransit": { "$ref": "#/definitions/AWS::MSK::Cluster.EncryptionInTransit" } }, "type": "object" }, "AWS::MSK::Cluster.Firehose": { "additionalProperties": false, "properties": { "DeliveryStream": { "type": "string" }, "Enabled": { "type": "boolean" } }, "required": [ "Enabled" ], "type": "object" }, "AWS::MSK::Cluster.Iam": { "additionalProperties": false, "properties": { "Enabled": { "type": "boolean" } }, "required": [ "Enabled" ], "type": "object" }, "AWS::MSK::Cluster.JmxExporter": { "additionalProperties": false, "properties": { "EnabledInBroker": { "type": "boolean" } }, "required": [ "EnabledInBroker" ], "type": "object" }, "AWS::MSK::Cluster.LoggingInfo": { "additionalProperties": false, "properties": { "BrokerLogs": { "$ref": "#/definitions/AWS::MSK::Cluster.BrokerLogs" } }, "required": [ "BrokerLogs" ], "type": "object" }, "AWS::MSK::Cluster.NodeExporter": { "additionalProperties": false, "properties": { "EnabledInBroker": { "type": "boolean" } }, "required": [ "EnabledInBroker" ], "type": "object" }, "AWS::MSK::Cluster.OpenMonitoring": { "additionalProperties": false, "properties": { "Prometheus": { "$ref": "#/definitions/AWS::MSK::Cluster.Prometheus" } }, "required": [ "Prometheus" ], "type": "object" }, "AWS::MSK::Cluster.Prometheus": { "additionalProperties": false, "properties": { "JmxExporter": { "$ref": "#/definitions/AWS::MSK::Cluster.JmxExporter" }, "NodeExporter": { "$ref": "#/definitions/AWS::MSK::Cluster.NodeExporter" } }, "type": "object" }, "AWS::MSK::Cluster.ProvisionedThroughput": { "additionalProperties": false, "properties": { "Enabled": { "type": "boolean" }, "VolumeThroughput": { "type": "number" } }, "type": "object" }, "AWS::MSK::Cluster.PublicAccess": { "additionalProperties": false, "properties": { "Type": { "type": "string" } }, "type": "object" }, "AWS::MSK::Cluster.S3": { "additionalProperties": false, "properties": { "Bucket": { "type": "string" }, "Enabled": { "type": "boolean" }, "Prefix": { "type": "string" } }, "required": [ "Enabled" ], "type": "object" }, "AWS::MSK::Cluster.Sasl": { "additionalProperties": false, "properties": { "Iam": { "$ref": "#/definitions/AWS::MSK::Cluster.Iam" }, "Scram": { "$ref": "#/definitions/AWS::MSK::Cluster.Scram" } }, "type": "object" }, "AWS::MSK::Cluster.Scram": { "additionalProperties": false, "properties": { "Enabled": { "type": "boolean" } }, "required": [ "Enabled" ], "type": "object" }, "AWS::MSK::Cluster.StorageInfo": { "additionalProperties": false, "properties": { "EBSStorageInfo": { "$ref": "#/definitions/AWS::MSK::Cluster.EBSStorageInfo" } }, "type": "object" }, "AWS::MSK::Cluster.Tls": { "additionalProperties": false, "properties": { "CertificateAuthorityArnList": { "items": { "type": "string" }, "type": "array" }, "Enabled": { "type": "boolean" } }, "type": "object" }, "AWS::MSK::Cluster.Unauthenticated": { "additionalProperties": false, "properties": { "Enabled": { "type": "boolean" } }, "required": [ "Enabled" ], "type": "object" }, "AWS::MSK::Cluster.VpcConnectivity": { "additionalProperties": false, "properties": { "ClientAuthentication": { "$ref": "#/definitions/AWS::MSK::Cluster.VpcConnectivityClientAuthentication" } }, "type": "object" }, "AWS::MSK::Cluster.VpcConnectivityClientAuthentication": { "additionalProperties": false, "properties": { "Sasl": { "$ref": "#/definitions/AWS::MSK::Cluster.VpcConnectivitySasl" }, "Tls": { "$ref": "#/definitions/AWS::MSK::Cluster.VpcConnectivityTls" } }, "type": "object" }, "AWS::MSK::Cluster.VpcConnectivityIam": { "additionalProperties": false, "properties": { "Enabled": { "type": "boolean" } }, "required": [ "Enabled" ], "type": "object" }, "AWS::MSK::Cluster.VpcConnectivitySasl": { "additionalProperties": false, "properties": { "Iam": { "$ref": "#/definitions/AWS::MSK::Cluster.VpcConnectivityIam" }, "Scram": { "$ref": "#/definitions/AWS::MSK::Cluster.VpcConnectivityScram" } }, "type": "object" }, "AWS::MSK::Cluster.VpcConnectivityScram": { "additionalProperties": false, "properties": { "Enabled": { "type": "boolean" } }, "required": [ "Enabled" ], "type": "object" }, "AWS::MSK::Cluster.VpcConnectivityTls": { "additionalProperties": false, "properties": { "Enabled": { "type": "boolean" } }, "required": [ "Enabled" ], "type": "object" }, "AWS::MSK::ClusterPolicy": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ClusterArn": { "type": "string" }, "Policy": { "type": "object" } }, "required": [ "ClusterArn", "Policy" ], "type": "object" }, "Type": { "enum": [ "AWS::MSK::ClusterPolicy" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::MSK::Configuration": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "KafkaVersionsList": { "items": { "type": "string" }, "type": "array" }, "Name": { "type": "string" }, "ServerProperties": { "type": "string" } }, "required": [ "Name", "ServerProperties" ], "type": "object" }, "Type": { "enum": [ "AWS::MSK::Configuration" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::MSK::ServerlessCluster": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ClientAuthentication": { "$ref": "#/definitions/AWS::MSK::ServerlessCluster.ClientAuthentication" }, "ClusterName": { "type": "string" }, "Tags": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" }, "VpcConfigs": { "items": { "$ref": "#/definitions/AWS::MSK::ServerlessCluster.VpcConfig" }, "type": "array" } }, "required": [ "ClientAuthentication", "ClusterName", "VpcConfigs" ], "type": "object" }, "Type": { "enum": [ "AWS::MSK::ServerlessCluster" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::MSK::ServerlessCluster.ClientAuthentication": { "additionalProperties": false, "properties": { "Sasl": { "$ref": "#/definitions/AWS::MSK::ServerlessCluster.Sasl" } }, "required": [ "Sasl" ], "type": "object" }, "AWS::MSK::ServerlessCluster.Iam": { "additionalProperties": false, "properties": { "Enabled": { "type": "boolean" } }, "required": [ "Enabled" ], "type": "object" }, "AWS::MSK::ServerlessCluster.Sasl": { "additionalProperties": false, "properties": { "Iam": { "$ref": "#/definitions/AWS::MSK::ServerlessCluster.Iam" } }, "required": [ "Iam" ], "type": "object" }, "AWS::MSK::ServerlessCluster.VpcConfig": { "additionalProperties": false, "properties": { "SecurityGroups": { "items": { "type": "string" }, "type": "array" }, "SubnetIds": { "items": { "type": "string" }, "type": "array" } }, "required": [ "SubnetIds" ], "type": "object" }, "AWS::MSK::VpcConnection": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Authentication": { "type": "string" }, "ClientSubnets": { "items": { "type": "string" }, "type": "array" }, "SecurityGroups": { "items": { "type": "string" }, "type": "array" }, "Tags": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" }, "TargetClusterArn": { "type": "string" }, "VpcId": { "type": "string" } }, "required": [ "Authentication", "ClientSubnets", "SecurityGroups", "TargetClusterArn", "VpcId" ], "type": "object" }, "Type": { "enum": [ "AWS::MSK::VpcConnection" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::MWAA::Environment": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AirflowConfigurationOptions": { "type": "object" }, "AirflowVersion": { "type": "string" }, "DagS3Path": { "type": "string" }, "EnvironmentClass": { "type": "string" }, "ExecutionRoleArn": { "type": "string" }, "KmsKey": { "type": "string" }, "LoggingConfiguration": { "$ref": "#/definitions/AWS::MWAA::Environment.LoggingConfiguration" }, "MaxWorkers": { "type": "number" }, "MinWorkers": { "type": "number" }, "Name": { "type": "string" }, "NetworkConfiguration": { "$ref": "#/definitions/AWS::MWAA::Environment.NetworkConfiguration" }, "PluginsS3ObjectVersion": { "type": "string" }, "PluginsS3Path": { "type": "string" }, "RequirementsS3ObjectVersion": { "type": "string" }, "RequirementsS3Path": { "type": "string" }, "Schedulers": { "type": "number" }, "SourceBucketArn": { "type": "string" }, "StartupScriptS3ObjectVersion": { "type": "string" }, "StartupScriptS3Path": { "type": "string" }, "Tags": { "type": "object" }, "WebserverAccessMode": { "type": "string" }, "WeeklyMaintenanceWindowStart": { "type": "string" } }, "required": [ "Name" ], "type": "object" }, "Type": { "enum": [ "AWS::MWAA::Environment" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::MWAA::Environment.LoggingConfiguration": { "additionalProperties": false, "properties": { "DagProcessingLogs": { "$ref": "#/definitions/AWS::MWAA::Environment.ModuleLoggingConfiguration" }, "SchedulerLogs": { "$ref": "#/definitions/AWS::MWAA::Environment.ModuleLoggingConfiguration" }, "TaskLogs": { "$ref": "#/definitions/AWS::MWAA::Environment.ModuleLoggingConfiguration" }, "WebserverLogs": { "$ref": "#/definitions/AWS::MWAA::Environment.ModuleLoggingConfiguration" }, "WorkerLogs": { "$ref": "#/definitions/AWS::MWAA::Environment.ModuleLoggingConfiguration" } }, "type": "object" }, "AWS::MWAA::Environment.ModuleLoggingConfiguration": { "additionalProperties": false, "properties": { "CloudWatchLogGroupArn": { "type": "string" }, "Enabled": { "type": "boolean" }, "LogLevel": { "type": "string" } }, "type": "object" }, "AWS::MWAA::Environment.NetworkConfiguration": { "additionalProperties": false, "properties": { "SecurityGroupIds": { "items": { "type": "string" }, "type": "array" }, "SubnetIds": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::Macie::AllowList": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Criteria": { "$ref": "#/definitions/AWS::Macie::AllowList.Criteria" }, "Description": { "type": "string" }, "Name": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "Criteria", "Name" ], "type": "object" }, "Type": { "enum": [ "AWS::Macie::AllowList" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Macie::AllowList.Criteria": { "additionalProperties": false, "properties": { "Regex": { "type": "string" }, "S3WordsList": { "$ref": "#/definitions/AWS::Macie::AllowList.S3WordsList" } }, "type": "object" }, "AWS::Macie::AllowList.S3WordsList": { "additionalProperties": false, "properties": { "BucketName": { "type": "string" }, "ObjectKey": { "type": "string" } }, "required": [ "BucketName", "ObjectKey" ], "type": "object" }, "AWS::Macie::CustomDataIdentifier": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "IgnoreWords": { "items": { "type": "string" }, "type": "array" }, "Keywords": { "items": { "type": "string" }, "type": "array" }, "MaximumMatchDistance": { "type": "number" }, "Name": { "type": "string" }, "Regex": { "type": "string" } }, "required": [ "Name", "Regex" ], "type": "object" }, "Type": { "enum": [ "AWS::Macie::CustomDataIdentifier" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Macie::FindingsFilter": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Action": { "type": "string" }, "Description": { "type": "string" }, "FindingCriteria": { "$ref": "#/definitions/AWS::Macie::FindingsFilter.FindingCriteria" }, "Name": { "type": "string" }, "Position": { "type": "number" } }, "required": [ "FindingCriteria", "Name" ], "type": "object" }, "Type": { "enum": [ "AWS::Macie::FindingsFilter" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Macie::FindingsFilter.CriterionAdditionalProperties": { "additionalProperties": false, "properties": { "eq": { "items": { "type": "string" }, "type": "array" }, "gt": { "type": "number" }, "gte": { "type": "number" }, "lt": { "type": "number" }, "lte": { "type": "number" }, "neq": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::Macie::FindingsFilter.FindingCriteria": { "additionalProperties": false, "properties": { "Criterion": { "additionalProperties": false, "patternProperties": { "^[a-zA-Z0-9]+$": { "$ref": "#/definitions/AWS::Macie::FindingsFilter.CriterionAdditionalProperties" } }, "type": "object" } }, "type": "object" }, "AWS::Macie::Session": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "FindingPublishingFrequency": { "type": "string" }, "Status": { "type": "string" } }, "type": "object" }, "Type": { "enum": [ "AWS::Macie::Session" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::ManagedBlockchain::Accessor": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AccessorType": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "AccessorType" ], "type": "object" }, "Type": { "enum": [ "AWS::ManagedBlockchain::Accessor" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::ManagedBlockchain::Member": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "InvitationId": { "type": "string" }, "MemberConfiguration": { "$ref": "#/definitions/AWS::ManagedBlockchain::Member.MemberConfiguration" }, "NetworkConfiguration": { "$ref": "#/definitions/AWS::ManagedBlockchain::Member.NetworkConfiguration" }, "NetworkId": { "type": "string" } }, "required": [ "MemberConfiguration" ], "type": "object" }, "Type": { "enum": [ "AWS::ManagedBlockchain::Member" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::ManagedBlockchain::Member.ApprovalThresholdPolicy": { "additionalProperties": false, "properties": { "ProposalDurationInHours": { "type": "number" }, "ThresholdComparator": { "type": "string" }, "ThresholdPercentage": { "type": "number" } }, "type": "object" }, "AWS::ManagedBlockchain::Member.MemberConfiguration": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "MemberFrameworkConfiguration": { "$ref": "#/definitions/AWS::ManagedBlockchain::Member.MemberFrameworkConfiguration" }, "Name": { "type": "string" } }, "required": [ "Name" ], "type": "object" }, "AWS::ManagedBlockchain::Member.MemberFabricConfiguration": { "additionalProperties": false, "properties": { "AdminPassword": { "type": "string" }, "AdminUsername": { "type": "string" } }, "required": [ "AdminPassword", "AdminUsername" ], "type": "object" }, "AWS::ManagedBlockchain::Member.MemberFrameworkConfiguration": { "additionalProperties": false, "properties": { "MemberFabricConfiguration": { "$ref": "#/definitions/AWS::ManagedBlockchain::Member.MemberFabricConfiguration" } }, "type": "object" }, "AWS::ManagedBlockchain::Member.NetworkConfiguration": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "Framework": { "type": "string" }, "FrameworkVersion": { "type": "string" }, "Name": { "type": "string" }, "NetworkFrameworkConfiguration": { "$ref": "#/definitions/AWS::ManagedBlockchain::Member.NetworkFrameworkConfiguration" }, "VotingPolicy": { "$ref": "#/definitions/AWS::ManagedBlockchain::Member.VotingPolicy" } }, "required": [ "Framework", "FrameworkVersion", "Name", "VotingPolicy" ], "type": "object" }, "AWS::ManagedBlockchain::Member.NetworkFabricConfiguration": { "additionalProperties": false, "properties": { "Edition": { "type": "string" } }, "required": [ "Edition" ], "type": "object" }, "AWS::ManagedBlockchain::Member.NetworkFrameworkConfiguration": { "additionalProperties": false, "properties": { "NetworkFabricConfiguration": { "$ref": "#/definitions/AWS::ManagedBlockchain::Member.NetworkFabricConfiguration" } }, "type": "object" }, "AWS::ManagedBlockchain::Member.VotingPolicy": { "additionalProperties": false, "properties": { "ApprovalThresholdPolicy": { "$ref": "#/definitions/AWS::ManagedBlockchain::Member.ApprovalThresholdPolicy" } }, "type": "object" }, "AWS::ManagedBlockchain::Node": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "MemberId": { "type": "string" }, "NetworkId": { "type": "string" }, "NodeConfiguration": { "$ref": "#/definitions/AWS::ManagedBlockchain::Node.NodeConfiguration" } }, "required": [ "NetworkId", "NodeConfiguration" ], "type": "object" }, "Type": { "enum": [ "AWS::ManagedBlockchain::Node" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::ManagedBlockchain::Node.NodeConfiguration": { "additionalProperties": false, "properties": { "AvailabilityZone": { "type": "string" }, "InstanceType": { "type": "string" } }, "required": [ "AvailabilityZone", "InstanceType" ], "type": "object" }, "AWS::MediaConnect::Bridge": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "EgressGatewayBridge": { "$ref": "#/definitions/AWS::MediaConnect::Bridge.EgressGatewayBridge" }, "IngressGatewayBridge": { "$ref": "#/definitions/AWS::MediaConnect::Bridge.IngressGatewayBridge" }, "Name": { "type": "string" }, "Outputs": { "items": { "$ref": "#/definitions/AWS::MediaConnect::Bridge.BridgeOutput" }, "type": "array" }, "PlacementArn": { "type": "string" }, "SourceFailoverConfig": { "$ref": "#/definitions/AWS::MediaConnect::Bridge.FailoverConfig" }, "Sources": { "items": { "$ref": "#/definitions/AWS::MediaConnect::Bridge.BridgeSource" }, "type": "array" } }, "required": [ "Name", "PlacementArn", "Sources" ], "type": "object" }, "Type": { "enum": [ "AWS::MediaConnect::Bridge" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::MediaConnect::Bridge.BridgeFlowSource": { "additionalProperties": false, "properties": { "FlowArn": { "type": "string" }, "FlowVpcInterfaceAttachment": { "$ref": "#/definitions/AWS::MediaConnect::Bridge.VpcInterfaceAttachment" }, "Name": { "type": "string" } }, "required": [ "FlowArn", "Name" ], "type": "object" }, "AWS::MediaConnect::Bridge.BridgeNetworkOutput": { "additionalProperties": false, "properties": { "IpAddress": { "type": "string" }, "Name": { "type": "string" }, "NetworkName": { "type": "string" }, "Port": { "type": "number" }, "Protocol": { "type": "string" }, "Ttl": { "type": "number" } }, "required": [ "IpAddress", "Name", "NetworkName", "Port", "Protocol", "Ttl" ], "type": "object" }, "AWS::MediaConnect::Bridge.BridgeNetworkSource": { "additionalProperties": false, "properties": { "MulticastIp": { "type": "string" }, "Name": { "type": "string" }, "NetworkName": { "type": "string" }, "Port": { "type": "number" }, "Protocol": { "type": "string" } }, "required": [ "MulticastIp", "Name", "NetworkName", "Port", "Protocol" ], "type": "object" }, "AWS::MediaConnect::Bridge.BridgeOutput": { "additionalProperties": false, "properties": { "NetworkOutput": { "$ref": "#/definitions/AWS::MediaConnect::Bridge.BridgeNetworkOutput" } }, "type": "object" }, "AWS::MediaConnect::Bridge.BridgeSource": { "additionalProperties": false, "properties": { "FlowSource": { "$ref": "#/definitions/AWS::MediaConnect::Bridge.BridgeFlowSource" }, "NetworkSource": { "$ref": "#/definitions/AWS::MediaConnect::Bridge.BridgeNetworkSource" } }, "type": "object" }, "AWS::MediaConnect::Bridge.EgressGatewayBridge": { "additionalProperties": false, "properties": { "MaxBitrate": { "type": "number" } }, "required": [ "MaxBitrate" ], "type": "object" }, "AWS::MediaConnect::Bridge.FailoverConfig": { "additionalProperties": false, "properties": { "FailoverMode": { "type": "string" }, "SourcePriority": { "$ref": "#/definitions/AWS::MediaConnect::Bridge.SourcePriority" }, "State": { "type": "string" } }, "required": [ "FailoverMode" ], "type": "object" }, "AWS::MediaConnect::Bridge.IngressGatewayBridge": { "additionalProperties": false, "properties": { "MaxBitrate": { "type": "number" }, "MaxOutputs": { "type": "number" } }, "required": [ "MaxBitrate", "MaxOutputs" ], "type": "object" }, "AWS::MediaConnect::Bridge.SourcePriority": { "additionalProperties": false, "properties": { "PrimarySource": { "type": "string" } }, "type": "object" }, "AWS::MediaConnect::Bridge.VpcInterfaceAttachment": { "additionalProperties": false, "properties": { "VpcInterfaceName": { "type": "string" } }, "type": "object" }, "AWS::MediaConnect::BridgeOutput": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "BridgeArn": { "type": "string" }, "Name": { "type": "string" }, "NetworkOutput": { "$ref": "#/definitions/AWS::MediaConnect::BridgeOutput.BridgeNetworkOutput" } }, "required": [ "BridgeArn", "Name", "NetworkOutput" ], "type": "object" }, "Type": { "enum": [ "AWS::MediaConnect::BridgeOutput" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::MediaConnect::BridgeOutput.BridgeNetworkOutput": { "additionalProperties": false, "properties": { "IpAddress": { "type": "string" }, "NetworkName": { "type": "string" }, "Port": { "type": "number" }, "Protocol": { "type": "string" }, "Ttl": { "type": "number" } }, "required": [ "IpAddress", "NetworkName", "Port", "Protocol", "Ttl" ], "type": "object" }, "AWS::MediaConnect::BridgeSource": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "BridgeArn": { "type": "string" }, "FlowSource": { "$ref": "#/definitions/AWS::MediaConnect::BridgeSource.BridgeFlowSource" }, "Name": { "type": "string" }, "NetworkSource": { "$ref": "#/definitions/AWS::MediaConnect::BridgeSource.BridgeNetworkSource" } }, "required": [ "BridgeArn", "Name" ], "type": "object" }, "Type": { "enum": [ "AWS::MediaConnect::BridgeSource" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::MediaConnect::BridgeSource.BridgeFlowSource": { "additionalProperties": false, "properties": { "FlowArn": { "type": "string" }, "FlowVpcInterfaceAttachment": { "$ref": "#/definitions/AWS::MediaConnect::BridgeSource.VpcInterfaceAttachment" } }, "required": [ "FlowArn" ], "type": "object" }, "AWS::MediaConnect::BridgeSource.BridgeNetworkSource": { "additionalProperties": false, "properties": { "MulticastIp": { "type": "string" }, "NetworkName": { "type": "string" }, "Port": { "type": "number" }, "Protocol": { "type": "string" } }, "required": [ "MulticastIp", "NetworkName", "Port", "Protocol" ], "type": "object" }, "AWS::MediaConnect::BridgeSource.VpcInterfaceAttachment": { "additionalProperties": false, "properties": { "VpcInterfaceName": { "type": "string" } }, "type": "object" }, "AWS::MediaConnect::Flow": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AvailabilityZone": { "type": "string" }, "Name": { "type": "string" }, "Source": { "$ref": "#/definitions/AWS::MediaConnect::Flow.Source" }, "SourceFailoverConfig": { "$ref": "#/definitions/AWS::MediaConnect::Flow.FailoverConfig" } }, "required": [ "Name", "Source" ], "type": "object" }, "Type": { "enum": [ "AWS::MediaConnect::Flow" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::MediaConnect::Flow.Encryption": { "additionalProperties": false, "properties": { "Algorithm": { "type": "string" }, "ConstantInitializationVector": { "type": "string" }, "DeviceId": { "type": "string" }, "KeyType": { "type": "string" }, "Region": { "type": "string" }, "ResourceId": { "type": "string" }, "RoleArn": { "type": "string" }, "SecretArn": { "type": "string" }, "Url": { "type": "string" } }, "required": [ "RoleArn" ], "type": "object" }, "AWS::MediaConnect::Flow.FailoverConfig": { "additionalProperties": false, "properties": { "FailoverMode": { "type": "string" }, "RecoveryWindow": { "type": "number" }, "SourcePriority": { "$ref": "#/definitions/AWS::MediaConnect::Flow.SourcePriority" }, "State": { "type": "string" } }, "type": "object" }, "AWS::MediaConnect::Flow.GatewayBridgeSource": { "additionalProperties": false, "properties": { "BridgeArn": { "type": "string" }, "VpcInterfaceAttachment": { "$ref": "#/definitions/AWS::MediaConnect::Flow.VpcInterfaceAttachment" } }, "required": [ "BridgeArn" ], "type": "object" }, "AWS::MediaConnect::Flow.Source": { "additionalProperties": false, "properties": { "Decryption": { "$ref": "#/definitions/AWS::MediaConnect::Flow.Encryption" }, "Description": { "type": "string" }, "EntitlementArn": { "type": "string" }, "GatewayBridgeSource": { "$ref": "#/definitions/AWS::MediaConnect::Flow.GatewayBridgeSource" }, "IngestIp": { "type": "string" }, "IngestPort": { "type": "number" }, "MaxBitrate": { "type": "number" }, "MaxLatency": { "type": "number" }, "MinLatency": { "type": "number" }, "Name": { "type": "string" }, "Protocol": { "type": "string" }, "SenderControlPort": { "type": "number" }, "SenderIpAddress": { "type": "string" }, "SourceArn": { "type": "string" }, "SourceIngestPort": { "type": "string" }, "SourceListenerAddress": { "type": "string" }, "SourceListenerPort": { "type": "number" }, "StreamId": { "type": "string" }, "VpcInterfaceName": { "type": "string" }, "WhitelistCidr": { "type": "string" } }, "type": "object" }, "AWS::MediaConnect::Flow.SourcePriority": { "additionalProperties": false, "properties": { "PrimarySource": { "type": "string" } }, "required": [ "PrimarySource" ], "type": "object" }, "AWS::MediaConnect::Flow.VpcInterfaceAttachment": { "additionalProperties": false, "properties": { "VpcInterfaceName": { "type": "string" } }, "type": "object" }, "AWS::MediaConnect::FlowEntitlement": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "DataTransferSubscriberFeePercent": { "type": "number" }, "Description": { "type": "string" }, "Encryption": { "$ref": "#/definitions/AWS::MediaConnect::FlowEntitlement.Encryption" }, "EntitlementStatus": { "type": "string" }, "FlowArn": { "type": "string" }, "Name": { "type": "string" }, "Subscribers": { "items": { "type": "string" }, "type": "array" } }, "required": [ "Description", "FlowArn", "Name", "Subscribers" ], "type": "object" }, "Type": { "enum": [ "AWS::MediaConnect::FlowEntitlement" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::MediaConnect::FlowEntitlement.Encryption": { "additionalProperties": false, "properties": { "Algorithm": { "type": "string" }, "ConstantInitializationVector": { "type": "string" }, "DeviceId": { "type": "string" }, "KeyType": { "type": "string" }, "Region": { "type": "string" }, "ResourceId": { "type": "string" }, "RoleArn": { "type": "string" }, "SecretArn": { "type": "string" }, "Url": { "type": "string" } }, "required": [ "Algorithm", "RoleArn" ], "type": "object" }, "AWS::MediaConnect::FlowOutput": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "CidrAllowList": { "items": { "type": "string" }, "type": "array" }, "Description": { "type": "string" }, "Destination": { "type": "string" }, "Encryption": { "$ref": "#/definitions/AWS::MediaConnect::FlowOutput.Encryption" }, "FlowArn": { "type": "string" }, "MaxLatency": { "type": "number" }, "MinLatency": { "type": "number" }, "Name": { "type": "string" }, "Port": { "type": "number" }, "Protocol": { "type": "string" }, "RemoteId": { "type": "string" }, "SmoothingLatency": { "type": "number" }, "StreamId": { "type": "string" }, "VpcInterfaceAttachment": { "$ref": "#/definitions/AWS::MediaConnect::FlowOutput.VpcInterfaceAttachment" } }, "required": [ "FlowArn", "Protocol" ], "type": "object" }, "Type": { "enum": [ "AWS::MediaConnect::FlowOutput" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::MediaConnect::FlowOutput.Encryption": { "additionalProperties": false, "properties": { "Algorithm": { "type": "string" }, "KeyType": { "type": "string" }, "RoleArn": { "type": "string" }, "SecretArn": { "type": "string" } }, "required": [ "RoleArn", "SecretArn" ], "type": "object" }, "AWS::MediaConnect::FlowOutput.VpcInterfaceAttachment": { "additionalProperties": false, "properties": { "VpcInterfaceName": { "type": "string" } }, "type": "object" }, "AWS::MediaConnect::FlowSource": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Decryption": { "$ref": "#/definitions/AWS::MediaConnect::FlowSource.Encryption" }, "Description": { "type": "string" }, "EntitlementArn": { "type": "string" }, "FlowArn": { "type": "string" }, "GatewayBridgeSource": { "$ref": "#/definitions/AWS::MediaConnect::FlowSource.GatewayBridgeSource" }, "IngestPort": { "type": "number" }, "MaxBitrate": { "type": "number" }, "MaxLatency": { "type": "number" }, "MinLatency": { "type": "number" }, "Name": { "type": "string" }, "Protocol": { "type": "string" }, "SenderControlPort": { "type": "number" }, "SenderIpAddress": { "type": "string" }, "SourceListenerAddress": { "type": "string" }, "SourceListenerPort": { "type": "number" }, "StreamId": { "type": "string" }, "VpcInterfaceName": { "type": "string" }, "WhitelistCidr": { "type": "string" } }, "required": [ "Description", "Name" ], "type": "object" }, "Type": { "enum": [ "AWS::MediaConnect::FlowSource" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::MediaConnect::FlowSource.Encryption": { "additionalProperties": false, "properties": { "Algorithm": { "type": "string" }, "ConstantInitializationVector": { "type": "string" }, "DeviceId": { "type": "string" }, "KeyType": { "type": "string" }, "Region": { "type": "string" }, "ResourceId": { "type": "string" }, "RoleArn": { "type": "string" }, "SecretArn": { "type": "string" }, "Url": { "type": "string" } }, "required": [ "RoleArn" ], "type": "object" }, "AWS::MediaConnect::FlowSource.GatewayBridgeSource": { "additionalProperties": false, "properties": { "BridgeArn": { "type": "string" }, "VpcInterfaceAttachment": { "$ref": "#/definitions/AWS::MediaConnect::FlowSource.VpcInterfaceAttachment" } }, "required": [ "BridgeArn" ], "type": "object" }, "AWS::MediaConnect::FlowSource.VpcInterfaceAttachment": { "additionalProperties": false, "properties": { "VpcInterfaceName": { "type": "string" } }, "type": "object" }, "AWS::MediaConnect::FlowVpcInterface": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "FlowArn": { "type": "string" }, "Name": { "type": "string" }, "RoleArn": { "type": "string" }, "SecurityGroupIds": { "items": { "type": "string" }, "type": "array" }, "SubnetId": { "type": "string" } }, "required": [ "FlowArn", "Name", "RoleArn", "SecurityGroupIds", "SubnetId" ], "type": "object" }, "Type": { "enum": [ "AWS::MediaConnect::FlowVpcInterface" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::MediaConnect::Gateway": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "EgressCidrBlocks": { "items": { "type": "string" }, "type": "array" }, "Name": { "type": "string" }, "Networks": { "items": { "$ref": "#/definitions/AWS::MediaConnect::Gateway.GatewayNetwork" }, "type": "array" } }, "required": [ "EgressCidrBlocks", "Name", "Networks" ], "type": "object" }, "Type": { "enum": [ "AWS::MediaConnect::Gateway" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::MediaConnect::Gateway.GatewayNetwork": { "additionalProperties": false, "properties": { "CidrBlock": { "type": "string" }, "Name": { "type": "string" } }, "required": [ "CidrBlock", "Name" ], "type": "object" }, "AWS::MediaConvert::JobTemplate": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AccelerationSettings": { "$ref": "#/definitions/AWS::MediaConvert::JobTemplate.AccelerationSettings" }, "Category": { "type": "string" }, "Description": { "type": "string" }, "HopDestinations": { "items": { "$ref": "#/definitions/AWS::MediaConvert::JobTemplate.HopDestination" }, "type": "array" }, "Name": { "type": "string" }, "Priority": { "type": "number" }, "Queue": { "type": "string" }, "SettingsJson": { "type": "object" }, "StatusUpdateInterval": { "type": "string" }, "Tags": { "type": "object" } }, "required": [ "SettingsJson" ], "type": "object" }, "Type": { "enum": [ "AWS::MediaConvert::JobTemplate" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::MediaConvert::JobTemplate.AccelerationSettings": { "additionalProperties": false, "properties": { "Mode": { "type": "string" } }, "required": [ "Mode" ], "type": "object" }, "AWS::MediaConvert::JobTemplate.HopDestination": { "additionalProperties": false, "properties": { "Priority": { "type": "number" }, "Queue": { "type": "string" }, "WaitMinutes": { "type": "number" } }, "type": "object" }, "AWS::MediaConvert::Preset": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Category": { "type": "string" }, "Description": { "type": "string" }, "Name": { "type": "string" }, "SettingsJson": { "type": "object" }, "Tags": { "type": "object" } }, "required": [ "SettingsJson" ], "type": "object" }, "Type": { "enum": [ "AWS::MediaConvert::Preset" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::MediaConvert::Queue": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "Name": { "type": "string" }, "PricingPlan": { "type": "string" }, "Status": { "type": "string" }, "Tags": { "type": "object" } }, "type": "object" }, "Type": { "enum": [ "AWS::MediaConvert::Queue" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::MediaLive::Channel": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "CdiInputSpecification": { "$ref": "#/definitions/AWS::MediaLive::Channel.CdiInputSpecification" }, "ChannelClass": { "type": "string" }, "Destinations": { "items": { "$ref": "#/definitions/AWS::MediaLive::Channel.OutputDestination" }, "type": "array" }, "EncoderSettings": { "$ref": "#/definitions/AWS::MediaLive::Channel.EncoderSettings" }, "InputAttachments": { "items": { "$ref": "#/definitions/AWS::MediaLive::Channel.InputAttachment" }, "type": "array" }, "InputSpecification": { "$ref": "#/definitions/AWS::MediaLive::Channel.InputSpecification" }, "LogLevel": { "type": "string" }, "Maintenance": { "$ref": "#/definitions/AWS::MediaLive::Channel.MaintenanceCreateSettings" }, "Name": { "type": "string" }, "RoleArn": { "type": "string" }, "Tags": { "type": "object" }, "Vpc": { "$ref": "#/definitions/AWS::MediaLive::Channel.VpcOutputSettings" } }, "type": "object" }, "Type": { "enum": [ "AWS::MediaLive::Channel" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::MediaLive::Channel.AacSettings": { "additionalProperties": false, "properties": { "Bitrate": { "type": "number" }, "CodingMode": { "type": "string" }, "InputType": { "type": "string" }, "Profile": { "type": "string" }, "RateControlMode": { "type": "string" }, "RawFormat": { "type": "string" }, "SampleRate": { "type": "number" }, "Spec": { "type": "string" }, "VbrQuality": { "type": "string" } }, "type": "object" }, "AWS::MediaLive::Channel.Ac3Settings": { "additionalProperties": false, "properties": { "Bitrate": { "type": "number" }, "BitstreamMode": { "type": "string" }, "CodingMode": { "type": "string" }, "Dialnorm": { "type": "number" }, "DrcProfile": { "type": "string" }, "LfeFilter": { "type": "string" }, "MetadataControl": { "type": "string" } }, "type": "object" }, "AWS::MediaLive::Channel.AncillarySourceSettings": { "additionalProperties": false, "properties": { "SourceAncillaryChannelNumber": { "type": "number" } }, "type": "object" }, "AWS::MediaLive::Channel.ArchiveCdnSettings": { "additionalProperties": false, "properties": { "ArchiveS3Settings": { "$ref": "#/definitions/AWS::MediaLive::Channel.ArchiveS3Settings" } }, "type": "object" }, "AWS::MediaLive::Channel.ArchiveContainerSettings": { "additionalProperties": false, "properties": { "M2tsSettings": { "$ref": "#/definitions/AWS::MediaLive::Channel.M2tsSettings" }, "RawSettings": { "$ref": "#/definitions/AWS::MediaLive::Channel.RawSettings" } }, "type": "object" }, "AWS::MediaLive::Channel.ArchiveGroupSettings": { "additionalProperties": false, "properties": { "ArchiveCdnSettings": { "$ref": "#/definitions/AWS::MediaLive::Channel.ArchiveCdnSettings" }, "Destination": { "$ref": "#/definitions/AWS::MediaLive::Channel.OutputLocationRef" }, "RolloverInterval": { "type": "number" } }, "type": "object" }, "AWS::MediaLive::Channel.ArchiveOutputSettings": { "additionalProperties": false, "properties": { "ContainerSettings": { "$ref": "#/definitions/AWS::MediaLive::Channel.ArchiveContainerSettings" }, "Extension": { "type": "string" }, "NameModifier": { "type": "string" } }, "type": "object" }, "AWS::MediaLive::Channel.ArchiveS3Settings": { "additionalProperties": false, "properties": { "CannedAcl": { "type": "string" } }, "type": "object" }, "AWS::MediaLive::Channel.AribDestinationSettings": { "additionalProperties": false, "properties": {}, "type": "object" }, "AWS::MediaLive::Channel.AribSourceSettings": { "additionalProperties": false, "properties": {}, "type": "object" }, "AWS::MediaLive::Channel.AudioChannelMapping": { "additionalProperties": false, "properties": { "InputChannelLevels": { "items": { "$ref": "#/definitions/AWS::MediaLive::Channel.InputChannelLevel" }, "type": "array" }, "OutputChannel": { "type": "number" } }, "type": "object" }, "AWS::MediaLive::Channel.AudioCodecSettings": { "additionalProperties": false, "properties": { "AacSettings": { "$ref": "#/definitions/AWS::MediaLive::Channel.AacSettings" }, "Ac3Settings": { "$ref": "#/definitions/AWS::MediaLive::Channel.Ac3Settings" }, "Eac3AtmosSettings": { "$ref": "#/definitions/AWS::MediaLive::Channel.Eac3AtmosSettings" }, "Eac3Settings": { "$ref": "#/definitions/AWS::MediaLive::Channel.Eac3Settings" }, "Mp2Settings": { "$ref": "#/definitions/AWS::MediaLive::Channel.Mp2Settings" }, "PassThroughSettings": { "$ref": "#/definitions/AWS::MediaLive::Channel.PassThroughSettings" }, "WavSettings": { "$ref": "#/definitions/AWS::MediaLive::Channel.WavSettings" } }, "type": "object" }, "AWS::MediaLive::Channel.AudioDescription": { "additionalProperties": false, "properties": { "AudioNormalizationSettings": { "$ref": "#/definitions/AWS::MediaLive::Channel.AudioNormalizationSettings" }, "AudioSelectorName": { "type": "string" }, "AudioType": { "type": "string" }, "AudioTypeControl": { "type": "string" }, "AudioWatermarkingSettings": { "$ref": "#/definitions/AWS::MediaLive::Channel.AudioWatermarkSettings" }, "CodecSettings": { "$ref": "#/definitions/AWS::MediaLive::Channel.AudioCodecSettings" }, "LanguageCode": { "type": "string" }, "LanguageCodeControl": { "type": "string" }, "Name": { "type": "string" }, "RemixSettings": { "$ref": "#/definitions/AWS::MediaLive::Channel.RemixSettings" }, "StreamName": { "type": "string" } }, "type": "object" }, "AWS::MediaLive::Channel.AudioDolbyEDecode": { "additionalProperties": false, "properties": { "ProgramSelection": { "type": "string" } }, "type": "object" }, "AWS::MediaLive::Channel.AudioHlsRenditionSelection": { "additionalProperties": false, "properties": { "GroupId": { "type": "string" }, "Name": { "type": "string" } }, "type": "object" }, "AWS::MediaLive::Channel.AudioLanguageSelection": { "additionalProperties": false, "properties": { "LanguageCode": { "type": "string" }, "LanguageSelectionPolicy": { "type": "string" } }, "type": "object" }, "AWS::MediaLive::Channel.AudioNormalizationSettings": { "additionalProperties": false, "properties": { "Algorithm": { "type": "string" }, "AlgorithmControl": { "type": "string" }, "TargetLkfs": { "type": "number" } }, "type": "object" }, "AWS::MediaLive::Channel.AudioOnlyHlsSettings": { "additionalProperties": false, "properties": { "AudioGroupId": { "type": "string" }, "AudioOnlyImage": { "$ref": "#/definitions/AWS::MediaLive::Channel.InputLocation" }, "AudioTrackType": { "type": "string" }, "SegmentType": { "type": "string" } }, "type": "object" }, "AWS::MediaLive::Channel.AudioPidSelection": { "additionalProperties": false, "properties": { "Pid": { "type": "number" } }, "type": "object" }, "AWS::MediaLive::Channel.AudioSelector": { "additionalProperties": false, "properties": { "Name": { "type": "string" }, "SelectorSettings": { "$ref": "#/definitions/AWS::MediaLive::Channel.AudioSelectorSettings" } }, "type": "object" }, "AWS::MediaLive::Channel.AudioSelectorSettings": { "additionalProperties": false, "properties": { "AudioHlsRenditionSelection": { "$ref": "#/definitions/AWS::MediaLive::Channel.AudioHlsRenditionSelection" }, "AudioLanguageSelection": { "$ref": "#/definitions/AWS::MediaLive::Channel.AudioLanguageSelection" }, "AudioPidSelection": { "$ref": "#/definitions/AWS::MediaLive::Channel.AudioPidSelection" }, "AudioTrackSelection": { "$ref": "#/definitions/AWS::MediaLive::Channel.AudioTrackSelection" } }, "type": "object" }, "AWS::MediaLive::Channel.AudioSilenceFailoverSettings": { "additionalProperties": false, "properties": { "AudioSelectorName": { "type": "string" }, "AudioSilenceThresholdMsec": { "type": "number" } }, "type": "object" }, "AWS::MediaLive::Channel.AudioTrack": { "additionalProperties": false, "properties": { "Track": { "type": "number" } }, "type": "object" }, "AWS::MediaLive::Channel.AudioTrackSelection": { "additionalProperties": false, "properties": { "DolbyEDecode": { "$ref": "#/definitions/AWS::MediaLive::Channel.AudioDolbyEDecode" }, "Tracks": { "items": { "$ref": "#/definitions/AWS::MediaLive::Channel.AudioTrack" }, "type": "array" } }, "type": "object" }, "AWS::MediaLive::Channel.AudioWatermarkSettings": { "additionalProperties": false, "properties": { "NielsenWatermarksSettings": { "$ref": "#/definitions/AWS::MediaLive::Channel.NielsenWatermarksSettings" } }, "type": "object" }, "AWS::MediaLive::Channel.AutomaticInputFailoverSettings": { "additionalProperties": false, "properties": { "ErrorClearTimeMsec": { "type": "number" }, "FailoverConditions": { "items": { "$ref": "#/definitions/AWS::MediaLive::Channel.FailoverCondition" }, "type": "array" }, "InputPreference": { "type": "string" }, "SecondaryInputId": { "type": "string" } }, "type": "object" }, "AWS::MediaLive::Channel.AvailBlanking": { "additionalProperties": false, "properties": { "AvailBlankingImage": { "$ref": "#/definitions/AWS::MediaLive::Channel.InputLocation" }, "State": { "type": "string" } }, "type": "object" }, "AWS::MediaLive::Channel.AvailConfiguration": { "additionalProperties": false, "properties": { "AvailSettings": { "$ref": "#/definitions/AWS::MediaLive::Channel.AvailSettings" } }, "type": "object" }, "AWS::MediaLive::Channel.AvailSettings": { "additionalProperties": false, "properties": { "Esam": { "$ref": "#/definitions/AWS::MediaLive::Channel.Esam" }, "Scte35SpliceInsert": { "$ref": "#/definitions/AWS::MediaLive::Channel.Scte35SpliceInsert" }, "Scte35TimeSignalApos": { "$ref": "#/definitions/AWS::MediaLive::Channel.Scte35TimeSignalApos" } }, "type": "object" }, "AWS::MediaLive::Channel.BlackoutSlate": { "additionalProperties": false, "properties": { "BlackoutSlateImage": { "$ref": "#/definitions/AWS::MediaLive::Channel.InputLocation" }, "NetworkEndBlackout": { "type": "string" }, "NetworkEndBlackoutImage": { "$ref": "#/definitions/AWS::MediaLive::Channel.InputLocation" }, "NetworkId": { "type": "string" }, "State": { "type": "string" } }, "type": "object" }, "AWS::MediaLive::Channel.BurnInDestinationSettings": { "additionalProperties": false, "properties": { "Alignment": { "type": "string" }, "BackgroundColor": { "type": "string" }, "BackgroundOpacity": { "type": "number" }, "Font": { "$ref": "#/definitions/AWS::MediaLive::Channel.InputLocation" }, "FontColor": { "type": "string" }, "FontOpacity": { "type": "number" }, "FontResolution": { "type": "number" }, "FontSize": { "type": "string" }, "OutlineColor": { "type": "string" }, "OutlineSize": { "type": "number" }, "ShadowColor": { "type": "string" }, "ShadowOpacity": { "type": "number" }, "ShadowXOffset": { "type": "number" }, "ShadowYOffset": { "type": "number" }, "TeletextGridControl": { "type": "string" }, "XPosition": { "type": "number" }, "YPosition": { "type": "number" } }, "type": "object" }, "AWS::MediaLive::Channel.CaptionDescription": { "additionalProperties": false, "properties": { "Accessibility": { "type": "string" }, "CaptionSelectorName": { "type": "string" }, "DestinationSettings": { "$ref": "#/definitions/AWS::MediaLive::Channel.CaptionDestinationSettings" }, "LanguageCode": { "type": "string" }, "LanguageDescription": { "type": "string" }, "Name": { "type": "string" } }, "type": "object" }, "AWS::MediaLive::Channel.CaptionDestinationSettings": { "additionalProperties": false, "properties": { "AribDestinationSettings": { "$ref": "#/definitions/AWS::MediaLive::Channel.AribDestinationSettings" }, "BurnInDestinationSettings": { "$ref": "#/definitions/AWS::MediaLive::Channel.BurnInDestinationSettings" }, "DvbSubDestinationSettings": { "$ref": "#/definitions/AWS::MediaLive::Channel.DvbSubDestinationSettings" }, "EbuTtDDestinationSettings": { "$ref": "#/definitions/AWS::MediaLive::Channel.EbuTtDDestinationSettings" }, "EmbeddedDestinationSettings": { "$ref": "#/definitions/AWS::MediaLive::Channel.EmbeddedDestinationSettings" }, "EmbeddedPlusScte20DestinationSettings": { "$ref": "#/definitions/AWS::MediaLive::Channel.EmbeddedPlusScte20DestinationSettings" }, "RtmpCaptionInfoDestinationSettings": { "$ref": "#/definitions/AWS::MediaLive::Channel.RtmpCaptionInfoDestinationSettings" }, "Scte20PlusEmbeddedDestinationSettings": { "$ref": "#/definitions/AWS::MediaLive::Channel.Scte20PlusEmbeddedDestinationSettings" }, "Scte27DestinationSettings": { "$ref": "#/definitions/AWS::MediaLive::Channel.Scte27DestinationSettings" }, "SmpteTtDestinationSettings": { "$ref": "#/definitions/AWS::MediaLive::Channel.SmpteTtDestinationSettings" }, "TeletextDestinationSettings": { "$ref": "#/definitions/AWS::MediaLive::Channel.TeletextDestinationSettings" }, "TtmlDestinationSettings": { "$ref": "#/definitions/AWS::MediaLive::Channel.TtmlDestinationSettings" }, "WebvttDestinationSettings": { "$ref": "#/definitions/AWS::MediaLive::Channel.WebvttDestinationSettings" } }, "type": "object" }, "AWS::MediaLive::Channel.CaptionLanguageMapping": { "additionalProperties": false, "properties": { "CaptionChannel": { "type": "number" }, "LanguageCode": { "type": "string" }, "LanguageDescription": { "type": "string" } }, "type": "object" }, "AWS::MediaLive::Channel.CaptionRectangle": { "additionalProperties": false, "properties": { "Height": { "type": "number" }, "LeftOffset": { "type": "number" }, "TopOffset": { "type": "number" }, "Width": { "type": "number" } }, "type": "object" }, "AWS::MediaLive::Channel.CaptionSelector": { "additionalProperties": false, "properties": { "LanguageCode": { "type": "string" }, "Name": { "type": "string" }, "SelectorSettings": { "$ref": "#/definitions/AWS::MediaLive::Channel.CaptionSelectorSettings" } }, "type": "object" }, "AWS::MediaLive::Channel.CaptionSelectorSettings": { "additionalProperties": false, "properties": { "AncillarySourceSettings": { "$ref": "#/definitions/AWS::MediaLive::Channel.AncillarySourceSettings" }, "AribSourceSettings": { "$ref": "#/definitions/AWS::MediaLive::Channel.AribSourceSettings" }, "DvbSubSourceSettings": { "$ref": "#/definitions/AWS::MediaLive::Channel.DvbSubSourceSettings" }, "EmbeddedSourceSettings": { "$ref": "#/definitions/AWS::MediaLive::Channel.EmbeddedSourceSettings" }, "Scte20SourceSettings": { "$ref": "#/definitions/AWS::MediaLive::Channel.Scte20SourceSettings" }, "Scte27SourceSettings": { "$ref": "#/definitions/AWS::MediaLive::Channel.Scte27SourceSettings" }, "TeletextSourceSettings": { "$ref": "#/definitions/AWS::MediaLive::Channel.TeletextSourceSettings" } }, "type": "object" }, "AWS::MediaLive::Channel.CdiInputSpecification": { "additionalProperties": false, "properties": { "Resolution": { "type": "string" } }, "type": "object" }, "AWS::MediaLive::Channel.ColorSpacePassthroughSettings": { "additionalProperties": false, "properties": {}, "type": "object" }, "AWS::MediaLive::Channel.DolbyVision81Settings": { "additionalProperties": false, "properties": {}, "type": "object" }, "AWS::MediaLive::Channel.DvbNitSettings": { "additionalProperties": false, "properties": { "NetworkId": { "type": "number" }, "NetworkName": { "type": "string" }, "RepInterval": { "type": "number" } }, "type": "object" }, "AWS::MediaLive::Channel.DvbSdtSettings": { "additionalProperties": false, "properties": { "OutputSdt": { "type": "string" }, "RepInterval": { "type": "number" }, "ServiceName": { "type": "string" }, "ServiceProviderName": { "type": "string" } }, "type": "object" }, "AWS::MediaLive::Channel.DvbSubDestinationSettings": { "additionalProperties": false, "properties": { "Alignment": { "type": "string" }, "BackgroundColor": { "type": "string" }, "BackgroundOpacity": { "type": "number" }, "Font": { "$ref": "#/definitions/AWS::MediaLive::Channel.InputLocation" }, "FontColor": { "type": "string" }, "FontOpacity": { "type": "number" }, "FontResolution": { "type": "number" }, "FontSize": { "type": "string" }, "OutlineColor": { "type": "string" }, "OutlineSize": { "type": "number" }, "ShadowColor": { "type": "string" }, "ShadowOpacity": { "type": "number" }, "ShadowXOffset": { "type": "number" }, "ShadowYOffset": { "type": "number" }, "TeletextGridControl": { "type": "string" }, "XPosition": { "type": "number" }, "YPosition": { "type": "number" } }, "type": "object" }, "AWS::MediaLive::Channel.DvbSubSourceSettings": { "additionalProperties": false, "properties": { "OcrLanguage": { "type": "string" }, "Pid": { "type": "number" } }, "type": "object" }, "AWS::MediaLive::Channel.DvbTdtSettings": { "additionalProperties": false, "properties": { "RepInterval": { "type": "number" } }, "type": "object" }, "AWS::MediaLive::Channel.Eac3AtmosSettings": { "additionalProperties": false, "properties": { "Bitrate": { "type": "number" }, "CodingMode": { "type": "string" }, "Dialnorm": { "type": "number" }, "DrcLine": { "type": "string" }, "DrcRf": { "type": "string" }, "HeightTrim": { "type": "number" }, "SurroundTrim": { "type": "number" } }, "type": "object" }, "AWS::MediaLive::Channel.Eac3Settings": { "additionalProperties": false, "properties": { "AttenuationControl": { "type": "string" }, "Bitrate": { "type": "number" }, "BitstreamMode": { "type": "string" }, "CodingMode": { "type": "string" }, "DcFilter": { "type": "string" }, "Dialnorm": { "type": "number" }, "DrcLine": { "type": "string" }, "DrcRf": { "type": "string" }, "LfeControl": { "type": "string" }, "LfeFilter": { "type": "string" }, "LoRoCenterMixLevel": { "type": "number" }, "LoRoSurroundMixLevel": { "type": "number" }, "LtRtCenterMixLevel": { "type": "number" }, "LtRtSurroundMixLevel": { "type": "number" }, "MetadataControl": { "type": "string" }, "PassthroughControl": { "type": "string" }, "PhaseControl": { "type": "string" }, "StereoDownmix": { "type": "string" }, "SurroundExMode": { "type": "string" }, "SurroundMode": { "type": "string" } }, "type": "object" }, "AWS::MediaLive::Channel.EbuTtDDestinationSettings": { "additionalProperties": false, "properties": { "CopyrightHolder": { "type": "string" }, "FillLineGap": { "type": "string" }, "FontFamily": { "type": "string" }, "StyleControl": { "type": "string" } }, "type": "object" }, "AWS::MediaLive::Channel.EmbeddedDestinationSettings": { "additionalProperties": false, "properties": {}, "type": "object" }, "AWS::MediaLive::Channel.EmbeddedPlusScte20DestinationSettings": { "additionalProperties": false, "properties": {}, "type": "object" }, "AWS::MediaLive::Channel.EmbeddedSourceSettings": { "additionalProperties": false, "properties": { "Convert608To708": { "type": "string" }, "Scte20Detection": { "type": "string" }, "Source608ChannelNumber": { "type": "number" }, "Source608TrackNumber": { "type": "number" } }, "type": "object" }, "AWS::MediaLive::Channel.EncoderSettings": { "additionalProperties": false, "properties": { "AudioDescriptions": { "items": { "$ref": "#/definitions/AWS::MediaLive::Channel.AudioDescription" }, "type": "array" }, "AvailBlanking": { "$ref": "#/definitions/AWS::MediaLive::Channel.AvailBlanking" }, "AvailConfiguration": { "$ref": "#/definitions/AWS::MediaLive::Channel.AvailConfiguration" }, "BlackoutSlate": { "$ref": "#/definitions/AWS::MediaLive::Channel.BlackoutSlate" }, "CaptionDescriptions": { "items": { "$ref": "#/definitions/AWS::MediaLive::Channel.CaptionDescription" }, "type": "array" }, "FeatureActivations": { "$ref": "#/definitions/AWS::MediaLive::Channel.FeatureActivations" }, "GlobalConfiguration": { "$ref": "#/definitions/AWS::MediaLive::Channel.GlobalConfiguration" }, "MotionGraphicsConfiguration": { "$ref": "#/definitions/AWS::MediaLive::Channel.MotionGraphicsConfiguration" }, "NielsenConfiguration": { "$ref": "#/definitions/AWS::MediaLive::Channel.NielsenConfiguration" }, "OutputGroups": { "items": { "$ref": "#/definitions/AWS::MediaLive::Channel.OutputGroup" }, "type": "array" }, "TimecodeConfig": { "$ref": "#/definitions/AWS::MediaLive::Channel.TimecodeConfig" }, "VideoDescriptions": { "items": { "$ref": "#/definitions/AWS::MediaLive::Channel.VideoDescription" }, "type": "array" } }, "type": "object" }, "AWS::MediaLive::Channel.Esam": { "additionalProperties": false, "properties": { "AcquisitionPointId": { "type": "string" }, "AdAvailOffset": { "type": "number" }, "PasswordParam": { "type": "string" }, "PoisEndpoint": { "type": "string" }, "Username": { "type": "string" }, "ZoneIdentity": { "type": "string" } }, "type": "object" }, "AWS::MediaLive::Channel.FailoverCondition": { "additionalProperties": false, "properties": { "FailoverConditionSettings": { "$ref": "#/definitions/AWS::MediaLive::Channel.FailoverConditionSettings" } }, "type": "object" }, "AWS::MediaLive::Channel.FailoverConditionSettings": { "additionalProperties": false, "properties": { "AudioSilenceSettings": { "$ref": "#/definitions/AWS::MediaLive::Channel.AudioSilenceFailoverSettings" }, "InputLossSettings": { "$ref": "#/definitions/AWS::MediaLive::Channel.InputLossFailoverSettings" }, "VideoBlackSettings": { "$ref": "#/definitions/AWS::MediaLive::Channel.VideoBlackFailoverSettings" } }, "type": "object" }, "AWS::MediaLive::Channel.FeatureActivations": { "additionalProperties": false, "properties": { "InputPrepareScheduleActions": { "type": "string" } }, "type": "object" }, "AWS::MediaLive::Channel.FecOutputSettings": { "additionalProperties": false, "properties": { "ColumnDepth": { "type": "number" }, "IncludeFec": { "type": "string" }, "RowLength": { "type": "number" } }, "type": "object" }, "AWS::MediaLive::Channel.Fmp4HlsSettings": { "additionalProperties": false, "properties": { "AudioRenditionSets": { "type": "string" }, "NielsenId3Behavior": { "type": "string" }, "TimedMetadataBehavior": { "type": "string" } }, "type": "object" }, "AWS::MediaLive::Channel.FrameCaptureCdnSettings": { "additionalProperties": false, "properties": { "FrameCaptureS3Settings": { "$ref": "#/definitions/AWS::MediaLive::Channel.FrameCaptureS3Settings" } }, "type": "object" }, "AWS::MediaLive::Channel.FrameCaptureGroupSettings": { "additionalProperties": false, "properties": { "Destination": { "$ref": "#/definitions/AWS::MediaLive::Channel.OutputLocationRef" }, "FrameCaptureCdnSettings": { "$ref": "#/definitions/AWS::MediaLive::Channel.FrameCaptureCdnSettings" } }, "type": "object" }, "AWS::MediaLive::Channel.FrameCaptureHlsSettings": { "additionalProperties": false, "properties": {}, "type": "object" }, "AWS::MediaLive::Channel.FrameCaptureOutputSettings": { "additionalProperties": false, "properties": { "NameModifier": { "type": "string" } }, "type": "object" }, "AWS::MediaLive::Channel.FrameCaptureS3Settings": { "additionalProperties": false, "properties": { "CannedAcl": { "type": "string" } }, "type": "object" }, "AWS::MediaLive::Channel.FrameCaptureSettings": { "additionalProperties": false, "properties": { "CaptureInterval": { "type": "number" }, "CaptureIntervalUnits": { "type": "string" }, "TimecodeBurninSettings": { "$ref": "#/definitions/AWS::MediaLive::Channel.TimecodeBurninSettings" } }, "type": "object" }, "AWS::MediaLive::Channel.GlobalConfiguration": { "additionalProperties": false, "properties": { "InitialAudioGain": { "type": "number" }, "InputEndAction": { "type": "string" }, "InputLossBehavior": { "$ref": "#/definitions/AWS::MediaLive::Channel.InputLossBehavior" }, "OutputLockingMode": { "type": "string" }, "OutputTimingSource": { "type": "string" }, "SupportLowFramerateInputs": { "type": "string" } }, "type": "object" }, "AWS::MediaLive::Channel.H264ColorSpaceSettings": { "additionalProperties": false, "properties": { "ColorSpacePassthroughSettings": { "$ref": "#/definitions/AWS::MediaLive::Channel.ColorSpacePassthroughSettings" }, "Rec601Settings": { "$ref": "#/definitions/AWS::MediaLive::Channel.Rec601Settings" }, "Rec709Settings": { "$ref": "#/definitions/AWS::MediaLive::Channel.Rec709Settings" } }, "type": "object" }, "AWS::MediaLive::Channel.H264FilterSettings": { "additionalProperties": false, "properties": { "TemporalFilterSettings": { "$ref": "#/definitions/AWS::MediaLive::Channel.TemporalFilterSettings" } }, "type": "object" }, "AWS::MediaLive::Channel.H264Settings": { "additionalProperties": false, "properties": { "AdaptiveQuantization": { "type": "string" }, "AfdSignaling": { "type": "string" }, "Bitrate": { "type": "number" }, "BufFillPct": { "type": "number" }, "BufSize": { "type": "number" }, "ColorMetadata": { "type": "string" }, "ColorSpaceSettings": { "$ref": "#/definitions/AWS::MediaLive::Channel.H264ColorSpaceSettings" }, "EntropyEncoding": { "type": "string" }, "FilterSettings": { "$ref": "#/definitions/AWS::MediaLive::Channel.H264FilterSettings" }, "FixedAfd": { "type": "string" }, "FlickerAq": { "type": "string" }, "ForceFieldPictures": { "type": "string" }, "FramerateControl": { "type": "string" }, "FramerateDenominator": { "type": "number" }, "FramerateNumerator": { "type": "number" }, "GopBReference": { "type": "string" }, "GopClosedCadence": { "type": "number" }, "GopNumBFrames": { "type": "number" }, "GopSize": { "type": "number" }, "GopSizeUnits": { "type": "string" }, "Level": { "type": "string" }, "LookAheadRateControl": { "type": "string" }, "MaxBitrate": { "type": "number" }, "MinIInterval": { "type": "number" }, "NumRefFrames": { "type": "number" }, "ParControl": { "type": "string" }, "ParDenominator": { "type": "number" }, "ParNumerator": { "type": "number" }, "Profile": { "type": "string" }, "QualityLevel": { "type": "string" }, "QvbrQualityLevel": { "type": "number" }, "RateControlMode": { "type": "string" }, "ScanType": { "type": "string" }, "SceneChangeDetect": { "type": "string" }, "Slices": { "type": "number" }, "Softness": { "type": "number" }, "SpatialAq": { "type": "string" }, "SubgopLength": { "type": "string" }, "Syntax": { "type": "string" }, "TemporalAq": { "type": "string" }, "TimecodeBurninSettings": { "$ref": "#/definitions/AWS::MediaLive::Channel.TimecodeBurninSettings" }, "TimecodeInsertion": { "type": "string" } }, "type": "object" }, "AWS::MediaLive::Channel.H265ColorSpaceSettings": { "additionalProperties": false, "properties": { "ColorSpacePassthroughSettings": { "$ref": "#/definitions/AWS::MediaLive::Channel.ColorSpacePassthroughSettings" }, "DolbyVision81Settings": { "$ref": "#/definitions/AWS::MediaLive::Channel.DolbyVision81Settings" }, "Hdr10Settings": { "$ref": "#/definitions/AWS::MediaLive::Channel.Hdr10Settings" }, "Rec601Settings": { "$ref": "#/definitions/AWS::MediaLive::Channel.Rec601Settings" }, "Rec709Settings": { "$ref": "#/definitions/AWS::MediaLive::Channel.Rec709Settings" } }, "type": "object" }, "AWS::MediaLive::Channel.H265FilterSettings": { "additionalProperties": false, "properties": { "TemporalFilterSettings": { "$ref": "#/definitions/AWS::MediaLive::Channel.TemporalFilterSettings" } }, "type": "object" }, "AWS::MediaLive::Channel.H265Settings": { "additionalProperties": false, "properties": { "AdaptiveQuantization": { "type": "string" }, "AfdSignaling": { "type": "string" }, "AlternativeTransferFunction": { "type": "string" }, "Bitrate": { "type": "number" }, "BufSize": { "type": "number" }, "ColorMetadata": { "type": "string" }, "ColorSpaceSettings": { "$ref": "#/definitions/AWS::MediaLive::Channel.H265ColorSpaceSettings" }, "FilterSettings": { "$ref": "#/definitions/AWS::MediaLive::Channel.H265FilterSettings" }, "FixedAfd": { "type": "string" }, "FlickerAq": { "type": "string" }, "FramerateDenominator": { "type": "number" }, "FramerateNumerator": { "type": "number" }, "GopClosedCadence": { "type": "number" }, "GopSize": { "type": "number" }, "GopSizeUnits": { "type": "string" }, "Level": { "type": "string" }, "LookAheadRateControl": { "type": "string" }, "MaxBitrate": { "type": "number" }, "MinIInterval": { "type": "number" }, "ParDenominator": { "type": "number" }, "ParNumerator": { "type": "number" }, "Profile": { "type": "string" }, "QvbrQualityLevel": { "type": "number" }, "RateControlMode": { "type": "string" }, "ScanType": { "type": "string" }, "SceneChangeDetect": { "type": "string" }, "Slices": { "type": "number" }, "Tier": { "type": "string" }, "TimecodeBurninSettings": { "$ref": "#/definitions/AWS::MediaLive::Channel.TimecodeBurninSettings" }, "TimecodeInsertion": { "type": "string" } }, "type": "object" }, "AWS::MediaLive::Channel.Hdr10Settings": { "additionalProperties": false, "properties": { "MaxCll": { "type": "number" }, "MaxFall": { "type": "number" } }, "type": "object" }, "AWS::MediaLive::Channel.HlsAkamaiSettings": { "additionalProperties": false, "properties": { "ConnectionRetryInterval": { "type": "number" }, "FilecacheDuration": { "type": "number" }, "HttpTransferMode": { "type": "string" }, "NumRetries": { "type": "number" }, "RestartDelay": { "type": "number" }, "Salt": { "type": "string" }, "Token": { "type": "string" } }, "type": "object" }, "AWS::MediaLive::Channel.HlsBasicPutSettings": { "additionalProperties": false, "properties": { "ConnectionRetryInterval": { "type": "number" }, "FilecacheDuration": { "type": "number" }, "NumRetries": { "type": "number" }, "RestartDelay": { "type": "number" } }, "type": "object" }, "AWS::MediaLive::Channel.HlsCdnSettings": { "additionalProperties": false, "properties": { "HlsAkamaiSettings": { "$ref": "#/definitions/AWS::MediaLive::Channel.HlsAkamaiSettings" }, "HlsBasicPutSettings": { "$ref": "#/definitions/AWS::MediaLive::Channel.HlsBasicPutSettings" }, "HlsMediaStoreSettings": { "$ref": "#/definitions/AWS::MediaLive::Channel.HlsMediaStoreSettings" }, "HlsS3Settings": { "$ref": "#/definitions/AWS::MediaLive::Channel.HlsS3Settings" }, "HlsWebdavSettings": { "$ref": "#/definitions/AWS::MediaLive::Channel.HlsWebdavSettings" } }, "type": "object" }, "AWS::MediaLive::Channel.HlsGroupSettings": { "additionalProperties": false, "properties": { "AdMarkers": { "items": { "type": "string" }, "type": "array" }, "BaseUrlContent": { "type": "string" }, "BaseUrlContent1": { "type": "string" }, "BaseUrlManifest": { "type": "string" }, "BaseUrlManifest1": { "type": "string" }, "CaptionLanguageMappings": { "items": { "$ref": "#/definitions/AWS::MediaLive::Channel.CaptionLanguageMapping" }, "type": "array" }, "CaptionLanguageSetting": { "type": "string" }, "ClientCache": { "type": "string" }, "CodecSpecification": { "type": "string" }, "ConstantIv": { "type": "string" }, "Destination": { "$ref": "#/definitions/AWS::MediaLive::Channel.OutputLocationRef" }, "DirectoryStructure": { "type": "string" }, "DiscontinuityTags": { "type": "string" }, "EncryptionType": { "type": "string" }, "HlsCdnSettings": { "$ref": "#/definitions/AWS::MediaLive::Channel.HlsCdnSettings" }, "HlsId3SegmentTagging": { "type": "string" }, "IFrameOnlyPlaylists": { "type": "string" }, "IncompleteSegmentBehavior": { "type": "string" }, "IndexNSegments": { "type": "number" }, "InputLossAction": { "type": "string" }, "IvInManifest": { "type": "string" }, "IvSource": { "type": "string" }, "KeepSegments": { "type": "number" }, "KeyFormat": { "type": "string" }, "KeyFormatVersions": { "type": "string" }, "KeyProviderSettings": { "$ref": "#/definitions/AWS::MediaLive::Channel.KeyProviderSettings" }, "ManifestCompression": { "type": "string" }, "ManifestDurationFormat": { "type": "string" }, "MinSegmentLength": { "type": "number" }, "Mode": { "type": "string" }, "OutputSelection": { "type": "string" }, "ProgramDateTime": { "type": "string" }, "ProgramDateTimeClock": { "type": "string" }, "ProgramDateTimePeriod": { "type": "number" }, "RedundantManifest": { "type": "string" }, "SegmentLength": { "type": "number" }, "SegmentationMode": { "type": "string" }, "SegmentsPerSubdirectory": { "type": "number" }, "StreamInfResolution": { "type": "string" }, "TimedMetadataId3Frame": { "type": "string" }, "TimedMetadataId3Period": { "type": "number" }, "TimestampDeltaMilliseconds": { "type": "number" }, "TsFileMode": { "type": "string" } }, "type": "object" }, "AWS::MediaLive::Channel.HlsInputSettings": { "additionalProperties": false, "properties": { "Bandwidth": { "type": "number" }, "BufferSegments": { "type": "number" }, "Retries": { "type": "number" }, "RetryInterval": { "type": "number" }, "Scte35Source": { "type": "string" } }, "type": "object" }, "AWS::MediaLive::Channel.HlsMediaStoreSettings": { "additionalProperties": false, "properties": { "ConnectionRetryInterval": { "type": "number" }, "FilecacheDuration": { "type": "number" }, "MediaStoreStorageClass": { "type": "string" }, "NumRetries": { "type": "number" }, "RestartDelay": { "type": "number" } }, "type": "object" }, "AWS::MediaLive::Channel.HlsOutputSettings": { "additionalProperties": false, "properties": { "H265PackagingType": { "type": "string" }, "HlsSettings": { "$ref": "#/definitions/AWS::MediaLive::Channel.HlsSettings" }, "NameModifier": { "type": "string" }, "SegmentModifier": { "type": "string" } }, "type": "object" }, "AWS::MediaLive::Channel.HlsS3Settings": { "additionalProperties": false, "properties": { "CannedAcl": { "type": "string" } }, "type": "object" }, "AWS::MediaLive::Channel.HlsSettings": { "additionalProperties": false, "properties": { "AudioOnlyHlsSettings": { "$ref": "#/definitions/AWS::MediaLive::Channel.AudioOnlyHlsSettings" }, "Fmp4HlsSettings": { "$ref": "#/definitions/AWS::MediaLive::Channel.Fmp4HlsSettings" }, "FrameCaptureHlsSettings": { "$ref": "#/definitions/AWS::MediaLive::Channel.FrameCaptureHlsSettings" }, "StandardHlsSettings": { "$ref": "#/definitions/AWS::MediaLive::Channel.StandardHlsSettings" } }, "type": "object" }, "AWS::MediaLive::Channel.HlsWebdavSettings": { "additionalProperties": false, "properties": { "ConnectionRetryInterval": { "type": "number" }, "FilecacheDuration": { "type": "number" }, "HttpTransferMode": { "type": "string" }, "NumRetries": { "type": "number" }, "RestartDelay": { "type": "number" } }, "type": "object" }, "AWS::MediaLive::Channel.HtmlMotionGraphicsSettings": { "additionalProperties": false, "properties": {}, "type": "object" }, "AWS::MediaLive::Channel.InputAttachment": { "additionalProperties": false, "properties": { "AutomaticInputFailoverSettings": { "$ref": "#/definitions/AWS::MediaLive::Channel.AutomaticInputFailoverSettings" }, "InputAttachmentName": { "type": "string" }, "InputId": { "type": "string" }, "InputSettings": { "$ref": "#/definitions/AWS::MediaLive::Channel.InputSettings" } }, "type": "object" }, "AWS::MediaLive::Channel.InputChannelLevel": { "additionalProperties": false, "properties": { "Gain": { "type": "number" }, "InputChannel": { "type": "number" } }, "type": "object" }, "AWS::MediaLive::Channel.InputLocation": { "additionalProperties": false, "properties": { "PasswordParam": { "type": "string" }, "Uri": { "type": "string" }, "Username": { "type": "string" } }, "type": "object" }, "AWS::MediaLive::Channel.InputLossBehavior": { "additionalProperties": false, "properties": { "BlackFrameMsec": { "type": "number" }, "InputLossImageColor": { "type": "string" }, "InputLossImageSlate": { "$ref": "#/definitions/AWS::MediaLive::Channel.InputLocation" }, "InputLossImageType": { "type": "string" }, "RepeatFrameMsec": { "type": "number" } }, "type": "object" }, "AWS::MediaLive::Channel.InputLossFailoverSettings": { "additionalProperties": false, "properties": { "InputLossThresholdMsec": { "type": "number" } }, "type": "object" }, "AWS::MediaLive::Channel.InputSettings": { "additionalProperties": false, "properties": { "AudioSelectors": { "items": { "$ref": "#/definitions/AWS::MediaLive::Channel.AudioSelector" }, "type": "array" }, "CaptionSelectors": { "items": { "$ref": "#/definitions/AWS::MediaLive::Channel.CaptionSelector" }, "type": "array" }, "DeblockFilter": { "type": "string" }, "DenoiseFilter": { "type": "string" }, "FilterStrength": { "type": "number" }, "InputFilter": { "type": "string" }, "NetworkInputSettings": { "$ref": "#/definitions/AWS::MediaLive::Channel.NetworkInputSettings" }, "Scte35Pid": { "type": "number" }, "Smpte2038DataPreference": { "type": "string" }, "SourceEndBehavior": { "type": "string" }, "VideoSelector": { "$ref": "#/definitions/AWS::MediaLive::Channel.VideoSelector" } }, "type": "object" }, "AWS::MediaLive::Channel.InputSpecification": { "additionalProperties": false, "properties": { "Codec": { "type": "string" }, "MaximumBitrate": { "type": "string" }, "Resolution": { "type": "string" } }, "type": "object" }, "AWS::MediaLive::Channel.KeyProviderSettings": { "additionalProperties": false, "properties": { "StaticKeySettings": { "$ref": "#/definitions/AWS::MediaLive::Channel.StaticKeySettings" } }, "type": "object" }, "AWS::MediaLive::Channel.M2tsSettings": { "additionalProperties": false, "properties": { "AbsentInputAudioBehavior": { "type": "string" }, "Arib": { "type": "string" }, "AribCaptionsPid": { "type": "string" }, "AribCaptionsPidControl": { "type": "string" }, "AudioBufferModel": { "type": "string" }, "AudioFramesPerPes": { "type": "number" }, "AudioPids": { "type": "string" }, "AudioStreamType": { "type": "string" }, "Bitrate": { "type": "number" }, "BufferModel": { "type": "string" }, "CcDescriptor": { "type": "string" }, "DvbNitSettings": { "$ref": "#/definitions/AWS::MediaLive::Channel.DvbNitSettings" }, "DvbSdtSettings": { "$ref": "#/definitions/AWS::MediaLive::Channel.DvbSdtSettings" }, "DvbSubPids": { "type": "string" }, "DvbTdtSettings": { "$ref": "#/definitions/AWS::MediaLive::Channel.DvbTdtSettings" }, "DvbTeletextPid": { "type": "string" }, "Ebif": { "type": "string" }, "EbpAudioInterval": { "type": "string" }, "EbpLookaheadMs": { "type": "number" }, "EbpPlacement": { "type": "string" }, "EcmPid": { "type": "string" }, "EsRateInPes": { "type": "string" }, "EtvPlatformPid": { "type": "string" }, "EtvSignalPid": { "type": "string" }, "FragmentTime": { "type": "number" }, "Klv": { "type": "string" }, "KlvDataPids": { "type": "string" }, "NielsenId3Behavior": { "type": "string" }, "NullPacketBitrate": { "type": "number" }, "PatInterval": { "type": "number" }, "PcrControl": { "type": "string" }, "PcrPeriod": { "type": "number" }, "PcrPid": { "type": "string" }, "PmtInterval": { "type": "number" }, "PmtPid": { "type": "string" }, "ProgramNum": { "type": "number" }, "RateMode": { "type": "string" }, "Scte27Pids": { "type": "string" }, "Scte35Control": { "type": "string" }, "Scte35Pid": { "type": "string" }, "Scte35PrerollPullupMilliseconds": { "type": "number" }, "SegmentationMarkers": { "type": "string" }, "SegmentationStyle": { "type": "string" }, "SegmentationTime": { "type": "number" }, "TimedMetadataBehavior": { "type": "string" }, "TimedMetadataPid": { "type": "string" }, "TransportStreamId": { "type": "number" }, "VideoPid": { "type": "string" } }, "type": "object" }, "AWS::MediaLive::Channel.M3u8Settings": { "additionalProperties": false, "properties": { "AudioFramesPerPes": { "type": "number" }, "AudioPids": { "type": "string" }, "EcmPid": { "type": "string" }, "NielsenId3Behavior": { "type": "string" }, "PatInterval": { "type": "number" }, "PcrControl": { "type": "string" }, "PcrPeriod": { "type": "number" }, "PcrPid": { "type": "string" }, "PmtInterval": { "type": "number" }, "PmtPid": { "type": "string" }, "ProgramNum": { "type": "number" }, "Scte35Behavior": { "type": "string" }, "Scte35Pid": { "type": "string" }, "TimedMetadataBehavior": { "type": "string" }, "TimedMetadataPid": { "type": "string" }, "TransportStreamId": { "type": "number" }, "VideoPid": { "type": "string" } }, "type": "object" }, "AWS::MediaLive::Channel.MaintenanceCreateSettings": { "additionalProperties": false, "properties": { "MaintenanceDay": { "type": "string" }, "MaintenanceStartTime": { "type": "string" } }, "type": "object" }, "AWS::MediaLive::Channel.MaintenanceUpdateSettings": { "additionalProperties": false, "properties": { "MaintenanceDay": { "type": "string" }, "MaintenanceScheduledDate": { "type": "string" }, "MaintenanceStartTime": { "type": "string" } }, "type": "object" }, "AWS::MediaLive::Channel.MediaPackageGroupSettings": { "additionalProperties": false, "properties": { "Destination": { "$ref": "#/definitions/AWS::MediaLive::Channel.OutputLocationRef" } }, "type": "object" }, "AWS::MediaLive::Channel.MediaPackageOutputDestinationSettings": { "additionalProperties": false, "properties": { "ChannelId": { "type": "string" } }, "type": "object" }, "AWS::MediaLive::Channel.MediaPackageOutputSettings": { "additionalProperties": false, "properties": {}, "type": "object" }, "AWS::MediaLive::Channel.MotionGraphicsConfiguration": { "additionalProperties": false, "properties": { "MotionGraphicsInsertion": { "type": "string" }, "MotionGraphicsSettings": { "$ref": "#/definitions/AWS::MediaLive::Channel.MotionGraphicsSettings" } }, "type": "object" }, "AWS::MediaLive::Channel.MotionGraphicsSettings": { "additionalProperties": false, "properties": { "HtmlMotionGraphicsSettings": { "$ref": "#/definitions/AWS::MediaLive::Channel.HtmlMotionGraphicsSettings" } }, "type": "object" }, "AWS::MediaLive::Channel.Mp2Settings": { "additionalProperties": false, "properties": { "Bitrate": { "type": "number" }, "CodingMode": { "type": "string" }, "SampleRate": { "type": "number" } }, "type": "object" }, "AWS::MediaLive::Channel.Mpeg2FilterSettings": { "additionalProperties": false, "properties": { "TemporalFilterSettings": { "$ref": "#/definitions/AWS::MediaLive::Channel.TemporalFilterSettings" } }, "type": "object" }, "AWS::MediaLive::Channel.Mpeg2Settings": { "additionalProperties": false, "properties": { "AdaptiveQuantization": { "type": "string" }, "AfdSignaling": { "type": "string" }, "ColorMetadata": { "type": "string" }, "ColorSpace": { "type": "string" }, "DisplayAspectRatio": { "type": "string" }, "FilterSettings": { "$ref": "#/definitions/AWS::MediaLive::Channel.Mpeg2FilterSettings" }, "FixedAfd": { "type": "string" }, "FramerateDenominator": { "type": "number" }, "FramerateNumerator": { "type": "number" }, "GopClosedCadence": { "type": "number" }, "GopNumBFrames": { "type": "number" }, "GopSize": { "type": "number" }, "GopSizeUnits": { "type": "string" }, "ScanType": { "type": "string" }, "SubgopLength": { "type": "string" }, "TimecodeBurninSettings": { "$ref": "#/definitions/AWS::MediaLive::Channel.TimecodeBurninSettings" }, "TimecodeInsertion": { "type": "string" } }, "type": "object" }, "AWS::MediaLive::Channel.MsSmoothGroupSettings": { "additionalProperties": false, "properties": { "AcquisitionPointId": { "type": "string" }, "AudioOnlyTimecodeControl": { "type": "string" }, "CertificateMode": { "type": "string" }, "ConnectionRetryInterval": { "type": "number" }, "Destination": { "$ref": "#/definitions/AWS::MediaLive::Channel.OutputLocationRef" }, "EventId": { "type": "string" }, "EventIdMode": { "type": "string" }, "EventStopBehavior": { "type": "string" }, "FilecacheDuration": { "type": "number" }, "FragmentLength": { "type": "number" }, "InputLossAction": { "type": "string" }, "NumRetries": { "type": "number" }, "RestartDelay": { "type": "number" }, "SegmentationMode": { "type": "string" }, "SendDelayMs": { "type": "number" }, "SparseTrackType": { "type": "string" }, "StreamManifestBehavior": { "type": "string" }, "TimestampOffset": { "type": "string" }, "TimestampOffsetMode": { "type": "string" } }, "type": "object" }, "AWS::MediaLive::Channel.MsSmoothOutputSettings": { "additionalProperties": false, "properties": { "H265PackagingType": { "type": "string" }, "NameModifier": { "type": "string" } }, "type": "object" }, "AWS::MediaLive::Channel.MultiplexGroupSettings": { "additionalProperties": false, "properties": {}, "type": "object" }, "AWS::MediaLive::Channel.MultiplexOutputSettings": { "additionalProperties": false, "properties": { "Destination": { "$ref": "#/definitions/AWS::MediaLive::Channel.OutputLocationRef" } }, "type": "object" }, "AWS::MediaLive::Channel.MultiplexProgramChannelDestinationSettings": { "additionalProperties": false, "properties": { "MultiplexId": { "type": "string" }, "ProgramName": { "type": "string" } }, "type": "object" }, "AWS::MediaLive::Channel.NetworkInputSettings": { "additionalProperties": false, "properties": { "HlsInputSettings": { "$ref": "#/definitions/AWS::MediaLive::Channel.HlsInputSettings" }, "ServerValidation": { "type": "string" } }, "type": "object" }, "AWS::MediaLive::Channel.NielsenCBET": { "additionalProperties": false, "properties": { "CbetCheckDigitString": { "type": "string" }, "CbetStepaside": { "type": "string" }, "Csid": { "type": "string" } }, "type": "object" }, "AWS::MediaLive::Channel.NielsenConfiguration": { "additionalProperties": false, "properties": { "DistributorId": { "type": "string" }, "NielsenPcmToId3Tagging": { "type": "string" } }, "type": "object" }, "AWS::MediaLive::Channel.NielsenNaesIiNw": { "additionalProperties": false, "properties": { "CheckDigitString": { "type": "string" }, "Sid": { "type": "number" }, "Timezone": { "type": "string" } }, "type": "object" }, "AWS::MediaLive::Channel.NielsenWatermarksSettings": { "additionalProperties": false, "properties": { "NielsenCbetSettings": { "$ref": "#/definitions/AWS::MediaLive::Channel.NielsenCBET" }, "NielsenDistributionType": { "type": "string" }, "NielsenNaesIiNwSettings": { "$ref": "#/definitions/AWS::MediaLive::Channel.NielsenNaesIiNw" } }, "type": "object" }, "AWS::MediaLive::Channel.Output": { "additionalProperties": false, "properties": { "AudioDescriptionNames": { "items": { "type": "string" }, "type": "array" }, "CaptionDescriptionNames": { "items": { "type": "string" }, "type": "array" }, "OutputName": { "type": "string" }, "OutputSettings": { "$ref": "#/definitions/AWS::MediaLive::Channel.OutputSettings" }, "VideoDescriptionName": { "type": "string" } }, "type": "object" }, "AWS::MediaLive::Channel.OutputDestination": { "additionalProperties": false, "properties": { "Id": { "type": "string" }, "MediaPackageSettings": { "items": { "$ref": "#/definitions/AWS::MediaLive::Channel.MediaPackageOutputDestinationSettings" }, "type": "array" }, "MultiplexSettings": { "$ref": "#/definitions/AWS::MediaLive::Channel.MultiplexProgramChannelDestinationSettings" }, "Settings": { "items": { "$ref": "#/definitions/AWS::MediaLive::Channel.OutputDestinationSettings" }, "type": "array" } }, "type": "object" }, "AWS::MediaLive::Channel.OutputDestinationSettings": { "additionalProperties": false, "properties": { "PasswordParam": { "type": "string" }, "StreamName": { "type": "string" }, "Url": { "type": "string" }, "Username": { "type": "string" } }, "type": "object" }, "AWS::MediaLive::Channel.OutputGroup": { "additionalProperties": false, "properties": { "Name": { "type": "string" }, "OutputGroupSettings": { "$ref": "#/definitions/AWS::MediaLive::Channel.OutputGroupSettings" }, "Outputs": { "items": { "$ref": "#/definitions/AWS::MediaLive::Channel.Output" }, "type": "array" } }, "type": "object" }, "AWS::MediaLive::Channel.OutputGroupSettings": { "additionalProperties": false, "properties": { "ArchiveGroupSettings": { "$ref": "#/definitions/AWS::MediaLive::Channel.ArchiveGroupSettings" }, "FrameCaptureGroupSettings": { "$ref": "#/definitions/AWS::MediaLive::Channel.FrameCaptureGroupSettings" }, "HlsGroupSettings": { "$ref": "#/definitions/AWS::MediaLive::Channel.HlsGroupSettings" }, "MediaPackageGroupSettings": { "$ref": "#/definitions/AWS::MediaLive::Channel.MediaPackageGroupSettings" }, "MsSmoothGroupSettings": { "$ref": "#/definitions/AWS::MediaLive::Channel.MsSmoothGroupSettings" }, "MultiplexGroupSettings": { "$ref": "#/definitions/AWS::MediaLive::Channel.MultiplexGroupSettings" }, "RtmpGroupSettings": { "$ref": "#/definitions/AWS::MediaLive::Channel.RtmpGroupSettings" }, "UdpGroupSettings": { "$ref": "#/definitions/AWS::MediaLive::Channel.UdpGroupSettings" } }, "type": "object" }, "AWS::MediaLive::Channel.OutputLocationRef": { "additionalProperties": false, "properties": { "DestinationRefId": { "type": "string" } }, "type": "object" }, "AWS::MediaLive::Channel.OutputSettings": { "additionalProperties": false, "properties": { "ArchiveOutputSettings": { "$ref": "#/definitions/AWS::MediaLive::Channel.ArchiveOutputSettings" }, "FrameCaptureOutputSettings": { "$ref": "#/definitions/AWS::MediaLive::Channel.FrameCaptureOutputSettings" }, "HlsOutputSettings": { "$ref": "#/definitions/AWS::MediaLive::Channel.HlsOutputSettings" }, "MediaPackageOutputSettings": { "$ref": "#/definitions/AWS::MediaLive::Channel.MediaPackageOutputSettings" }, "MsSmoothOutputSettings": { "$ref": "#/definitions/AWS::MediaLive::Channel.MsSmoothOutputSettings" }, "MultiplexOutputSettings": { "$ref": "#/definitions/AWS::MediaLive::Channel.MultiplexOutputSettings" }, "RtmpOutputSettings": { "$ref": "#/definitions/AWS::MediaLive::Channel.RtmpOutputSettings" }, "UdpOutputSettings": { "$ref": "#/definitions/AWS::MediaLive::Channel.UdpOutputSettings" } }, "type": "object" }, "AWS::MediaLive::Channel.PassThroughSettings": { "additionalProperties": false, "properties": {}, "type": "object" }, "AWS::MediaLive::Channel.RawSettings": { "additionalProperties": false, "properties": {}, "type": "object" }, "AWS::MediaLive::Channel.Rec601Settings": { "additionalProperties": false, "properties": {}, "type": "object" }, "AWS::MediaLive::Channel.Rec709Settings": { "additionalProperties": false, "properties": {}, "type": "object" }, "AWS::MediaLive::Channel.RemixSettings": { "additionalProperties": false, "properties": { "ChannelMappings": { "items": { "$ref": "#/definitions/AWS::MediaLive::Channel.AudioChannelMapping" }, "type": "array" }, "ChannelsIn": { "type": "number" }, "ChannelsOut": { "type": "number" } }, "type": "object" }, "AWS::MediaLive::Channel.RtmpCaptionInfoDestinationSettings": { "additionalProperties": false, "properties": {}, "type": "object" }, "AWS::MediaLive::Channel.RtmpGroupSettings": { "additionalProperties": false, "properties": { "AdMarkers": { "items": { "type": "string" }, "type": "array" }, "AuthenticationScheme": { "type": "string" }, "CacheFullBehavior": { "type": "string" }, "CacheLength": { "type": "number" }, "CaptionData": { "type": "string" }, "InputLossAction": { "type": "string" }, "RestartDelay": { "type": "number" } }, "type": "object" }, "AWS::MediaLive::Channel.RtmpOutputSettings": { "additionalProperties": false, "properties": { "CertificateMode": { "type": "string" }, "ConnectionRetryInterval": { "type": "number" }, "Destination": { "$ref": "#/definitions/AWS::MediaLive::Channel.OutputLocationRef" }, "NumRetries": { "type": "number" } }, "type": "object" }, "AWS::MediaLive::Channel.Scte20PlusEmbeddedDestinationSettings": { "additionalProperties": false, "properties": {}, "type": "object" }, "AWS::MediaLive::Channel.Scte20SourceSettings": { "additionalProperties": false, "properties": { "Convert608To708": { "type": "string" }, "Source608ChannelNumber": { "type": "number" } }, "type": "object" }, "AWS::MediaLive::Channel.Scte27DestinationSettings": { "additionalProperties": false, "properties": {}, "type": "object" }, "AWS::MediaLive::Channel.Scte27SourceSettings": { "additionalProperties": false, "properties": { "OcrLanguage": { "type": "string" }, "Pid": { "type": "number" } }, "type": "object" }, "AWS::MediaLive::Channel.Scte35SpliceInsert": { "additionalProperties": false, "properties": { "AdAvailOffset": { "type": "number" }, "NoRegionalBlackoutFlag": { "type": "string" }, "WebDeliveryAllowedFlag": { "type": "string" } }, "type": "object" }, "AWS::MediaLive::Channel.Scte35TimeSignalApos": { "additionalProperties": false, "properties": { "AdAvailOffset": { "type": "number" }, "NoRegionalBlackoutFlag": { "type": "string" }, "WebDeliveryAllowedFlag": { "type": "string" } }, "type": "object" }, "AWS::MediaLive::Channel.SmpteTtDestinationSettings": { "additionalProperties": false, "properties": {}, "type": "object" }, "AWS::MediaLive::Channel.StandardHlsSettings": { "additionalProperties": false, "properties": { "AudioRenditionSets": { "type": "string" }, "M3u8Settings": { "$ref": "#/definitions/AWS::MediaLive::Channel.M3u8Settings" } }, "type": "object" }, "AWS::MediaLive::Channel.StaticKeySettings": { "additionalProperties": false, "properties": { "KeyProviderServer": { "$ref": "#/definitions/AWS::MediaLive::Channel.InputLocation" }, "StaticKeyValue": { "type": "string" } }, "type": "object" }, "AWS::MediaLive::Channel.TeletextDestinationSettings": { "additionalProperties": false, "properties": {}, "type": "object" }, "AWS::MediaLive::Channel.TeletextSourceSettings": { "additionalProperties": false, "properties": { "OutputRectangle": { "$ref": "#/definitions/AWS::MediaLive::Channel.CaptionRectangle" }, "PageNumber": { "type": "string" } }, "type": "object" }, "AWS::MediaLive::Channel.TemporalFilterSettings": { "additionalProperties": false, "properties": { "PostFilterSharpening": { "type": "string" }, "Strength": { "type": "string" } }, "type": "object" }, "AWS::MediaLive::Channel.TimecodeBurninSettings": { "additionalProperties": false, "properties": { "FontSize": { "type": "string" }, "Position": { "type": "string" }, "Prefix": { "type": "string" } }, "type": "object" }, "AWS::MediaLive::Channel.TimecodeConfig": { "additionalProperties": false, "properties": { "Source": { "type": "string" }, "SyncThreshold": { "type": "number" } }, "type": "object" }, "AWS::MediaLive::Channel.TtmlDestinationSettings": { "additionalProperties": false, "properties": { "StyleControl": { "type": "string" } }, "type": "object" }, "AWS::MediaLive::Channel.UdpContainerSettings": { "additionalProperties": false, "properties": { "M2tsSettings": { "$ref": "#/definitions/AWS::MediaLive::Channel.M2tsSettings" } }, "type": "object" }, "AWS::MediaLive::Channel.UdpGroupSettings": { "additionalProperties": false, "properties": { "InputLossAction": { "type": "string" }, "TimedMetadataId3Frame": { "type": "string" }, "TimedMetadataId3Period": { "type": "number" } }, "type": "object" }, "AWS::MediaLive::Channel.UdpOutputSettings": { "additionalProperties": false, "properties": { "BufferMsec": { "type": "number" }, "ContainerSettings": { "$ref": "#/definitions/AWS::MediaLive::Channel.UdpContainerSettings" }, "Destination": { "$ref": "#/definitions/AWS::MediaLive::Channel.OutputLocationRef" }, "FecOutputSettings": { "$ref": "#/definitions/AWS::MediaLive::Channel.FecOutputSettings" } }, "type": "object" }, "AWS::MediaLive::Channel.VideoBlackFailoverSettings": { "additionalProperties": false, "properties": { "BlackDetectThreshold": { "type": "number" }, "VideoBlackThresholdMsec": { "type": "number" } }, "type": "object" }, "AWS::MediaLive::Channel.VideoCodecSettings": { "additionalProperties": false, "properties": { "FrameCaptureSettings": { "$ref": "#/definitions/AWS::MediaLive::Channel.FrameCaptureSettings" }, "H264Settings": { "$ref": "#/definitions/AWS::MediaLive::Channel.H264Settings" }, "H265Settings": { "$ref": "#/definitions/AWS::MediaLive::Channel.H265Settings" }, "Mpeg2Settings": { "$ref": "#/definitions/AWS::MediaLive::Channel.Mpeg2Settings" } }, "type": "object" }, "AWS::MediaLive::Channel.VideoDescription": { "additionalProperties": false, "properties": { "CodecSettings": { "$ref": "#/definitions/AWS::MediaLive::Channel.VideoCodecSettings" }, "Height": { "type": "number" }, "Name": { "type": "string" }, "RespondToAfd": { "type": "string" }, "ScalingBehavior": { "type": "string" }, "Sharpness": { "type": "number" }, "Width": { "type": "number" } }, "type": "object" }, "AWS::MediaLive::Channel.VideoSelector": { "additionalProperties": false, "properties": { "ColorSpace": { "type": "string" }, "ColorSpaceSettings": { "$ref": "#/definitions/AWS::MediaLive::Channel.VideoSelectorColorSpaceSettings" }, "ColorSpaceUsage": { "type": "string" }, "SelectorSettings": { "$ref": "#/definitions/AWS::MediaLive::Channel.VideoSelectorSettings" } }, "type": "object" }, "AWS::MediaLive::Channel.VideoSelectorColorSpaceSettings": { "additionalProperties": false, "properties": { "Hdr10Settings": { "$ref": "#/definitions/AWS::MediaLive::Channel.Hdr10Settings" } }, "type": "object" }, "AWS::MediaLive::Channel.VideoSelectorPid": { "additionalProperties": false, "properties": { "Pid": { "type": "number" } }, "type": "object" }, "AWS::MediaLive::Channel.VideoSelectorProgramId": { "additionalProperties": false, "properties": { "ProgramId": { "type": "number" } }, "type": "object" }, "AWS::MediaLive::Channel.VideoSelectorSettings": { "additionalProperties": false, "properties": { "VideoSelectorPid": { "$ref": "#/definitions/AWS::MediaLive::Channel.VideoSelectorPid" }, "VideoSelectorProgramId": { "$ref": "#/definitions/AWS::MediaLive::Channel.VideoSelectorProgramId" } }, "type": "object" }, "AWS::MediaLive::Channel.VpcOutputSettings": { "additionalProperties": false, "properties": { "PublicAddressAllocationIds": { "items": { "type": "string" }, "type": "array" }, "SecurityGroupIds": { "items": { "type": "string" }, "type": "array" }, "SubnetIds": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::MediaLive::Channel.WavSettings": { "additionalProperties": false, "properties": { "BitDepth": { "type": "number" }, "CodingMode": { "type": "string" }, "SampleRate": { "type": "number" } }, "type": "object" }, "AWS::MediaLive::Channel.WebvttDestinationSettings": { "additionalProperties": false, "properties": { "StyleControl": { "type": "string" } }, "type": "object" }, "AWS::MediaLive::Input": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Destinations": { "items": { "$ref": "#/definitions/AWS::MediaLive::Input.InputDestinationRequest" }, "type": "array" }, "InputDevices": { "items": { "$ref": "#/definitions/AWS::MediaLive::Input.InputDeviceSettings" }, "type": "array" }, "InputSecurityGroups": { "items": { "type": "string" }, "type": "array" }, "MediaConnectFlows": { "items": { "$ref": "#/definitions/AWS::MediaLive::Input.MediaConnectFlowRequest" }, "type": "array" }, "Name": { "type": "string" }, "RoleArn": { "type": "string" }, "Sources": { "items": { "$ref": "#/definitions/AWS::MediaLive::Input.InputSourceRequest" }, "type": "array" }, "Tags": { "type": "object" }, "Type": { "type": "string" }, "Vpc": { "$ref": "#/definitions/AWS::MediaLive::Input.InputVpcRequest" } }, "type": "object" }, "Type": { "enum": [ "AWS::MediaLive::Input" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::MediaLive::Input.InputDestinationRequest": { "additionalProperties": false, "properties": { "StreamName": { "type": "string" } }, "type": "object" }, "AWS::MediaLive::Input.InputDeviceRequest": { "additionalProperties": false, "properties": { "Id": { "type": "string" } }, "type": "object" }, "AWS::MediaLive::Input.InputDeviceSettings": { "additionalProperties": false, "properties": { "Id": { "type": "string" } }, "type": "object" }, "AWS::MediaLive::Input.InputSourceRequest": { "additionalProperties": false, "properties": { "PasswordParam": { "type": "string" }, "Url": { "type": "string" }, "Username": { "type": "string" } }, "type": "object" }, "AWS::MediaLive::Input.InputVpcRequest": { "additionalProperties": false, "properties": { "SecurityGroupIds": { "items": { "type": "string" }, "type": "array" }, "SubnetIds": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::MediaLive::Input.MediaConnectFlowRequest": { "additionalProperties": false, "properties": { "FlowArn": { "type": "string" } }, "type": "object" }, "AWS::MediaLive::InputSecurityGroup": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Tags": { "type": "object" }, "WhitelistRules": { "items": { "$ref": "#/definitions/AWS::MediaLive::InputSecurityGroup.InputWhitelistRuleCidr" }, "type": "array" } }, "type": "object" }, "Type": { "enum": [ "AWS::MediaLive::InputSecurityGroup" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::MediaLive::InputSecurityGroup.InputWhitelistRuleCidr": { "additionalProperties": false, "properties": { "Cidr": { "type": "string" } }, "type": "object" }, "AWS::MediaPackage::Asset": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "EgressEndpoints": { "items": { "$ref": "#/definitions/AWS::MediaPackage::Asset.EgressEndpoint" }, "type": "array" }, "Id": { "type": "string" }, "PackagingGroupId": { "type": "string" }, "ResourceId": { "type": "string" }, "SourceArn": { "type": "string" }, "SourceRoleArn": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "Id", "PackagingGroupId", "SourceArn", "SourceRoleArn" ], "type": "object" }, "Type": { "enum": [ "AWS::MediaPackage::Asset" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::MediaPackage::Asset.EgressEndpoint": { "additionalProperties": false, "properties": { "PackagingConfigurationId": { "type": "string" }, "Url": { "type": "string" } }, "required": [ "PackagingConfigurationId", "Url" ], "type": "object" }, "AWS::MediaPackage::Channel": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "EgressAccessLogs": { "$ref": "#/definitions/AWS::MediaPackage::Channel.LogConfiguration" }, "HlsIngest": { "$ref": "#/definitions/AWS::MediaPackage::Channel.HlsIngest" }, "Id": { "type": "string" }, "IngressAccessLogs": { "$ref": "#/definitions/AWS::MediaPackage::Channel.LogConfiguration" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "Id" ], "type": "object" }, "Type": { "enum": [ "AWS::MediaPackage::Channel" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::MediaPackage::Channel.HlsIngest": { "additionalProperties": false, "properties": { "ingestEndpoints": { "items": { "$ref": "#/definitions/AWS::MediaPackage::Channel.IngestEndpoint" }, "type": "array" } }, "type": "object" }, "AWS::MediaPackage::Channel.IngestEndpoint": { "additionalProperties": false, "properties": { "Id": { "type": "string" }, "Password": { "type": "string" }, "Url": { "type": "string" }, "Username": { "type": "string" } }, "required": [ "Id", "Password", "Url", "Username" ], "type": "object" }, "AWS::MediaPackage::Channel.LogConfiguration": { "additionalProperties": false, "properties": { "LogGroupName": { "type": "string" } }, "type": "object" }, "AWS::MediaPackage::OriginEndpoint": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Authorization": { "$ref": "#/definitions/AWS::MediaPackage::OriginEndpoint.Authorization" }, "ChannelId": { "type": "string" }, "CmafPackage": { "$ref": "#/definitions/AWS::MediaPackage::OriginEndpoint.CmafPackage" }, "DashPackage": { "$ref": "#/definitions/AWS::MediaPackage::OriginEndpoint.DashPackage" }, "Description": { "type": "string" }, "HlsPackage": { "$ref": "#/definitions/AWS::MediaPackage::OriginEndpoint.HlsPackage" }, "Id": { "type": "string" }, "ManifestName": { "type": "string" }, "MssPackage": { "$ref": "#/definitions/AWS::MediaPackage::OriginEndpoint.MssPackage" }, "Origination": { "type": "string" }, "StartoverWindowSeconds": { "type": "number" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "TimeDelaySeconds": { "type": "number" }, "Whitelist": { "items": { "type": "string" }, "type": "array" } }, "required": [ "ChannelId", "Id" ], "type": "object" }, "Type": { "enum": [ "AWS::MediaPackage::OriginEndpoint" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::MediaPackage::OriginEndpoint.Authorization": { "additionalProperties": false, "properties": { "CdnIdentifierSecret": { "type": "string" }, "SecretsRoleArn": { "type": "string" } }, "required": [ "CdnIdentifierSecret", "SecretsRoleArn" ], "type": "object" }, "AWS::MediaPackage::OriginEndpoint.CmafEncryption": { "additionalProperties": false, "properties": { "ConstantInitializationVector": { "type": "string" }, "EncryptionMethod": { "type": "string" }, "KeyRotationIntervalSeconds": { "type": "number" }, "SpekeKeyProvider": { "$ref": "#/definitions/AWS::MediaPackage::OriginEndpoint.SpekeKeyProvider" } }, "required": [ "SpekeKeyProvider" ], "type": "object" }, "AWS::MediaPackage::OriginEndpoint.CmafPackage": { "additionalProperties": false, "properties": { "Encryption": { "$ref": "#/definitions/AWS::MediaPackage::OriginEndpoint.CmafEncryption" }, "HlsManifests": { "items": { "$ref": "#/definitions/AWS::MediaPackage::OriginEndpoint.HlsManifest" }, "type": "array" }, "SegmentDurationSeconds": { "type": "number" }, "SegmentPrefix": { "type": "string" }, "StreamSelection": { "$ref": "#/definitions/AWS::MediaPackage::OriginEndpoint.StreamSelection" } }, "type": "object" }, "AWS::MediaPackage::OriginEndpoint.DashEncryption": { "additionalProperties": false, "properties": { "KeyRotationIntervalSeconds": { "type": "number" }, "SpekeKeyProvider": { "$ref": "#/definitions/AWS::MediaPackage::OriginEndpoint.SpekeKeyProvider" } }, "required": [ "SpekeKeyProvider" ], "type": "object" }, "AWS::MediaPackage::OriginEndpoint.DashPackage": { "additionalProperties": false, "properties": { "AdTriggers": { "items": { "type": "string" }, "type": "array" }, "AdsOnDeliveryRestrictions": { "type": "string" }, "Encryption": { "$ref": "#/definitions/AWS::MediaPackage::OriginEndpoint.DashEncryption" }, "IncludeIframeOnlyStream": { "type": "boolean" }, "ManifestLayout": { "type": "string" }, "ManifestWindowSeconds": { "type": "number" }, "MinBufferTimeSeconds": { "type": "number" }, "MinUpdatePeriodSeconds": { "type": "number" }, "PeriodTriggers": { "items": { "type": "string" }, "type": "array" }, "Profile": { "type": "string" }, "SegmentDurationSeconds": { "type": "number" }, "SegmentTemplateFormat": { "type": "string" }, "StreamSelection": { "$ref": "#/definitions/AWS::MediaPackage::OriginEndpoint.StreamSelection" }, "SuggestedPresentationDelaySeconds": { "type": "number" }, "UtcTiming": { "type": "string" }, "UtcTimingUri": { "type": "string" } }, "type": "object" }, "AWS::MediaPackage::OriginEndpoint.EncryptionContractConfiguration": { "additionalProperties": false, "properties": {}, "type": "object" }, "AWS::MediaPackage::OriginEndpoint.HlsEncryption": { "additionalProperties": false, "properties": { "ConstantInitializationVector": { "type": "string" }, "EncryptionMethod": { "type": "string" }, "KeyRotationIntervalSeconds": { "type": "number" }, "RepeatExtXKey": { "type": "boolean" }, "SpekeKeyProvider": { "$ref": "#/definitions/AWS::MediaPackage::OriginEndpoint.SpekeKeyProvider" } }, "required": [ "SpekeKeyProvider" ], "type": "object" }, "AWS::MediaPackage::OriginEndpoint.HlsManifest": { "additionalProperties": false, "properties": { "AdMarkers": { "type": "string" }, "AdTriggers": { "items": { "type": "string" }, "type": "array" }, "AdsOnDeliveryRestrictions": { "type": "string" }, "Id": { "type": "string" }, "IncludeIframeOnlyStream": { "type": "boolean" }, "ManifestName": { "type": "string" }, "PlaylistType": { "type": "string" }, "PlaylistWindowSeconds": { "type": "number" }, "ProgramDateTimeIntervalSeconds": { "type": "number" }, "Url": { "type": "string" } }, "required": [ "Id" ], "type": "object" }, "AWS::MediaPackage::OriginEndpoint.HlsPackage": { "additionalProperties": false, "properties": { "AdMarkers": { "type": "string" }, "AdTriggers": { "items": { "type": "string" }, "type": "array" }, "AdsOnDeliveryRestrictions": { "type": "string" }, "Encryption": { "$ref": "#/definitions/AWS::MediaPackage::OriginEndpoint.HlsEncryption" }, "IncludeDvbSubtitles": { "type": "boolean" }, "IncludeIframeOnlyStream": { "type": "boolean" }, "PlaylistType": { "type": "string" }, "PlaylistWindowSeconds": { "type": "number" }, "ProgramDateTimeIntervalSeconds": { "type": "number" }, "SegmentDurationSeconds": { "type": "number" }, "StreamSelection": { "$ref": "#/definitions/AWS::MediaPackage::OriginEndpoint.StreamSelection" }, "UseAudioRenditionGroup": { "type": "boolean" } }, "type": "object" }, "AWS::MediaPackage::OriginEndpoint.MssEncryption": { "additionalProperties": false, "properties": { "SpekeKeyProvider": { "$ref": "#/definitions/AWS::MediaPackage::OriginEndpoint.SpekeKeyProvider" } }, "required": [ "SpekeKeyProvider" ], "type": "object" }, "AWS::MediaPackage::OriginEndpoint.MssPackage": { "additionalProperties": false, "properties": { "Encryption": { "$ref": "#/definitions/AWS::MediaPackage::OriginEndpoint.MssEncryption" }, "ManifestWindowSeconds": { "type": "number" }, "SegmentDurationSeconds": { "type": "number" }, "StreamSelection": { "$ref": "#/definitions/AWS::MediaPackage::OriginEndpoint.StreamSelection" } }, "type": "object" }, "AWS::MediaPackage::OriginEndpoint.SpekeKeyProvider": { "additionalProperties": false, "properties": { "CertificateArn": { "type": "string" }, "EncryptionContractConfiguration": { "$ref": "#/definitions/AWS::MediaPackage::OriginEndpoint.EncryptionContractConfiguration" }, "ResourceId": { "type": "string" }, "RoleArn": { "type": "string" }, "SystemIds": { "items": { "type": "string" }, "type": "array" }, "Url": { "type": "string" } }, "required": [ "ResourceId", "RoleArn", "SystemIds", "Url" ], "type": "object" }, "AWS::MediaPackage::OriginEndpoint.StreamSelection": { "additionalProperties": false, "properties": { "MaxVideoBitsPerSecond": { "type": "number" }, "MinVideoBitsPerSecond": { "type": "number" }, "StreamOrder": { "type": "string" } }, "type": "object" }, "AWS::MediaPackage::PackagingConfiguration": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "CmafPackage": { "$ref": "#/definitions/AWS::MediaPackage::PackagingConfiguration.CmafPackage" }, "DashPackage": { "$ref": "#/definitions/AWS::MediaPackage::PackagingConfiguration.DashPackage" }, "HlsPackage": { "$ref": "#/definitions/AWS::MediaPackage::PackagingConfiguration.HlsPackage" }, "Id": { "type": "string" }, "MssPackage": { "$ref": "#/definitions/AWS::MediaPackage::PackagingConfiguration.MssPackage" }, "PackagingGroupId": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "Id", "PackagingGroupId" ], "type": "object" }, "Type": { "enum": [ "AWS::MediaPackage::PackagingConfiguration" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::MediaPackage::PackagingConfiguration.CmafEncryption": { "additionalProperties": false, "properties": { "SpekeKeyProvider": { "$ref": "#/definitions/AWS::MediaPackage::PackagingConfiguration.SpekeKeyProvider" } }, "required": [ "SpekeKeyProvider" ], "type": "object" }, "AWS::MediaPackage::PackagingConfiguration.CmafPackage": { "additionalProperties": false, "properties": { "Encryption": { "$ref": "#/definitions/AWS::MediaPackage::PackagingConfiguration.CmafEncryption" }, "HlsManifests": { "items": { "$ref": "#/definitions/AWS::MediaPackage::PackagingConfiguration.HlsManifest" }, "type": "array" }, "IncludeEncoderConfigurationInSegments": { "type": "boolean" }, "SegmentDurationSeconds": { "type": "number" } }, "required": [ "HlsManifests" ], "type": "object" }, "AWS::MediaPackage::PackagingConfiguration.DashEncryption": { "additionalProperties": false, "properties": { "SpekeKeyProvider": { "$ref": "#/definitions/AWS::MediaPackage::PackagingConfiguration.SpekeKeyProvider" } }, "required": [ "SpekeKeyProvider" ], "type": "object" }, "AWS::MediaPackage::PackagingConfiguration.DashManifest": { "additionalProperties": false, "properties": { "ManifestLayout": { "type": "string" }, "ManifestName": { "type": "string" }, "MinBufferTimeSeconds": { "type": "number" }, "Profile": { "type": "string" }, "ScteMarkersSource": { "type": "string" }, "StreamSelection": { "$ref": "#/definitions/AWS::MediaPackage::PackagingConfiguration.StreamSelection" } }, "type": "object" }, "AWS::MediaPackage::PackagingConfiguration.DashPackage": { "additionalProperties": false, "properties": { "DashManifests": { "items": { "$ref": "#/definitions/AWS::MediaPackage::PackagingConfiguration.DashManifest" }, "type": "array" }, "Encryption": { "$ref": "#/definitions/AWS::MediaPackage::PackagingConfiguration.DashEncryption" }, "IncludeEncoderConfigurationInSegments": { "type": "boolean" }, "IncludeIframeOnlyStream": { "type": "boolean" }, "PeriodTriggers": { "items": { "type": "string" }, "type": "array" }, "SegmentDurationSeconds": { "type": "number" }, "SegmentTemplateFormat": { "type": "string" } }, "required": [ "DashManifests" ], "type": "object" }, "AWS::MediaPackage::PackagingConfiguration.EncryptionContractConfiguration": { "additionalProperties": false, "properties": { "PresetSpeke20Audio": { "type": "string" }, "PresetSpeke20Video": { "type": "string" } }, "required": [ "PresetSpeke20Audio", "PresetSpeke20Video" ], "type": "object" }, "AWS::MediaPackage::PackagingConfiguration.HlsEncryption": { "additionalProperties": false, "properties": { "ConstantInitializationVector": { "type": "string" }, "EncryptionMethod": { "type": "string" }, "SpekeKeyProvider": { "$ref": "#/definitions/AWS::MediaPackage::PackagingConfiguration.SpekeKeyProvider" } }, "required": [ "SpekeKeyProvider" ], "type": "object" }, "AWS::MediaPackage::PackagingConfiguration.HlsManifest": { "additionalProperties": false, "properties": { "AdMarkers": { "type": "string" }, "IncludeIframeOnlyStream": { "type": "boolean" }, "ManifestName": { "type": "string" }, "ProgramDateTimeIntervalSeconds": { "type": "number" }, "RepeatExtXKey": { "type": "boolean" }, "StreamSelection": { "$ref": "#/definitions/AWS::MediaPackage::PackagingConfiguration.StreamSelection" } }, "type": "object" }, "AWS::MediaPackage::PackagingConfiguration.HlsPackage": { "additionalProperties": false, "properties": { "Encryption": { "$ref": "#/definitions/AWS::MediaPackage::PackagingConfiguration.HlsEncryption" }, "HlsManifests": { "items": { "$ref": "#/definitions/AWS::MediaPackage::PackagingConfiguration.HlsManifest" }, "type": "array" }, "IncludeDvbSubtitles": { "type": "boolean" }, "SegmentDurationSeconds": { "type": "number" }, "UseAudioRenditionGroup": { "type": "boolean" } }, "required": [ "HlsManifests" ], "type": "object" }, "AWS::MediaPackage::PackagingConfiguration.MssEncryption": { "additionalProperties": false, "properties": { "SpekeKeyProvider": { "$ref": "#/definitions/AWS::MediaPackage::PackagingConfiguration.SpekeKeyProvider" } }, "required": [ "SpekeKeyProvider" ], "type": "object" }, "AWS::MediaPackage::PackagingConfiguration.MssManifest": { "additionalProperties": false, "properties": { "ManifestName": { "type": "string" }, "StreamSelection": { "$ref": "#/definitions/AWS::MediaPackage::PackagingConfiguration.StreamSelection" } }, "type": "object" }, "AWS::MediaPackage::PackagingConfiguration.MssPackage": { "additionalProperties": false, "properties": { "Encryption": { "$ref": "#/definitions/AWS::MediaPackage::PackagingConfiguration.MssEncryption" }, "MssManifests": { "items": { "$ref": "#/definitions/AWS::MediaPackage::PackagingConfiguration.MssManifest" }, "type": "array" }, "SegmentDurationSeconds": { "type": "number" } }, "required": [ "MssManifests" ], "type": "object" }, "AWS::MediaPackage::PackagingConfiguration.SpekeKeyProvider": { "additionalProperties": false, "properties": { "EncryptionContractConfiguration": { "$ref": "#/definitions/AWS::MediaPackage::PackagingConfiguration.EncryptionContractConfiguration" }, "RoleArn": { "type": "string" }, "SystemIds": { "items": { "type": "string" }, "type": "array" }, "Url": { "type": "string" } }, "required": [ "RoleArn", "SystemIds", "Url" ], "type": "object" }, "AWS::MediaPackage::PackagingConfiguration.StreamSelection": { "additionalProperties": false, "properties": { "MaxVideoBitsPerSecond": { "type": "number" }, "MinVideoBitsPerSecond": { "type": "number" }, "StreamOrder": { "type": "string" } }, "type": "object" }, "AWS::MediaPackage::PackagingGroup": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Authorization": { "$ref": "#/definitions/AWS::MediaPackage::PackagingGroup.Authorization" }, "EgressAccessLogs": { "$ref": "#/definitions/AWS::MediaPackage::PackagingGroup.LogConfiguration" }, "Id": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "Id" ], "type": "object" }, "Type": { "enum": [ "AWS::MediaPackage::PackagingGroup" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::MediaPackage::PackagingGroup.Authorization": { "additionalProperties": false, "properties": { "CdnIdentifierSecret": { "type": "string" }, "SecretsRoleArn": { "type": "string" } }, "required": [ "CdnIdentifierSecret", "SecretsRoleArn" ], "type": "object" }, "AWS::MediaPackage::PackagingGroup.LogConfiguration": { "additionalProperties": false, "properties": { "LogGroupName": { "type": "string" } }, "type": "object" }, "AWS::MediaStore::Container": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AccessLoggingEnabled": { "type": "boolean" }, "ContainerName": { "type": "string" }, "CorsPolicy": { "items": { "$ref": "#/definitions/AWS::MediaStore::Container.CorsRule" }, "type": "array" }, "LifecyclePolicy": { "type": "string" }, "MetricPolicy": { "$ref": "#/definitions/AWS::MediaStore::Container.MetricPolicy" }, "Policy": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "ContainerName" ], "type": "object" }, "Type": { "enum": [ "AWS::MediaStore::Container" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::MediaStore::Container.CorsRule": { "additionalProperties": false, "properties": { "AllowedHeaders": { "items": { "type": "string" }, "type": "array" }, "AllowedMethods": { "items": { "type": "string" }, "type": "array" }, "AllowedOrigins": { "items": { "type": "string" }, "type": "array" }, "ExposeHeaders": { "items": { "type": "string" }, "type": "array" }, "MaxAgeSeconds": { "type": "number" } }, "type": "object" }, "AWS::MediaStore::Container.MetricPolicy": { "additionalProperties": false, "properties": { "ContainerLevelMetrics": { "type": "string" }, "MetricPolicyRules": { "items": { "$ref": "#/definitions/AWS::MediaStore::Container.MetricPolicyRule" }, "type": "array" } }, "required": [ "ContainerLevelMetrics" ], "type": "object" }, "AWS::MediaStore::Container.MetricPolicyRule": { "additionalProperties": false, "properties": { "ObjectGroup": { "type": "string" }, "ObjectGroupName": { "type": "string" } }, "required": [ "ObjectGroup", "ObjectGroupName" ], "type": "object" }, "AWS::MediaTailor::Channel": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ChannelName": { "type": "string" }, "FillerSlate": { "$ref": "#/definitions/AWS::MediaTailor::Channel.SlateSource" }, "LogConfiguration": { "$ref": "#/definitions/AWS::MediaTailor::Channel.LogConfigurationForChannel" }, "Outputs": { "items": { "$ref": "#/definitions/AWS::MediaTailor::Channel.RequestOutputItem" }, "type": "array" }, "PlaybackMode": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "Tier": { "type": "string" } }, "required": [ "ChannelName", "Outputs", "PlaybackMode" ], "type": "object" }, "Type": { "enum": [ "AWS::MediaTailor::Channel" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::MediaTailor::Channel.DashPlaylistSettings": { "additionalProperties": false, "properties": { "ManifestWindowSeconds": { "type": "number" }, "MinBufferTimeSeconds": { "type": "number" }, "MinUpdatePeriodSeconds": { "type": "number" }, "SuggestedPresentationDelaySeconds": { "type": "number" } }, "type": "object" }, "AWS::MediaTailor::Channel.HlsPlaylistSettings": { "additionalProperties": false, "properties": { "ManifestWindowSeconds": { "type": "number" } }, "type": "object" }, "AWS::MediaTailor::Channel.LogConfigurationForChannel": { "additionalProperties": false, "properties": { "LogTypes": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::MediaTailor::Channel.RequestOutputItem": { "additionalProperties": false, "properties": { "DashPlaylistSettings": { "$ref": "#/definitions/AWS::MediaTailor::Channel.DashPlaylistSettings" }, "HlsPlaylistSettings": { "$ref": "#/definitions/AWS::MediaTailor::Channel.HlsPlaylistSettings" }, "ManifestName": { "type": "string" }, "SourceGroup": { "type": "string" } }, "required": [ "ManifestName", "SourceGroup" ], "type": "object" }, "AWS::MediaTailor::Channel.SlateSource": { "additionalProperties": false, "properties": { "SourceLocationName": { "type": "string" }, "VodSourceName": { "type": "string" } }, "type": "object" }, "AWS::MediaTailor::ChannelPolicy": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ChannelName": { "type": "string" }, "Policy": { "type": "object" } }, "required": [ "ChannelName", "Policy" ], "type": "object" }, "Type": { "enum": [ "AWS::MediaTailor::ChannelPolicy" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::MediaTailor::LiveSource": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "HttpPackageConfigurations": { "items": { "$ref": "#/definitions/AWS::MediaTailor::LiveSource.HttpPackageConfiguration" }, "type": "array" }, "LiveSourceName": { "type": "string" }, "SourceLocationName": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "HttpPackageConfigurations", "LiveSourceName", "SourceLocationName" ], "type": "object" }, "Type": { "enum": [ "AWS::MediaTailor::LiveSource" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::MediaTailor::LiveSource.HttpPackageConfiguration": { "additionalProperties": false, "properties": { "Path": { "type": "string" }, "SourceGroup": { "type": "string" }, "Type": { "type": "string" } }, "required": [ "Path", "SourceGroup", "Type" ], "type": "object" }, "AWS::MediaTailor::PlaybackConfiguration": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AdDecisionServerUrl": { "type": "string" }, "AvailSuppression": { "$ref": "#/definitions/AWS::MediaTailor::PlaybackConfiguration.AvailSuppression" }, "Bumper": { "$ref": "#/definitions/AWS::MediaTailor::PlaybackConfiguration.Bumper" }, "CdnConfiguration": { "$ref": "#/definitions/AWS::MediaTailor::PlaybackConfiguration.CdnConfiguration" }, "ConfigurationAliases": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "object" } }, "type": "object" }, "DashConfiguration": { "$ref": "#/definitions/AWS::MediaTailor::PlaybackConfiguration.DashConfiguration" }, "HlsConfiguration": { "$ref": "#/definitions/AWS::MediaTailor::PlaybackConfiguration.HlsConfiguration" }, "LivePreRollConfiguration": { "$ref": "#/definitions/AWS::MediaTailor::PlaybackConfiguration.LivePreRollConfiguration" }, "ManifestProcessingRules": { "$ref": "#/definitions/AWS::MediaTailor::PlaybackConfiguration.ManifestProcessingRules" }, "Name": { "type": "string" }, "PersonalizationThresholdSeconds": { "type": "number" }, "SlateAdUrl": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "TranscodeProfileName": { "type": "string" }, "VideoContentSourceUrl": { "type": "string" } }, "required": [ "AdDecisionServerUrl", "Name", "VideoContentSourceUrl" ], "type": "object" }, "Type": { "enum": [ "AWS::MediaTailor::PlaybackConfiguration" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::MediaTailor::PlaybackConfiguration.AdMarkerPassthrough": { "additionalProperties": false, "properties": { "Enabled": { "type": "boolean" } }, "type": "object" }, "AWS::MediaTailor::PlaybackConfiguration.AvailSuppression": { "additionalProperties": false, "properties": { "Mode": { "type": "string" }, "Value": { "type": "string" } }, "type": "object" }, "AWS::MediaTailor::PlaybackConfiguration.Bumper": { "additionalProperties": false, "properties": { "EndUrl": { "type": "string" }, "StartUrl": { "type": "string" } }, "type": "object" }, "AWS::MediaTailor::PlaybackConfiguration.CdnConfiguration": { "additionalProperties": false, "properties": { "AdSegmentUrlPrefix": { "type": "string" }, "ContentSegmentUrlPrefix": { "type": "string" } }, "type": "object" }, "AWS::MediaTailor::PlaybackConfiguration.DashConfiguration": { "additionalProperties": false, "properties": { "ManifestEndpointPrefix": { "type": "string" }, "MpdLocation": { "type": "string" }, "OriginManifestType": { "type": "string" } }, "type": "object" }, "AWS::MediaTailor::PlaybackConfiguration.HlsConfiguration": { "additionalProperties": false, "properties": { "ManifestEndpointPrefix": { "type": "string" } }, "type": "object" }, "AWS::MediaTailor::PlaybackConfiguration.LivePreRollConfiguration": { "additionalProperties": false, "properties": { "AdDecisionServerUrl": { "type": "string" }, "MaxDurationSeconds": { "type": "number" } }, "type": "object" }, "AWS::MediaTailor::PlaybackConfiguration.ManifestProcessingRules": { "additionalProperties": false, "properties": { "AdMarkerPassthrough": { "$ref": "#/definitions/AWS::MediaTailor::PlaybackConfiguration.AdMarkerPassthrough" } }, "type": "object" }, "AWS::MediaTailor::SourceLocation": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AccessConfiguration": { "$ref": "#/definitions/AWS::MediaTailor::SourceLocation.AccessConfiguration" }, "DefaultSegmentDeliveryConfiguration": { "$ref": "#/definitions/AWS::MediaTailor::SourceLocation.DefaultSegmentDeliveryConfiguration" }, "HttpConfiguration": { "$ref": "#/definitions/AWS::MediaTailor::SourceLocation.HttpConfiguration" }, "SegmentDeliveryConfigurations": { "items": { "$ref": "#/definitions/AWS::MediaTailor::SourceLocation.SegmentDeliveryConfiguration" }, "type": "array" }, "SourceLocationName": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "HttpConfiguration", "SourceLocationName" ], "type": "object" }, "Type": { "enum": [ "AWS::MediaTailor::SourceLocation" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::MediaTailor::SourceLocation.AccessConfiguration": { "additionalProperties": false, "properties": { "AccessType": { "type": "string" }, "SecretsManagerAccessTokenConfiguration": { "$ref": "#/definitions/AWS::MediaTailor::SourceLocation.SecretsManagerAccessTokenConfiguration" } }, "type": "object" }, "AWS::MediaTailor::SourceLocation.DefaultSegmentDeliveryConfiguration": { "additionalProperties": false, "properties": { "BaseUrl": { "type": "string" } }, "type": "object" }, "AWS::MediaTailor::SourceLocation.HttpConfiguration": { "additionalProperties": false, "properties": { "BaseUrl": { "type": "string" } }, "required": [ "BaseUrl" ], "type": "object" }, "AWS::MediaTailor::SourceLocation.SecretsManagerAccessTokenConfiguration": { "additionalProperties": false, "properties": { "HeaderName": { "type": "string" }, "SecretArn": { "type": "string" }, "SecretStringKey": { "type": "string" } }, "type": "object" }, "AWS::MediaTailor::SourceLocation.SegmentDeliveryConfiguration": { "additionalProperties": false, "properties": { "BaseUrl": { "type": "string" }, "Name": { "type": "string" } }, "type": "object" }, "AWS::MediaTailor::VodSource": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "HttpPackageConfigurations": { "items": { "$ref": "#/definitions/AWS::MediaTailor::VodSource.HttpPackageConfiguration" }, "type": "array" }, "SourceLocationName": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "VodSourceName": { "type": "string" } }, "required": [ "HttpPackageConfigurations", "SourceLocationName", "VodSourceName" ], "type": "object" }, "Type": { "enum": [ "AWS::MediaTailor::VodSource" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::MediaTailor::VodSource.HttpPackageConfiguration": { "additionalProperties": false, "properties": { "Path": { "type": "string" }, "SourceGroup": { "type": "string" }, "Type": { "type": "string" } }, "required": [ "Path", "SourceGroup", "Type" ], "type": "object" }, "AWS::MemoryDB::ACL": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ACLName": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "UserNames": { "items": { "type": "string" }, "type": "array" } }, "required": [ "ACLName" ], "type": "object" }, "Type": { "enum": [ "AWS::MemoryDB::ACL" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::MemoryDB::Cluster": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ACLName": { "type": "string" }, "AutoMinorVersionUpgrade": { "type": "boolean" }, "ClusterEndpoint": { "$ref": "#/definitions/AWS::MemoryDB::Cluster.Endpoint" }, "ClusterName": { "type": "string" }, "DataTiering": { "type": "string" }, "Description": { "type": "string" }, "EngineVersion": { "type": "string" }, "FinalSnapshotName": { "type": "string" }, "KmsKeyId": { "type": "string" }, "MaintenanceWindow": { "type": "string" }, "NodeType": { "type": "string" }, "NumReplicasPerShard": { "type": "number" }, "NumShards": { "type": "number" }, "ParameterGroupName": { "type": "string" }, "Port": { "type": "number" }, "SecurityGroupIds": { "items": { "type": "string" }, "type": "array" }, "SnapshotArns": { "items": { "type": "string" }, "type": "array" }, "SnapshotName": { "type": "string" }, "SnapshotRetentionLimit": { "type": "number" }, "SnapshotWindow": { "type": "string" }, "SnsTopicArn": { "type": "string" }, "SnsTopicStatus": { "type": "string" }, "SubnetGroupName": { "type": "string" }, "TLSEnabled": { "type": "boolean" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "ACLName", "ClusterName", "NodeType" ], "type": "object" }, "Type": { "enum": [ "AWS::MemoryDB::Cluster" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::MemoryDB::Cluster.Endpoint": { "additionalProperties": false, "properties": { "Address": { "type": "string" }, "Port": { "type": "number" } }, "type": "object" }, "AWS::MemoryDB::ParameterGroup": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "Family": { "type": "string" }, "ParameterGroupName": { "type": "string" }, "Parameters": { "type": "object" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "Family", "ParameterGroupName" ], "type": "object" }, "Type": { "enum": [ "AWS::MemoryDB::ParameterGroup" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::MemoryDB::SubnetGroup": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "SubnetGroupName": { "type": "string" }, "SubnetIds": { "items": { "type": "string" }, "type": "array" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "SubnetGroupName", "SubnetIds" ], "type": "object" }, "Type": { "enum": [ "AWS::MemoryDB::SubnetGroup" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::MemoryDB::User": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AccessString": { "type": "string" }, "AuthenticationMode": { "$ref": "#/definitions/AWS::MemoryDB::User.AuthenticationMode" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "UserName": { "type": "string" } }, "required": [ "UserName" ], "type": "object" }, "Type": { "enum": [ "AWS::MemoryDB::User" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::MemoryDB::User.AuthenticationMode": { "additionalProperties": false, "properties": { "Passwords": { "items": { "type": "string" }, "type": "array" }, "Type": { "type": "string" } }, "type": "object" }, "AWS::Neptune::DBCluster": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AssociatedRoles": { "items": { "$ref": "#/definitions/AWS::Neptune::DBCluster.DBClusterRole" }, "type": "array" }, "AvailabilityZones": { "items": { "type": "string" }, "type": "array" }, "BackupRetentionPeriod": { "type": "number" }, "CopyTagsToSnapshot": { "type": "boolean" }, "DBClusterIdentifier": { "type": "string" }, "DBClusterParameterGroupName": { "type": "string" }, "DBInstanceParameterGroupName": { "type": "string" }, "DBPort": { "type": "number" }, "DBSubnetGroupName": { "type": "string" }, "DeletionProtection": { "type": "boolean" }, "EnableCloudwatchLogsExports": { "items": { "type": "string" }, "type": "array" }, "EngineVersion": { "type": "string" }, "IamAuthEnabled": { "type": "boolean" }, "KmsKeyId": { "type": "string" }, "PreferredBackupWindow": { "type": "string" }, "PreferredMaintenanceWindow": { "type": "string" }, "RestoreToTime": { "type": "string" }, "RestoreType": { "type": "string" }, "ServerlessScalingConfiguration": { "$ref": "#/definitions/AWS::Neptune::DBCluster.ServerlessScalingConfiguration" }, "SnapshotIdentifier": { "type": "string" }, "SourceDBClusterIdentifier": { "type": "string" }, "StorageEncrypted": { "type": "boolean" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "UseLatestRestorableTime": { "type": "boolean" }, "VpcSecurityGroupIds": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "Type": { "enum": [ "AWS::Neptune::DBCluster" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::Neptune::DBCluster.DBClusterRole": { "additionalProperties": false, "properties": { "FeatureName": { "type": "string" }, "RoleArn": { "type": "string" } }, "required": [ "RoleArn" ], "type": "object" }, "AWS::Neptune::DBCluster.ServerlessScalingConfiguration": { "additionalProperties": false, "properties": { "MaxCapacity": { "type": "number" }, "MinCapacity": { "type": "number" } }, "required": [ "MaxCapacity", "MinCapacity" ], "type": "object" }, "AWS::Neptune::DBClusterParameterGroup": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "Family": { "type": "string" }, "Name": { "type": "string" }, "Parameters": { "type": "object" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "Description", "Family", "Parameters" ], "type": "object" }, "Type": { "enum": [ "AWS::Neptune::DBClusterParameterGroup" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Neptune::DBInstance": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AllowMajorVersionUpgrade": { "type": "boolean" }, "AutoMinorVersionUpgrade": { "type": "boolean" }, "AvailabilityZone": { "type": "string" }, "DBClusterIdentifier": { "type": "string" }, "DBInstanceClass": { "type": "string" }, "DBInstanceIdentifier": { "type": "string" }, "DBParameterGroupName": { "type": "string" }, "DBSnapshotIdentifier": { "type": "string" }, "DBSubnetGroupName": { "type": "string" }, "PreferredMaintenanceWindow": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "DBInstanceClass" ], "type": "object" }, "Type": { "enum": [ "AWS::Neptune::DBInstance" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Neptune::DBParameterGroup": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "Family": { "type": "string" }, "Name": { "type": "string" }, "Parameters": { "type": "object" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "Description", "Family", "Parameters" ], "type": "object" }, "Type": { "enum": [ "AWS::Neptune::DBParameterGroup" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Neptune::DBSubnetGroup": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "DBSubnetGroupDescription": { "type": "string" }, "DBSubnetGroupName": { "type": "string" }, "SubnetIds": { "items": { "type": "string" }, "type": "array" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "DBSubnetGroupDescription", "SubnetIds" ], "type": "object" }, "Type": { "enum": [ "AWS::Neptune::DBSubnetGroup" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::NetworkFirewall::Firewall": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "DeleteProtection": { "type": "boolean" }, "Description": { "type": "string" }, "FirewallName": { "type": "string" }, "FirewallPolicyArn": { "type": "string" }, "FirewallPolicyChangeProtection": { "type": "boolean" }, "SubnetChangeProtection": { "type": "boolean" }, "SubnetMappings": { "items": { "$ref": "#/definitions/AWS::NetworkFirewall::Firewall.SubnetMapping" }, "type": "array" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "VpcId": { "type": "string" } }, "required": [ "FirewallName", "FirewallPolicyArn", "SubnetMappings", "VpcId" ], "type": "object" }, "Type": { "enum": [ "AWS::NetworkFirewall::Firewall" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::NetworkFirewall::Firewall.SubnetMapping": { "additionalProperties": false, "properties": { "IPAddressType": { "type": "string" }, "SubnetId": { "type": "string" } }, "required": [ "SubnetId" ], "type": "object" }, "AWS::NetworkFirewall::FirewallPolicy": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "FirewallPolicy": { "$ref": "#/definitions/AWS::NetworkFirewall::FirewallPolicy.FirewallPolicy" }, "FirewallPolicyName": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "FirewallPolicy", "FirewallPolicyName" ], "type": "object" }, "Type": { "enum": [ "AWS::NetworkFirewall::FirewallPolicy" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::NetworkFirewall::FirewallPolicy.ActionDefinition": { "additionalProperties": false, "properties": { "PublishMetricAction": { "$ref": "#/definitions/AWS::NetworkFirewall::FirewallPolicy.PublishMetricAction" } }, "type": "object" }, "AWS::NetworkFirewall::FirewallPolicy.CustomAction": { "additionalProperties": false, "properties": { "ActionDefinition": { "$ref": "#/definitions/AWS::NetworkFirewall::FirewallPolicy.ActionDefinition" }, "ActionName": { "type": "string" } }, "required": [ "ActionDefinition", "ActionName" ], "type": "object" }, "AWS::NetworkFirewall::FirewallPolicy.Dimension": { "additionalProperties": false, "properties": { "Value": { "type": "string" } }, "required": [ "Value" ], "type": "object" }, "AWS::NetworkFirewall::FirewallPolicy.FirewallPolicy": { "additionalProperties": false, "properties": { "PolicyVariables": { "$ref": "#/definitions/AWS::NetworkFirewall::FirewallPolicy.PolicyVariables" }, "StatefulDefaultActions": { "items": { "type": "string" }, "type": "array" }, "StatefulEngineOptions": { "$ref": "#/definitions/AWS::NetworkFirewall::FirewallPolicy.StatefulEngineOptions" }, "StatefulRuleGroupReferences": { "items": { "$ref": "#/definitions/AWS::NetworkFirewall::FirewallPolicy.StatefulRuleGroupReference" }, "type": "array" }, "StatelessCustomActions": { "items": { "$ref": "#/definitions/AWS::NetworkFirewall::FirewallPolicy.CustomAction" }, "type": "array" }, "StatelessDefaultActions": { "items": { "type": "string" }, "type": "array" }, "StatelessFragmentDefaultActions": { "items": { "type": "string" }, "type": "array" }, "StatelessRuleGroupReferences": { "items": { "$ref": "#/definitions/AWS::NetworkFirewall::FirewallPolicy.StatelessRuleGroupReference" }, "type": "array" } }, "required": [ "StatelessDefaultActions", "StatelessFragmentDefaultActions" ], "type": "object" }, "AWS::NetworkFirewall::FirewallPolicy.IPSet": { "additionalProperties": false, "properties": { "Definition": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::NetworkFirewall::FirewallPolicy.PolicyVariables": { "additionalProperties": false, "properties": { "RuleVariables": { "additionalProperties": false, "patternProperties": { "^[a-zA-Z0-9]+$": { "$ref": "#/definitions/AWS::NetworkFirewall::FirewallPolicy.IPSet" } }, "type": "object" } }, "type": "object" }, "AWS::NetworkFirewall::FirewallPolicy.PublishMetricAction": { "additionalProperties": false, "properties": { "Dimensions": { "items": { "$ref": "#/definitions/AWS::NetworkFirewall::FirewallPolicy.Dimension" }, "type": "array" } }, "required": [ "Dimensions" ], "type": "object" }, "AWS::NetworkFirewall::FirewallPolicy.StatefulEngineOptions": { "additionalProperties": false, "properties": { "RuleOrder": { "type": "string" }, "StreamExceptionPolicy": { "type": "string" } }, "type": "object" }, "AWS::NetworkFirewall::FirewallPolicy.StatefulRuleGroupOverride": { "additionalProperties": false, "properties": { "Action": { "type": "string" } }, "type": "object" }, "AWS::NetworkFirewall::FirewallPolicy.StatefulRuleGroupReference": { "additionalProperties": false, "properties": { "Override": { "$ref": "#/definitions/AWS::NetworkFirewall::FirewallPolicy.StatefulRuleGroupOverride" }, "Priority": { "type": "number" }, "ResourceArn": { "type": "string" } }, "required": [ "ResourceArn" ], "type": "object" }, "AWS::NetworkFirewall::FirewallPolicy.StatelessRuleGroupReference": { "additionalProperties": false, "properties": { "Priority": { "type": "number" }, "ResourceArn": { "type": "string" } }, "required": [ "Priority", "ResourceArn" ], "type": "object" }, "AWS::NetworkFirewall::LoggingConfiguration": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "FirewallArn": { "type": "string" }, "FirewallName": { "type": "string" }, "LoggingConfiguration": { "$ref": "#/definitions/AWS::NetworkFirewall::LoggingConfiguration.LoggingConfiguration" } }, "required": [ "FirewallArn", "LoggingConfiguration" ], "type": "object" }, "Type": { "enum": [ "AWS::NetworkFirewall::LoggingConfiguration" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::NetworkFirewall::LoggingConfiguration.LogDestinationConfig": { "additionalProperties": false, "properties": { "LogDestination": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" }, "LogDestinationType": { "type": "string" }, "LogType": { "type": "string" } }, "required": [ "LogDestination", "LogDestinationType", "LogType" ], "type": "object" }, "AWS::NetworkFirewall::LoggingConfiguration.LoggingConfiguration": { "additionalProperties": false, "properties": { "LogDestinationConfigs": { "items": { "$ref": "#/definitions/AWS::NetworkFirewall::LoggingConfiguration.LogDestinationConfig" }, "type": "array" } }, "required": [ "LogDestinationConfigs" ], "type": "object" }, "AWS::NetworkFirewall::RuleGroup": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Capacity": { "type": "number" }, "Description": { "type": "string" }, "RuleGroup": { "$ref": "#/definitions/AWS::NetworkFirewall::RuleGroup.RuleGroup" }, "RuleGroupName": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "Type": { "type": "string" } }, "required": [ "Capacity", "RuleGroupName", "Type" ], "type": "object" }, "Type": { "enum": [ "AWS::NetworkFirewall::RuleGroup" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::NetworkFirewall::RuleGroup.ActionDefinition": { "additionalProperties": false, "properties": { "PublishMetricAction": { "$ref": "#/definitions/AWS::NetworkFirewall::RuleGroup.PublishMetricAction" } }, "type": "object" }, "AWS::NetworkFirewall::RuleGroup.Address": { "additionalProperties": false, "properties": { "AddressDefinition": { "type": "string" } }, "required": [ "AddressDefinition" ], "type": "object" }, "AWS::NetworkFirewall::RuleGroup.CustomAction": { "additionalProperties": false, "properties": { "ActionDefinition": { "$ref": "#/definitions/AWS::NetworkFirewall::RuleGroup.ActionDefinition" }, "ActionName": { "type": "string" } }, "required": [ "ActionDefinition", "ActionName" ], "type": "object" }, "AWS::NetworkFirewall::RuleGroup.Dimension": { "additionalProperties": false, "properties": { "Value": { "type": "string" } }, "required": [ "Value" ], "type": "object" }, "AWS::NetworkFirewall::RuleGroup.Header": { "additionalProperties": false, "properties": { "Destination": { "type": "string" }, "DestinationPort": { "type": "string" }, "Direction": { "type": "string" }, "Protocol": { "type": "string" }, "Source": { "type": "string" }, "SourcePort": { "type": "string" } }, "required": [ "Destination", "DestinationPort", "Direction", "Protocol", "Source", "SourcePort" ], "type": "object" }, "AWS::NetworkFirewall::RuleGroup.IPSet": { "additionalProperties": false, "properties": { "Definition": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::NetworkFirewall::RuleGroup.IPSetReference": { "additionalProperties": false, "properties": { "ReferenceArn": { "type": "string" } }, "type": "object" }, "AWS::NetworkFirewall::RuleGroup.MatchAttributes": { "additionalProperties": false, "properties": { "DestinationPorts": { "items": { "$ref": "#/definitions/AWS::NetworkFirewall::RuleGroup.PortRange" }, "type": "array" }, "Destinations": { "items": { "$ref": "#/definitions/AWS::NetworkFirewall::RuleGroup.Address" }, "type": "array" }, "Protocols": { "items": { "type": "number" }, "type": "array" }, "SourcePorts": { "items": { "$ref": "#/definitions/AWS::NetworkFirewall::RuleGroup.PortRange" }, "type": "array" }, "Sources": { "items": { "$ref": "#/definitions/AWS::NetworkFirewall::RuleGroup.Address" }, "type": "array" }, "TCPFlags": { "items": { "$ref": "#/definitions/AWS::NetworkFirewall::RuleGroup.TCPFlagField" }, "type": "array" } }, "type": "object" }, "AWS::NetworkFirewall::RuleGroup.PortRange": { "additionalProperties": false, "properties": { "FromPort": { "type": "number" }, "ToPort": { "type": "number" } }, "required": [ "FromPort", "ToPort" ], "type": "object" }, "AWS::NetworkFirewall::RuleGroup.PortSet": { "additionalProperties": false, "properties": { "Definition": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::NetworkFirewall::RuleGroup.PublishMetricAction": { "additionalProperties": false, "properties": { "Dimensions": { "items": { "$ref": "#/definitions/AWS::NetworkFirewall::RuleGroup.Dimension" }, "type": "array" } }, "required": [ "Dimensions" ], "type": "object" }, "AWS::NetworkFirewall::RuleGroup.ReferenceSets": { "additionalProperties": false, "properties": { "IPSetReferences": { "additionalProperties": false, "patternProperties": { "^[a-zA-Z0-9]+$": { "$ref": "#/definitions/AWS::NetworkFirewall::RuleGroup.IPSetReference" } }, "type": "object" } }, "type": "object" }, "AWS::NetworkFirewall::RuleGroup.RuleDefinition": { "additionalProperties": false, "properties": { "Actions": { "items": { "type": "string" }, "type": "array" }, "MatchAttributes": { "$ref": "#/definitions/AWS::NetworkFirewall::RuleGroup.MatchAttributes" } }, "required": [ "Actions", "MatchAttributes" ], "type": "object" }, "AWS::NetworkFirewall::RuleGroup.RuleGroup": { "additionalProperties": false, "properties": { "ReferenceSets": { "$ref": "#/definitions/AWS::NetworkFirewall::RuleGroup.ReferenceSets" }, "RuleVariables": { "$ref": "#/definitions/AWS::NetworkFirewall::RuleGroup.RuleVariables" }, "RulesSource": { "$ref": "#/definitions/AWS::NetworkFirewall::RuleGroup.RulesSource" }, "StatefulRuleOptions": { "$ref": "#/definitions/AWS::NetworkFirewall::RuleGroup.StatefulRuleOptions" } }, "required": [ "RulesSource" ], "type": "object" }, "AWS::NetworkFirewall::RuleGroup.RuleOption": { "additionalProperties": false, "properties": { "Keyword": { "type": "string" }, "Settings": { "items": { "type": "string" }, "type": "array" } }, "required": [ "Keyword" ], "type": "object" }, "AWS::NetworkFirewall::RuleGroup.RuleVariables": { "additionalProperties": false, "properties": { "IPSets": { "additionalProperties": false, "patternProperties": { "^[a-zA-Z0-9]+$": { "$ref": "#/definitions/AWS::NetworkFirewall::RuleGroup.IPSet" } }, "type": "object" }, "PortSets": { "additionalProperties": false, "patternProperties": { "^[a-zA-Z0-9]+$": { "$ref": "#/definitions/AWS::NetworkFirewall::RuleGroup.PortSet" } }, "type": "object" } }, "type": "object" }, "AWS::NetworkFirewall::RuleGroup.RulesSource": { "additionalProperties": false, "properties": { "RulesSourceList": { "$ref": "#/definitions/AWS::NetworkFirewall::RuleGroup.RulesSourceList" }, "RulesString": { "type": "string" }, "StatefulRules": { "items": { "$ref": "#/definitions/AWS::NetworkFirewall::RuleGroup.StatefulRule" }, "type": "array" }, "StatelessRulesAndCustomActions": { "$ref": "#/definitions/AWS::NetworkFirewall::RuleGroup.StatelessRulesAndCustomActions" } }, "type": "object" }, "AWS::NetworkFirewall::RuleGroup.RulesSourceList": { "additionalProperties": false, "properties": { "GeneratedRulesType": { "type": "string" }, "TargetTypes": { "items": { "type": "string" }, "type": "array" }, "Targets": { "items": { "type": "string" }, "type": "array" } }, "required": [ "GeneratedRulesType", "TargetTypes", "Targets" ], "type": "object" }, "AWS::NetworkFirewall::RuleGroup.StatefulRule": { "additionalProperties": false, "properties": { "Action": { "type": "string" }, "Header": { "$ref": "#/definitions/AWS::NetworkFirewall::RuleGroup.Header" }, "RuleOptions": { "items": { "$ref": "#/definitions/AWS::NetworkFirewall::RuleGroup.RuleOption" }, "type": "array" } }, "required": [ "Action", "Header", "RuleOptions" ], "type": "object" }, "AWS::NetworkFirewall::RuleGroup.StatefulRuleOptions": { "additionalProperties": false, "properties": { "RuleOrder": { "type": "string" } }, "type": "object" }, "AWS::NetworkFirewall::RuleGroup.StatelessRule": { "additionalProperties": false, "properties": { "Priority": { "type": "number" }, "RuleDefinition": { "$ref": "#/definitions/AWS::NetworkFirewall::RuleGroup.RuleDefinition" } }, "required": [ "Priority", "RuleDefinition" ], "type": "object" }, "AWS::NetworkFirewall::RuleGroup.StatelessRulesAndCustomActions": { "additionalProperties": false, "properties": { "CustomActions": { "items": { "$ref": "#/definitions/AWS::NetworkFirewall::RuleGroup.CustomAction" }, "type": "array" }, "StatelessRules": { "items": { "$ref": "#/definitions/AWS::NetworkFirewall::RuleGroup.StatelessRule" }, "type": "array" } }, "required": [ "StatelessRules" ], "type": "object" }, "AWS::NetworkFirewall::RuleGroup.TCPFlagField": { "additionalProperties": false, "properties": { "Flags": { "items": { "type": "string" }, "type": "array" }, "Masks": { "items": { "type": "string" }, "type": "array" } }, "required": [ "Flags" ], "type": "object" }, "AWS::NetworkManager::ConnectAttachment": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "CoreNetworkId": { "type": "string" }, "EdgeLocation": { "type": "string" }, "Options": { "$ref": "#/definitions/AWS::NetworkManager::ConnectAttachment.ConnectAttachmentOptions" }, "ProposedSegmentChange": { "$ref": "#/definitions/AWS::NetworkManager::ConnectAttachment.ProposedSegmentChange" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "TransportAttachmentId": { "type": "string" } }, "required": [ "CoreNetworkId", "EdgeLocation", "Options", "TransportAttachmentId" ], "type": "object" }, "Type": { "enum": [ "AWS::NetworkManager::ConnectAttachment" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::NetworkManager::ConnectAttachment.ConnectAttachmentOptions": { "additionalProperties": false, "properties": { "Protocol": { "type": "string" } }, "type": "object" }, "AWS::NetworkManager::ConnectAttachment.ProposedSegmentChange": { "additionalProperties": false, "properties": { "AttachmentPolicyRuleNumber": { "type": "number" }, "SegmentName": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "type": "object" }, "AWS::NetworkManager::ConnectPeer": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "BgpOptions": { "$ref": "#/definitions/AWS::NetworkManager::ConnectPeer.BgpOptions" }, "ConnectAttachmentId": { "type": "string" }, "CoreNetworkAddress": { "type": "string" }, "InsideCidrBlocks": { "items": { "type": "string" }, "type": "array" }, "PeerAddress": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "ConnectAttachmentId", "PeerAddress" ], "type": "object" }, "Type": { "enum": [ "AWS::NetworkManager::ConnectPeer" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::NetworkManager::ConnectPeer.BgpOptions": { "additionalProperties": false, "properties": { "PeerAsn": { "type": "number" } }, "type": "object" }, "AWS::NetworkManager::ConnectPeer.ConnectPeerBgpConfiguration": { "additionalProperties": false, "properties": { "CoreNetworkAddress": { "type": "string" }, "CoreNetworkAsn": { "type": "number" }, "PeerAddress": { "type": "string" }, "PeerAsn": { "type": "number" } }, "type": "object" }, "AWS::NetworkManager::ConnectPeer.ConnectPeerConfiguration": { "additionalProperties": false, "properties": { "BgpConfigurations": { "items": { "$ref": "#/definitions/AWS::NetworkManager::ConnectPeer.ConnectPeerBgpConfiguration" }, "type": "array" }, "CoreNetworkAddress": { "type": "string" }, "InsideCidrBlocks": { "items": { "type": "string" }, "type": "array" }, "PeerAddress": { "type": "string" }, "Protocol": { "type": "string" } }, "type": "object" }, "AWS::NetworkManager::CoreNetwork": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "GlobalNetworkId": { "type": "string" }, "PolicyDocument": { "type": "object" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "GlobalNetworkId" ], "type": "object" }, "Type": { "enum": [ "AWS::NetworkManager::CoreNetwork" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::NetworkManager::CoreNetwork.CoreNetworkEdge": { "additionalProperties": false, "properties": { "Asn": { "type": "number" }, "EdgeLocation": { "type": "string" }, "InsideCidrBlocks": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::NetworkManager::CoreNetwork.CoreNetworkSegment": { "additionalProperties": false, "properties": { "EdgeLocations": { "items": { "type": "string" }, "type": "array" }, "Name": { "type": "string" }, "SharedSegments": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::NetworkManager::CustomerGatewayAssociation": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "CustomerGatewayArn": { "type": "string" }, "DeviceId": { "type": "string" }, "GlobalNetworkId": { "type": "string" }, "LinkId": { "type": "string" } }, "required": [ "CustomerGatewayArn", "DeviceId", "GlobalNetworkId" ], "type": "object" }, "Type": { "enum": [ "AWS::NetworkManager::CustomerGatewayAssociation" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::NetworkManager::Device": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AWSLocation": { "$ref": "#/definitions/AWS::NetworkManager::Device.AWSLocation" }, "Description": { "type": "string" }, "GlobalNetworkId": { "type": "string" }, "Location": { "$ref": "#/definitions/AWS::NetworkManager::Device.Location" }, "Model": { "type": "string" }, "SerialNumber": { "type": "string" }, "SiteId": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "Type": { "type": "string" }, "Vendor": { "type": "string" } }, "required": [ "GlobalNetworkId" ], "type": "object" }, "Type": { "enum": [ "AWS::NetworkManager::Device" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::NetworkManager::Device.AWSLocation": { "additionalProperties": false, "properties": { "SubnetArn": { "type": "string" }, "Zone": { "type": "string" } }, "type": "object" }, "AWS::NetworkManager::Device.Location": { "additionalProperties": false, "properties": { "Address": { "type": "string" }, "Latitude": { "type": "string" }, "Longitude": { "type": "string" } }, "type": "object" }, "AWS::NetworkManager::GlobalNetwork": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "type": "object" }, "Type": { "enum": [ "AWS::NetworkManager::GlobalNetwork" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::NetworkManager::Link": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Bandwidth": { "$ref": "#/definitions/AWS::NetworkManager::Link.Bandwidth" }, "Description": { "type": "string" }, "GlobalNetworkId": { "type": "string" }, "Provider": { "type": "string" }, "SiteId": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "Type": { "type": "string" } }, "required": [ "Bandwidth", "GlobalNetworkId", "SiteId" ], "type": "object" }, "Type": { "enum": [ "AWS::NetworkManager::Link" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::NetworkManager::Link.Bandwidth": { "additionalProperties": false, "properties": { "DownloadSpeed": { "type": "number" }, "UploadSpeed": { "type": "number" } }, "type": "object" }, "AWS::NetworkManager::LinkAssociation": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "DeviceId": { "type": "string" }, "GlobalNetworkId": { "type": "string" }, "LinkId": { "type": "string" } }, "required": [ "DeviceId", "GlobalNetworkId", "LinkId" ], "type": "object" }, "Type": { "enum": [ "AWS::NetworkManager::LinkAssociation" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::NetworkManager::Site": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "GlobalNetworkId": { "type": "string" }, "Location": { "$ref": "#/definitions/AWS::NetworkManager::Site.Location" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "GlobalNetworkId" ], "type": "object" }, "Type": { "enum": [ "AWS::NetworkManager::Site" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::NetworkManager::Site.Location": { "additionalProperties": false, "properties": { "Address": { "type": "string" }, "Latitude": { "type": "string" }, "Longitude": { "type": "string" } }, "type": "object" }, "AWS::NetworkManager::SiteToSiteVpnAttachment": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "CoreNetworkId": { "type": "string" }, "ProposedSegmentChange": { "$ref": "#/definitions/AWS::NetworkManager::SiteToSiteVpnAttachment.ProposedSegmentChange" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "VpnConnectionArn": { "type": "string" } }, "required": [ "CoreNetworkId", "VpnConnectionArn" ], "type": "object" }, "Type": { "enum": [ "AWS::NetworkManager::SiteToSiteVpnAttachment" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::NetworkManager::SiteToSiteVpnAttachment.ProposedSegmentChange": { "additionalProperties": false, "properties": { "AttachmentPolicyRuleNumber": { "type": "number" }, "SegmentName": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "type": "object" }, "AWS::NetworkManager::TransitGatewayPeering": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "CoreNetworkId": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "TransitGatewayArn": { "type": "string" } }, "required": [ "CoreNetworkId", "TransitGatewayArn" ], "type": "object" }, "Type": { "enum": [ "AWS::NetworkManager::TransitGatewayPeering" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::NetworkManager::TransitGatewayRegistration": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "GlobalNetworkId": { "type": "string" }, "TransitGatewayArn": { "type": "string" } }, "required": [ "GlobalNetworkId", "TransitGatewayArn" ], "type": "object" }, "Type": { "enum": [ "AWS::NetworkManager::TransitGatewayRegistration" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::NetworkManager::TransitGatewayRouteTableAttachment": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "PeeringId": { "type": "string" }, "ProposedSegmentChange": { "$ref": "#/definitions/AWS::NetworkManager::TransitGatewayRouteTableAttachment.ProposedSegmentChange" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "TransitGatewayRouteTableArn": { "type": "string" } }, "required": [ "PeeringId", "TransitGatewayRouteTableArn" ], "type": "object" }, "Type": { "enum": [ "AWS::NetworkManager::TransitGatewayRouteTableAttachment" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::NetworkManager::TransitGatewayRouteTableAttachment.ProposedSegmentChange": { "additionalProperties": false, "properties": { "AttachmentPolicyRuleNumber": { "type": "number" }, "SegmentName": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "type": "object" }, "AWS::NetworkManager::VpcAttachment": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "CoreNetworkId": { "type": "string" }, "Options": { "$ref": "#/definitions/AWS::NetworkManager::VpcAttachment.VpcOptions" }, "ProposedSegmentChange": { "$ref": "#/definitions/AWS::NetworkManager::VpcAttachment.ProposedSegmentChange" }, "SubnetArns": { "items": { "type": "string" }, "type": "array" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "VpcArn": { "type": "string" } }, "required": [ "CoreNetworkId", "SubnetArns", "VpcArn" ], "type": "object" }, "Type": { "enum": [ "AWS::NetworkManager::VpcAttachment" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::NetworkManager::VpcAttachment.ProposedSegmentChange": { "additionalProperties": false, "properties": { "AttachmentPolicyRuleNumber": { "type": "number" }, "SegmentName": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "type": "object" }, "AWS::NetworkManager::VpcAttachment.VpcOptions": { "additionalProperties": false, "properties": { "ApplianceModeSupport": { "type": "boolean" }, "Ipv6Support": { "type": "boolean" } }, "type": "object" }, "AWS::NimbleStudio::LaunchProfile": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "Ec2SubnetIds": { "items": { "type": "string" }, "type": "array" }, "LaunchProfileProtocolVersions": { "items": { "type": "string" }, "type": "array" }, "Name": { "type": "string" }, "StreamConfiguration": { "$ref": "#/definitions/AWS::NimbleStudio::LaunchProfile.StreamConfiguration" }, "StudioComponentIds": { "items": { "type": "string" }, "type": "array" }, "StudioId": { "type": "string" }, "Tags": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" } }, "required": [ "Ec2SubnetIds", "LaunchProfileProtocolVersions", "Name", "StreamConfiguration", "StudioComponentIds", "StudioId" ], "type": "object" }, "Type": { "enum": [ "AWS::NimbleStudio::LaunchProfile" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::NimbleStudio::LaunchProfile.StreamConfiguration": { "additionalProperties": false, "properties": { "AutomaticTerminationMode": { "type": "string" }, "ClipboardMode": { "type": "string" }, "Ec2InstanceTypes": { "items": { "type": "string" }, "type": "array" }, "MaxSessionLengthInMinutes": { "type": "number" }, "MaxStoppedSessionLengthInMinutes": { "type": "number" }, "SessionBackup": { "$ref": "#/definitions/AWS::NimbleStudio::LaunchProfile.StreamConfigurationSessionBackup" }, "SessionPersistenceMode": { "type": "string" }, "SessionStorage": { "$ref": "#/definitions/AWS::NimbleStudio::LaunchProfile.StreamConfigurationSessionStorage" }, "StreamingImageIds": { "items": { "type": "string" }, "type": "array" }, "VolumeConfiguration": { "$ref": "#/definitions/AWS::NimbleStudio::LaunchProfile.VolumeConfiguration" } }, "required": [ "ClipboardMode", "Ec2InstanceTypes", "StreamingImageIds" ], "type": "object" }, "AWS::NimbleStudio::LaunchProfile.StreamConfigurationSessionBackup": { "additionalProperties": false, "properties": { "MaxBackupsToRetain": { "type": "number" }, "Mode": { "type": "string" } }, "type": "object" }, "AWS::NimbleStudio::LaunchProfile.StreamConfigurationSessionStorage": { "additionalProperties": false, "properties": { "Mode": { "items": { "type": "string" }, "type": "array" }, "Root": { "$ref": "#/definitions/AWS::NimbleStudio::LaunchProfile.StreamingSessionStorageRoot" } }, "required": [ "Mode" ], "type": "object" }, "AWS::NimbleStudio::LaunchProfile.StreamingSessionStorageRoot": { "additionalProperties": false, "properties": { "Linux": { "type": "string" }, "Windows": { "type": "string" } }, "type": "object" }, "AWS::NimbleStudio::LaunchProfile.VolumeConfiguration": { "additionalProperties": false, "properties": { "Iops": { "type": "number" }, "Size": { "type": "number" }, "Throughput": { "type": "number" } }, "type": "object" }, "AWS::NimbleStudio::StreamingImage": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "Ec2ImageId": { "type": "string" }, "Name": { "type": "string" }, "StudioId": { "type": "string" }, "Tags": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" } }, "required": [ "Ec2ImageId", "Name", "StudioId" ], "type": "object" }, "Type": { "enum": [ "AWS::NimbleStudio::StreamingImage" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::NimbleStudio::StreamingImage.StreamingImageEncryptionConfiguration": { "additionalProperties": false, "properties": { "KeyArn": { "type": "string" }, "KeyType": { "type": "string" } }, "required": [ "KeyType" ], "type": "object" }, "AWS::NimbleStudio::Studio": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AdminRoleArn": { "type": "string" }, "DisplayName": { "type": "string" }, "StudioEncryptionConfiguration": { "$ref": "#/definitions/AWS::NimbleStudio::Studio.StudioEncryptionConfiguration" }, "StudioName": { "type": "string" }, "Tags": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" }, "UserRoleArn": { "type": "string" } }, "required": [ "AdminRoleArn", "DisplayName", "StudioName", "UserRoleArn" ], "type": "object" }, "Type": { "enum": [ "AWS::NimbleStudio::Studio" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::NimbleStudio::Studio.StudioEncryptionConfiguration": { "additionalProperties": false, "properties": { "KeyArn": { "type": "string" }, "KeyType": { "type": "string" } }, "required": [ "KeyType" ], "type": "object" }, "AWS::NimbleStudio::StudioComponent": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Configuration": { "$ref": "#/definitions/AWS::NimbleStudio::StudioComponent.StudioComponentConfiguration" }, "Description": { "type": "string" }, "Ec2SecurityGroupIds": { "items": { "type": "string" }, "type": "array" }, "InitializationScripts": { "items": { "$ref": "#/definitions/AWS::NimbleStudio::StudioComponent.StudioComponentInitializationScript" }, "type": "array" }, "Name": { "type": "string" }, "ScriptParameters": { "items": { "$ref": "#/definitions/AWS::NimbleStudio::StudioComponent.ScriptParameterKeyValue" }, "type": "array" }, "StudioId": { "type": "string" }, "Subtype": { "type": "string" }, "Tags": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" }, "Type": { "type": "string" } }, "required": [ "Name", "StudioId", "Type" ], "type": "object" }, "Type": { "enum": [ "AWS::NimbleStudio::StudioComponent" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::NimbleStudio::StudioComponent.ActiveDirectoryComputerAttribute": { "additionalProperties": false, "properties": { "Name": { "type": "string" }, "Value": { "type": "string" } }, "type": "object" }, "AWS::NimbleStudio::StudioComponent.ActiveDirectoryConfiguration": { "additionalProperties": false, "properties": { "ComputerAttributes": { "items": { "$ref": "#/definitions/AWS::NimbleStudio::StudioComponent.ActiveDirectoryComputerAttribute" }, "type": "array" }, "DirectoryId": { "type": "string" }, "OrganizationalUnitDistinguishedName": { "type": "string" } }, "type": "object" }, "AWS::NimbleStudio::StudioComponent.ComputeFarmConfiguration": { "additionalProperties": false, "properties": { "ActiveDirectoryUser": { "type": "string" }, "Endpoint": { "type": "string" } }, "type": "object" }, "AWS::NimbleStudio::StudioComponent.LicenseServiceConfiguration": { "additionalProperties": false, "properties": { "Endpoint": { "type": "string" } }, "type": "object" }, "AWS::NimbleStudio::StudioComponent.ScriptParameterKeyValue": { "additionalProperties": false, "properties": { "Key": { "type": "string" }, "Value": { "type": "string" } }, "type": "object" }, "AWS::NimbleStudio::StudioComponent.SharedFileSystemConfiguration": { "additionalProperties": false, "properties": { "Endpoint": { "type": "string" }, "FileSystemId": { "type": "string" }, "LinuxMountPoint": { "type": "string" }, "ShareName": { "type": "string" }, "WindowsMountDrive": { "type": "string" } }, "type": "object" }, "AWS::NimbleStudio::StudioComponent.StudioComponentConfiguration": { "additionalProperties": false, "properties": { "ActiveDirectoryConfiguration": { "$ref": "#/definitions/AWS::NimbleStudio::StudioComponent.ActiveDirectoryConfiguration" }, "ComputeFarmConfiguration": { "$ref": "#/definitions/AWS::NimbleStudio::StudioComponent.ComputeFarmConfiguration" }, "LicenseServiceConfiguration": { "$ref": "#/definitions/AWS::NimbleStudio::StudioComponent.LicenseServiceConfiguration" }, "SharedFileSystemConfiguration": { "$ref": "#/definitions/AWS::NimbleStudio::StudioComponent.SharedFileSystemConfiguration" } }, "type": "object" }, "AWS::NimbleStudio::StudioComponent.StudioComponentInitializationScript": { "additionalProperties": false, "properties": { "LaunchProfileProtocolVersion": { "type": "string" }, "Platform": { "type": "string" }, "RunContext": { "type": "string" }, "Script": { "type": "string" } }, "type": "object" }, "AWS::OSIS::Pipeline": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "LogPublishingOptions": { "$ref": "#/definitions/AWS::OSIS::Pipeline.LogPublishingOptions" }, "MaxUnits": { "type": "number" }, "MinUnits": { "type": "number" }, "PipelineConfigurationBody": { "type": "string" }, "PipelineName": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "VpcOptions": { "$ref": "#/definitions/AWS::OSIS::Pipeline.VpcOptions" } }, "required": [ "MaxUnits", "MinUnits", "PipelineConfigurationBody", "PipelineName" ], "type": "object" }, "Type": { "enum": [ "AWS::OSIS::Pipeline" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::OSIS::Pipeline.CloudWatchLogDestination": { "additionalProperties": false, "properties": { "LogGroup": { "type": "string" } }, "type": "object" }, "AWS::OSIS::Pipeline.LogPublishingOptions": { "additionalProperties": false, "properties": { "CloudWatchLogDestination": { "$ref": "#/definitions/AWS::OSIS::Pipeline.CloudWatchLogDestination" }, "IsLoggingEnabled": { "type": "boolean" } }, "type": "object" }, "AWS::OSIS::Pipeline.VpcEndpoint": { "additionalProperties": false, "properties": { "VpcEndpointId": { "type": "string" }, "VpcId": { "type": "string" }, "VpcOptions": { "$ref": "#/definitions/AWS::OSIS::Pipeline.VpcOptions" } }, "type": "object" }, "AWS::OSIS::Pipeline.VpcOptions": { "additionalProperties": false, "properties": { "SecurityGroupIds": { "items": { "type": "string" }, "type": "array" }, "SubnetIds": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::Oam::Link": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "LabelTemplate": { "type": "string" }, "ResourceTypes": { "items": { "type": "string" }, "type": "array" }, "SinkIdentifier": { "type": "string" }, "Tags": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" } }, "required": [ "ResourceTypes", "SinkIdentifier" ], "type": "object" }, "Type": { "enum": [ "AWS::Oam::Link" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Oam::Sink": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Name": { "type": "string" }, "Policy": { "type": "object" }, "Tags": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" } }, "required": [ "Name" ], "type": "object" }, "Type": { "enum": [ "AWS::Oam::Sink" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Omics::AnnotationStore": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "Name": { "type": "string" }, "Reference": { "$ref": "#/definitions/AWS::Omics::AnnotationStore.ReferenceItem" }, "SseConfig": { "$ref": "#/definitions/AWS::Omics::AnnotationStore.SseConfig" }, "StoreFormat": { "type": "string" }, "StoreOptions": { "$ref": "#/definitions/AWS::Omics::AnnotationStore.StoreOptions" }, "Tags": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" } }, "required": [ "Name", "StoreFormat" ], "type": "object" }, "Type": { "enum": [ "AWS::Omics::AnnotationStore" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Omics::AnnotationStore.ReferenceItem": { "additionalProperties": false, "properties": { "ReferenceArn": { "type": "string" } }, "required": [ "ReferenceArn" ], "type": "object" }, "AWS::Omics::AnnotationStore.SseConfig": { "additionalProperties": false, "properties": { "KeyArn": { "type": "string" }, "Type": { "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::Omics::AnnotationStore.StoreOptions": { "additionalProperties": false, "properties": { "TsvStoreOptions": { "$ref": "#/definitions/AWS::Omics::AnnotationStore.TsvStoreOptions" } }, "required": [ "TsvStoreOptions" ], "type": "object" }, "AWS::Omics::AnnotationStore.TsvStoreOptions": { "additionalProperties": false, "properties": { "AnnotationType": { "type": "string" }, "FormatToHeader": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" }, "Schema": { "type": "object" } }, "type": "object" }, "AWS::Omics::ReferenceStore": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "Name": { "type": "string" }, "SseConfig": { "$ref": "#/definitions/AWS::Omics::ReferenceStore.SseConfig" }, "Tags": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" } }, "required": [ "Name" ], "type": "object" }, "Type": { "enum": [ "AWS::Omics::ReferenceStore" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Omics::ReferenceStore.SseConfig": { "additionalProperties": false, "properties": { "KeyArn": { "type": "string" }, "Type": { "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::Omics::RunGroup": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "MaxCpus": { "type": "number" }, "MaxDuration": { "type": "number" }, "MaxGpus": { "type": "number" }, "MaxRuns": { "type": "number" }, "Name": { "type": "string" }, "Tags": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" } }, "type": "object" }, "Type": { "enum": [ "AWS::Omics::RunGroup" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::Omics::SequenceStore": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "FallbackLocation": { "type": "string" }, "Name": { "type": "string" }, "SseConfig": { "$ref": "#/definitions/AWS::Omics::SequenceStore.SseConfig" }, "Tags": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" } }, "required": [ "Name" ], "type": "object" }, "Type": { "enum": [ "AWS::Omics::SequenceStore" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Omics::SequenceStore.SseConfig": { "additionalProperties": false, "properties": { "KeyArn": { "type": "string" }, "Type": { "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::Omics::VariantStore": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "Name": { "type": "string" }, "Reference": { "$ref": "#/definitions/AWS::Omics::VariantStore.ReferenceItem" }, "SseConfig": { "$ref": "#/definitions/AWS::Omics::VariantStore.SseConfig" }, "Tags": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" } }, "required": [ "Name", "Reference" ], "type": "object" }, "Type": { "enum": [ "AWS::Omics::VariantStore" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Omics::VariantStore.ReferenceItem": { "additionalProperties": false, "properties": { "ReferenceArn": { "type": "string" } }, "required": [ "ReferenceArn" ], "type": "object" }, "AWS::Omics::VariantStore.SseConfig": { "additionalProperties": false, "properties": { "KeyArn": { "type": "string" }, "Type": { "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::Omics::Workflow": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Accelerators": { "type": "string" }, "DefinitionUri": { "type": "string" }, "Description": { "type": "string" }, "Engine": { "type": "string" }, "Main": { "type": "string" }, "Name": { "type": "string" }, "ParameterTemplate": { "additionalProperties": false, "patternProperties": { "^[a-zA-Z0-9]+$": { "$ref": "#/definitions/AWS::Omics::Workflow.WorkflowParameter" } }, "type": "object" }, "StorageCapacity": { "type": "number" }, "Tags": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" } }, "type": "object" }, "Type": { "enum": [ "AWS::Omics::Workflow" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::Omics::Workflow.WorkflowParameter": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "Optional": { "type": "boolean" } }, "type": "object" }, "AWS::OpenSearchServerless::AccessPolicy": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "Name": { "type": "string" }, "Policy": { "type": "string" }, "Type": { "type": "string" } }, "required": [ "Name", "Policy", "Type" ], "type": "object" }, "Type": { "enum": [ "AWS::OpenSearchServerless::AccessPolicy" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::OpenSearchServerless::Collection": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "Name": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "Type": { "type": "string" } }, "required": [ "Name" ], "type": "object" }, "Type": { "enum": [ "AWS::OpenSearchServerless::Collection" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::OpenSearchServerless::SecurityConfig": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "Name": { "type": "string" }, "SamlOptions": { "$ref": "#/definitions/AWS::OpenSearchServerless::SecurityConfig.SamlConfigOptions" }, "Type": { "type": "string" } }, "type": "object" }, "Type": { "enum": [ "AWS::OpenSearchServerless::SecurityConfig" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::OpenSearchServerless::SecurityConfig.SamlConfigOptions": { "additionalProperties": false, "properties": { "GroupAttribute": { "type": "string" }, "Metadata": { "type": "string" }, "SessionTimeout": { "type": "number" }, "UserAttribute": { "type": "string" } }, "required": [ "Metadata" ], "type": "object" }, "AWS::OpenSearchServerless::SecurityPolicy": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "Name": { "type": "string" }, "Policy": { "type": "string" }, "Type": { "type": "string" } }, "required": [ "Name", "Policy", "Type" ], "type": "object" }, "Type": { "enum": [ "AWS::OpenSearchServerless::SecurityPolicy" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::OpenSearchServerless::VpcEndpoint": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Name": { "type": "string" }, "SecurityGroupIds": { "items": { "type": "string" }, "type": "array" }, "SubnetIds": { "items": { "type": "string" }, "type": "array" }, "VpcId": { "type": "string" } }, "required": [ "Name", "SubnetIds", "VpcId" ], "type": "object" }, "Type": { "enum": [ "AWS::OpenSearchServerless::VpcEndpoint" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::OpenSearchService::Domain": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AccessPolicies": { "type": "object" }, "AdvancedOptions": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" }, "AdvancedSecurityOptions": { "$ref": "#/definitions/AWS::OpenSearchService::Domain.AdvancedSecurityOptionsInput" }, "ClusterConfig": { "$ref": "#/definitions/AWS::OpenSearchService::Domain.ClusterConfig" }, "CognitoOptions": { "$ref": "#/definitions/AWS::OpenSearchService::Domain.CognitoOptions" }, "DomainEndpointOptions": { "$ref": "#/definitions/AWS::OpenSearchService::Domain.DomainEndpointOptions" }, "DomainName": { "type": "string" }, "EBSOptions": { "$ref": "#/definitions/AWS::OpenSearchService::Domain.EBSOptions" }, "EncryptionAtRestOptions": { "$ref": "#/definitions/AWS::OpenSearchService::Domain.EncryptionAtRestOptions" }, "EngineVersion": { "type": "string" }, "LogPublishingOptions": { "additionalProperties": false, "patternProperties": { "^[a-zA-Z0-9]+$": { "$ref": "#/definitions/AWS::OpenSearchService::Domain.LogPublishingOption" } }, "type": "object" }, "NodeToNodeEncryptionOptions": { "$ref": "#/definitions/AWS::OpenSearchService::Domain.NodeToNodeEncryptionOptions" }, "OffPeakWindowOptions": { "$ref": "#/definitions/AWS::OpenSearchService::Domain.OffPeakWindowOptions" }, "SnapshotOptions": { "$ref": "#/definitions/AWS::OpenSearchService::Domain.SnapshotOptions" }, "SoftwareUpdateOptions": { "$ref": "#/definitions/AWS::OpenSearchService::Domain.SoftwareUpdateOptions" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "VPCOptions": { "$ref": "#/definitions/AWS::OpenSearchService::Domain.VPCOptions" } }, "type": "object" }, "Type": { "enum": [ "AWS::OpenSearchService::Domain" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::OpenSearchService::Domain.AdvancedSecurityOptionsInput": { "additionalProperties": false, "properties": { "AnonymousAuthDisableDate": { "type": "string" }, "AnonymousAuthEnabled": { "type": "boolean" }, "Enabled": { "type": "boolean" }, "InternalUserDatabaseEnabled": { "type": "boolean" }, "MasterUserOptions": { "$ref": "#/definitions/AWS::OpenSearchService::Domain.MasterUserOptions" }, "SAMLOptions": { "$ref": "#/definitions/AWS::OpenSearchService::Domain.SAMLOptions" } }, "type": "object" }, "AWS::OpenSearchService::Domain.ClusterConfig": { "additionalProperties": false, "properties": { "DedicatedMasterCount": { "type": "number" }, "DedicatedMasterEnabled": { "type": "boolean" }, "DedicatedMasterType": { "type": "string" }, "InstanceCount": { "type": "number" }, "InstanceType": { "type": "string" }, "MultiAZWithStandbyEnabled": { "type": "boolean" }, "WarmCount": { "type": "number" }, "WarmEnabled": { "type": "boolean" }, "WarmType": { "type": "string" }, "ZoneAwarenessConfig": { "$ref": "#/definitions/AWS::OpenSearchService::Domain.ZoneAwarenessConfig" }, "ZoneAwarenessEnabled": { "type": "boolean" } }, "type": "object" }, "AWS::OpenSearchService::Domain.CognitoOptions": { "additionalProperties": false, "properties": { "Enabled": { "type": "boolean" }, "IdentityPoolId": { "type": "string" }, "RoleArn": { "type": "string" }, "UserPoolId": { "type": "string" } }, "type": "object" }, "AWS::OpenSearchService::Domain.DomainEndpointOptions": { "additionalProperties": false, "properties": { "CustomEndpoint": { "type": "string" }, "CustomEndpointCertificateArn": { "type": "string" }, "CustomEndpointEnabled": { "type": "boolean" }, "EnforceHTTPS": { "type": "boolean" }, "TLSSecurityPolicy": { "type": "string" } }, "type": "object" }, "AWS::OpenSearchService::Domain.EBSOptions": { "additionalProperties": false, "properties": { "EBSEnabled": { "type": "boolean" }, "Iops": { "type": "number" }, "Throughput": { "type": "number" }, "VolumeSize": { "type": "number" }, "VolumeType": { "type": "string" } }, "type": "object" }, "AWS::OpenSearchService::Domain.EncryptionAtRestOptions": { "additionalProperties": false, "properties": { "Enabled": { "type": "boolean" }, "KmsKeyId": { "type": "string" } }, "type": "object" }, "AWS::OpenSearchService::Domain.Idp": { "additionalProperties": false, "properties": { "EntityId": { "type": "string" }, "MetadataContent": { "type": "string" } }, "required": [ "EntityId", "MetadataContent" ], "type": "object" }, "AWS::OpenSearchService::Domain.LogPublishingOption": { "additionalProperties": false, "properties": { "CloudWatchLogsLogGroupArn": { "type": "string" }, "Enabled": { "type": "boolean" } }, "type": "object" }, "AWS::OpenSearchService::Domain.MasterUserOptions": { "additionalProperties": false, "properties": { "MasterUserARN": { "type": "string" }, "MasterUserName": { "type": "string" }, "MasterUserPassword": { "type": "string" } }, "type": "object" }, "AWS::OpenSearchService::Domain.NodeToNodeEncryptionOptions": { "additionalProperties": false, "properties": { "Enabled": { "type": "boolean" } }, "type": "object" }, "AWS::OpenSearchService::Domain.OffPeakWindow": { "additionalProperties": false, "properties": { "WindowStartTime": { "$ref": "#/definitions/AWS::OpenSearchService::Domain.WindowStartTime" } }, "type": "object" }, "AWS::OpenSearchService::Domain.OffPeakWindowOptions": { "additionalProperties": false, "properties": { "Enabled": { "type": "boolean" }, "OffPeakWindow": { "$ref": "#/definitions/AWS::OpenSearchService::Domain.OffPeakWindow" } }, "type": "object" }, "AWS::OpenSearchService::Domain.SAMLOptions": { "additionalProperties": false, "properties": { "Enabled": { "type": "boolean" }, "Idp": { "$ref": "#/definitions/AWS::OpenSearchService::Domain.Idp" }, "MasterBackendRole": { "type": "string" }, "MasterUserName": { "type": "string" }, "RolesKey": { "type": "string" }, "SessionTimeoutMinutes": { "type": "number" }, "SubjectKey": { "type": "string" } }, "type": "object" }, "AWS::OpenSearchService::Domain.ServiceSoftwareOptions": { "additionalProperties": false, "properties": { "AutomatedUpdateDate": { "type": "string" }, "Cancellable": { "type": "boolean" }, "CurrentVersion": { "type": "string" }, "Description": { "type": "string" }, "NewVersion": { "type": "string" }, "OptionalDeployment": { "type": "boolean" }, "UpdateAvailable": { "type": "boolean" }, "UpdateStatus": { "type": "string" } }, "type": "object" }, "AWS::OpenSearchService::Domain.SnapshotOptions": { "additionalProperties": false, "properties": { "AutomatedSnapshotStartHour": { "type": "number" } }, "type": "object" }, "AWS::OpenSearchService::Domain.SoftwareUpdateOptions": { "additionalProperties": false, "properties": { "AutoSoftwareUpdateEnabled": { "type": "boolean" } }, "type": "object" }, "AWS::OpenSearchService::Domain.VPCOptions": { "additionalProperties": false, "properties": { "SecurityGroupIds": { "items": { "type": "string" }, "type": "array" }, "SubnetIds": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::OpenSearchService::Domain.WindowStartTime": { "additionalProperties": false, "properties": { "Hours": { "type": "number" }, "Minutes": { "type": "number" } }, "required": [ "Hours", "Minutes" ], "type": "object" }, "AWS::OpenSearchService::Domain.ZoneAwarenessConfig": { "additionalProperties": false, "properties": { "AvailabilityZoneCount": { "type": "number" } }, "type": "object" }, "AWS::OpsWorks::App": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AppSource": { "$ref": "#/definitions/AWS::OpsWorks::App.Source" }, "Attributes": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" }, "DataSources": { "items": { "$ref": "#/definitions/AWS::OpsWorks::App.DataSource" }, "type": "array" }, "Description": { "type": "string" }, "Domains": { "items": { "type": "string" }, "type": "array" }, "EnableSsl": { "type": "boolean" }, "Environment": { "items": { "$ref": "#/definitions/AWS::OpsWorks::App.EnvironmentVariable" }, "type": "array" }, "Name": { "type": "string" }, "Shortname": { "type": "string" }, "SslConfiguration": { "$ref": "#/definitions/AWS::OpsWorks::App.SslConfiguration" }, "StackId": { "type": "string" }, "Type": { "type": "string" } }, "required": [ "Name", "StackId", "Type" ], "type": "object" }, "Type": { "enum": [ "AWS::OpsWorks::App" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::OpsWorks::App.DataSource": { "additionalProperties": false, "properties": { "Arn": { "type": "string" }, "DatabaseName": { "type": "string" }, "Type": { "type": "string" } }, "type": "object" }, "AWS::OpsWorks::App.EnvironmentVariable": { "additionalProperties": false, "properties": { "Key": { "type": "string" }, "Secure": { "type": "boolean" }, "Value": { "type": "string" } }, "required": [ "Key", "Value" ], "type": "object" }, "AWS::OpsWorks::App.Source": { "additionalProperties": false, "properties": { "Password": { "type": "string" }, "Revision": { "type": "string" }, "SshKey": { "type": "string" }, "Type": { "type": "string" }, "Url": { "type": "string" }, "Username": { "type": "string" } }, "type": "object" }, "AWS::OpsWorks::App.SslConfiguration": { "additionalProperties": false, "properties": { "Certificate": { "type": "string" }, "Chain": { "type": "string" }, "PrivateKey": { "type": "string" } }, "type": "object" }, "AWS::OpsWorks::ElasticLoadBalancerAttachment": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ElasticLoadBalancerName": { "type": "string" }, "LayerId": { "type": "string" } }, "required": [ "ElasticLoadBalancerName", "LayerId" ], "type": "object" }, "Type": { "enum": [ "AWS::OpsWorks::ElasticLoadBalancerAttachment" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::OpsWorks::Instance": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AgentVersion": { "type": "string" }, "AmiId": { "type": "string" }, "Architecture": { "type": "string" }, "AutoScalingType": { "type": "string" }, "AvailabilityZone": { "type": "string" }, "BlockDeviceMappings": { "items": { "$ref": "#/definitions/AWS::OpsWorks::Instance.BlockDeviceMapping" }, "type": "array" }, "EbsOptimized": { "type": "boolean" }, "ElasticIps": { "items": { "type": "string" }, "type": "array" }, "Hostname": { "type": "string" }, "InstallUpdatesOnBoot": { "type": "boolean" }, "InstanceType": { "type": "string" }, "LayerIds": { "items": { "type": "string" }, "type": "array" }, "Os": { "type": "string" }, "RootDeviceType": { "type": "string" }, "SshKeyName": { "type": "string" }, "StackId": { "type": "string" }, "SubnetId": { "type": "string" }, "Tenancy": { "type": "string" }, "TimeBasedAutoScaling": { "$ref": "#/definitions/AWS::OpsWorks::Instance.TimeBasedAutoScaling" }, "VirtualizationType": { "type": "string" }, "Volumes": { "items": { "type": "string" }, "type": "array" } }, "required": [ "InstanceType", "LayerIds", "StackId" ], "type": "object" }, "Type": { "enum": [ "AWS::OpsWorks::Instance" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::OpsWorks::Instance.BlockDeviceMapping": { "additionalProperties": false, "properties": { "DeviceName": { "type": "string" }, "Ebs": { "$ref": "#/definitions/AWS::OpsWorks::Instance.EbsBlockDevice" }, "NoDevice": { "type": "string" }, "VirtualName": { "type": "string" } }, "type": "object" }, "AWS::OpsWorks::Instance.EbsBlockDevice": { "additionalProperties": false, "properties": { "DeleteOnTermination": { "type": "boolean" }, "Iops": { "type": "number" }, "SnapshotId": { "type": "string" }, "VolumeSize": { "type": "number" }, "VolumeType": { "type": "string" } }, "type": "object" }, "AWS::OpsWorks::Instance.TimeBasedAutoScaling": { "additionalProperties": false, "properties": { "Friday": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" }, "Monday": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" }, "Saturday": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" }, "Sunday": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" }, "Thursday": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" }, "Tuesday": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" }, "Wednesday": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" } }, "type": "object" }, "AWS::OpsWorks::Layer": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Attributes": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" }, "AutoAssignElasticIps": { "type": "boolean" }, "AutoAssignPublicIps": { "type": "boolean" }, "CustomInstanceProfileArn": { "type": "string" }, "CustomJson": { "type": "object" }, "CustomRecipes": { "$ref": "#/definitions/AWS::OpsWorks::Layer.Recipes" }, "CustomSecurityGroupIds": { "items": { "type": "string" }, "type": "array" }, "EnableAutoHealing": { "type": "boolean" }, "InstallUpdatesOnBoot": { "type": "boolean" }, "LifecycleEventConfiguration": { "$ref": "#/definitions/AWS::OpsWorks::Layer.LifecycleEventConfiguration" }, "LoadBasedAutoScaling": { "$ref": "#/definitions/AWS::OpsWorks::Layer.LoadBasedAutoScaling" }, "Name": { "type": "string" }, "Packages": { "items": { "type": "string" }, "type": "array" }, "Shortname": { "type": "string" }, "StackId": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "Type": { "type": "string" }, "UseEbsOptimizedInstances": { "type": "boolean" }, "VolumeConfigurations": { "items": { "$ref": "#/definitions/AWS::OpsWorks::Layer.VolumeConfiguration" }, "type": "array" } }, "required": [ "AutoAssignElasticIps", "AutoAssignPublicIps", "EnableAutoHealing", "Name", "Shortname", "StackId", "Type" ], "type": "object" }, "Type": { "enum": [ "AWS::OpsWorks::Layer" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::OpsWorks::Layer.AutoScalingThresholds": { "additionalProperties": false, "properties": { "CpuThreshold": { "type": "number" }, "IgnoreMetricsTime": { "type": "number" }, "InstanceCount": { "type": "number" }, "LoadThreshold": { "type": "number" }, "MemoryThreshold": { "type": "number" }, "ThresholdsWaitTime": { "type": "number" } }, "type": "object" }, "AWS::OpsWorks::Layer.LifecycleEventConfiguration": { "additionalProperties": false, "properties": { "ShutdownEventConfiguration": { "$ref": "#/definitions/AWS::OpsWorks::Layer.ShutdownEventConfiguration" } }, "type": "object" }, "AWS::OpsWorks::Layer.LoadBasedAutoScaling": { "additionalProperties": false, "properties": { "DownScaling": { "$ref": "#/definitions/AWS::OpsWorks::Layer.AutoScalingThresholds" }, "Enable": { "type": "boolean" }, "UpScaling": { "$ref": "#/definitions/AWS::OpsWorks::Layer.AutoScalingThresholds" } }, "type": "object" }, "AWS::OpsWorks::Layer.Recipes": { "additionalProperties": false, "properties": { "Configure": { "items": { "type": "string" }, "type": "array" }, "Deploy": { "items": { "type": "string" }, "type": "array" }, "Setup": { "items": { "type": "string" }, "type": "array" }, "Shutdown": { "items": { "type": "string" }, "type": "array" }, "Undeploy": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::OpsWorks::Layer.ShutdownEventConfiguration": { "additionalProperties": false, "properties": { "DelayUntilElbConnectionsDrained": { "type": "boolean" }, "ExecutionTimeout": { "type": "number" } }, "type": "object" }, "AWS::OpsWorks::Layer.VolumeConfiguration": { "additionalProperties": false, "properties": { "Encrypted": { "type": "boolean" }, "Iops": { "type": "number" }, "MountPoint": { "type": "string" }, "NumberOfDisks": { "type": "number" }, "RaidLevel": { "type": "number" }, "Size": { "type": "number" }, "VolumeType": { "type": "string" } }, "type": "object" }, "AWS::OpsWorks::Stack": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AgentVersion": { "type": "string" }, "Attributes": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" }, "ChefConfiguration": { "$ref": "#/definitions/AWS::OpsWorks::Stack.ChefConfiguration" }, "CloneAppIds": { "items": { "type": "string" }, "type": "array" }, "ClonePermissions": { "type": "boolean" }, "ConfigurationManager": { "$ref": "#/definitions/AWS::OpsWorks::Stack.StackConfigurationManager" }, "CustomCookbooksSource": { "$ref": "#/definitions/AWS::OpsWorks::Stack.Source" }, "CustomJson": { "type": "object" }, "DefaultAvailabilityZone": { "type": "string" }, "DefaultInstanceProfileArn": { "type": "string" }, "DefaultOs": { "type": "string" }, "DefaultRootDeviceType": { "type": "string" }, "DefaultSshKeyName": { "type": "string" }, "DefaultSubnetId": { "type": "string" }, "EcsClusterArn": { "type": "string" }, "ElasticIps": { "items": { "$ref": "#/definitions/AWS::OpsWorks::Stack.ElasticIp" }, "type": "array" }, "HostnameTheme": { "type": "string" }, "Name": { "type": "string" }, "RdsDbInstances": { "items": { "$ref": "#/definitions/AWS::OpsWorks::Stack.RdsDbInstance" }, "type": "array" }, "ServiceRoleArn": { "type": "string" }, "SourceStackId": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "UseCustomCookbooks": { "type": "boolean" }, "UseOpsworksSecurityGroups": { "type": "boolean" }, "VpcId": { "type": "string" } }, "required": [ "DefaultInstanceProfileArn", "Name", "ServiceRoleArn" ], "type": "object" }, "Type": { "enum": [ "AWS::OpsWorks::Stack" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::OpsWorks::Stack.ChefConfiguration": { "additionalProperties": false, "properties": { "BerkshelfVersion": { "type": "string" }, "ManageBerkshelf": { "type": "boolean" } }, "type": "object" }, "AWS::OpsWorks::Stack.ElasticIp": { "additionalProperties": false, "properties": { "Ip": { "type": "string" }, "Name": { "type": "string" } }, "required": [ "Ip" ], "type": "object" }, "AWS::OpsWorks::Stack.RdsDbInstance": { "additionalProperties": false, "properties": { "DbPassword": { "type": "string" }, "DbUser": { "type": "string" }, "RdsDbInstanceArn": { "type": "string" } }, "required": [ "DbPassword", "DbUser", "RdsDbInstanceArn" ], "type": "object" }, "AWS::OpsWorks::Stack.Source": { "additionalProperties": false, "properties": { "Password": { "type": "string" }, "Revision": { "type": "string" }, "SshKey": { "type": "string" }, "Type": { "type": "string" }, "Url": { "type": "string" }, "Username": { "type": "string" } }, "type": "object" }, "AWS::OpsWorks::Stack.StackConfigurationManager": { "additionalProperties": false, "properties": { "Name": { "type": "string" }, "Version": { "type": "string" } }, "type": "object" }, "AWS::OpsWorks::UserProfile": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AllowSelfManagement": { "type": "boolean" }, "IamUserArn": { "type": "string" }, "SshPublicKey": { "type": "string" }, "SshUsername": { "type": "string" } }, "required": [ "IamUserArn" ], "type": "object" }, "Type": { "enum": [ "AWS::OpsWorks::UserProfile" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::OpsWorks::Volume": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Ec2VolumeId": { "type": "string" }, "MountPoint": { "type": "string" }, "Name": { "type": "string" }, "StackId": { "type": "string" } }, "required": [ "Ec2VolumeId", "StackId" ], "type": "object" }, "Type": { "enum": [ "AWS::OpsWorks::Volume" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::OpsWorksCM::Server": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AssociatePublicIpAddress": { "type": "boolean" }, "BackupId": { "type": "string" }, "BackupRetentionCount": { "type": "number" }, "CustomCertificate": { "type": "string" }, "CustomDomain": { "type": "string" }, "CustomPrivateKey": { "type": "string" }, "DisableAutomatedBackup": { "type": "boolean" }, "Engine": { "type": "string" }, "EngineAttributes": { "items": { "$ref": "#/definitions/AWS::OpsWorksCM::Server.EngineAttribute" }, "type": "array" }, "EngineModel": { "type": "string" }, "EngineVersion": { "type": "string" }, "InstanceProfileArn": { "type": "string" }, "InstanceType": { "type": "string" }, "KeyPair": { "type": "string" }, "PreferredBackupWindow": { "type": "string" }, "PreferredMaintenanceWindow": { "type": "string" }, "SecurityGroupIds": { "items": { "type": "string" }, "type": "array" }, "ServiceRoleArn": { "type": "string" }, "SubnetIds": { "items": { "type": "string" }, "type": "array" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "InstanceProfileArn", "InstanceType", "ServiceRoleArn" ], "type": "object" }, "Type": { "enum": [ "AWS::OpsWorksCM::Server" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::OpsWorksCM::Server.EngineAttribute": { "additionalProperties": false, "properties": { "Name": { "type": "string" }, "Value": { "type": "string" } }, "type": "object" }, "AWS::Organizations::Account": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AccountName": { "type": "string" }, "Email": { "type": "string" }, "ParentIds": { "items": { "type": "string" }, "type": "array" }, "RoleName": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "AccountName", "Email" ], "type": "object" }, "Type": { "enum": [ "AWS::Organizations::Account" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Organizations::Organization": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "FeatureSet": { "type": "string" } }, "type": "object" }, "Type": { "enum": [ "AWS::Organizations::Organization" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::Organizations::OrganizationalUnit": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Name": { "type": "string" }, "ParentId": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "Name", "ParentId" ], "type": "object" }, "Type": { "enum": [ "AWS::Organizations::OrganizationalUnit" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Organizations::Policy": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Content": { "type": "object" }, "Description": { "type": "string" }, "Name": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "TargetIds": { "items": { "type": "string" }, "type": "array" }, "Type": { "type": "string" } }, "required": [ "Content", "Name", "Type" ], "type": "object" }, "Type": { "enum": [ "AWS::Organizations::Policy" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Organizations::ResourcePolicy": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Content": { "type": "object" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "Content" ], "type": "object" }, "Type": { "enum": [ "AWS::Organizations::ResourcePolicy" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Panorama::ApplicationInstance": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ApplicationInstanceIdToReplace": { "type": "string" }, "DefaultRuntimeContextDevice": { "type": "string" }, "Description": { "type": "string" }, "ManifestOverridesPayload": { "$ref": "#/definitions/AWS::Panorama::ApplicationInstance.ManifestOverridesPayload" }, "ManifestPayload": { "$ref": "#/definitions/AWS::Panorama::ApplicationInstance.ManifestPayload" }, "Name": { "type": "string" }, "RuntimeRoleArn": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "DefaultRuntimeContextDevice", "ManifestPayload" ], "type": "object" }, "Type": { "enum": [ "AWS::Panorama::ApplicationInstance" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Panorama::ApplicationInstance.ManifestOverridesPayload": { "additionalProperties": false, "properties": { "PayloadData": { "type": "string" } }, "type": "object" }, "AWS::Panorama::ApplicationInstance.ManifestPayload": { "additionalProperties": false, "properties": { "PayloadData": { "type": "string" } }, "type": "object" }, "AWS::Panorama::Package": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "PackageName": { "type": "string" }, "StorageLocation": { "$ref": "#/definitions/AWS::Panorama::Package.StorageLocation" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "PackageName" ], "type": "object" }, "Type": { "enum": [ "AWS::Panorama::Package" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Panorama::Package.StorageLocation": { "additionalProperties": false, "properties": { "BinaryPrefixLocation": { "type": "string" }, "Bucket": { "type": "string" }, "GeneratedPrefixLocation": { "type": "string" }, "ManifestPrefixLocation": { "type": "string" }, "RepoPrefixLocation": { "type": "string" } }, "type": "object" }, "AWS::Panorama::PackageVersion": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "MarkLatest": { "type": "boolean" }, "OwnerAccount": { "type": "string" }, "PackageId": { "type": "string" }, "PackageVersion": { "type": "string" }, "PatchVersion": { "type": "string" }, "UpdatedLatestPatchVersion": { "type": "string" } }, "required": [ "PackageId", "PackageVersion", "PatchVersion" ], "type": "object" }, "Type": { "enum": [ "AWS::Panorama::PackageVersion" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Personalize::Dataset": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "DatasetGroupArn": { "type": "string" }, "DatasetImportJob": { "$ref": "#/definitions/AWS::Personalize::Dataset.DatasetImportJob" }, "DatasetType": { "type": "string" }, "Name": { "type": "string" }, "SchemaArn": { "type": "string" } }, "required": [ "DatasetGroupArn", "DatasetType", "Name", "SchemaArn" ], "type": "object" }, "Type": { "enum": [ "AWS::Personalize::Dataset" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Personalize::Dataset.DataSource": { "additionalProperties": false, "properties": { "DataLocation": { "type": "string" } }, "type": "object" }, "AWS::Personalize::Dataset.DatasetImportJob": { "additionalProperties": false, "properties": { "DataSource": { "$ref": "#/definitions/AWS::Personalize::Dataset.DataSource" }, "DatasetArn": { "type": "string" }, "DatasetImportJobArn": { "type": "string" }, "JobName": { "type": "string" }, "RoleArn": { "type": "string" } }, "type": "object" }, "AWS::Personalize::DatasetGroup": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Domain": { "type": "string" }, "KmsKeyArn": { "type": "string" }, "Name": { "type": "string" }, "RoleArn": { "type": "string" } }, "required": [ "Name" ], "type": "object" }, "Type": { "enum": [ "AWS::Personalize::DatasetGroup" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Personalize::Schema": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Domain": { "type": "string" }, "Name": { "type": "string" }, "Schema": { "type": "string" } }, "required": [ "Name", "Schema" ], "type": "object" }, "Type": { "enum": [ "AWS::Personalize::Schema" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Personalize::Solution": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "DatasetGroupArn": { "type": "string" }, "EventType": { "type": "string" }, "Name": { "type": "string" }, "PerformAutoML": { "type": "boolean" }, "PerformHPO": { "type": "boolean" }, "RecipeArn": { "type": "string" }, "SolutionConfig": { "$ref": "#/definitions/AWS::Personalize::Solution.SolutionConfig" } }, "required": [ "DatasetGroupArn", "Name" ], "type": "object" }, "Type": { "enum": [ "AWS::Personalize::Solution" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Personalize::Solution.AlgorithmHyperParameterRanges": { "additionalProperties": false, "properties": { "CategoricalHyperParameterRanges": { "items": { "$ref": "#/definitions/AWS::Personalize::Solution.CategoricalHyperParameterRange" }, "type": "array" }, "ContinuousHyperParameterRanges": { "items": { "$ref": "#/definitions/AWS::Personalize::Solution.ContinuousHyperParameterRange" }, "type": "array" }, "IntegerHyperParameterRanges": { "items": { "$ref": "#/definitions/AWS::Personalize::Solution.IntegerHyperParameterRange" }, "type": "array" } }, "type": "object" }, "AWS::Personalize::Solution.AutoMLConfig": { "additionalProperties": false, "properties": { "MetricName": { "type": "string" }, "RecipeList": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::Personalize::Solution.CategoricalHyperParameterRange": { "additionalProperties": false, "properties": { "Name": { "type": "string" }, "Values": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::Personalize::Solution.ContinuousHyperParameterRange": { "additionalProperties": false, "properties": { "MaxValue": { "type": "number" }, "MinValue": { "type": "number" }, "Name": { "type": "string" } }, "type": "object" }, "AWS::Personalize::Solution.HpoConfig": { "additionalProperties": false, "properties": { "AlgorithmHyperParameterRanges": { "$ref": "#/definitions/AWS::Personalize::Solution.AlgorithmHyperParameterRanges" }, "HpoObjective": { "$ref": "#/definitions/AWS::Personalize::Solution.HpoObjective" }, "HpoResourceConfig": { "$ref": "#/definitions/AWS::Personalize::Solution.HpoResourceConfig" } }, "type": "object" }, "AWS::Personalize::Solution.HpoObjective": { "additionalProperties": false, "properties": { "MetricName": { "type": "string" }, "MetricRegex": { "type": "string" }, "Type": { "type": "string" } }, "type": "object" }, "AWS::Personalize::Solution.HpoResourceConfig": { "additionalProperties": false, "properties": { "MaxNumberOfTrainingJobs": { "type": "string" }, "MaxParallelTrainingJobs": { "type": "string" } }, "type": "object" }, "AWS::Personalize::Solution.IntegerHyperParameterRange": { "additionalProperties": false, "properties": { "MaxValue": { "type": "number" }, "MinValue": { "type": "number" }, "Name": { "type": "string" } }, "type": "object" }, "AWS::Personalize::Solution.SolutionConfig": { "additionalProperties": false, "properties": { "AlgorithmHyperParameters": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" }, "AutoMLConfig": { "$ref": "#/definitions/AWS::Personalize::Solution.AutoMLConfig" }, "EventValueThreshold": { "type": "string" }, "FeatureTransformationParameters": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" }, "HpoConfig": { "$ref": "#/definitions/AWS::Personalize::Solution.HpoConfig" } }, "type": "object" }, "AWS::Pinpoint::ADMChannel": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ApplicationId": { "type": "string" }, "ClientId": { "type": "string" }, "ClientSecret": { "type": "string" }, "Enabled": { "type": "boolean" } }, "required": [ "ApplicationId", "ClientId", "ClientSecret" ], "type": "object" }, "Type": { "enum": [ "AWS::Pinpoint::ADMChannel" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Pinpoint::APNSChannel": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ApplicationId": { "type": "string" }, "BundleId": { "type": "string" }, "Certificate": { "type": "string" }, "DefaultAuthenticationMethod": { "type": "string" }, "Enabled": { "type": "boolean" }, "PrivateKey": { "type": "string" }, "TeamId": { "type": "string" }, "TokenKey": { "type": "string" }, "TokenKeyId": { "type": "string" } }, "required": [ "ApplicationId" ], "type": "object" }, "Type": { "enum": [ "AWS::Pinpoint::APNSChannel" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Pinpoint::APNSSandboxChannel": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ApplicationId": { "type": "string" }, "BundleId": { "type": "string" }, "Certificate": { "type": "string" }, "DefaultAuthenticationMethod": { "type": "string" }, "Enabled": { "type": "boolean" }, "PrivateKey": { "type": "string" }, "TeamId": { "type": "string" }, "TokenKey": { "type": "string" }, "TokenKeyId": { "type": "string" } }, "required": [ "ApplicationId" ], "type": "object" }, "Type": { "enum": [ "AWS::Pinpoint::APNSSandboxChannel" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Pinpoint::APNSVoipChannel": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ApplicationId": { "type": "string" }, "BundleId": { "type": "string" }, "Certificate": { "type": "string" }, "DefaultAuthenticationMethod": { "type": "string" }, "Enabled": { "type": "boolean" }, "PrivateKey": { "type": "string" }, "TeamId": { "type": "string" }, "TokenKey": { "type": "string" }, "TokenKeyId": { "type": "string" } }, "required": [ "ApplicationId" ], "type": "object" }, "Type": { "enum": [ "AWS::Pinpoint::APNSVoipChannel" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Pinpoint::APNSVoipSandboxChannel": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ApplicationId": { "type": "string" }, "BundleId": { "type": "string" }, "Certificate": { "type": "string" }, "DefaultAuthenticationMethod": { "type": "string" }, "Enabled": { "type": "boolean" }, "PrivateKey": { "type": "string" }, "TeamId": { "type": "string" }, "TokenKey": { "type": "string" }, "TokenKeyId": { "type": "string" } }, "required": [ "ApplicationId" ], "type": "object" }, "Type": { "enum": [ "AWS::Pinpoint::APNSVoipSandboxChannel" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Pinpoint::App": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Name": { "type": "string" }, "Tags": { "type": "object" } }, "required": [ "Name" ], "type": "object" }, "Type": { "enum": [ "AWS::Pinpoint::App" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Pinpoint::ApplicationSettings": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ApplicationId": { "type": "string" }, "CampaignHook": { "$ref": "#/definitions/AWS::Pinpoint::ApplicationSettings.CampaignHook" }, "CloudWatchMetricsEnabled": { "type": "boolean" }, "Limits": { "$ref": "#/definitions/AWS::Pinpoint::ApplicationSettings.Limits" }, "QuietTime": { "$ref": "#/definitions/AWS::Pinpoint::ApplicationSettings.QuietTime" } }, "required": [ "ApplicationId" ], "type": "object" }, "Type": { "enum": [ "AWS::Pinpoint::ApplicationSettings" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Pinpoint::ApplicationSettings.CampaignHook": { "additionalProperties": false, "properties": { "LambdaFunctionName": { "type": "string" }, "Mode": { "type": "string" }, "WebUrl": { "type": "string" } }, "type": "object" }, "AWS::Pinpoint::ApplicationSettings.Limits": { "additionalProperties": false, "properties": { "Daily": { "type": "number" }, "MaximumDuration": { "type": "number" }, "MessagesPerSecond": { "type": "number" }, "Total": { "type": "number" } }, "type": "object" }, "AWS::Pinpoint::ApplicationSettings.QuietTime": { "additionalProperties": false, "properties": { "End": { "type": "string" }, "Start": { "type": "string" } }, "required": [ "End", "Start" ], "type": "object" }, "AWS::Pinpoint::BaiduChannel": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ApiKey": { "type": "string" }, "ApplicationId": { "type": "string" }, "Enabled": { "type": "boolean" }, "SecretKey": { "type": "string" } }, "required": [ "ApiKey", "ApplicationId", "SecretKey" ], "type": "object" }, "Type": { "enum": [ "AWS::Pinpoint::BaiduChannel" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Pinpoint::Campaign": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AdditionalTreatments": { "items": { "$ref": "#/definitions/AWS::Pinpoint::Campaign.WriteTreatmentResource" }, "type": "array" }, "ApplicationId": { "type": "string" }, "CampaignHook": { "$ref": "#/definitions/AWS::Pinpoint::Campaign.CampaignHook" }, "CustomDeliveryConfiguration": { "$ref": "#/definitions/AWS::Pinpoint::Campaign.CustomDeliveryConfiguration" }, "Description": { "type": "string" }, "HoldoutPercent": { "type": "number" }, "IsPaused": { "type": "boolean" }, "Limits": { "$ref": "#/definitions/AWS::Pinpoint::Campaign.Limits" }, "MessageConfiguration": { "$ref": "#/definitions/AWS::Pinpoint::Campaign.MessageConfiguration" }, "Name": { "type": "string" }, "Priority": { "type": "number" }, "Schedule": { "$ref": "#/definitions/AWS::Pinpoint::Campaign.Schedule" }, "SegmentId": { "type": "string" }, "SegmentVersion": { "type": "number" }, "Tags": { "type": "object" }, "TemplateConfiguration": { "$ref": "#/definitions/AWS::Pinpoint::Campaign.TemplateConfiguration" }, "TreatmentDescription": { "type": "string" }, "TreatmentName": { "type": "string" } }, "required": [ "ApplicationId", "Name", "Schedule", "SegmentId" ], "type": "object" }, "Type": { "enum": [ "AWS::Pinpoint::Campaign" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Pinpoint::Campaign.AttributeDimension": { "additionalProperties": false, "properties": { "AttributeType": { "type": "string" }, "Values": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::Pinpoint::Campaign.CampaignCustomMessage": { "additionalProperties": false, "properties": { "Data": { "type": "string" } }, "type": "object" }, "AWS::Pinpoint::Campaign.CampaignEmailMessage": { "additionalProperties": false, "properties": { "Body": { "type": "string" }, "FromAddress": { "type": "string" }, "HtmlBody": { "type": "string" }, "Title": { "type": "string" } }, "type": "object" }, "AWS::Pinpoint::Campaign.CampaignEventFilter": { "additionalProperties": false, "properties": { "Dimensions": { "$ref": "#/definitions/AWS::Pinpoint::Campaign.EventDimensions" }, "FilterType": { "type": "string" } }, "type": "object" }, "AWS::Pinpoint::Campaign.CampaignHook": { "additionalProperties": false, "properties": { "LambdaFunctionName": { "type": "string" }, "Mode": { "type": "string" }, "WebUrl": { "type": "string" } }, "type": "object" }, "AWS::Pinpoint::Campaign.CampaignInAppMessage": { "additionalProperties": false, "properties": { "Content": { "items": { "$ref": "#/definitions/AWS::Pinpoint::Campaign.InAppMessageContent" }, "type": "array" }, "CustomConfig": { "type": "object" }, "Layout": { "type": "string" } }, "type": "object" }, "AWS::Pinpoint::Campaign.CampaignSmsMessage": { "additionalProperties": false, "properties": { "Body": { "type": "string" }, "EntityId": { "type": "string" }, "MessageType": { "type": "string" }, "OriginationNumber": { "type": "string" }, "SenderId": { "type": "string" }, "TemplateId": { "type": "string" } }, "type": "object" }, "AWS::Pinpoint::Campaign.CustomDeliveryConfiguration": { "additionalProperties": false, "properties": { "DeliveryUri": { "type": "string" }, "EndpointTypes": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::Pinpoint::Campaign.DefaultButtonConfiguration": { "additionalProperties": false, "properties": { "BackgroundColor": { "type": "string" }, "BorderRadius": { "type": "number" }, "ButtonAction": { "type": "string" }, "Link": { "type": "string" }, "Text": { "type": "string" }, "TextColor": { "type": "string" } }, "type": "object" }, "AWS::Pinpoint::Campaign.EventDimensions": { "additionalProperties": false, "properties": { "Attributes": { "type": "object" }, "EventType": { "$ref": "#/definitions/AWS::Pinpoint::Campaign.SetDimension" }, "Metrics": { "type": "object" } }, "type": "object" }, "AWS::Pinpoint::Campaign.InAppMessageBodyConfig": { "additionalProperties": false, "properties": { "Alignment": { "type": "string" }, "Body": { "type": "string" }, "TextColor": { "type": "string" } }, "type": "object" }, "AWS::Pinpoint::Campaign.InAppMessageButton": { "additionalProperties": false, "properties": { "Android": { "$ref": "#/definitions/AWS::Pinpoint::Campaign.OverrideButtonConfiguration" }, "DefaultConfig": { "$ref": "#/definitions/AWS::Pinpoint::Campaign.DefaultButtonConfiguration" }, "IOS": { "$ref": "#/definitions/AWS::Pinpoint::Campaign.OverrideButtonConfiguration" }, "Web": { "$ref": "#/definitions/AWS::Pinpoint::Campaign.OverrideButtonConfiguration" } }, "type": "object" }, "AWS::Pinpoint::Campaign.InAppMessageContent": { "additionalProperties": false, "properties": { "BackgroundColor": { "type": "string" }, "BodyConfig": { "$ref": "#/definitions/AWS::Pinpoint::Campaign.InAppMessageBodyConfig" }, "HeaderConfig": { "$ref": "#/definitions/AWS::Pinpoint::Campaign.InAppMessageHeaderConfig" }, "ImageUrl": { "type": "string" }, "PrimaryBtn": { "$ref": "#/definitions/AWS::Pinpoint::Campaign.InAppMessageButton" }, "SecondaryBtn": { "$ref": "#/definitions/AWS::Pinpoint::Campaign.InAppMessageButton" } }, "type": "object" }, "AWS::Pinpoint::Campaign.InAppMessageHeaderConfig": { "additionalProperties": false, "properties": { "Alignment": { "type": "string" }, "Header": { "type": "string" }, "TextColor": { "type": "string" } }, "type": "object" }, "AWS::Pinpoint::Campaign.Limits": { "additionalProperties": false, "properties": { "Daily": { "type": "number" }, "MaximumDuration": { "type": "number" }, "MessagesPerSecond": { "type": "number" }, "Session": { "type": "number" }, "Total": { "type": "number" } }, "type": "object" }, "AWS::Pinpoint::Campaign.Message": { "additionalProperties": false, "properties": { "Action": { "type": "string" }, "Body": { "type": "string" }, "ImageIconUrl": { "type": "string" }, "ImageSmallIconUrl": { "type": "string" }, "ImageUrl": { "type": "string" }, "JsonBody": { "type": "string" }, "MediaUrl": { "type": "string" }, "RawContent": { "type": "string" }, "SilentPush": { "type": "boolean" }, "TimeToLive": { "type": "number" }, "Title": { "type": "string" }, "Url": { "type": "string" } }, "type": "object" }, "AWS::Pinpoint::Campaign.MessageConfiguration": { "additionalProperties": false, "properties": { "ADMMessage": { "$ref": "#/definitions/AWS::Pinpoint::Campaign.Message" }, "APNSMessage": { "$ref": "#/definitions/AWS::Pinpoint::Campaign.Message" }, "BaiduMessage": { "$ref": "#/definitions/AWS::Pinpoint::Campaign.Message" }, "CustomMessage": { "$ref": "#/definitions/AWS::Pinpoint::Campaign.CampaignCustomMessage" }, "DefaultMessage": { "$ref": "#/definitions/AWS::Pinpoint::Campaign.Message" }, "EmailMessage": { "$ref": "#/definitions/AWS::Pinpoint::Campaign.CampaignEmailMessage" }, "GCMMessage": { "$ref": "#/definitions/AWS::Pinpoint::Campaign.Message" }, "InAppMessage": { "$ref": "#/definitions/AWS::Pinpoint::Campaign.CampaignInAppMessage" }, "SMSMessage": { "$ref": "#/definitions/AWS::Pinpoint::Campaign.CampaignSmsMessage" } }, "type": "object" }, "AWS::Pinpoint::Campaign.MetricDimension": { "additionalProperties": false, "properties": { "ComparisonOperator": { "type": "string" }, "Value": { "type": "number" } }, "type": "object" }, "AWS::Pinpoint::Campaign.OverrideButtonConfiguration": { "additionalProperties": false, "properties": { "ButtonAction": { "type": "string" }, "Link": { "type": "string" } }, "type": "object" }, "AWS::Pinpoint::Campaign.QuietTime": { "additionalProperties": false, "properties": { "End": { "type": "string" }, "Start": { "type": "string" } }, "required": [ "End", "Start" ], "type": "object" }, "AWS::Pinpoint::Campaign.Schedule": { "additionalProperties": false, "properties": { "EndTime": { "type": "string" }, "EventFilter": { "$ref": "#/definitions/AWS::Pinpoint::Campaign.CampaignEventFilter" }, "Frequency": { "type": "string" }, "IsLocalTime": { "type": "boolean" }, "QuietTime": { "$ref": "#/definitions/AWS::Pinpoint::Campaign.QuietTime" }, "StartTime": { "type": "string" }, "TimeZone": { "type": "string" } }, "type": "object" }, "AWS::Pinpoint::Campaign.SetDimension": { "additionalProperties": false, "properties": { "DimensionType": { "type": "string" }, "Values": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::Pinpoint::Campaign.Template": { "additionalProperties": false, "properties": { "Name": { "type": "string" }, "Version": { "type": "string" } }, "type": "object" }, "AWS::Pinpoint::Campaign.TemplateConfiguration": { "additionalProperties": false, "properties": { "EmailTemplate": { "$ref": "#/definitions/AWS::Pinpoint::Campaign.Template" }, "PushTemplate": { "$ref": "#/definitions/AWS::Pinpoint::Campaign.Template" }, "SMSTemplate": { "$ref": "#/definitions/AWS::Pinpoint::Campaign.Template" }, "VoiceTemplate": { "$ref": "#/definitions/AWS::Pinpoint::Campaign.Template" } }, "type": "object" }, "AWS::Pinpoint::Campaign.WriteTreatmentResource": { "additionalProperties": false, "properties": { "CustomDeliveryConfiguration": { "$ref": "#/definitions/AWS::Pinpoint::Campaign.CustomDeliveryConfiguration" }, "MessageConfiguration": { "$ref": "#/definitions/AWS::Pinpoint::Campaign.MessageConfiguration" }, "Schedule": { "$ref": "#/definitions/AWS::Pinpoint::Campaign.Schedule" }, "SizePercent": { "type": "number" }, "TemplateConfiguration": { "$ref": "#/definitions/AWS::Pinpoint::Campaign.TemplateConfiguration" }, "TreatmentDescription": { "type": "string" }, "TreatmentName": { "type": "string" } }, "type": "object" }, "AWS::Pinpoint::EmailChannel": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ApplicationId": { "type": "string" }, "ConfigurationSet": { "type": "string" }, "Enabled": { "type": "boolean" }, "FromAddress": { "type": "string" }, "Identity": { "type": "string" }, "RoleArn": { "type": "string" } }, "required": [ "ApplicationId", "FromAddress", "Identity" ], "type": "object" }, "Type": { "enum": [ "AWS::Pinpoint::EmailChannel" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Pinpoint::EmailTemplate": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "DefaultSubstitutions": { "type": "string" }, "HtmlPart": { "type": "string" }, "Subject": { "type": "string" }, "Tags": { "type": "object" }, "TemplateDescription": { "type": "string" }, "TemplateName": { "type": "string" }, "TextPart": { "type": "string" } }, "required": [ "Subject", "TemplateName" ], "type": "object" }, "Type": { "enum": [ "AWS::Pinpoint::EmailTemplate" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Pinpoint::EventStream": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ApplicationId": { "type": "string" }, "DestinationStreamArn": { "type": "string" }, "RoleArn": { "type": "string" } }, "required": [ "ApplicationId", "DestinationStreamArn", "RoleArn" ], "type": "object" }, "Type": { "enum": [ "AWS::Pinpoint::EventStream" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Pinpoint::GCMChannel": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ApiKey": { "type": "string" }, "ApplicationId": { "type": "string" }, "Enabled": { "type": "boolean" } }, "required": [ "ApiKey", "ApplicationId" ], "type": "object" }, "Type": { "enum": [ "AWS::Pinpoint::GCMChannel" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Pinpoint::InAppTemplate": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Content": { "items": { "$ref": "#/definitions/AWS::Pinpoint::InAppTemplate.InAppMessageContent" }, "type": "array" }, "CustomConfig": { "type": "object" }, "Layout": { "type": "string" }, "Tags": { "type": "object" }, "TemplateDescription": { "type": "string" }, "TemplateName": { "type": "string" } }, "required": [ "TemplateName" ], "type": "object" }, "Type": { "enum": [ "AWS::Pinpoint::InAppTemplate" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Pinpoint::InAppTemplate.BodyConfig": { "additionalProperties": false, "properties": { "Alignment": { "type": "string" }, "Body": { "type": "string" }, "TextColor": { "type": "string" } }, "type": "object" }, "AWS::Pinpoint::InAppTemplate.ButtonConfig": { "additionalProperties": false, "properties": { "Android": { "$ref": "#/definitions/AWS::Pinpoint::InAppTemplate.OverrideButtonConfiguration" }, "DefaultConfig": { "$ref": "#/definitions/AWS::Pinpoint::InAppTemplate.DefaultButtonConfiguration" }, "IOS": { "$ref": "#/definitions/AWS::Pinpoint::InAppTemplate.OverrideButtonConfiguration" }, "Web": { "$ref": "#/definitions/AWS::Pinpoint::InAppTemplate.OverrideButtonConfiguration" } }, "type": "object" }, "AWS::Pinpoint::InAppTemplate.DefaultButtonConfiguration": { "additionalProperties": false, "properties": { "BackgroundColor": { "type": "string" }, "BorderRadius": { "type": "number" }, "ButtonAction": { "type": "string" }, "Link": { "type": "string" }, "Text": { "type": "string" }, "TextColor": { "type": "string" } }, "type": "object" }, "AWS::Pinpoint::InAppTemplate.HeaderConfig": { "additionalProperties": false, "properties": { "Alignment": { "type": "string" }, "Header": { "type": "string" }, "TextColor": { "type": "string" } }, "type": "object" }, "AWS::Pinpoint::InAppTemplate.InAppMessageContent": { "additionalProperties": false, "properties": { "BackgroundColor": { "type": "string" }, "BodyConfig": { "$ref": "#/definitions/AWS::Pinpoint::InAppTemplate.BodyConfig" }, "HeaderConfig": { "$ref": "#/definitions/AWS::Pinpoint::InAppTemplate.HeaderConfig" }, "ImageUrl": { "type": "string" }, "PrimaryBtn": { "$ref": "#/definitions/AWS::Pinpoint::InAppTemplate.ButtonConfig" }, "SecondaryBtn": { "$ref": "#/definitions/AWS::Pinpoint::InAppTemplate.ButtonConfig" } }, "type": "object" }, "AWS::Pinpoint::InAppTemplate.OverrideButtonConfiguration": { "additionalProperties": false, "properties": { "ButtonAction": { "type": "string" }, "Link": { "type": "string" } }, "type": "object" }, "AWS::Pinpoint::PushTemplate": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ADM": { "$ref": "#/definitions/AWS::Pinpoint::PushTemplate.AndroidPushNotificationTemplate" }, "APNS": { "$ref": "#/definitions/AWS::Pinpoint::PushTemplate.APNSPushNotificationTemplate" }, "Baidu": { "$ref": "#/definitions/AWS::Pinpoint::PushTemplate.AndroidPushNotificationTemplate" }, "Default": { "$ref": "#/definitions/AWS::Pinpoint::PushTemplate.DefaultPushNotificationTemplate" }, "DefaultSubstitutions": { "type": "string" }, "GCM": { "$ref": "#/definitions/AWS::Pinpoint::PushTemplate.AndroidPushNotificationTemplate" }, "Tags": { "type": "object" }, "TemplateDescription": { "type": "string" }, "TemplateName": { "type": "string" } }, "required": [ "TemplateName" ], "type": "object" }, "Type": { "enum": [ "AWS::Pinpoint::PushTemplate" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Pinpoint::PushTemplate.APNSPushNotificationTemplate": { "additionalProperties": false, "properties": { "Action": { "type": "string" }, "Body": { "type": "string" }, "MediaUrl": { "type": "string" }, "Sound": { "type": "string" }, "Title": { "type": "string" }, "Url": { "type": "string" } }, "type": "object" }, "AWS::Pinpoint::PushTemplate.AndroidPushNotificationTemplate": { "additionalProperties": false, "properties": { "Action": { "type": "string" }, "Body": { "type": "string" }, "ImageIconUrl": { "type": "string" }, "ImageUrl": { "type": "string" }, "SmallImageIconUrl": { "type": "string" }, "Sound": { "type": "string" }, "Title": { "type": "string" }, "Url": { "type": "string" } }, "type": "object" }, "AWS::Pinpoint::PushTemplate.DefaultPushNotificationTemplate": { "additionalProperties": false, "properties": { "Action": { "type": "string" }, "Body": { "type": "string" }, "Sound": { "type": "string" }, "Title": { "type": "string" }, "Url": { "type": "string" } }, "type": "object" }, "AWS::Pinpoint::SMSChannel": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ApplicationId": { "type": "string" }, "Enabled": { "type": "boolean" }, "SenderId": { "type": "string" }, "ShortCode": { "type": "string" } }, "required": [ "ApplicationId" ], "type": "object" }, "Type": { "enum": [ "AWS::Pinpoint::SMSChannel" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Pinpoint::Segment": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ApplicationId": { "type": "string" }, "Dimensions": { "$ref": "#/definitions/AWS::Pinpoint::Segment.SegmentDimensions" }, "Name": { "type": "string" }, "SegmentGroups": { "$ref": "#/definitions/AWS::Pinpoint::Segment.SegmentGroups" }, "Tags": { "type": "object" } }, "required": [ "ApplicationId", "Name" ], "type": "object" }, "Type": { "enum": [ "AWS::Pinpoint::Segment" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Pinpoint::Segment.AttributeDimension": { "additionalProperties": false, "properties": { "AttributeType": { "type": "string" }, "Values": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::Pinpoint::Segment.Behavior": { "additionalProperties": false, "properties": { "Recency": { "$ref": "#/definitions/AWS::Pinpoint::Segment.Recency" } }, "type": "object" }, "AWS::Pinpoint::Segment.Coordinates": { "additionalProperties": false, "properties": { "Latitude": { "type": "number" }, "Longitude": { "type": "number" } }, "required": [ "Latitude", "Longitude" ], "type": "object" }, "AWS::Pinpoint::Segment.Demographic": { "additionalProperties": false, "properties": { "AppVersion": { "$ref": "#/definitions/AWS::Pinpoint::Segment.SetDimension" }, "Channel": { "$ref": "#/definitions/AWS::Pinpoint::Segment.SetDimension" }, "DeviceType": { "$ref": "#/definitions/AWS::Pinpoint::Segment.SetDimension" }, "Make": { "$ref": "#/definitions/AWS::Pinpoint::Segment.SetDimension" }, "Model": { "$ref": "#/definitions/AWS::Pinpoint::Segment.SetDimension" }, "Platform": { "$ref": "#/definitions/AWS::Pinpoint::Segment.SetDimension" } }, "type": "object" }, "AWS::Pinpoint::Segment.GPSPoint": { "additionalProperties": false, "properties": { "Coordinates": { "$ref": "#/definitions/AWS::Pinpoint::Segment.Coordinates" }, "RangeInKilometers": { "type": "number" } }, "required": [ "Coordinates", "RangeInKilometers" ], "type": "object" }, "AWS::Pinpoint::Segment.Groups": { "additionalProperties": false, "properties": { "Dimensions": { "items": { "$ref": "#/definitions/AWS::Pinpoint::Segment.SegmentDimensions" }, "type": "array" }, "SourceSegments": { "items": { "$ref": "#/definitions/AWS::Pinpoint::Segment.SourceSegments" }, "type": "array" }, "SourceType": { "type": "string" }, "Type": { "type": "string" } }, "type": "object" }, "AWS::Pinpoint::Segment.Location": { "additionalProperties": false, "properties": { "Country": { "$ref": "#/definitions/AWS::Pinpoint::Segment.SetDimension" }, "GPSPoint": { "$ref": "#/definitions/AWS::Pinpoint::Segment.GPSPoint" } }, "type": "object" }, "AWS::Pinpoint::Segment.Recency": { "additionalProperties": false, "properties": { "Duration": { "type": "string" }, "RecencyType": { "type": "string" } }, "required": [ "Duration", "RecencyType" ], "type": "object" }, "AWS::Pinpoint::Segment.SegmentDimensions": { "additionalProperties": false, "properties": { "Attributes": { "type": "object" }, "Behavior": { "$ref": "#/definitions/AWS::Pinpoint::Segment.Behavior" }, "Demographic": { "$ref": "#/definitions/AWS::Pinpoint::Segment.Demographic" }, "Location": { "$ref": "#/definitions/AWS::Pinpoint::Segment.Location" }, "Metrics": { "type": "object" }, "UserAttributes": { "type": "object" } }, "type": "object" }, "AWS::Pinpoint::Segment.SegmentGroups": { "additionalProperties": false, "properties": { "Groups": { "items": { "$ref": "#/definitions/AWS::Pinpoint::Segment.Groups" }, "type": "array" }, "Include": { "type": "string" } }, "type": "object" }, "AWS::Pinpoint::Segment.SetDimension": { "additionalProperties": false, "properties": { "DimensionType": { "type": "string" }, "Values": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::Pinpoint::Segment.SourceSegments": { "additionalProperties": false, "properties": { "Id": { "type": "string" }, "Version": { "type": "number" } }, "required": [ "Id" ], "type": "object" }, "AWS::Pinpoint::SmsTemplate": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Body": { "type": "string" }, "DefaultSubstitutions": { "type": "string" }, "Tags": { "type": "object" }, "TemplateDescription": { "type": "string" }, "TemplateName": { "type": "string" } }, "required": [ "Body", "TemplateName" ], "type": "object" }, "Type": { "enum": [ "AWS::Pinpoint::SmsTemplate" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Pinpoint::VoiceChannel": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ApplicationId": { "type": "string" }, "Enabled": { "type": "boolean" } }, "required": [ "ApplicationId" ], "type": "object" }, "Type": { "enum": [ "AWS::Pinpoint::VoiceChannel" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::PinpointEmail::ConfigurationSet": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "DeliveryOptions": { "$ref": "#/definitions/AWS::PinpointEmail::ConfigurationSet.DeliveryOptions" }, "Name": { "type": "string" }, "ReputationOptions": { "$ref": "#/definitions/AWS::PinpointEmail::ConfigurationSet.ReputationOptions" }, "SendingOptions": { "$ref": "#/definitions/AWS::PinpointEmail::ConfigurationSet.SendingOptions" }, "Tags": { "items": { "$ref": "#/definitions/AWS::PinpointEmail::ConfigurationSet.Tags" }, "type": "array" }, "TrackingOptions": { "$ref": "#/definitions/AWS::PinpointEmail::ConfigurationSet.TrackingOptions" } }, "required": [ "Name" ], "type": "object" }, "Type": { "enum": [ "AWS::PinpointEmail::ConfigurationSet" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::PinpointEmail::ConfigurationSet.DeliveryOptions": { "additionalProperties": false, "properties": { "SendingPoolName": { "type": "string" } }, "type": "object" }, "AWS::PinpointEmail::ConfigurationSet.ReputationOptions": { "additionalProperties": false, "properties": { "ReputationMetricsEnabled": { "type": "boolean" } }, "type": "object" }, "AWS::PinpointEmail::ConfigurationSet.SendingOptions": { "additionalProperties": false, "properties": { "SendingEnabled": { "type": "boolean" } }, "type": "object" }, "AWS::PinpointEmail::ConfigurationSet.Tags": { "additionalProperties": false, "properties": { "Key": { "type": "string" }, "Value": { "type": "string" } }, "type": "object" }, "AWS::PinpointEmail::ConfigurationSet.TrackingOptions": { "additionalProperties": false, "properties": { "CustomRedirectDomain": { "type": "string" } }, "type": "object" }, "AWS::PinpointEmail::ConfigurationSetEventDestination": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ConfigurationSetName": { "type": "string" }, "EventDestination": { "$ref": "#/definitions/AWS::PinpointEmail::ConfigurationSetEventDestination.EventDestination" }, "EventDestinationName": { "type": "string" } }, "required": [ "ConfigurationSetName", "EventDestinationName" ], "type": "object" }, "Type": { "enum": [ "AWS::PinpointEmail::ConfigurationSetEventDestination" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::PinpointEmail::ConfigurationSetEventDestination.CloudWatchDestination": { "additionalProperties": false, "properties": { "DimensionConfigurations": { "items": { "$ref": "#/definitions/AWS::PinpointEmail::ConfigurationSetEventDestination.DimensionConfiguration" }, "type": "array" } }, "type": "object" }, "AWS::PinpointEmail::ConfigurationSetEventDestination.DimensionConfiguration": { "additionalProperties": false, "properties": { "DefaultDimensionValue": { "type": "string" }, "DimensionName": { "type": "string" }, "DimensionValueSource": { "type": "string" } }, "required": [ "DefaultDimensionValue", "DimensionName", "DimensionValueSource" ], "type": "object" }, "AWS::PinpointEmail::ConfigurationSetEventDestination.EventDestination": { "additionalProperties": false, "properties": { "CloudWatchDestination": { "$ref": "#/definitions/AWS::PinpointEmail::ConfigurationSetEventDestination.CloudWatchDestination" }, "Enabled": { "type": "boolean" }, "KinesisFirehoseDestination": { "$ref": "#/definitions/AWS::PinpointEmail::ConfigurationSetEventDestination.KinesisFirehoseDestination" }, "MatchingEventTypes": { "items": { "type": "string" }, "type": "array" }, "PinpointDestination": { "$ref": "#/definitions/AWS::PinpointEmail::ConfigurationSetEventDestination.PinpointDestination" }, "SnsDestination": { "$ref": "#/definitions/AWS::PinpointEmail::ConfigurationSetEventDestination.SnsDestination" } }, "required": [ "MatchingEventTypes" ], "type": "object" }, "AWS::PinpointEmail::ConfigurationSetEventDestination.KinesisFirehoseDestination": { "additionalProperties": false, "properties": { "DeliveryStreamArn": { "type": "string" }, "IamRoleArn": { "type": "string" } }, "required": [ "DeliveryStreamArn", "IamRoleArn" ], "type": "object" }, "AWS::PinpointEmail::ConfigurationSetEventDestination.PinpointDestination": { "additionalProperties": false, "properties": { "ApplicationArn": { "type": "string" } }, "type": "object" }, "AWS::PinpointEmail::ConfigurationSetEventDestination.SnsDestination": { "additionalProperties": false, "properties": { "TopicArn": { "type": "string" } }, "required": [ "TopicArn" ], "type": "object" }, "AWS::PinpointEmail::DedicatedIpPool": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "PoolName": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/AWS::PinpointEmail::DedicatedIpPool.Tags" }, "type": "array" } }, "type": "object" }, "Type": { "enum": [ "AWS::PinpointEmail::DedicatedIpPool" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::PinpointEmail::DedicatedIpPool.Tags": { "additionalProperties": false, "properties": { "Key": { "type": "string" }, "Value": { "type": "string" } }, "type": "object" }, "AWS::PinpointEmail::Identity": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "DkimSigningEnabled": { "type": "boolean" }, "FeedbackForwardingEnabled": { "type": "boolean" }, "MailFromAttributes": { "$ref": "#/definitions/AWS::PinpointEmail::Identity.MailFromAttributes" }, "Name": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/AWS::PinpointEmail::Identity.Tags" }, "type": "array" } }, "required": [ "Name" ], "type": "object" }, "Type": { "enum": [ "AWS::PinpointEmail::Identity" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::PinpointEmail::Identity.MailFromAttributes": { "additionalProperties": false, "properties": { "BehaviorOnMxFailure": { "type": "string" }, "MailFromDomain": { "type": "string" } }, "type": "object" }, "AWS::PinpointEmail::Identity.Tags": { "additionalProperties": false, "properties": { "Key": { "type": "string" }, "Value": { "type": "string" } }, "type": "object" }, "AWS::Pipes::Pipe": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "DesiredState": { "type": "string" }, "Enrichment": { "type": "string" }, "EnrichmentParameters": { "$ref": "#/definitions/AWS::Pipes::Pipe.PipeEnrichmentParameters" }, "Name": { "type": "string" }, "RoleArn": { "type": "string" }, "Source": { "type": "string" }, "SourceParameters": { "$ref": "#/definitions/AWS::Pipes::Pipe.PipeSourceParameters" }, "Tags": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" }, "Target": { "type": "string" }, "TargetParameters": { "$ref": "#/definitions/AWS::Pipes::Pipe.PipeTargetParameters" } }, "required": [ "RoleArn", "Source", "Target" ], "type": "object" }, "Type": { "enum": [ "AWS::Pipes::Pipe" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Pipes::Pipe.AwsVpcConfiguration": { "additionalProperties": false, "properties": { "AssignPublicIp": { "type": "string" }, "SecurityGroups": { "items": { "type": "string" }, "type": "array" }, "Subnets": { "items": { "type": "string" }, "type": "array" } }, "required": [ "Subnets" ], "type": "object" }, "AWS::Pipes::Pipe.BatchArrayProperties": { "additionalProperties": false, "properties": { "Size": { "type": "number" } }, "type": "object" }, "AWS::Pipes::Pipe.BatchContainerOverrides": { "additionalProperties": false, "properties": { "Command": { "items": { "type": "string" }, "type": "array" }, "Environment": { "items": { "$ref": "#/definitions/AWS::Pipes::Pipe.BatchEnvironmentVariable" }, "type": "array" }, "InstanceType": { "type": "string" }, "ResourceRequirements": { "items": { "$ref": "#/definitions/AWS::Pipes::Pipe.BatchResourceRequirement" }, "type": "array" } }, "type": "object" }, "AWS::Pipes::Pipe.BatchEnvironmentVariable": { "additionalProperties": false, "properties": { "Name": { "type": "string" }, "Value": { "type": "string" } }, "type": "object" }, "AWS::Pipes::Pipe.BatchJobDependency": { "additionalProperties": false, "properties": { "JobId": { "type": "string" }, "Type": { "type": "string" } }, "type": "object" }, "AWS::Pipes::Pipe.BatchResourceRequirement": { "additionalProperties": false, "properties": { "Type": { "type": "string" }, "Value": { "type": "string" } }, "required": [ "Type", "Value" ], "type": "object" }, "AWS::Pipes::Pipe.BatchRetryStrategy": { "additionalProperties": false, "properties": { "Attempts": { "type": "number" } }, "type": "object" }, "AWS::Pipes::Pipe.CapacityProviderStrategyItem": { "additionalProperties": false, "properties": { "Base": { "type": "number" }, "CapacityProvider": { "type": "string" }, "Weight": { "type": "number" } }, "required": [ "CapacityProvider" ], "type": "object" }, "AWS::Pipes::Pipe.DeadLetterConfig": { "additionalProperties": false, "properties": { "Arn": { "type": "string" } }, "type": "object" }, "AWS::Pipes::Pipe.EcsContainerOverride": { "additionalProperties": false, "properties": { "Command": { "items": { "type": "string" }, "type": "array" }, "Cpu": { "type": "number" }, "Environment": { "items": { "$ref": "#/definitions/AWS::Pipes::Pipe.EcsEnvironmentVariable" }, "type": "array" }, "EnvironmentFiles": { "items": { "$ref": "#/definitions/AWS::Pipes::Pipe.EcsEnvironmentFile" }, "type": "array" }, "Memory": { "type": "number" }, "MemoryReservation": { "type": "number" }, "Name": { "type": "string" }, "ResourceRequirements": { "items": { "$ref": "#/definitions/AWS::Pipes::Pipe.EcsResourceRequirement" }, "type": "array" } }, "type": "object" }, "AWS::Pipes::Pipe.EcsEnvironmentFile": { "additionalProperties": false, "properties": { "Type": { "type": "string" }, "Value": { "type": "string" } }, "required": [ "Type", "Value" ], "type": "object" }, "AWS::Pipes::Pipe.EcsEnvironmentVariable": { "additionalProperties": false, "properties": { "Name": { "type": "string" }, "Value": { "type": "string" } }, "type": "object" }, "AWS::Pipes::Pipe.EcsEphemeralStorage": { "additionalProperties": false, "properties": { "SizeInGiB": { "type": "number" } }, "required": [ "SizeInGiB" ], "type": "object" }, "AWS::Pipes::Pipe.EcsInferenceAcceleratorOverride": { "additionalProperties": false, "properties": { "DeviceName": { "type": "string" }, "DeviceType": { "type": "string" } }, "type": "object" }, "AWS::Pipes::Pipe.EcsResourceRequirement": { "additionalProperties": false, "properties": { "Type": { "type": "string" }, "Value": { "type": "string" } }, "required": [ "Type", "Value" ], "type": "object" }, "AWS::Pipes::Pipe.EcsTaskOverride": { "additionalProperties": false, "properties": { "ContainerOverrides": { "items": { "$ref": "#/definitions/AWS::Pipes::Pipe.EcsContainerOverride" }, "type": "array" }, "Cpu": { "type": "string" }, "EphemeralStorage": { "$ref": "#/definitions/AWS::Pipes::Pipe.EcsEphemeralStorage" }, "ExecutionRoleArn": { "type": "string" }, "InferenceAcceleratorOverrides": { "items": { "$ref": "#/definitions/AWS::Pipes::Pipe.EcsInferenceAcceleratorOverride" }, "type": "array" }, "Memory": { "type": "string" }, "TaskRoleArn": { "type": "string" } }, "type": "object" }, "AWS::Pipes::Pipe.Filter": { "additionalProperties": false, "properties": { "Pattern": { "type": "string" } }, "type": "object" }, "AWS::Pipes::Pipe.FilterCriteria": { "additionalProperties": false, "properties": { "Filters": { "items": { "$ref": "#/definitions/AWS::Pipes::Pipe.Filter" }, "type": "array" } }, "type": "object" }, "AWS::Pipes::Pipe.MQBrokerAccessCredentials": { "additionalProperties": false, "properties": { "BasicAuth": { "type": "string" } }, "required": [ "BasicAuth" ], "type": "object" }, "AWS::Pipes::Pipe.MSKAccessCredentials": { "additionalProperties": false, "properties": { "ClientCertificateTlsAuth": { "type": "string" }, "SaslScram512Auth": { "type": "string" } }, "type": "object" }, "AWS::Pipes::Pipe.NetworkConfiguration": { "additionalProperties": false, "properties": { "AwsvpcConfiguration": { "$ref": "#/definitions/AWS::Pipes::Pipe.AwsVpcConfiguration" } }, "type": "object" }, "AWS::Pipes::Pipe.PipeEnrichmentHttpParameters": { "additionalProperties": false, "properties": { "HeaderParameters": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" }, "PathParameterValues": { "items": { "type": "string" }, "type": "array" }, "QueryStringParameters": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" } }, "type": "object" }, "AWS::Pipes::Pipe.PipeEnrichmentParameters": { "additionalProperties": false, "properties": { "HttpParameters": { "$ref": "#/definitions/AWS::Pipes::Pipe.PipeEnrichmentHttpParameters" }, "InputTemplate": { "type": "string" } }, "type": "object" }, "AWS::Pipes::Pipe.PipeSourceActiveMQBrokerParameters": { "additionalProperties": false, "properties": { "BatchSize": { "type": "number" }, "Credentials": { "$ref": "#/definitions/AWS::Pipes::Pipe.MQBrokerAccessCredentials" }, "MaximumBatchingWindowInSeconds": { "type": "number" }, "QueueName": { "type": "string" } }, "required": [ "Credentials", "QueueName" ], "type": "object" }, "AWS::Pipes::Pipe.PipeSourceDynamoDBStreamParameters": { "additionalProperties": false, "properties": { "BatchSize": { "type": "number" }, "DeadLetterConfig": { "$ref": "#/definitions/AWS::Pipes::Pipe.DeadLetterConfig" }, "MaximumBatchingWindowInSeconds": { "type": "number" }, "MaximumRecordAgeInSeconds": { "type": "number" }, "MaximumRetryAttempts": { "type": "number" }, "OnPartialBatchItemFailure": { "type": "string" }, "ParallelizationFactor": { "type": "number" }, "StartingPosition": { "type": "string" } }, "required": [ "StartingPosition" ], "type": "object" }, "AWS::Pipes::Pipe.PipeSourceKinesisStreamParameters": { "additionalProperties": false, "properties": { "BatchSize": { "type": "number" }, "DeadLetterConfig": { "$ref": "#/definitions/AWS::Pipes::Pipe.DeadLetterConfig" }, "MaximumBatchingWindowInSeconds": { "type": "number" }, "MaximumRecordAgeInSeconds": { "type": "number" }, "MaximumRetryAttempts": { "type": "number" }, "OnPartialBatchItemFailure": { "type": "string" }, "ParallelizationFactor": { "type": "number" }, "StartingPosition": { "type": "string" }, "StartingPositionTimestamp": { "type": "string" } }, "required": [ "StartingPosition" ], "type": "object" }, "AWS::Pipes::Pipe.PipeSourceManagedStreamingKafkaParameters": { "additionalProperties": false, "properties": { "BatchSize": { "type": "number" }, "ConsumerGroupID": { "type": "string" }, "Credentials": { "$ref": "#/definitions/AWS::Pipes::Pipe.MSKAccessCredentials" }, "MaximumBatchingWindowInSeconds": { "type": "number" }, "StartingPosition": { "type": "string" }, "TopicName": { "type": "string" } }, "required": [ "TopicName" ], "type": "object" }, "AWS::Pipes::Pipe.PipeSourceParameters": { "additionalProperties": false, "properties": { "ActiveMQBrokerParameters": { "$ref": "#/definitions/AWS::Pipes::Pipe.PipeSourceActiveMQBrokerParameters" }, "DynamoDBStreamParameters": { "$ref": "#/definitions/AWS::Pipes::Pipe.PipeSourceDynamoDBStreamParameters" }, "FilterCriteria": { "$ref": "#/definitions/AWS::Pipes::Pipe.FilterCriteria" }, "KinesisStreamParameters": { "$ref": "#/definitions/AWS::Pipes::Pipe.PipeSourceKinesisStreamParameters" }, "ManagedStreamingKafkaParameters": { "$ref": "#/definitions/AWS::Pipes::Pipe.PipeSourceManagedStreamingKafkaParameters" }, "RabbitMQBrokerParameters": { "$ref": "#/definitions/AWS::Pipes::Pipe.PipeSourceRabbitMQBrokerParameters" }, "SelfManagedKafkaParameters": { "$ref": "#/definitions/AWS::Pipes::Pipe.PipeSourceSelfManagedKafkaParameters" }, "SqsQueueParameters": { "$ref": "#/definitions/AWS::Pipes::Pipe.PipeSourceSqsQueueParameters" } }, "type": "object" }, "AWS::Pipes::Pipe.PipeSourceRabbitMQBrokerParameters": { "additionalProperties": false, "properties": { "BatchSize": { "type": "number" }, "Credentials": { "$ref": "#/definitions/AWS::Pipes::Pipe.MQBrokerAccessCredentials" }, "MaximumBatchingWindowInSeconds": { "type": "number" }, "QueueName": { "type": "string" }, "VirtualHost": { "type": "string" } }, "required": [ "Credentials", "QueueName" ], "type": "object" }, "AWS::Pipes::Pipe.PipeSourceSelfManagedKafkaParameters": { "additionalProperties": false, "properties": { "AdditionalBootstrapServers": { "items": { "type": "string" }, "type": "array" }, "BatchSize": { "type": "number" }, "ConsumerGroupID": { "type": "string" }, "Credentials": { "$ref": "#/definitions/AWS::Pipes::Pipe.SelfManagedKafkaAccessConfigurationCredentials" }, "MaximumBatchingWindowInSeconds": { "type": "number" }, "ServerRootCaCertificate": { "type": "string" }, "StartingPosition": { "type": "string" }, "TopicName": { "type": "string" }, "Vpc": { "$ref": "#/definitions/AWS::Pipes::Pipe.SelfManagedKafkaAccessConfigurationVpc" } }, "required": [ "TopicName" ], "type": "object" }, "AWS::Pipes::Pipe.PipeSourceSqsQueueParameters": { "additionalProperties": false, "properties": { "BatchSize": { "type": "number" }, "MaximumBatchingWindowInSeconds": { "type": "number" } }, "type": "object" }, "AWS::Pipes::Pipe.PipeTargetBatchJobParameters": { "additionalProperties": false, "properties": { "ArrayProperties": { "$ref": "#/definitions/AWS::Pipes::Pipe.BatchArrayProperties" }, "ContainerOverrides": { "$ref": "#/definitions/AWS::Pipes::Pipe.BatchContainerOverrides" }, "DependsOn": { "items": { "$ref": "#/definitions/AWS::Pipes::Pipe.BatchJobDependency" }, "type": "array" }, "JobDefinition": { "type": "string" }, "JobName": { "type": "string" }, "Parameters": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" }, "RetryStrategy": { "$ref": "#/definitions/AWS::Pipes::Pipe.BatchRetryStrategy" } }, "required": [ "JobDefinition", "JobName" ], "type": "object" }, "AWS::Pipes::Pipe.PipeTargetCloudWatchLogsParameters": { "additionalProperties": false, "properties": { "LogStreamName": { "type": "string" }, "Timestamp": { "type": "string" } }, "type": "object" }, "AWS::Pipes::Pipe.PipeTargetEcsTaskParameters": { "additionalProperties": false, "properties": { "CapacityProviderStrategy": { "items": { "$ref": "#/definitions/AWS::Pipes::Pipe.CapacityProviderStrategyItem" }, "type": "array" }, "EnableECSManagedTags": { "type": "boolean" }, "EnableExecuteCommand": { "type": "boolean" }, "Group": { "type": "string" }, "LaunchType": { "type": "string" }, "NetworkConfiguration": { "$ref": "#/definitions/AWS::Pipes::Pipe.NetworkConfiguration" }, "Overrides": { "$ref": "#/definitions/AWS::Pipes::Pipe.EcsTaskOverride" }, "PlacementConstraints": { "items": { "$ref": "#/definitions/AWS::Pipes::Pipe.PlacementConstraint" }, "type": "array" }, "PlacementStrategy": { "items": { "$ref": "#/definitions/AWS::Pipes::Pipe.PlacementStrategy" }, "type": "array" }, "PlatformVersion": { "type": "string" }, "PropagateTags": { "type": "string" }, "ReferenceId": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "TaskCount": { "type": "number" }, "TaskDefinitionArn": { "type": "string" } }, "required": [ "TaskDefinitionArn" ], "type": "object" }, "AWS::Pipes::Pipe.PipeTargetEventBridgeEventBusParameters": { "additionalProperties": false, "properties": { "DetailType": { "type": "string" }, "EndpointId": { "type": "string" }, "Resources": { "items": { "type": "string" }, "type": "array" }, "Source": { "type": "string" }, "Time": { "type": "string" } }, "type": "object" }, "AWS::Pipes::Pipe.PipeTargetHttpParameters": { "additionalProperties": false, "properties": { "HeaderParameters": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" }, "PathParameterValues": { "items": { "type": "string" }, "type": "array" }, "QueryStringParameters": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" } }, "type": "object" }, "AWS::Pipes::Pipe.PipeTargetKinesisStreamParameters": { "additionalProperties": false, "properties": { "PartitionKey": { "type": "string" } }, "required": [ "PartitionKey" ], "type": "object" }, "AWS::Pipes::Pipe.PipeTargetLambdaFunctionParameters": { "additionalProperties": false, "properties": { "InvocationType": { "type": "string" } }, "type": "object" }, "AWS::Pipes::Pipe.PipeTargetParameters": { "additionalProperties": false, "properties": { "BatchJobParameters": { "$ref": "#/definitions/AWS::Pipes::Pipe.PipeTargetBatchJobParameters" }, "CloudWatchLogsParameters": { "$ref": "#/definitions/AWS::Pipes::Pipe.PipeTargetCloudWatchLogsParameters" }, "EcsTaskParameters": { "$ref": "#/definitions/AWS::Pipes::Pipe.PipeTargetEcsTaskParameters" }, "EventBridgeEventBusParameters": { "$ref": "#/definitions/AWS::Pipes::Pipe.PipeTargetEventBridgeEventBusParameters" }, "HttpParameters": { "$ref": "#/definitions/AWS::Pipes::Pipe.PipeTargetHttpParameters" }, "InputTemplate": { "type": "string" }, "KinesisStreamParameters": { "$ref": "#/definitions/AWS::Pipes::Pipe.PipeTargetKinesisStreamParameters" }, "LambdaFunctionParameters": { "$ref": "#/definitions/AWS::Pipes::Pipe.PipeTargetLambdaFunctionParameters" }, "RedshiftDataParameters": { "$ref": "#/definitions/AWS::Pipes::Pipe.PipeTargetRedshiftDataParameters" }, "SageMakerPipelineParameters": { "$ref": "#/definitions/AWS::Pipes::Pipe.PipeTargetSageMakerPipelineParameters" }, "SqsQueueParameters": { "$ref": "#/definitions/AWS::Pipes::Pipe.PipeTargetSqsQueueParameters" }, "StepFunctionStateMachineParameters": { "$ref": "#/definitions/AWS::Pipes::Pipe.PipeTargetStateMachineParameters" } }, "type": "object" }, "AWS::Pipes::Pipe.PipeTargetRedshiftDataParameters": { "additionalProperties": false, "properties": { "Database": { "type": "string" }, "DbUser": { "type": "string" }, "SecretManagerArn": { "type": "string" }, "Sqls": { "items": { "type": "string" }, "type": "array" }, "StatementName": { "type": "string" }, "WithEvent": { "type": "boolean" } }, "required": [ "Database", "Sqls" ], "type": "object" }, "AWS::Pipes::Pipe.PipeTargetSageMakerPipelineParameters": { "additionalProperties": false, "properties": { "PipelineParameterList": { "items": { "$ref": "#/definitions/AWS::Pipes::Pipe.SageMakerPipelineParameter" }, "type": "array" } }, "type": "object" }, "AWS::Pipes::Pipe.PipeTargetSqsQueueParameters": { "additionalProperties": false, "properties": { "MessageDeduplicationId": { "type": "string" }, "MessageGroupId": { "type": "string" } }, "type": "object" }, "AWS::Pipes::Pipe.PipeTargetStateMachineParameters": { "additionalProperties": false, "properties": { "InvocationType": { "type": "string" } }, "type": "object" }, "AWS::Pipes::Pipe.PlacementConstraint": { "additionalProperties": false, "properties": { "Expression": { "type": "string" }, "Type": { "type": "string" } }, "type": "object" }, "AWS::Pipes::Pipe.PlacementStrategy": { "additionalProperties": false, "properties": { "Field": { "type": "string" }, "Type": { "type": "string" } }, "type": "object" }, "AWS::Pipes::Pipe.SageMakerPipelineParameter": { "additionalProperties": false, "properties": { "Name": { "type": "string" }, "Value": { "type": "string" } }, "required": [ "Name", "Value" ], "type": "object" }, "AWS::Pipes::Pipe.SelfManagedKafkaAccessConfigurationCredentials": { "additionalProperties": false, "properties": { "BasicAuth": { "type": "string" }, "ClientCertificateTlsAuth": { "type": "string" }, "SaslScram256Auth": { "type": "string" }, "SaslScram512Auth": { "type": "string" } }, "type": "object" }, "AWS::Pipes::Pipe.SelfManagedKafkaAccessConfigurationVpc": { "additionalProperties": false, "properties": { "SecurityGroup": { "items": { "type": "string" }, "type": "array" }, "Subnets": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::Proton::EnvironmentAccountConnection": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "CodebuildRoleArn": { "type": "string" }, "ComponentRoleArn": { "type": "string" }, "EnvironmentAccountId": { "type": "string" }, "EnvironmentName": { "type": "string" }, "ManagementAccountId": { "type": "string" }, "RoleArn": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "type": "object" }, "Type": { "enum": [ "AWS::Proton::EnvironmentAccountConnection" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::Proton::EnvironmentTemplate": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "DisplayName": { "type": "string" }, "EncryptionKey": { "type": "string" }, "Name": { "type": "string" }, "Provisioning": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "type": "object" }, "Type": { "enum": [ "AWS::Proton::EnvironmentTemplate" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::Proton::ServiceTemplate": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "DisplayName": { "type": "string" }, "EncryptionKey": { "type": "string" }, "Name": { "type": "string" }, "PipelineProvisioning": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "type": "object" }, "Type": { "enum": [ "AWS::Proton::ServiceTemplate" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::QLDB::Ledger": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "DeletionProtection": { "type": "boolean" }, "KmsKey": { "type": "string" }, "Name": { "type": "string" }, "PermissionsMode": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "PermissionsMode" ], "type": "object" }, "Type": { "enum": [ "AWS::QLDB::Ledger" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::QLDB::Stream": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ExclusiveEndTime": { "type": "string" }, "InclusiveStartTime": { "type": "string" }, "KinesisConfiguration": { "$ref": "#/definitions/AWS::QLDB::Stream.KinesisConfiguration" }, "LedgerName": { "type": "string" }, "RoleArn": { "type": "string" }, "StreamName": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "InclusiveStartTime", "KinesisConfiguration", "LedgerName", "RoleArn", "StreamName" ], "type": "object" }, "Type": { "enum": [ "AWS::QLDB::Stream" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::QLDB::Stream.KinesisConfiguration": { "additionalProperties": false, "properties": { "AggregationEnabled": { "type": "boolean" }, "StreamArn": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Analysis": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AnalysisId": { "type": "string" }, "AwsAccountId": { "type": "string" }, "Definition": { "$ref": "#/definitions/AWS::QuickSight::Analysis.AnalysisDefinition" }, "Name": { "type": "string" }, "Parameters": { "$ref": "#/definitions/AWS::QuickSight::Analysis.Parameters" }, "Permissions": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ResourcePermission" }, "type": "array" }, "SourceEntity": { "$ref": "#/definitions/AWS::QuickSight::Analysis.AnalysisSourceEntity" }, "Status": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "ThemeArn": { "type": "string" } }, "required": [ "AnalysisId", "AwsAccountId", "Name" ], "type": "object" }, "Type": { "enum": [ "AWS::QuickSight::Analysis" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::QuickSight::Analysis.AggregationFunction": { "additionalProperties": false, "properties": { "CategoricalAggregationFunction": { "type": "string" }, "DateAggregationFunction": { "type": "string" }, "NumericalAggregationFunction": { "$ref": "#/definitions/AWS::QuickSight::Analysis.NumericalAggregationFunction" } }, "type": "object" }, "AWS::QuickSight::Analysis.AggregationSortConfiguration": { "additionalProperties": false, "properties": { "AggregationFunction": { "$ref": "#/definitions/AWS::QuickSight::Analysis.AggregationFunction" }, "Column": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ColumnIdentifier" }, "SortDirection": { "type": "string" } }, "required": [ "Column", "SortDirection" ], "type": "object" }, "AWS::QuickSight::Analysis.AnalysisDefaults": { "additionalProperties": false, "properties": { "DefaultNewSheetConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Analysis.DefaultNewSheetConfiguration" } }, "required": [ "DefaultNewSheetConfiguration" ], "type": "object" }, "AWS::QuickSight::Analysis.AnalysisDefinition": { "additionalProperties": false, "properties": { "AnalysisDefaults": { "$ref": "#/definitions/AWS::QuickSight::Analysis.AnalysisDefaults" }, "CalculatedFields": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.CalculatedField" }, "type": "array" }, "ColumnConfigurations": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ColumnConfiguration" }, "type": "array" }, "DataSetIdentifierDeclarations": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.DataSetIdentifierDeclaration" }, "type": "array" }, "FilterGroups": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.FilterGroup" }, "type": "array" }, "ParameterDeclarations": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ParameterDeclaration" }, "type": "array" }, "Sheets": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.SheetDefinition" }, "type": "array" } }, "required": [ "DataSetIdentifierDeclarations" ], "type": "object" }, "AWS::QuickSight::Analysis.AnalysisError": { "additionalProperties": false, "properties": { "Message": { "type": "string" }, "Type": { "type": "string" }, "ViolatedEntities": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.Entity" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Analysis.AnalysisSourceEntity": { "additionalProperties": false, "properties": { "SourceTemplate": { "$ref": "#/definitions/AWS::QuickSight::Analysis.AnalysisSourceTemplate" } }, "type": "object" }, "AWS::QuickSight::Analysis.AnalysisSourceTemplate": { "additionalProperties": false, "properties": { "Arn": { "type": "string" }, "DataSetReferences": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.DataSetReference" }, "type": "array" } }, "required": [ "Arn", "DataSetReferences" ], "type": "object" }, "AWS::QuickSight::Analysis.AnchorDateConfiguration": { "additionalProperties": false, "properties": { "AnchorOption": { "type": "string" }, "ParameterName": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Analysis.ArcAxisConfiguration": { "additionalProperties": false, "properties": { "Range": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ArcAxisDisplayRange" }, "ReserveRange": { "type": "number" } }, "type": "object" }, "AWS::QuickSight::Analysis.ArcAxisDisplayRange": { "additionalProperties": false, "properties": { "Max": { "type": "number" }, "Min": { "type": "number" } }, "type": "object" }, "AWS::QuickSight::Analysis.ArcConfiguration": { "additionalProperties": false, "properties": { "ArcAngle": { "type": "number" }, "ArcThickness": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Analysis.ArcOptions": { "additionalProperties": false, "properties": { "ArcThickness": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Analysis.AxisDataOptions": { "additionalProperties": false, "properties": { "DateAxisOptions": { "$ref": "#/definitions/AWS::QuickSight::Analysis.DateAxisOptions" }, "NumericAxisOptions": { "$ref": "#/definitions/AWS::QuickSight::Analysis.NumericAxisOptions" } }, "type": "object" }, "AWS::QuickSight::Analysis.AxisDisplayMinMaxRange": { "additionalProperties": false, "properties": { "Maximum": { "type": "number" }, "Minimum": { "type": "number" } }, "type": "object" }, "AWS::QuickSight::Analysis.AxisDisplayOptions": { "additionalProperties": false, "properties": { "AxisLineVisibility": { "type": "string" }, "AxisOffset": { "type": "string" }, "DataOptions": { "$ref": "#/definitions/AWS::QuickSight::Analysis.AxisDataOptions" }, "GridLineVisibility": { "type": "string" }, "ScrollbarOptions": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ScrollBarOptions" }, "TickLabelOptions": { "$ref": "#/definitions/AWS::QuickSight::Analysis.AxisTickLabelOptions" } }, "type": "object" }, "AWS::QuickSight::Analysis.AxisDisplayRange": { "additionalProperties": false, "properties": { "DataDriven": { "type": "object" }, "MinMax": { "$ref": "#/definitions/AWS::QuickSight::Analysis.AxisDisplayMinMaxRange" } }, "type": "object" }, "AWS::QuickSight::Analysis.AxisLabelOptions": { "additionalProperties": false, "properties": { "ApplyTo": { "$ref": "#/definitions/AWS::QuickSight::Analysis.AxisLabelReferenceOptions" }, "CustomLabel": { "type": "string" }, "FontConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Analysis.FontConfiguration" } }, "type": "object" }, "AWS::QuickSight::Analysis.AxisLabelReferenceOptions": { "additionalProperties": false, "properties": { "Column": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ColumnIdentifier" }, "FieldId": { "type": "string" } }, "required": [ "Column", "FieldId" ], "type": "object" }, "AWS::QuickSight::Analysis.AxisLinearScale": { "additionalProperties": false, "properties": { "StepCount": { "type": "number" }, "StepSize": { "type": "number" } }, "type": "object" }, "AWS::QuickSight::Analysis.AxisLogarithmicScale": { "additionalProperties": false, "properties": { "Base": { "type": "number" } }, "type": "object" }, "AWS::QuickSight::Analysis.AxisScale": { "additionalProperties": false, "properties": { "Linear": { "$ref": "#/definitions/AWS::QuickSight::Analysis.AxisLinearScale" }, "Logarithmic": { "$ref": "#/definitions/AWS::QuickSight::Analysis.AxisLogarithmicScale" } }, "type": "object" }, "AWS::QuickSight::Analysis.AxisTickLabelOptions": { "additionalProperties": false, "properties": { "LabelOptions": { "$ref": "#/definitions/AWS::QuickSight::Analysis.LabelOptions" }, "RotationAngle": { "type": "number" } }, "type": "object" }, "AWS::QuickSight::Analysis.BarChartAggregatedFieldWells": { "additionalProperties": false, "properties": { "Category": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.DimensionField" }, "type": "array" }, "Colors": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.DimensionField" }, "type": "array" }, "SmallMultiples": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.DimensionField" }, "type": "array" }, "Values": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.MeasureField" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Analysis.BarChartConfiguration": { "additionalProperties": false, "properties": { "BarsArrangement": { "type": "string" }, "CategoryAxis": { "$ref": "#/definitions/AWS::QuickSight::Analysis.AxisDisplayOptions" }, "CategoryLabelOptions": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ChartAxisLabelOptions" }, "ColorLabelOptions": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ChartAxisLabelOptions" }, "ContributionAnalysisDefaults": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ContributionAnalysisDefault" }, "type": "array" }, "DataLabels": { "$ref": "#/definitions/AWS::QuickSight::Analysis.DataLabelOptions" }, "FieldWells": { "$ref": "#/definitions/AWS::QuickSight::Analysis.BarChartFieldWells" }, "Legend": { "$ref": "#/definitions/AWS::QuickSight::Analysis.LegendOptions" }, "Orientation": { "type": "string" }, "ReferenceLines": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ReferenceLine" }, "type": "array" }, "SmallMultiplesOptions": { "$ref": "#/definitions/AWS::QuickSight::Analysis.SmallMultiplesOptions" }, "SortConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Analysis.BarChartSortConfiguration" }, "Tooltip": { "$ref": "#/definitions/AWS::QuickSight::Analysis.TooltipOptions" }, "ValueAxis": { "$ref": "#/definitions/AWS::QuickSight::Analysis.AxisDisplayOptions" }, "ValueLabelOptions": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ChartAxisLabelOptions" }, "VisualPalette": { "$ref": "#/definitions/AWS::QuickSight::Analysis.VisualPalette" } }, "type": "object" }, "AWS::QuickSight::Analysis.BarChartFieldWells": { "additionalProperties": false, "properties": { "BarChartAggregatedFieldWells": { "$ref": "#/definitions/AWS::QuickSight::Analysis.BarChartAggregatedFieldWells" } }, "type": "object" }, "AWS::QuickSight::Analysis.BarChartSortConfiguration": { "additionalProperties": false, "properties": { "CategoryItemsLimit": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ItemsLimitConfiguration" }, "CategorySort": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.FieldSortOptions" }, "type": "array" }, "ColorItemsLimit": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ItemsLimitConfiguration" }, "ColorSort": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.FieldSortOptions" }, "type": "array" }, "SmallMultiplesLimitConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ItemsLimitConfiguration" }, "SmallMultiplesSort": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.FieldSortOptions" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Analysis.BarChartVisual": { "additionalProperties": false, "properties": { "Actions": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.VisualCustomAction" }, "type": "array" }, "ChartConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Analysis.BarChartConfiguration" }, "ColumnHierarchies": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ColumnHierarchy" }, "type": "array" }, "Subtitle": { "$ref": "#/definitions/AWS::QuickSight::Analysis.VisualSubtitleLabelOptions" }, "Title": { "$ref": "#/definitions/AWS::QuickSight::Analysis.VisualTitleLabelOptions" }, "VisualId": { "type": "string" } }, "required": [ "VisualId" ], "type": "object" }, "AWS::QuickSight::Analysis.BinCountOptions": { "additionalProperties": false, "properties": { "Value": { "type": "number" } }, "type": "object" }, "AWS::QuickSight::Analysis.BinWidthOptions": { "additionalProperties": false, "properties": { "BinCountLimit": { "type": "number" }, "Value": { "type": "number" } }, "type": "object" }, "AWS::QuickSight::Analysis.BodySectionConfiguration": { "additionalProperties": false, "properties": { "Content": { "$ref": "#/definitions/AWS::QuickSight::Analysis.BodySectionContent" }, "PageBreakConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Analysis.SectionPageBreakConfiguration" }, "SectionId": { "type": "string" }, "Style": { "$ref": "#/definitions/AWS::QuickSight::Analysis.SectionStyle" } }, "required": [ "Content", "SectionId" ], "type": "object" }, "AWS::QuickSight::Analysis.BodySectionContent": { "additionalProperties": false, "properties": { "Layout": { "$ref": "#/definitions/AWS::QuickSight::Analysis.SectionLayoutConfiguration" } }, "type": "object" }, "AWS::QuickSight::Analysis.BoxPlotAggregatedFieldWells": { "additionalProperties": false, "properties": { "GroupBy": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.DimensionField" }, "type": "array" }, "Values": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.MeasureField" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Analysis.BoxPlotChartConfiguration": { "additionalProperties": false, "properties": { "BoxPlotOptions": { "$ref": "#/definitions/AWS::QuickSight::Analysis.BoxPlotOptions" }, "CategoryAxis": { "$ref": "#/definitions/AWS::QuickSight::Analysis.AxisDisplayOptions" }, "CategoryLabelOptions": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ChartAxisLabelOptions" }, "FieldWells": { "$ref": "#/definitions/AWS::QuickSight::Analysis.BoxPlotFieldWells" }, "Legend": { "$ref": "#/definitions/AWS::QuickSight::Analysis.LegendOptions" }, "PrimaryYAxisDisplayOptions": { "$ref": "#/definitions/AWS::QuickSight::Analysis.AxisDisplayOptions" }, "PrimaryYAxisLabelOptions": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ChartAxisLabelOptions" }, "ReferenceLines": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ReferenceLine" }, "type": "array" }, "SortConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Analysis.BoxPlotSortConfiguration" }, "Tooltip": { "$ref": "#/definitions/AWS::QuickSight::Analysis.TooltipOptions" }, "VisualPalette": { "$ref": "#/definitions/AWS::QuickSight::Analysis.VisualPalette" } }, "type": "object" }, "AWS::QuickSight::Analysis.BoxPlotFieldWells": { "additionalProperties": false, "properties": { "BoxPlotAggregatedFieldWells": { "$ref": "#/definitions/AWS::QuickSight::Analysis.BoxPlotAggregatedFieldWells" } }, "type": "object" }, "AWS::QuickSight::Analysis.BoxPlotOptions": { "additionalProperties": false, "properties": { "AllDataPointsVisibility": { "type": "string" }, "OutlierVisibility": { "type": "string" }, "StyleOptions": { "$ref": "#/definitions/AWS::QuickSight::Analysis.BoxPlotStyleOptions" } }, "type": "object" }, "AWS::QuickSight::Analysis.BoxPlotSortConfiguration": { "additionalProperties": false, "properties": { "CategorySort": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.FieldSortOptions" }, "type": "array" }, "PaginationConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Analysis.PaginationConfiguration" } }, "type": "object" }, "AWS::QuickSight::Analysis.BoxPlotStyleOptions": { "additionalProperties": false, "properties": { "FillStyle": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Analysis.BoxPlotVisual": { "additionalProperties": false, "properties": { "Actions": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.VisualCustomAction" }, "type": "array" }, "ChartConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Analysis.BoxPlotChartConfiguration" }, "ColumnHierarchies": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ColumnHierarchy" }, "type": "array" }, "Subtitle": { "$ref": "#/definitions/AWS::QuickSight::Analysis.VisualSubtitleLabelOptions" }, "Title": { "$ref": "#/definitions/AWS::QuickSight::Analysis.VisualTitleLabelOptions" }, "VisualId": { "type": "string" } }, "required": [ "VisualId" ], "type": "object" }, "AWS::QuickSight::Analysis.CalculatedField": { "additionalProperties": false, "properties": { "DataSetIdentifier": { "type": "string" }, "Expression": { "type": "string" }, "Name": { "type": "string" } }, "required": [ "DataSetIdentifier", "Expression", "Name" ], "type": "object" }, "AWS::QuickSight::Analysis.CalculatedMeasureField": { "additionalProperties": false, "properties": { "Expression": { "type": "string" }, "FieldId": { "type": "string" } }, "required": [ "Expression", "FieldId" ], "type": "object" }, "AWS::QuickSight::Analysis.CascadingControlConfiguration": { "additionalProperties": false, "properties": { "SourceControls": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.CascadingControlSource" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Analysis.CascadingControlSource": { "additionalProperties": false, "properties": { "ColumnToMatch": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ColumnIdentifier" }, "SourceSheetControlId": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Analysis.CategoricalDimensionField": { "additionalProperties": false, "properties": { "Column": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ColumnIdentifier" }, "FieldId": { "type": "string" }, "FormatConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Analysis.StringFormatConfiguration" }, "HierarchyId": { "type": "string" } }, "required": [ "Column", "FieldId" ], "type": "object" }, "AWS::QuickSight::Analysis.CategoricalMeasureField": { "additionalProperties": false, "properties": { "AggregationFunction": { "type": "string" }, "Column": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ColumnIdentifier" }, "FieldId": { "type": "string" }, "FormatConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Analysis.StringFormatConfiguration" } }, "required": [ "Column", "FieldId" ], "type": "object" }, "AWS::QuickSight::Analysis.CategoryDrillDownFilter": { "additionalProperties": false, "properties": { "CategoryValues": { "items": { "type": "string" }, "type": "array" }, "Column": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ColumnIdentifier" } }, "required": [ "CategoryValues", "Column" ], "type": "object" }, "AWS::QuickSight::Analysis.CategoryFilter": { "additionalProperties": false, "properties": { "Column": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ColumnIdentifier" }, "Configuration": { "$ref": "#/definitions/AWS::QuickSight::Analysis.CategoryFilterConfiguration" }, "FilterId": { "type": "string" } }, "required": [ "Column", "Configuration", "FilterId" ], "type": "object" }, "AWS::QuickSight::Analysis.CategoryFilterConfiguration": { "additionalProperties": false, "properties": { "CustomFilterConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Analysis.CustomFilterConfiguration" }, "CustomFilterListConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Analysis.CustomFilterListConfiguration" }, "FilterListConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Analysis.FilterListConfiguration" } }, "type": "object" }, "AWS::QuickSight::Analysis.ChartAxisLabelOptions": { "additionalProperties": false, "properties": { "AxisLabelOptions": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.AxisLabelOptions" }, "type": "array" }, "SortIconVisibility": { "type": "string" }, "Visibility": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Analysis.ClusterMarker": { "additionalProperties": false, "properties": { "SimpleClusterMarker": { "$ref": "#/definitions/AWS::QuickSight::Analysis.SimpleClusterMarker" } }, "type": "object" }, "AWS::QuickSight::Analysis.ClusterMarkerConfiguration": { "additionalProperties": false, "properties": { "ClusterMarker": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ClusterMarker" } }, "type": "object" }, "AWS::QuickSight::Analysis.ColorScale": { "additionalProperties": false, "properties": { "ColorFillType": { "type": "string" }, "Colors": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.DataColor" }, "type": "array" }, "NullValueColor": { "$ref": "#/definitions/AWS::QuickSight::Analysis.DataColor" } }, "required": [ "ColorFillType", "Colors" ], "type": "object" }, "AWS::QuickSight::Analysis.ColumnConfiguration": { "additionalProperties": false, "properties": { "Column": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ColumnIdentifier" }, "FormatConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Analysis.FormatConfiguration" }, "Role": { "type": "string" } }, "required": [ "Column" ], "type": "object" }, "AWS::QuickSight::Analysis.ColumnHierarchy": { "additionalProperties": false, "properties": { "DateTimeHierarchy": { "$ref": "#/definitions/AWS::QuickSight::Analysis.DateTimeHierarchy" }, "ExplicitHierarchy": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ExplicitHierarchy" }, "PredefinedHierarchy": { "$ref": "#/definitions/AWS::QuickSight::Analysis.PredefinedHierarchy" } }, "type": "object" }, "AWS::QuickSight::Analysis.ColumnIdentifier": { "additionalProperties": false, "properties": { "ColumnName": { "type": "string" }, "DataSetIdentifier": { "type": "string" } }, "required": [ "ColumnName", "DataSetIdentifier" ], "type": "object" }, "AWS::QuickSight::Analysis.ColumnSort": { "additionalProperties": false, "properties": { "AggregationFunction": { "$ref": "#/definitions/AWS::QuickSight::Analysis.AggregationFunction" }, "Direction": { "type": "string" }, "SortBy": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ColumnIdentifier" } }, "required": [ "Direction", "SortBy" ], "type": "object" }, "AWS::QuickSight::Analysis.ColumnTooltipItem": { "additionalProperties": false, "properties": { "Aggregation": { "$ref": "#/definitions/AWS::QuickSight::Analysis.AggregationFunction" }, "Column": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ColumnIdentifier" }, "Label": { "type": "string" }, "Visibility": { "type": "string" } }, "required": [ "Column" ], "type": "object" }, "AWS::QuickSight::Analysis.ComboChartAggregatedFieldWells": { "additionalProperties": false, "properties": { "BarValues": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.MeasureField" }, "type": "array" }, "Category": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.DimensionField" }, "type": "array" }, "Colors": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.DimensionField" }, "type": "array" }, "LineValues": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.MeasureField" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Analysis.ComboChartConfiguration": { "additionalProperties": false, "properties": { "BarDataLabels": { "$ref": "#/definitions/AWS::QuickSight::Analysis.DataLabelOptions" }, "BarsArrangement": { "type": "string" }, "CategoryAxis": { "$ref": "#/definitions/AWS::QuickSight::Analysis.AxisDisplayOptions" }, "CategoryLabelOptions": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ChartAxisLabelOptions" }, "ColorLabelOptions": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ChartAxisLabelOptions" }, "FieldWells": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ComboChartFieldWells" }, "Legend": { "$ref": "#/definitions/AWS::QuickSight::Analysis.LegendOptions" }, "LineDataLabels": { "$ref": "#/definitions/AWS::QuickSight::Analysis.DataLabelOptions" }, "PrimaryYAxisDisplayOptions": { "$ref": "#/definitions/AWS::QuickSight::Analysis.AxisDisplayOptions" }, "PrimaryYAxisLabelOptions": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ChartAxisLabelOptions" }, "ReferenceLines": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ReferenceLine" }, "type": "array" }, "SecondaryYAxisDisplayOptions": { "$ref": "#/definitions/AWS::QuickSight::Analysis.AxisDisplayOptions" }, "SecondaryYAxisLabelOptions": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ChartAxisLabelOptions" }, "SortConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ComboChartSortConfiguration" }, "Tooltip": { "$ref": "#/definitions/AWS::QuickSight::Analysis.TooltipOptions" }, "VisualPalette": { "$ref": "#/definitions/AWS::QuickSight::Analysis.VisualPalette" } }, "type": "object" }, "AWS::QuickSight::Analysis.ComboChartFieldWells": { "additionalProperties": false, "properties": { "ComboChartAggregatedFieldWells": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ComboChartAggregatedFieldWells" } }, "type": "object" }, "AWS::QuickSight::Analysis.ComboChartSortConfiguration": { "additionalProperties": false, "properties": { "CategoryItemsLimit": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ItemsLimitConfiguration" }, "CategorySort": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.FieldSortOptions" }, "type": "array" }, "ColorItemsLimit": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ItemsLimitConfiguration" }, "ColorSort": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.FieldSortOptions" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Analysis.ComboChartVisual": { "additionalProperties": false, "properties": { "Actions": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.VisualCustomAction" }, "type": "array" }, "ChartConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ComboChartConfiguration" }, "ColumnHierarchies": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ColumnHierarchy" }, "type": "array" }, "Subtitle": { "$ref": "#/definitions/AWS::QuickSight::Analysis.VisualSubtitleLabelOptions" }, "Title": { "$ref": "#/definitions/AWS::QuickSight::Analysis.VisualTitleLabelOptions" }, "VisualId": { "type": "string" } }, "required": [ "VisualId" ], "type": "object" }, "AWS::QuickSight::Analysis.ComparisonConfiguration": { "additionalProperties": false, "properties": { "ComparisonFormat": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ComparisonFormatConfiguration" }, "ComparisonMethod": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Analysis.ComparisonFormatConfiguration": { "additionalProperties": false, "properties": { "NumberDisplayFormatConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Analysis.NumberDisplayFormatConfiguration" }, "PercentageDisplayFormatConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Analysis.PercentageDisplayFormatConfiguration" } }, "type": "object" }, "AWS::QuickSight::Analysis.Computation": { "additionalProperties": false, "properties": { "Forecast": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ForecastComputation" }, "GrowthRate": { "$ref": "#/definitions/AWS::QuickSight::Analysis.GrowthRateComputation" }, "MaximumMinimum": { "$ref": "#/definitions/AWS::QuickSight::Analysis.MaximumMinimumComputation" }, "MetricComparison": { "$ref": "#/definitions/AWS::QuickSight::Analysis.MetricComparisonComputation" }, "PeriodOverPeriod": { "$ref": "#/definitions/AWS::QuickSight::Analysis.PeriodOverPeriodComputation" }, "PeriodToDate": { "$ref": "#/definitions/AWS::QuickSight::Analysis.PeriodToDateComputation" }, "TopBottomMovers": { "$ref": "#/definitions/AWS::QuickSight::Analysis.TopBottomMoversComputation" }, "TopBottomRanked": { "$ref": "#/definitions/AWS::QuickSight::Analysis.TopBottomRankedComputation" }, "TotalAggregation": { "$ref": "#/definitions/AWS::QuickSight::Analysis.TotalAggregationComputation" }, "UniqueValues": { "$ref": "#/definitions/AWS::QuickSight::Analysis.UniqueValuesComputation" } }, "type": "object" }, "AWS::QuickSight::Analysis.ConditionalFormattingColor": { "additionalProperties": false, "properties": { "Gradient": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ConditionalFormattingGradientColor" }, "Solid": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ConditionalFormattingSolidColor" } }, "type": "object" }, "AWS::QuickSight::Analysis.ConditionalFormattingCustomIconCondition": { "additionalProperties": false, "properties": { "Color": { "type": "string" }, "DisplayConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ConditionalFormattingIconDisplayConfiguration" }, "Expression": { "type": "string" }, "IconOptions": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ConditionalFormattingCustomIconOptions" } }, "required": [ "Expression", "IconOptions" ], "type": "object" }, "AWS::QuickSight::Analysis.ConditionalFormattingCustomIconOptions": { "additionalProperties": false, "properties": { "Icon": { "type": "string" }, "UnicodeIcon": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Analysis.ConditionalFormattingGradientColor": { "additionalProperties": false, "properties": { "Color": { "$ref": "#/definitions/AWS::QuickSight::Analysis.GradientColor" }, "Expression": { "type": "string" } }, "required": [ "Color", "Expression" ], "type": "object" }, "AWS::QuickSight::Analysis.ConditionalFormattingIcon": { "additionalProperties": false, "properties": { "CustomCondition": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ConditionalFormattingCustomIconCondition" }, "IconSet": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ConditionalFormattingIconSet" } }, "type": "object" }, "AWS::QuickSight::Analysis.ConditionalFormattingIconDisplayConfiguration": { "additionalProperties": false, "properties": { "IconDisplayOption": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Analysis.ConditionalFormattingIconSet": { "additionalProperties": false, "properties": { "Expression": { "type": "string" }, "IconSetType": { "type": "string" } }, "required": [ "Expression" ], "type": "object" }, "AWS::QuickSight::Analysis.ConditionalFormattingSolidColor": { "additionalProperties": false, "properties": { "Color": { "type": "string" }, "Expression": { "type": "string" } }, "required": [ "Expression" ], "type": "object" }, "AWS::QuickSight::Analysis.ContributionAnalysisDefault": { "additionalProperties": false, "properties": { "ContributorDimensions": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ColumnIdentifier" }, "type": "array" }, "MeasureFieldId": { "type": "string" } }, "required": [ "ContributorDimensions", "MeasureFieldId" ], "type": "object" }, "AWS::QuickSight::Analysis.CurrencyDisplayFormatConfiguration": { "additionalProperties": false, "properties": { "DecimalPlacesConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Analysis.DecimalPlacesConfiguration" }, "NegativeValueConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Analysis.NegativeValueConfiguration" }, "NullValueFormatConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Analysis.NullValueFormatConfiguration" }, "NumberScale": { "type": "string" }, "Prefix": { "type": "string" }, "SeparatorConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Analysis.NumericSeparatorConfiguration" }, "Suffix": { "type": "string" }, "Symbol": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Analysis.CustomActionFilterOperation": { "additionalProperties": false, "properties": { "SelectedFieldsConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Analysis.FilterOperationSelectedFieldsConfiguration" }, "TargetVisualsConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Analysis.FilterOperationTargetVisualsConfiguration" } }, "required": [ "SelectedFieldsConfiguration", "TargetVisualsConfiguration" ], "type": "object" }, "AWS::QuickSight::Analysis.CustomActionNavigationOperation": { "additionalProperties": false, "properties": { "LocalNavigationConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Analysis.LocalNavigationConfiguration" } }, "type": "object" }, "AWS::QuickSight::Analysis.CustomActionSetParametersOperation": { "additionalProperties": false, "properties": { "ParameterValueConfigurations": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.SetParameterValueConfiguration" }, "type": "array" } }, "required": [ "ParameterValueConfigurations" ], "type": "object" }, "AWS::QuickSight::Analysis.CustomActionURLOperation": { "additionalProperties": false, "properties": { "URLTarget": { "type": "string" }, "URLTemplate": { "type": "string" } }, "required": [ "URLTarget", "URLTemplate" ], "type": "object" }, "AWS::QuickSight::Analysis.CustomContentConfiguration": { "additionalProperties": false, "properties": { "ContentType": { "type": "string" }, "ContentUrl": { "type": "string" }, "ImageScaling": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Analysis.CustomContentVisual": { "additionalProperties": false, "properties": { "Actions": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.VisualCustomAction" }, "type": "array" }, "ChartConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Analysis.CustomContentConfiguration" }, "DataSetIdentifier": { "type": "string" }, "Subtitle": { "$ref": "#/definitions/AWS::QuickSight::Analysis.VisualSubtitleLabelOptions" }, "Title": { "$ref": "#/definitions/AWS::QuickSight::Analysis.VisualTitleLabelOptions" }, "VisualId": { "type": "string" } }, "required": [ "DataSetIdentifier", "VisualId" ], "type": "object" }, "AWS::QuickSight::Analysis.CustomFilterConfiguration": { "additionalProperties": false, "properties": { "CategoryValue": { "type": "string" }, "MatchOperator": { "type": "string" }, "NullOption": { "type": "string" }, "ParameterName": { "type": "string" }, "SelectAllOptions": { "type": "string" } }, "required": [ "MatchOperator", "NullOption" ], "type": "object" }, "AWS::QuickSight::Analysis.CustomFilterListConfiguration": { "additionalProperties": false, "properties": { "CategoryValues": { "items": { "type": "string" }, "type": "array" }, "MatchOperator": { "type": "string" }, "NullOption": { "type": "string" }, "SelectAllOptions": { "type": "string" } }, "required": [ "MatchOperator", "NullOption" ], "type": "object" }, "AWS::QuickSight::Analysis.CustomNarrativeOptions": { "additionalProperties": false, "properties": { "Narrative": { "type": "string" } }, "required": [ "Narrative" ], "type": "object" }, "AWS::QuickSight::Analysis.CustomParameterValues": { "additionalProperties": false, "properties": { "DateTimeValues": { "items": { "type": "string" }, "type": "array" }, "DecimalValues": { "items": { "type": "number" }, "type": "array" }, "IntegerValues": { "items": { "type": "number" }, "type": "array" }, "StringValues": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Analysis.CustomValuesConfiguration": { "additionalProperties": false, "properties": { "CustomValues": { "$ref": "#/definitions/AWS::QuickSight::Analysis.CustomParameterValues" }, "IncludeNullValue": { "type": "boolean" } }, "required": [ "CustomValues" ], "type": "object" }, "AWS::QuickSight::Analysis.DataBarsOptions": { "additionalProperties": false, "properties": { "FieldId": { "type": "string" }, "NegativeColor": { "type": "string" }, "PositiveColor": { "type": "string" } }, "required": [ "FieldId" ], "type": "object" }, "AWS::QuickSight::Analysis.DataColor": { "additionalProperties": false, "properties": { "Color": { "type": "string" }, "DataValue": { "type": "number" } }, "type": "object" }, "AWS::QuickSight::Analysis.DataFieldSeriesItem": { "additionalProperties": false, "properties": { "AxisBinding": { "type": "string" }, "FieldId": { "type": "string" }, "FieldValue": { "type": "string" }, "Settings": { "$ref": "#/definitions/AWS::QuickSight::Analysis.LineChartSeriesSettings" } }, "required": [ "AxisBinding", "FieldId" ], "type": "object" }, "AWS::QuickSight::Analysis.DataLabelOptions": { "additionalProperties": false, "properties": { "CategoryLabelVisibility": { "type": "string" }, "DataLabelTypes": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.DataLabelType" }, "type": "array" }, "LabelColor": { "type": "string" }, "LabelContent": { "type": "string" }, "LabelFontConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Analysis.FontConfiguration" }, "MeasureLabelVisibility": { "type": "string" }, "Overlap": { "type": "string" }, "Position": { "type": "string" }, "TotalsVisibility": { "type": "string" }, "Visibility": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Analysis.DataLabelType": { "additionalProperties": false, "properties": { "DataPathLabelType": { "$ref": "#/definitions/AWS::QuickSight::Analysis.DataPathLabelType" }, "FieldLabelType": { "$ref": "#/definitions/AWS::QuickSight::Analysis.FieldLabelType" }, "MaximumLabelType": { "$ref": "#/definitions/AWS::QuickSight::Analysis.MaximumLabelType" }, "MinimumLabelType": { "$ref": "#/definitions/AWS::QuickSight::Analysis.MinimumLabelType" }, "RangeEndsLabelType": { "$ref": "#/definitions/AWS::QuickSight::Analysis.RangeEndsLabelType" } }, "type": "object" }, "AWS::QuickSight::Analysis.DataPathColor": { "additionalProperties": false, "properties": { "Color": { "type": "string" }, "Element": { "$ref": "#/definitions/AWS::QuickSight::Analysis.DataPathValue" }, "TimeGranularity": { "type": "string" } }, "required": [ "Color", "Element" ], "type": "object" }, "AWS::QuickSight::Analysis.DataPathLabelType": { "additionalProperties": false, "properties": { "FieldId": { "type": "string" }, "FieldValue": { "type": "string" }, "Visibility": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Analysis.DataPathSort": { "additionalProperties": false, "properties": { "Direction": { "type": "string" }, "SortPaths": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.DataPathValue" }, "type": "array" } }, "required": [ "Direction", "SortPaths" ], "type": "object" }, "AWS::QuickSight::Analysis.DataPathValue": { "additionalProperties": false, "properties": { "FieldId": { "type": "string" }, "FieldValue": { "type": "string" } }, "required": [ "FieldId", "FieldValue" ], "type": "object" }, "AWS::QuickSight::Analysis.DataSetIdentifierDeclaration": { "additionalProperties": false, "properties": { "DataSetArn": { "type": "string" }, "Identifier": { "type": "string" } }, "required": [ "DataSetArn", "Identifier" ], "type": "object" }, "AWS::QuickSight::Analysis.DataSetReference": { "additionalProperties": false, "properties": { "DataSetArn": { "type": "string" }, "DataSetPlaceholder": { "type": "string" } }, "required": [ "DataSetArn", "DataSetPlaceholder" ], "type": "object" }, "AWS::QuickSight::Analysis.DateAxisOptions": { "additionalProperties": false, "properties": { "MissingDateVisibility": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Analysis.DateDimensionField": { "additionalProperties": false, "properties": { "Column": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ColumnIdentifier" }, "DateGranularity": { "type": "string" }, "FieldId": { "type": "string" }, "FormatConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Analysis.DateTimeFormatConfiguration" }, "HierarchyId": { "type": "string" } }, "required": [ "Column", "FieldId" ], "type": "object" }, "AWS::QuickSight::Analysis.DateMeasureField": { "additionalProperties": false, "properties": { "AggregationFunction": { "type": "string" }, "Column": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ColumnIdentifier" }, "FieldId": { "type": "string" }, "FormatConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Analysis.DateTimeFormatConfiguration" } }, "required": [ "Column", "FieldId" ], "type": "object" }, "AWS::QuickSight::Analysis.DateTimeDefaultValues": { "additionalProperties": false, "properties": { "DynamicValue": { "$ref": "#/definitions/AWS::QuickSight::Analysis.DynamicDefaultValue" }, "RollingDate": { "$ref": "#/definitions/AWS::QuickSight::Analysis.RollingDateConfiguration" }, "StaticValues": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Analysis.DateTimeFormatConfiguration": { "additionalProperties": false, "properties": { "DateTimeFormat": { "type": "string" }, "NullValueFormatConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Analysis.NullValueFormatConfiguration" }, "NumericFormatConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Analysis.NumericFormatConfiguration" } }, "type": "object" }, "AWS::QuickSight::Analysis.DateTimeHierarchy": { "additionalProperties": false, "properties": { "DrillDownFilters": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.DrillDownFilter" }, "type": "array" }, "HierarchyId": { "type": "string" } }, "required": [ "HierarchyId" ], "type": "object" }, "AWS::QuickSight::Analysis.DateTimeParameter": { "additionalProperties": false, "properties": { "Name": { "type": "string" }, "Values": { "items": { "type": "string" }, "type": "array" } }, "required": [ "Name", "Values" ], "type": "object" }, "AWS::QuickSight::Analysis.DateTimeParameterDeclaration": { "additionalProperties": false, "properties": { "DefaultValues": { "$ref": "#/definitions/AWS::QuickSight::Analysis.DateTimeDefaultValues" }, "MappedDataSetParameters": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.MappedDataSetParameter" }, "type": "array" }, "Name": { "type": "string" }, "TimeGranularity": { "type": "string" }, "ValueWhenUnset": { "$ref": "#/definitions/AWS::QuickSight::Analysis.DateTimeValueWhenUnsetConfiguration" } }, "required": [ "Name" ], "type": "object" }, "AWS::QuickSight::Analysis.DateTimePickerControlDisplayOptions": { "additionalProperties": false, "properties": { "DateTimeFormat": { "type": "string" }, "TitleOptions": { "$ref": "#/definitions/AWS::QuickSight::Analysis.LabelOptions" } }, "type": "object" }, "AWS::QuickSight::Analysis.DateTimeValueWhenUnsetConfiguration": { "additionalProperties": false, "properties": { "CustomValue": { "type": "string" }, "ValueWhenUnsetOption": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Analysis.DecimalDefaultValues": { "additionalProperties": false, "properties": { "DynamicValue": { "$ref": "#/definitions/AWS::QuickSight::Analysis.DynamicDefaultValue" }, "StaticValues": { "items": { "type": "number" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Analysis.DecimalParameter": { "additionalProperties": false, "properties": { "Name": { "type": "string" }, "Values": { "items": { "type": "number" }, "type": "array" } }, "required": [ "Name", "Values" ], "type": "object" }, "AWS::QuickSight::Analysis.DecimalParameterDeclaration": { "additionalProperties": false, "properties": { "DefaultValues": { "$ref": "#/definitions/AWS::QuickSight::Analysis.DecimalDefaultValues" }, "MappedDataSetParameters": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.MappedDataSetParameter" }, "type": "array" }, "Name": { "type": "string" }, "ParameterValueType": { "type": "string" }, "ValueWhenUnset": { "$ref": "#/definitions/AWS::QuickSight::Analysis.DecimalValueWhenUnsetConfiguration" } }, "required": [ "Name", "ParameterValueType" ], "type": "object" }, "AWS::QuickSight::Analysis.DecimalPlacesConfiguration": { "additionalProperties": false, "properties": { "DecimalPlaces": { "type": "number" } }, "required": [ "DecimalPlaces" ], "type": "object" }, "AWS::QuickSight::Analysis.DecimalValueWhenUnsetConfiguration": { "additionalProperties": false, "properties": { "CustomValue": { "type": "number" }, "ValueWhenUnsetOption": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Analysis.DefaultFreeFormLayoutConfiguration": { "additionalProperties": false, "properties": { "CanvasSizeOptions": { "$ref": "#/definitions/AWS::QuickSight::Analysis.FreeFormLayoutCanvasSizeOptions" } }, "required": [ "CanvasSizeOptions" ], "type": "object" }, "AWS::QuickSight::Analysis.DefaultGridLayoutConfiguration": { "additionalProperties": false, "properties": { "CanvasSizeOptions": { "$ref": "#/definitions/AWS::QuickSight::Analysis.GridLayoutCanvasSizeOptions" } }, "required": [ "CanvasSizeOptions" ], "type": "object" }, "AWS::QuickSight::Analysis.DefaultInteractiveLayoutConfiguration": { "additionalProperties": false, "properties": { "FreeForm": { "$ref": "#/definitions/AWS::QuickSight::Analysis.DefaultFreeFormLayoutConfiguration" }, "Grid": { "$ref": "#/definitions/AWS::QuickSight::Analysis.DefaultGridLayoutConfiguration" } }, "type": "object" }, "AWS::QuickSight::Analysis.DefaultNewSheetConfiguration": { "additionalProperties": false, "properties": { "InteractiveLayoutConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Analysis.DefaultInteractiveLayoutConfiguration" }, "PaginatedLayoutConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Analysis.DefaultPaginatedLayoutConfiguration" }, "SheetContentType": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Analysis.DefaultPaginatedLayoutConfiguration": { "additionalProperties": false, "properties": { "SectionBased": { "$ref": "#/definitions/AWS::QuickSight::Analysis.DefaultSectionBasedLayoutConfiguration" } }, "type": "object" }, "AWS::QuickSight::Analysis.DefaultSectionBasedLayoutConfiguration": { "additionalProperties": false, "properties": { "CanvasSizeOptions": { "$ref": "#/definitions/AWS::QuickSight::Analysis.SectionBasedLayoutCanvasSizeOptions" } }, "required": [ "CanvasSizeOptions" ], "type": "object" }, "AWS::QuickSight::Analysis.DestinationParameterValueConfiguration": { "additionalProperties": false, "properties": { "CustomValuesConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Analysis.CustomValuesConfiguration" }, "SelectAllValueOptions": { "type": "string" }, "SourceColumn": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ColumnIdentifier" }, "SourceField": { "type": "string" }, "SourceParameterName": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Analysis.DimensionField": { "additionalProperties": false, "properties": { "CategoricalDimensionField": { "$ref": "#/definitions/AWS::QuickSight::Analysis.CategoricalDimensionField" }, "DateDimensionField": { "$ref": "#/definitions/AWS::QuickSight::Analysis.DateDimensionField" }, "NumericalDimensionField": { "$ref": "#/definitions/AWS::QuickSight::Analysis.NumericalDimensionField" } }, "type": "object" }, "AWS::QuickSight::Analysis.DonutCenterOptions": { "additionalProperties": false, "properties": { "LabelVisibility": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Analysis.DonutOptions": { "additionalProperties": false, "properties": { "ArcOptions": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ArcOptions" }, "DonutCenterOptions": { "$ref": "#/definitions/AWS::QuickSight::Analysis.DonutCenterOptions" } }, "type": "object" }, "AWS::QuickSight::Analysis.DrillDownFilter": { "additionalProperties": false, "properties": { "CategoryFilter": { "$ref": "#/definitions/AWS::QuickSight::Analysis.CategoryDrillDownFilter" }, "NumericEqualityFilter": { "$ref": "#/definitions/AWS::QuickSight::Analysis.NumericEqualityDrillDownFilter" }, "TimeRangeFilter": { "$ref": "#/definitions/AWS::QuickSight::Analysis.TimeRangeDrillDownFilter" } }, "type": "object" }, "AWS::QuickSight::Analysis.DropDownControlDisplayOptions": { "additionalProperties": false, "properties": { "SelectAllOptions": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ListControlSelectAllOptions" }, "TitleOptions": { "$ref": "#/definitions/AWS::QuickSight::Analysis.LabelOptions" } }, "type": "object" }, "AWS::QuickSight::Analysis.DynamicDefaultValue": { "additionalProperties": false, "properties": { "DefaultValueColumn": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ColumnIdentifier" }, "GroupNameColumn": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ColumnIdentifier" }, "UserNameColumn": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ColumnIdentifier" } }, "required": [ "DefaultValueColumn" ], "type": "object" }, "AWS::QuickSight::Analysis.EmptyVisual": { "additionalProperties": false, "properties": { "Actions": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.VisualCustomAction" }, "type": "array" }, "DataSetIdentifier": { "type": "string" }, "VisualId": { "type": "string" } }, "required": [ "DataSetIdentifier", "VisualId" ], "type": "object" }, "AWS::QuickSight::Analysis.Entity": { "additionalProperties": false, "properties": { "Path": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Analysis.ExcludePeriodConfiguration": { "additionalProperties": false, "properties": { "Amount": { "type": "number" }, "Granularity": { "type": "string" }, "Status": { "type": "string" } }, "required": [ "Amount", "Granularity" ], "type": "object" }, "AWS::QuickSight::Analysis.ExplicitHierarchy": { "additionalProperties": false, "properties": { "Columns": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ColumnIdentifier" }, "type": "array" }, "DrillDownFilters": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.DrillDownFilter" }, "type": "array" }, "HierarchyId": { "type": "string" } }, "required": [ "Columns", "HierarchyId" ], "type": "object" }, "AWS::QuickSight::Analysis.FieldBasedTooltip": { "additionalProperties": false, "properties": { "AggregationVisibility": { "type": "string" }, "TooltipFields": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.TooltipItem" }, "type": "array" }, "TooltipTitleType": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Analysis.FieldLabelType": { "additionalProperties": false, "properties": { "FieldId": { "type": "string" }, "Visibility": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Analysis.FieldSeriesItem": { "additionalProperties": false, "properties": { "AxisBinding": { "type": "string" }, "FieldId": { "type": "string" }, "Settings": { "$ref": "#/definitions/AWS::QuickSight::Analysis.LineChartSeriesSettings" } }, "required": [ "AxisBinding", "FieldId" ], "type": "object" }, "AWS::QuickSight::Analysis.FieldSort": { "additionalProperties": false, "properties": { "Direction": { "type": "string" }, "FieldId": { "type": "string" } }, "required": [ "Direction", "FieldId" ], "type": "object" }, "AWS::QuickSight::Analysis.FieldSortOptions": { "additionalProperties": false, "properties": { "ColumnSort": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ColumnSort" }, "FieldSort": { "$ref": "#/definitions/AWS::QuickSight::Analysis.FieldSort" } }, "type": "object" }, "AWS::QuickSight::Analysis.FieldTooltipItem": { "additionalProperties": false, "properties": { "FieldId": { "type": "string" }, "Label": { "type": "string" }, "Visibility": { "type": "string" } }, "required": [ "FieldId" ], "type": "object" }, "AWS::QuickSight::Analysis.FilledMapAggregatedFieldWells": { "additionalProperties": false, "properties": { "Geospatial": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.DimensionField" }, "type": "array" }, "Values": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.MeasureField" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Analysis.FilledMapConditionalFormatting": { "additionalProperties": false, "properties": { "ConditionalFormattingOptions": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.FilledMapConditionalFormattingOption" }, "type": "array" } }, "required": [ "ConditionalFormattingOptions" ], "type": "object" }, "AWS::QuickSight::Analysis.FilledMapConditionalFormattingOption": { "additionalProperties": false, "properties": { "Shape": { "$ref": "#/definitions/AWS::QuickSight::Analysis.FilledMapShapeConditionalFormatting" } }, "required": [ "Shape" ], "type": "object" }, "AWS::QuickSight::Analysis.FilledMapConfiguration": { "additionalProperties": false, "properties": { "FieldWells": { "$ref": "#/definitions/AWS::QuickSight::Analysis.FilledMapFieldWells" }, "Legend": { "$ref": "#/definitions/AWS::QuickSight::Analysis.LegendOptions" }, "MapStyleOptions": { "$ref": "#/definitions/AWS::QuickSight::Analysis.GeospatialMapStyleOptions" }, "SortConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Analysis.FilledMapSortConfiguration" }, "Tooltip": { "$ref": "#/definitions/AWS::QuickSight::Analysis.TooltipOptions" }, "WindowOptions": { "$ref": "#/definitions/AWS::QuickSight::Analysis.GeospatialWindowOptions" } }, "type": "object" }, "AWS::QuickSight::Analysis.FilledMapFieldWells": { "additionalProperties": false, "properties": { "FilledMapAggregatedFieldWells": { "$ref": "#/definitions/AWS::QuickSight::Analysis.FilledMapAggregatedFieldWells" } }, "type": "object" }, "AWS::QuickSight::Analysis.FilledMapShapeConditionalFormatting": { "additionalProperties": false, "properties": { "FieldId": { "type": "string" }, "Format": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ShapeConditionalFormat" } }, "required": [ "FieldId" ], "type": "object" }, "AWS::QuickSight::Analysis.FilledMapSortConfiguration": { "additionalProperties": false, "properties": { "CategorySort": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.FieldSortOptions" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Analysis.FilledMapVisual": { "additionalProperties": false, "properties": { "Actions": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.VisualCustomAction" }, "type": "array" }, "ChartConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Analysis.FilledMapConfiguration" }, "ColumnHierarchies": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ColumnHierarchy" }, "type": "array" }, "ConditionalFormatting": { "$ref": "#/definitions/AWS::QuickSight::Analysis.FilledMapConditionalFormatting" }, "Subtitle": { "$ref": "#/definitions/AWS::QuickSight::Analysis.VisualSubtitleLabelOptions" }, "Title": { "$ref": "#/definitions/AWS::QuickSight::Analysis.VisualTitleLabelOptions" }, "VisualId": { "type": "string" } }, "required": [ "VisualId" ], "type": "object" }, "AWS::QuickSight::Analysis.Filter": { "additionalProperties": false, "properties": { "CategoryFilter": { "$ref": "#/definitions/AWS::QuickSight::Analysis.CategoryFilter" }, "NumericEqualityFilter": { "$ref": "#/definitions/AWS::QuickSight::Analysis.NumericEqualityFilter" }, "NumericRangeFilter": { "$ref": "#/definitions/AWS::QuickSight::Analysis.NumericRangeFilter" }, "RelativeDatesFilter": { "$ref": "#/definitions/AWS::QuickSight::Analysis.RelativeDatesFilter" }, "TimeEqualityFilter": { "$ref": "#/definitions/AWS::QuickSight::Analysis.TimeEqualityFilter" }, "TimeRangeFilter": { "$ref": "#/definitions/AWS::QuickSight::Analysis.TimeRangeFilter" }, "TopBottomFilter": { "$ref": "#/definitions/AWS::QuickSight::Analysis.TopBottomFilter" } }, "type": "object" }, "AWS::QuickSight::Analysis.FilterControl": { "additionalProperties": false, "properties": { "DateTimePicker": { "$ref": "#/definitions/AWS::QuickSight::Analysis.FilterDateTimePickerControl" }, "Dropdown": { "$ref": "#/definitions/AWS::QuickSight::Analysis.FilterDropDownControl" }, "List": { "$ref": "#/definitions/AWS::QuickSight::Analysis.FilterListControl" }, "RelativeDateTime": { "$ref": "#/definitions/AWS::QuickSight::Analysis.FilterRelativeDateTimeControl" }, "Slider": { "$ref": "#/definitions/AWS::QuickSight::Analysis.FilterSliderControl" }, "TextArea": { "$ref": "#/definitions/AWS::QuickSight::Analysis.FilterTextAreaControl" }, "TextField": { "$ref": "#/definitions/AWS::QuickSight::Analysis.FilterTextFieldControl" } }, "type": "object" }, "AWS::QuickSight::Analysis.FilterDateTimePickerControl": { "additionalProperties": false, "properties": { "DisplayOptions": { "$ref": "#/definitions/AWS::QuickSight::Analysis.DateTimePickerControlDisplayOptions" }, "FilterControlId": { "type": "string" }, "SourceFilterId": { "type": "string" }, "Title": { "type": "string" }, "Type": { "type": "string" } }, "required": [ "FilterControlId", "SourceFilterId", "Title" ], "type": "object" }, "AWS::QuickSight::Analysis.FilterDropDownControl": { "additionalProperties": false, "properties": { "CascadingControlConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Analysis.CascadingControlConfiguration" }, "DisplayOptions": { "$ref": "#/definitions/AWS::QuickSight::Analysis.DropDownControlDisplayOptions" }, "FilterControlId": { "type": "string" }, "SelectableValues": { "$ref": "#/definitions/AWS::QuickSight::Analysis.FilterSelectableValues" }, "SourceFilterId": { "type": "string" }, "Title": { "type": "string" }, "Type": { "type": "string" } }, "required": [ "FilterControlId", "SourceFilterId", "Title" ], "type": "object" }, "AWS::QuickSight::Analysis.FilterGroup": { "additionalProperties": false, "properties": { "CrossDataset": { "type": "string" }, "FilterGroupId": { "type": "string" }, "Filters": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.Filter" }, "type": "array" }, "ScopeConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Analysis.FilterScopeConfiguration" }, "Status": { "type": "string" } }, "required": [ "CrossDataset", "FilterGroupId", "Filters", "ScopeConfiguration" ], "type": "object" }, "AWS::QuickSight::Analysis.FilterListConfiguration": { "additionalProperties": false, "properties": { "CategoryValues": { "items": { "type": "string" }, "type": "array" }, "MatchOperator": { "type": "string" }, "SelectAllOptions": { "type": "string" } }, "required": [ "MatchOperator" ], "type": "object" }, "AWS::QuickSight::Analysis.FilterListControl": { "additionalProperties": false, "properties": { "CascadingControlConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Analysis.CascadingControlConfiguration" }, "DisplayOptions": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ListControlDisplayOptions" }, "FilterControlId": { "type": "string" }, "SelectableValues": { "$ref": "#/definitions/AWS::QuickSight::Analysis.FilterSelectableValues" }, "SourceFilterId": { "type": "string" }, "Title": { "type": "string" }, "Type": { "type": "string" } }, "required": [ "FilterControlId", "SourceFilterId", "Title" ], "type": "object" }, "AWS::QuickSight::Analysis.FilterOperationSelectedFieldsConfiguration": { "additionalProperties": false, "properties": { "SelectedColumns": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ColumnIdentifier" }, "type": "array" }, "SelectedFieldOptions": { "type": "string" }, "SelectedFields": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Analysis.FilterOperationTargetVisualsConfiguration": { "additionalProperties": false, "properties": { "SameSheetTargetVisualConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Analysis.SameSheetTargetVisualConfiguration" } }, "type": "object" }, "AWS::QuickSight::Analysis.FilterRelativeDateTimeControl": { "additionalProperties": false, "properties": { "DisplayOptions": { "$ref": "#/definitions/AWS::QuickSight::Analysis.RelativeDateTimeControlDisplayOptions" }, "FilterControlId": { "type": "string" }, "SourceFilterId": { "type": "string" }, "Title": { "type": "string" } }, "required": [ "FilterControlId", "SourceFilterId", "Title" ], "type": "object" }, "AWS::QuickSight::Analysis.FilterScopeConfiguration": { "additionalProperties": false, "properties": { "SelectedSheets": { "$ref": "#/definitions/AWS::QuickSight::Analysis.SelectedSheetsFilterScopeConfiguration" } }, "type": "object" }, "AWS::QuickSight::Analysis.FilterSelectableValues": { "additionalProperties": false, "properties": { "Values": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Analysis.FilterSliderControl": { "additionalProperties": false, "properties": { "DisplayOptions": { "$ref": "#/definitions/AWS::QuickSight::Analysis.SliderControlDisplayOptions" }, "FilterControlId": { "type": "string" }, "MaximumValue": { "type": "number" }, "MinimumValue": { "type": "number" }, "SourceFilterId": { "type": "string" }, "StepSize": { "type": "number" }, "Title": { "type": "string" }, "Type": { "type": "string" } }, "required": [ "FilterControlId", "MaximumValue", "MinimumValue", "SourceFilterId", "StepSize", "Title" ], "type": "object" }, "AWS::QuickSight::Analysis.FilterTextAreaControl": { "additionalProperties": false, "properties": { "Delimiter": { "type": "string" }, "DisplayOptions": { "$ref": "#/definitions/AWS::QuickSight::Analysis.TextAreaControlDisplayOptions" }, "FilterControlId": { "type": "string" }, "SourceFilterId": { "type": "string" }, "Title": { "type": "string" } }, "required": [ "FilterControlId", "SourceFilterId", "Title" ], "type": "object" }, "AWS::QuickSight::Analysis.FilterTextFieldControl": { "additionalProperties": false, "properties": { "DisplayOptions": { "$ref": "#/definitions/AWS::QuickSight::Analysis.TextFieldControlDisplayOptions" }, "FilterControlId": { "type": "string" }, "SourceFilterId": { "type": "string" }, "Title": { "type": "string" } }, "required": [ "FilterControlId", "SourceFilterId", "Title" ], "type": "object" }, "AWS::QuickSight::Analysis.FontConfiguration": { "additionalProperties": false, "properties": { "FontColor": { "type": "string" }, "FontDecoration": { "type": "string" }, "FontSize": { "$ref": "#/definitions/AWS::QuickSight::Analysis.FontSize" }, "FontStyle": { "type": "string" }, "FontWeight": { "$ref": "#/definitions/AWS::QuickSight::Analysis.FontWeight" } }, "type": "object" }, "AWS::QuickSight::Analysis.FontSize": { "additionalProperties": false, "properties": { "Relative": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Analysis.FontWeight": { "additionalProperties": false, "properties": { "Name": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Analysis.ForecastComputation": { "additionalProperties": false, "properties": { "ComputationId": { "type": "string" }, "CustomSeasonalityValue": { "type": "number" }, "LowerBoundary": { "type": "number" }, "Name": { "type": "string" }, "PeriodsBackward": { "type": "number" }, "PeriodsForward": { "type": "number" }, "PredictionInterval": { "type": "number" }, "Seasonality": { "type": "string" }, "Time": { "$ref": "#/definitions/AWS::QuickSight::Analysis.DimensionField" }, "UpperBoundary": { "type": "number" }, "Value": { "$ref": "#/definitions/AWS::QuickSight::Analysis.MeasureField" } }, "required": [ "ComputationId", "Time" ], "type": "object" }, "AWS::QuickSight::Analysis.ForecastConfiguration": { "additionalProperties": false, "properties": { "ForecastProperties": { "$ref": "#/definitions/AWS::QuickSight::Analysis.TimeBasedForecastProperties" }, "Scenario": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ForecastScenario" } }, "type": "object" }, "AWS::QuickSight::Analysis.ForecastScenario": { "additionalProperties": false, "properties": { "WhatIfPointScenario": { "$ref": "#/definitions/AWS::QuickSight::Analysis.WhatIfPointScenario" }, "WhatIfRangeScenario": { "$ref": "#/definitions/AWS::QuickSight::Analysis.WhatIfRangeScenario" } }, "type": "object" }, "AWS::QuickSight::Analysis.FormatConfiguration": { "additionalProperties": false, "properties": { "DateTimeFormatConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Analysis.DateTimeFormatConfiguration" }, "NumberFormatConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Analysis.NumberFormatConfiguration" }, "StringFormatConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Analysis.StringFormatConfiguration" } }, "type": "object" }, "AWS::QuickSight::Analysis.FreeFormLayoutCanvasSizeOptions": { "additionalProperties": false, "properties": { "ScreenCanvasSizeOptions": { "$ref": "#/definitions/AWS::QuickSight::Analysis.FreeFormLayoutScreenCanvasSizeOptions" } }, "type": "object" }, "AWS::QuickSight::Analysis.FreeFormLayoutConfiguration": { "additionalProperties": false, "properties": { "CanvasSizeOptions": { "$ref": "#/definitions/AWS::QuickSight::Analysis.FreeFormLayoutCanvasSizeOptions" }, "Elements": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.FreeFormLayoutElement" }, "type": "array" } }, "required": [ "Elements" ], "type": "object" }, "AWS::QuickSight::Analysis.FreeFormLayoutElement": { "additionalProperties": false, "properties": { "BackgroundStyle": { "$ref": "#/definitions/AWS::QuickSight::Analysis.FreeFormLayoutElementBackgroundStyle" }, "BorderStyle": { "$ref": "#/definitions/AWS::QuickSight::Analysis.FreeFormLayoutElementBorderStyle" }, "ElementId": { "type": "string" }, "ElementType": { "type": "string" }, "Height": { "type": "string" }, "LoadingAnimation": { "$ref": "#/definitions/AWS::QuickSight::Analysis.LoadingAnimation" }, "RenderingRules": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.SheetElementRenderingRule" }, "type": "array" }, "SelectedBorderStyle": { "$ref": "#/definitions/AWS::QuickSight::Analysis.FreeFormLayoutElementBorderStyle" }, "Visibility": { "type": "string" }, "Width": { "type": "string" }, "XAxisLocation": { "type": "string" }, "YAxisLocation": { "type": "string" } }, "required": [ "ElementId", "ElementType", "Height", "Width", "XAxisLocation", "YAxisLocation" ], "type": "object" }, "AWS::QuickSight::Analysis.FreeFormLayoutElementBackgroundStyle": { "additionalProperties": false, "properties": { "Color": { "type": "string" }, "Visibility": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Analysis.FreeFormLayoutElementBorderStyle": { "additionalProperties": false, "properties": { "Color": { "type": "string" }, "Visibility": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Analysis.FreeFormLayoutScreenCanvasSizeOptions": { "additionalProperties": false, "properties": { "OptimizedViewPortWidth": { "type": "string" } }, "required": [ "OptimizedViewPortWidth" ], "type": "object" }, "AWS::QuickSight::Analysis.FreeFormSectionLayoutConfiguration": { "additionalProperties": false, "properties": { "Elements": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.FreeFormLayoutElement" }, "type": "array" } }, "required": [ "Elements" ], "type": "object" }, "AWS::QuickSight::Analysis.FunnelChartAggregatedFieldWells": { "additionalProperties": false, "properties": { "Category": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.DimensionField" }, "type": "array" }, "Values": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.MeasureField" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Analysis.FunnelChartConfiguration": { "additionalProperties": false, "properties": { "CategoryLabelOptions": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ChartAxisLabelOptions" }, "DataLabelOptions": { "$ref": "#/definitions/AWS::QuickSight::Analysis.FunnelChartDataLabelOptions" }, "FieldWells": { "$ref": "#/definitions/AWS::QuickSight::Analysis.FunnelChartFieldWells" }, "SortConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Analysis.FunnelChartSortConfiguration" }, "Tooltip": { "$ref": "#/definitions/AWS::QuickSight::Analysis.TooltipOptions" }, "ValueLabelOptions": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ChartAxisLabelOptions" }, "VisualPalette": { "$ref": "#/definitions/AWS::QuickSight::Analysis.VisualPalette" } }, "type": "object" }, "AWS::QuickSight::Analysis.FunnelChartDataLabelOptions": { "additionalProperties": false, "properties": { "CategoryLabelVisibility": { "type": "string" }, "LabelColor": { "type": "string" }, "LabelFontConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Analysis.FontConfiguration" }, "MeasureDataLabelStyle": { "type": "string" }, "MeasureLabelVisibility": { "type": "string" }, "Position": { "type": "string" }, "Visibility": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Analysis.FunnelChartFieldWells": { "additionalProperties": false, "properties": { "FunnelChartAggregatedFieldWells": { "$ref": "#/definitions/AWS::QuickSight::Analysis.FunnelChartAggregatedFieldWells" } }, "type": "object" }, "AWS::QuickSight::Analysis.FunnelChartSortConfiguration": { "additionalProperties": false, "properties": { "CategoryItemsLimit": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ItemsLimitConfiguration" }, "CategorySort": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.FieldSortOptions" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Analysis.FunnelChartVisual": { "additionalProperties": false, "properties": { "Actions": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.VisualCustomAction" }, "type": "array" }, "ChartConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Analysis.FunnelChartConfiguration" }, "ColumnHierarchies": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ColumnHierarchy" }, "type": "array" }, "Subtitle": { "$ref": "#/definitions/AWS::QuickSight::Analysis.VisualSubtitleLabelOptions" }, "Title": { "$ref": "#/definitions/AWS::QuickSight::Analysis.VisualTitleLabelOptions" }, "VisualId": { "type": "string" } }, "required": [ "VisualId" ], "type": "object" }, "AWS::QuickSight::Analysis.GaugeChartArcConditionalFormatting": { "additionalProperties": false, "properties": { "ForegroundColor": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ConditionalFormattingColor" } }, "type": "object" }, "AWS::QuickSight::Analysis.GaugeChartConditionalFormatting": { "additionalProperties": false, "properties": { "ConditionalFormattingOptions": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.GaugeChartConditionalFormattingOption" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Analysis.GaugeChartConditionalFormattingOption": { "additionalProperties": false, "properties": { "Arc": { "$ref": "#/definitions/AWS::QuickSight::Analysis.GaugeChartArcConditionalFormatting" }, "PrimaryValue": { "$ref": "#/definitions/AWS::QuickSight::Analysis.GaugeChartPrimaryValueConditionalFormatting" } }, "type": "object" }, "AWS::QuickSight::Analysis.GaugeChartConfiguration": { "additionalProperties": false, "properties": { "DataLabels": { "$ref": "#/definitions/AWS::QuickSight::Analysis.DataLabelOptions" }, "FieldWells": { "$ref": "#/definitions/AWS::QuickSight::Analysis.GaugeChartFieldWells" }, "GaugeChartOptions": { "$ref": "#/definitions/AWS::QuickSight::Analysis.GaugeChartOptions" }, "TooltipOptions": { "$ref": "#/definitions/AWS::QuickSight::Analysis.TooltipOptions" }, "VisualPalette": { "$ref": "#/definitions/AWS::QuickSight::Analysis.VisualPalette" } }, "type": "object" }, "AWS::QuickSight::Analysis.GaugeChartFieldWells": { "additionalProperties": false, "properties": { "TargetValues": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.MeasureField" }, "type": "array" }, "Values": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.MeasureField" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Analysis.GaugeChartOptions": { "additionalProperties": false, "properties": { "Arc": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ArcConfiguration" }, "ArcAxis": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ArcAxisConfiguration" }, "Comparison": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ComparisonConfiguration" }, "PrimaryValueDisplayType": { "type": "string" }, "PrimaryValueFontConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Analysis.FontConfiguration" } }, "type": "object" }, "AWS::QuickSight::Analysis.GaugeChartPrimaryValueConditionalFormatting": { "additionalProperties": false, "properties": { "Icon": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ConditionalFormattingIcon" }, "TextColor": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ConditionalFormattingColor" } }, "type": "object" }, "AWS::QuickSight::Analysis.GaugeChartVisual": { "additionalProperties": false, "properties": { "Actions": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.VisualCustomAction" }, "type": "array" }, "ChartConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Analysis.GaugeChartConfiguration" }, "ConditionalFormatting": { "$ref": "#/definitions/AWS::QuickSight::Analysis.GaugeChartConditionalFormatting" }, "Subtitle": { "$ref": "#/definitions/AWS::QuickSight::Analysis.VisualSubtitleLabelOptions" }, "Title": { "$ref": "#/definitions/AWS::QuickSight::Analysis.VisualTitleLabelOptions" }, "VisualId": { "type": "string" } }, "required": [ "VisualId" ], "type": "object" }, "AWS::QuickSight::Analysis.GeospatialCoordinateBounds": { "additionalProperties": false, "properties": { "East": { "type": "number" }, "North": { "type": "number" }, "South": { "type": "number" }, "West": { "type": "number" } }, "required": [ "East", "North", "South", "West" ], "type": "object" }, "AWS::QuickSight::Analysis.GeospatialHeatmapColorScale": { "additionalProperties": false, "properties": { "Colors": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.GeospatialHeatmapDataColor" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Analysis.GeospatialHeatmapConfiguration": { "additionalProperties": false, "properties": { "HeatmapColor": { "$ref": "#/definitions/AWS::QuickSight::Analysis.GeospatialHeatmapColorScale" } }, "type": "object" }, "AWS::QuickSight::Analysis.GeospatialHeatmapDataColor": { "additionalProperties": false, "properties": { "Color": { "type": "string" } }, "required": [ "Color" ], "type": "object" }, "AWS::QuickSight::Analysis.GeospatialMapAggregatedFieldWells": { "additionalProperties": false, "properties": { "Colors": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.DimensionField" }, "type": "array" }, "Geospatial": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.DimensionField" }, "type": "array" }, "Values": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.MeasureField" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Analysis.GeospatialMapConfiguration": { "additionalProperties": false, "properties": { "FieldWells": { "$ref": "#/definitions/AWS::QuickSight::Analysis.GeospatialMapFieldWells" }, "Legend": { "$ref": "#/definitions/AWS::QuickSight::Analysis.LegendOptions" }, "MapStyleOptions": { "$ref": "#/definitions/AWS::QuickSight::Analysis.GeospatialMapStyleOptions" }, "PointStyleOptions": { "$ref": "#/definitions/AWS::QuickSight::Analysis.GeospatialPointStyleOptions" }, "Tooltip": { "$ref": "#/definitions/AWS::QuickSight::Analysis.TooltipOptions" }, "VisualPalette": { "$ref": "#/definitions/AWS::QuickSight::Analysis.VisualPalette" }, "WindowOptions": { "$ref": "#/definitions/AWS::QuickSight::Analysis.GeospatialWindowOptions" } }, "type": "object" }, "AWS::QuickSight::Analysis.GeospatialMapFieldWells": { "additionalProperties": false, "properties": { "GeospatialMapAggregatedFieldWells": { "$ref": "#/definitions/AWS::QuickSight::Analysis.GeospatialMapAggregatedFieldWells" } }, "type": "object" }, "AWS::QuickSight::Analysis.GeospatialMapStyleOptions": { "additionalProperties": false, "properties": { "BaseMapStyle": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Analysis.GeospatialMapVisual": { "additionalProperties": false, "properties": { "Actions": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.VisualCustomAction" }, "type": "array" }, "ChartConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Analysis.GeospatialMapConfiguration" }, "ColumnHierarchies": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ColumnHierarchy" }, "type": "array" }, "Subtitle": { "$ref": "#/definitions/AWS::QuickSight::Analysis.VisualSubtitleLabelOptions" }, "Title": { "$ref": "#/definitions/AWS::QuickSight::Analysis.VisualTitleLabelOptions" }, "VisualId": { "type": "string" } }, "required": [ "VisualId" ], "type": "object" }, "AWS::QuickSight::Analysis.GeospatialPointStyleOptions": { "additionalProperties": false, "properties": { "ClusterMarkerConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ClusterMarkerConfiguration" }, "HeatmapConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Analysis.GeospatialHeatmapConfiguration" }, "SelectedPointStyle": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Analysis.GeospatialWindowOptions": { "additionalProperties": false, "properties": { "Bounds": { "$ref": "#/definitions/AWS::QuickSight::Analysis.GeospatialCoordinateBounds" }, "MapZoomMode": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Analysis.GlobalTableBorderOptions": { "additionalProperties": false, "properties": { "SideSpecificBorder": { "$ref": "#/definitions/AWS::QuickSight::Analysis.TableSideBorderOptions" }, "UniformBorder": { "$ref": "#/definitions/AWS::QuickSight::Analysis.TableBorderOptions" } }, "type": "object" }, "AWS::QuickSight::Analysis.GradientColor": { "additionalProperties": false, "properties": { "Stops": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.GradientStop" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Analysis.GradientStop": { "additionalProperties": false, "properties": { "Color": { "type": "string" }, "DataValue": { "type": "number" }, "GradientOffset": { "type": "number" } }, "required": [ "GradientOffset" ], "type": "object" }, "AWS::QuickSight::Analysis.GridLayoutCanvasSizeOptions": { "additionalProperties": false, "properties": { "ScreenCanvasSizeOptions": { "$ref": "#/definitions/AWS::QuickSight::Analysis.GridLayoutScreenCanvasSizeOptions" } }, "type": "object" }, "AWS::QuickSight::Analysis.GridLayoutConfiguration": { "additionalProperties": false, "properties": { "CanvasSizeOptions": { "$ref": "#/definitions/AWS::QuickSight::Analysis.GridLayoutCanvasSizeOptions" }, "Elements": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.GridLayoutElement" }, "type": "array" } }, "required": [ "Elements" ], "type": "object" }, "AWS::QuickSight::Analysis.GridLayoutElement": { "additionalProperties": false, "properties": { "ColumnIndex": { "type": "number" }, "ColumnSpan": { "type": "number" }, "ElementId": { "type": "string" }, "ElementType": { "type": "string" }, "RowIndex": { "type": "number" }, "RowSpan": { "type": "number" } }, "required": [ "ColumnSpan", "ElementId", "ElementType", "RowSpan" ], "type": "object" }, "AWS::QuickSight::Analysis.GridLayoutScreenCanvasSizeOptions": { "additionalProperties": false, "properties": { "OptimizedViewPortWidth": { "type": "string" }, "ResizeOption": { "type": "string" } }, "required": [ "ResizeOption" ], "type": "object" }, "AWS::QuickSight::Analysis.GrowthRateComputation": { "additionalProperties": false, "properties": { "ComputationId": { "type": "string" }, "Name": { "type": "string" }, "PeriodSize": { "type": "number" }, "Time": { "$ref": "#/definitions/AWS::QuickSight::Analysis.DimensionField" }, "Value": { "$ref": "#/definitions/AWS::QuickSight::Analysis.MeasureField" } }, "required": [ "ComputationId", "Time" ], "type": "object" }, "AWS::QuickSight::Analysis.HeaderFooterSectionConfiguration": { "additionalProperties": false, "properties": { "Layout": { "$ref": "#/definitions/AWS::QuickSight::Analysis.SectionLayoutConfiguration" }, "SectionId": { "type": "string" }, "Style": { "$ref": "#/definitions/AWS::QuickSight::Analysis.SectionStyle" } }, "required": [ "Layout", "SectionId" ], "type": "object" }, "AWS::QuickSight::Analysis.HeatMapAggregatedFieldWells": { "additionalProperties": false, "properties": { "Columns": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.DimensionField" }, "type": "array" }, "Rows": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.DimensionField" }, "type": "array" }, "Values": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.MeasureField" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Analysis.HeatMapConfiguration": { "additionalProperties": false, "properties": { "ColorScale": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ColorScale" }, "ColumnLabelOptions": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ChartAxisLabelOptions" }, "DataLabels": { "$ref": "#/definitions/AWS::QuickSight::Analysis.DataLabelOptions" }, "FieldWells": { "$ref": "#/definitions/AWS::QuickSight::Analysis.HeatMapFieldWells" }, "Legend": { "$ref": "#/definitions/AWS::QuickSight::Analysis.LegendOptions" }, "RowLabelOptions": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ChartAxisLabelOptions" }, "SortConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Analysis.HeatMapSortConfiguration" }, "Tooltip": { "$ref": "#/definitions/AWS::QuickSight::Analysis.TooltipOptions" } }, "type": "object" }, "AWS::QuickSight::Analysis.HeatMapFieldWells": { "additionalProperties": false, "properties": { "HeatMapAggregatedFieldWells": { "$ref": "#/definitions/AWS::QuickSight::Analysis.HeatMapAggregatedFieldWells" } }, "type": "object" }, "AWS::QuickSight::Analysis.HeatMapSortConfiguration": { "additionalProperties": false, "properties": { "HeatMapColumnItemsLimitConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ItemsLimitConfiguration" }, "HeatMapColumnSort": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.FieldSortOptions" }, "type": "array" }, "HeatMapRowItemsLimitConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ItemsLimitConfiguration" }, "HeatMapRowSort": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.FieldSortOptions" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Analysis.HeatMapVisual": { "additionalProperties": false, "properties": { "Actions": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.VisualCustomAction" }, "type": "array" }, "ChartConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Analysis.HeatMapConfiguration" }, "ColumnHierarchies": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ColumnHierarchy" }, "type": "array" }, "Subtitle": { "$ref": "#/definitions/AWS::QuickSight::Analysis.VisualSubtitleLabelOptions" }, "Title": { "$ref": "#/definitions/AWS::QuickSight::Analysis.VisualTitleLabelOptions" }, "VisualId": { "type": "string" } }, "required": [ "VisualId" ], "type": "object" }, "AWS::QuickSight::Analysis.HistogramAggregatedFieldWells": { "additionalProperties": false, "properties": { "Values": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.MeasureField" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Analysis.HistogramBinOptions": { "additionalProperties": false, "properties": { "BinCount": { "$ref": "#/definitions/AWS::QuickSight::Analysis.BinCountOptions" }, "BinWidth": { "$ref": "#/definitions/AWS::QuickSight::Analysis.BinWidthOptions" }, "SelectedBinType": { "type": "string" }, "StartValue": { "type": "number" } }, "type": "object" }, "AWS::QuickSight::Analysis.HistogramConfiguration": { "additionalProperties": false, "properties": { "BinOptions": { "$ref": "#/definitions/AWS::QuickSight::Analysis.HistogramBinOptions" }, "DataLabels": { "$ref": "#/definitions/AWS::QuickSight::Analysis.DataLabelOptions" }, "FieldWells": { "$ref": "#/definitions/AWS::QuickSight::Analysis.HistogramFieldWells" }, "Tooltip": { "$ref": "#/definitions/AWS::QuickSight::Analysis.TooltipOptions" }, "VisualPalette": { "$ref": "#/definitions/AWS::QuickSight::Analysis.VisualPalette" }, "XAxisDisplayOptions": { "$ref": "#/definitions/AWS::QuickSight::Analysis.AxisDisplayOptions" }, "XAxisLabelOptions": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ChartAxisLabelOptions" }, "YAxisDisplayOptions": { "$ref": "#/definitions/AWS::QuickSight::Analysis.AxisDisplayOptions" } }, "type": "object" }, "AWS::QuickSight::Analysis.HistogramFieldWells": { "additionalProperties": false, "properties": { "HistogramAggregatedFieldWells": { "$ref": "#/definitions/AWS::QuickSight::Analysis.HistogramAggregatedFieldWells" } }, "type": "object" }, "AWS::QuickSight::Analysis.HistogramVisual": { "additionalProperties": false, "properties": { "Actions": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.VisualCustomAction" }, "type": "array" }, "ChartConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Analysis.HistogramConfiguration" }, "Subtitle": { "$ref": "#/definitions/AWS::QuickSight::Analysis.VisualSubtitleLabelOptions" }, "Title": { "$ref": "#/definitions/AWS::QuickSight::Analysis.VisualTitleLabelOptions" }, "VisualId": { "type": "string" } }, "required": [ "VisualId" ], "type": "object" }, "AWS::QuickSight::Analysis.InsightConfiguration": { "additionalProperties": false, "properties": { "Computations": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.Computation" }, "type": "array" }, "CustomNarrative": { "$ref": "#/definitions/AWS::QuickSight::Analysis.CustomNarrativeOptions" } }, "type": "object" }, "AWS::QuickSight::Analysis.InsightVisual": { "additionalProperties": false, "properties": { "Actions": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.VisualCustomAction" }, "type": "array" }, "DataSetIdentifier": { "type": "string" }, "InsightConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Analysis.InsightConfiguration" }, "Subtitle": { "$ref": "#/definitions/AWS::QuickSight::Analysis.VisualSubtitleLabelOptions" }, "Title": { "$ref": "#/definitions/AWS::QuickSight::Analysis.VisualTitleLabelOptions" }, "VisualId": { "type": "string" } }, "required": [ "DataSetIdentifier", "VisualId" ], "type": "object" }, "AWS::QuickSight::Analysis.IntegerDefaultValues": { "additionalProperties": false, "properties": { "DynamicValue": { "$ref": "#/definitions/AWS::QuickSight::Analysis.DynamicDefaultValue" }, "StaticValues": { "items": { "type": "number" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Analysis.IntegerParameter": { "additionalProperties": false, "properties": { "Name": { "type": "string" }, "Values": { "items": { "type": "number" }, "type": "array" } }, "required": [ "Name", "Values" ], "type": "object" }, "AWS::QuickSight::Analysis.IntegerParameterDeclaration": { "additionalProperties": false, "properties": { "DefaultValues": { "$ref": "#/definitions/AWS::QuickSight::Analysis.IntegerDefaultValues" }, "MappedDataSetParameters": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.MappedDataSetParameter" }, "type": "array" }, "Name": { "type": "string" }, "ParameterValueType": { "type": "string" }, "ValueWhenUnset": { "$ref": "#/definitions/AWS::QuickSight::Analysis.IntegerValueWhenUnsetConfiguration" } }, "required": [ "Name", "ParameterValueType" ], "type": "object" }, "AWS::QuickSight::Analysis.IntegerValueWhenUnsetConfiguration": { "additionalProperties": false, "properties": { "CustomValue": { "type": "number" }, "ValueWhenUnsetOption": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Analysis.ItemsLimitConfiguration": { "additionalProperties": false, "properties": { "ItemsLimit": { "type": "number" }, "OtherCategories": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Analysis.KPIConditionalFormatting": { "additionalProperties": false, "properties": { "ConditionalFormattingOptions": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.KPIConditionalFormattingOption" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Analysis.KPIConditionalFormattingOption": { "additionalProperties": false, "properties": { "PrimaryValue": { "$ref": "#/definitions/AWS::QuickSight::Analysis.KPIPrimaryValueConditionalFormatting" }, "ProgressBar": { "$ref": "#/definitions/AWS::QuickSight::Analysis.KPIProgressBarConditionalFormatting" } }, "type": "object" }, "AWS::QuickSight::Analysis.KPIConfiguration": { "additionalProperties": false, "properties": { "FieldWells": { "$ref": "#/definitions/AWS::QuickSight::Analysis.KPIFieldWells" }, "KPIOptions": { "$ref": "#/definitions/AWS::QuickSight::Analysis.KPIOptions" }, "SortConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Analysis.KPISortConfiguration" } }, "type": "object" }, "AWS::QuickSight::Analysis.KPIFieldWells": { "additionalProperties": false, "properties": { "TargetValues": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.MeasureField" }, "type": "array" }, "TrendGroups": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.DimensionField" }, "type": "array" }, "Values": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.MeasureField" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Analysis.KPIOptions": { "additionalProperties": false, "properties": { "Comparison": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ComparisonConfiguration" }, "PrimaryValueDisplayType": { "type": "string" }, "PrimaryValueFontConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Analysis.FontConfiguration" }, "ProgressBar": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ProgressBarOptions" }, "SecondaryValue": { "$ref": "#/definitions/AWS::QuickSight::Analysis.SecondaryValueOptions" }, "SecondaryValueFontConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Analysis.FontConfiguration" }, "TrendArrows": { "$ref": "#/definitions/AWS::QuickSight::Analysis.TrendArrowOptions" } }, "type": "object" }, "AWS::QuickSight::Analysis.KPIPrimaryValueConditionalFormatting": { "additionalProperties": false, "properties": { "Icon": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ConditionalFormattingIcon" }, "TextColor": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ConditionalFormattingColor" } }, "type": "object" }, "AWS::QuickSight::Analysis.KPIProgressBarConditionalFormatting": { "additionalProperties": false, "properties": { "ForegroundColor": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ConditionalFormattingColor" } }, "type": "object" }, "AWS::QuickSight::Analysis.KPISortConfiguration": { "additionalProperties": false, "properties": { "TrendGroupSort": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.FieldSortOptions" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Analysis.KPIVisual": { "additionalProperties": false, "properties": { "Actions": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.VisualCustomAction" }, "type": "array" }, "ChartConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Analysis.KPIConfiguration" }, "ColumnHierarchies": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ColumnHierarchy" }, "type": "array" }, "ConditionalFormatting": { "$ref": "#/definitions/AWS::QuickSight::Analysis.KPIConditionalFormatting" }, "Subtitle": { "$ref": "#/definitions/AWS::QuickSight::Analysis.VisualSubtitleLabelOptions" }, "Title": { "$ref": "#/definitions/AWS::QuickSight::Analysis.VisualTitleLabelOptions" }, "VisualId": { "type": "string" } }, "required": [ "VisualId" ], "type": "object" }, "AWS::QuickSight::Analysis.LabelOptions": { "additionalProperties": false, "properties": { "CustomLabel": { "type": "string" }, "FontConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Analysis.FontConfiguration" }, "Visibility": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Analysis.Layout": { "additionalProperties": false, "properties": { "Configuration": { "$ref": "#/definitions/AWS::QuickSight::Analysis.LayoutConfiguration" } }, "required": [ "Configuration" ], "type": "object" }, "AWS::QuickSight::Analysis.LayoutConfiguration": { "additionalProperties": false, "properties": { "FreeFormLayout": { "$ref": "#/definitions/AWS::QuickSight::Analysis.FreeFormLayoutConfiguration" }, "GridLayout": { "$ref": "#/definitions/AWS::QuickSight::Analysis.GridLayoutConfiguration" }, "SectionBasedLayout": { "$ref": "#/definitions/AWS::QuickSight::Analysis.SectionBasedLayoutConfiguration" } }, "type": "object" }, "AWS::QuickSight::Analysis.LegendOptions": { "additionalProperties": false, "properties": { "Height": { "type": "string" }, "Position": { "type": "string" }, "Title": { "$ref": "#/definitions/AWS::QuickSight::Analysis.LabelOptions" }, "Visibility": { "type": "string" }, "Width": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Analysis.LineChartAggregatedFieldWells": { "additionalProperties": false, "properties": { "Category": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.DimensionField" }, "type": "array" }, "Colors": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.DimensionField" }, "type": "array" }, "SmallMultiples": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.DimensionField" }, "type": "array" }, "Values": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.MeasureField" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Analysis.LineChartConfiguration": { "additionalProperties": false, "properties": { "ContributionAnalysisDefaults": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ContributionAnalysisDefault" }, "type": "array" }, "DataLabels": { "$ref": "#/definitions/AWS::QuickSight::Analysis.DataLabelOptions" }, "DefaultSeriesSettings": { "$ref": "#/definitions/AWS::QuickSight::Analysis.LineChartDefaultSeriesSettings" }, "FieldWells": { "$ref": "#/definitions/AWS::QuickSight::Analysis.LineChartFieldWells" }, "ForecastConfigurations": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ForecastConfiguration" }, "type": "array" }, "Legend": { "$ref": "#/definitions/AWS::QuickSight::Analysis.LegendOptions" }, "PrimaryYAxisDisplayOptions": { "$ref": "#/definitions/AWS::QuickSight::Analysis.LineSeriesAxisDisplayOptions" }, "PrimaryYAxisLabelOptions": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ChartAxisLabelOptions" }, "ReferenceLines": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ReferenceLine" }, "type": "array" }, "SecondaryYAxisDisplayOptions": { "$ref": "#/definitions/AWS::QuickSight::Analysis.LineSeriesAxisDisplayOptions" }, "SecondaryYAxisLabelOptions": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ChartAxisLabelOptions" }, "Series": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.SeriesItem" }, "type": "array" }, "SmallMultiplesOptions": { "$ref": "#/definitions/AWS::QuickSight::Analysis.SmallMultiplesOptions" }, "SortConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Analysis.LineChartSortConfiguration" }, "Tooltip": { "$ref": "#/definitions/AWS::QuickSight::Analysis.TooltipOptions" }, "Type": { "type": "string" }, "VisualPalette": { "$ref": "#/definitions/AWS::QuickSight::Analysis.VisualPalette" }, "XAxisDisplayOptions": { "$ref": "#/definitions/AWS::QuickSight::Analysis.AxisDisplayOptions" }, "XAxisLabelOptions": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ChartAxisLabelOptions" } }, "type": "object" }, "AWS::QuickSight::Analysis.LineChartDefaultSeriesSettings": { "additionalProperties": false, "properties": { "AxisBinding": { "type": "string" }, "LineStyleSettings": { "$ref": "#/definitions/AWS::QuickSight::Analysis.LineChartLineStyleSettings" }, "MarkerStyleSettings": { "$ref": "#/definitions/AWS::QuickSight::Analysis.LineChartMarkerStyleSettings" } }, "type": "object" }, "AWS::QuickSight::Analysis.LineChartFieldWells": { "additionalProperties": false, "properties": { "LineChartAggregatedFieldWells": { "$ref": "#/definitions/AWS::QuickSight::Analysis.LineChartAggregatedFieldWells" } }, "type": "object" }, "AWS::QuickSight::Analysis.LineChartLineStyleSettings": { "additionalProperties": false, "properties": { "LineInterpolation": { "type": "string" }, "LineStyle": { "type": "string" }, "LineVisibility": { "type": "string" }, "LineWidth": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Analysis.LineChartMarkerStyleSettings": { "additionalProperties": false, "properties": { "MarkerColor": { "type": "string" }, "MarkerShape": { "type": "string" }, "MarkerSize": { "type": "string" }, "MarkerVisibility": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Analysis.LineChartSeriesSettings": { "additionalProperties": false, "properties": { "LineStyleSettings": { "$ref": "#/definitions/AWS::QuickSight::Analysis.LineChartLineStyleSettings" }, "MarkerStyleSettings": { "$ref": "#/definitions/AWS::QuickSight::Analysis.LineChartMarkerStyleSettings" } }, "type": "object" }, "AWS::QuickSight::Analysis.LineChartSortConfiguration": { "additionalProperties": false, "properties": { "CategoryItemsLimitConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ItemsLimitConfiguration" }, "CategorySort": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.FieldSortOptions" }, "type": "array" }, "ColorItemsLimitConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ItemsLimitConfiguration" }, "SmallMultiplesLimitConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ItemsLimitConfiguration" }, "SmallMultiplesSort": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.FieldSortOptions" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Analysis.LineChartVisual": { "additionalProperties": false, "properties": { "Actions": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.VisualCustomAction" }, "type": "array" }, "ChartConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Analysis.LineChartConfiguration" }, "ColumnHierarchies": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ColumnHierarchy" }, "type": "array" }, "Subtitle": { "$ref": "#/definitions/AWS::QuickSight::Analysis.VisualSubtitleLabelOptions" }, "Title": { "$ref": "#/definitions/AWS::QuickSight::Analysis.VisualTitleLabelOptions" }, "VisualId": { "type": "string" } }, "required": [ "VisualId" ], "type": "object" }, "AWS::QuickSight::Analysis.LineSeriesAxisDisplayOptions": { "additionalProperties": false, "properties": { "AxisOptions": { "$ref": "#/definitions/AWS::QuickSight::Analysis.AxisDisplayOptions" }, "MissingDataConfigurations": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.MissingDataConfiguration" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Analysis.ListControlDisplayOptions": { "additionalProperties": false, "properties": { "SearchOptions": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ListControlSearchOptions" }, "SelectAllOptions": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ListControlSelectAllOptions" }, "TitleOptions": { "$ref": "#/definitions/AWS::QuickSight::Analysis.LabelOptions" } }, "type": "object" }, "AWS::QuickSight::Analysis.ListControlSearchOptions": { "additionalProperties": false, "properties": { "Visibility": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Analysis.ListControlSelectAllOptions": { "additionalProperties": false, "properties": { "Visibility": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Analysis.LoadingAnimation": { "additionalProperties": false, "properties": { "Visibility": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Analysis.LocalNavigationConfiguration": { "additionalProperties": false, "properties": { "TargetSheetId": { "type": "string" } }, "required": [ "TargetSheetId" ], "type": "object" }, "AWS::QuickSight::Analysis.LongFormatText": { "additionalProperties": false, "properties": { "PlainText": { "type": "string" }, "RichText": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Analysis.MappedDataSetParameter": { "additionalProperties": false, "properties": { "DataSetIdentifier": { "type": "string" }, "DataSetParameterName": { "type": "string" } }, "required": [ "DataSetIdentifier", "DataSetParameterName" ], "type": "object" }, "AWS::QuickSight::Analysis.MaximumLabelType": { "additionalProperties": false, "properties": { "Visibility": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Analysis.MaximumMinimumComputation": { "additionalProperties": false, "properties": { "ComputationId": { "type": "string" }, "Name": { "type": "string" }, "Time": { "$ref": "#/definitions/AWS::QuickSight::Analysis.DimensionField" }, "Type": { "type": "string" }, "Value": { "$ref": "#/definitions/AWS::QuickSight::Analysis.MeasureField" } }, "required": [ "ComputationId", "Time", "Type" ], "type": "object" }, "AWS::QuickSight::Analysis.MeasureField": { "additionalProperties": false, "properties": { "CalculatedMeasureField": { "$ref": "#/definitions/AWS::QuickSight::Analysis.CalculatedMeasureField" }, "CategoricalMeasureField": { "$ref": "#/definitions/AWS::QuickSight::Analysis.CategoricalMeasureField" }, "DateMeasureField": { "$ref": "#/definitions/AWS::QuickSight::Analysis.DateMeasureField" }, "NumericalMeasureField": { "$ref": "#/definitions/AWS::QuickSight::Analysis.NumericalMeasureField" } }, "type": "object" }, "AWS::QuickSight::Analysis.MetricComparisonComputation": { "additionalProperties": false, "properties": { "ComputationId": { "type": "string" }, "FromValue": { "$ref": "#/definitions/AWS::QuickSight::Analysis.MeasureField" }, "Name": { "type": "string" }, "TargetValue": { "$ref": "#/definitions/AWS::QuickSight::Analysis.MeasureField" }, "Time": { "$ref": "#/definitions/AWS::QuickSight::Analysis.DimensionField" } }, "required": [ "ComputationId", "FromValue", "TargetValue", "Time" ], "type": "object" }, "AWS::QuickSight::Analysis.MinimumLabelType": { "additionalProperties": false, "properties": { "Visibility": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Analysis.MissingDataConfiguration": { "additionalProperties": false, "properties": { "TreatmentOption": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Analysis.NegativeValueConfiguration": { "additionalProperties": false, "properties": { "DisplayMode": { "type": "string" } }, "required": [ "DisplayMode" ], "type": "object" }, "AWS::QuickSight::Analysis.NullValueFormatConfiguration": { "additionalProperties": false, "properties": { "NullString": { "type": "string" } }, "required": [ "NullString" ], "type": "object" }, "AWS::QuickSight::Analysis.NumberDisplayFormatConfiguration": { "additionalProperties": false, "properties": { "DecimalPlacesConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Analysis.DecimalPlacesConfiguration" }, "NegativeValueConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Analysis.NegativeValueConfiguration" }, "NullValueFormatConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Analysis.NullValueFormatConfiguration" }, "NumberScale": { "type": "string" }, "Prefix": { "type": "string" }, "SeparatorConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Analysis.NumericSeparatorConfiguration" }, "Suffix": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Analysis.NumberFormatConfiguration": { "additionalProperties": false, "properties": { "FormatConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Analysis.NumericFormatConfiguration" } }, "type": "object" }, "AWS::QuickSight::Analysis.NumericAxisOptions": { "additionalProperties": false, "properties": { "Range": { "$ref": "#/definitions/AWS::QuickSight::Analysis.AxisDisplayRange" }, "Scale": { "$ref": "#/definitions/AWS::QuickSight::Analysis.AxisScale" } }, "type": "object" }, "AWS::QuickSight::Analysis.NumericEqualityDrillDownFilter": { "additionalProperties": false, "properties": { "Column": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ColumnIdentifier" }, "Value": { "type": "number" } }, "required": [ "Column", "Value" ], "type": "object" }, "AWS::QuickSight::Analysis.NumericEqualityFilter": { "additionalProperties": false, "properties": { "AggregationFunction": { "$ref": "#/definitions/AWS::QuickSight::Analysis.AggregationFunction" }, "Column": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ColumnIdentifier" }, "FilterId": { "type": "string" }, "MatchOperator": { "type": "string" }, "NullOption": { "type": "string" }, "ParameterName": { "type": "string" }, "SelectAllOptions": { "type": "string" }, "Value": { "type": "number" } }, "required": [ "Column", "FilterId", "MatchOperator", "NullOption" ], "type": "object" }, "AWS::QuickSight::Analysis.NumericFormatConfiguration": { "additionalProperties": false, "properties": { "CurrencyDisplayFormatConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Analysis.CurrencyDisplayFormatConfiguration" }, "NumberDisplayFormatConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Analysis.NumberDisplayFormatConfiguration" }, "PercentageDisplayFormatConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Analysis.PercentageDisplayFormatConfiguration" } }, "type": "object" }, "AWS::QuickSight::Analysis.NumericRangeFilter": { "additionalProperties": false, "properties": { "AggregationFunction": { "$ref": "#/definitions/AWS::QuickSight::Analysis.AggregationFunction" }, "Column": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ColumnIdentifier" }, "FilterId": { "type": "string" }, "IncludeMaximum": { "type": "boolean" }, "IncludeMinimum": { "type": "boolean" }, "NullOption": { "type": "string" }, "RangeMaximum": { "$ref": "#/definitions/AWS::QuickSight::Analysis.NumericRangeFilterValue" }, "RangeMinimum": { "$ref": "#/definitions/AWS::QuickSight::Analysis.NumericRangeFilterValue" }, "SelectAllOptions": { "type": "string" } }, "required": [ "Column", "FilterId", "NullOption" ], "type": "object" }, "AWS::QuickSight::Analysis.NumericRangeFilterValue": { "additionalProperties": false, "properties": { "Parameter": { "type": "string" }, "StaticValue": { "type": "number" } }, "type": "object" }, "AWS::QuickSight::Analysis.NumericSeparatorConfiguration": { "additionalProperties": false, "properties": { "DecimalSeparator": { "type": "string" }, "ThousandsSeparator": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ThousandSeparatorOptions" } }, "type": "object" }, "AWS::QuickSight::Analysis.NumericalAggregationFunction": { "additionalProperties": false, "properties": { "PercentileAggregation": { "$ref": "#/definitions/AWS::QuickSight::Analysis.PercentileAggregation" }, "SimpleNumericalAggregation": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Analysis.NumericalDimensionField": { "additionalProperties": false, "properties": { "Column": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ColumnIdentifier" }, "FieldId": { "type": "string" }, "FormatConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Analysis.NumberFormatConfiguration" }, "HierarchyId": { "type": "string" } }, "required": [ "Column", "FieldId" ], "type": "object" }, "AWS::QuickSight::Analysis.NumericalMeasureField": { "additionalProperties": false, "properties": { "AggregationFunction": { "$ref": "#/definitions/AWS::QuickSight::Analysis.NumericalAggregationFunction" }, "Column": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ColumnIdentifier" }, "FieldId": { "type": "string" }, "FormatConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Analysis.NumberFormatConfiguration" } }, "required": [ "Column", "FieldId" ], "type": "object" }, "AWS::QuickSight::Analysis.PaginationConfiguration": { "additionalProperties": false, "properties": { "PageNumber": { "type": "number" }, "PageSize": { "type": "number" } }, "required": [ "PageNumber", "PageSize" ], "type": "object" }, "AWS::QuickSight::Analysis.PanelConfiguration": { "additionalProperties": false, "properties": { "BackgroundColor": { "type": "string" }, "BackgroundVisibility": { "type": "string" }, "BorderColor": { "type": "string" }, "BorderStyle": { "type": "string" }, "BorderThickness": { "type": "string" }, "BorderVisibility": { "type": "string" }, "GutterSpacing": { "type": "string" }, "GutterVisibility": { "type": "string" }, "Title": { "$ref": "#/definitions/AWS::QuickSight::Analysis.PanelTitleOptions" } }, "type": "object" }, "AWS::QuickSight::Analysis.PanelTitleOptions": { "additionalProperties": false, "properties": { "FontConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Analysis.FontConfiguration" }, "HorizontalTextAlignment": { "type": "string" }, "Visibility": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Analysis.ParameterControl": { "additionalProperties": false, "properties": { "DateTimePicker": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ParameterDateTimePickerControl" }, "Dropdown": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ParameterDropDownControl" }, "List": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ParameterListControl" }, "Slider": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ParameterSliderControl" }, "TextArea": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ParameterTextAreaControl" }, "TextField": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ParameterTextFieldControl" } }, "type": "object" }, "AWS::QuickSight::Analysis.ParameterDateTimePickerControl": { "additionalProperties": false, "properties": { "DisplayOptions": { "$ref": "#/definitions/AWS::QuickSight::Analysis.DateTimePickerControlDisplayOptions" }, "ParameterControlId": { "type": "string" }, "SourceParameterName": { "type": "string" }, "Title": { "type": "string" } }, "required": [ "ParameterControlId", "SourceParameterName", "Title" ], "type": "object" }, "AWS::QuickSight::Analysis.ParameterDeclaration": { "additionalProperties": false, "properties": { "DateTimeParameterDeclaration": { "$ref": "#/definitions/AWS::QuickSight::Analysis.DateTimeParameterDeclaration" }, "DecimalParameterDeclaration": { "$ref": "#/definitions/AWS::QuickSight::Analysis.DecimalParameterDeclaration" }, "IntegerParameterDeclaration": { "$ref": "#/definitions/AWS::QuickSight::Analysis.IntegerParameterDeclaration" }, "StringParameterDeclaration": { "$ref": "#/definitions/AWS::QuickSight::Analysis.StringParameterDeclaration" } }, "type": "object" }, "AWS::QuickSight::Analysis.ParameterDropDownControl": { "additionalProperties": false, "properties": { "CascadingControlConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Analysis.CascadingControlConfiguration" }, "DisplayOptions": { "$ref": "#/definitions/AWS::QuickSight::Analysis.DropDownControlDisplayOptions" }, "ParameterControlId": { "type": "string" }, "SelectableValues": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ParameterSelectableValues" }, "SourceParameterName": { "type": "string" }, "Title": { "type": "string" }, "Type": { "type": "string" } }, "required": [ "ParameterControlId", "SourceParameterName", "Title" ], "type": "object" }, "AWS::QuickSight::Analysis.ParameterListControl": { "additionalProperties": false, "properties": { "CascadingControlConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Analysis.CascadingControlConfiguration" }, "DisplayOptions": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ListControlDisplayOptions" }, "ParameterControlId": { "type": "string" }, "SelectableValues": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ParameterSelectableValues" }, "SourceParameterName": { "type": "string" }, "Title": { "type": "string" }, "Type": { "type": "string" } }, "required": [ "ParameterControlId", "SourceParameterName", "Title" ], "type": "object" }, "AWS::QuickSight::Analysis.ParameterSelectableValues": { "additionalProperties": false, "properties": { "LinkToDataSetColumn": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ColumnIdentifier" }, "Values": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Analysis.ParameterSliderControl": { "additionalProperties": false, "properties": { "DisplayOptions": { "$ref": "#/definitions/AWS::QuickSight::Analysis.SliderControlDisplayOptions" }, "MaximumValue": { "type": "number" }, "MinimumValue": { "type": "number" }, "ParameterControlId": { "type": "string" }, "SourceParameterName": { "type": "string" }, "StepSize": { "type": "number" }, "Title": { "type": "string" } }, "required": [ "MaximumValue", "MinimumValue", "ParameterControlId", "SourceParameterName", "StepSize", "Title" ], "type": "object" }, "AWS::QuickSight::Analysis.ParameterTextAreaControl": { "additionalProperties": false, "properties": { "Delimiter": { "type": "string" }, "DisplayOptions": { "$ref": "#/definitions/AWS::QuickSight::Analysis.TextAreaControlDisplayOptions" }, "ParameterControlId": { "type": "string" }, "SourceParameterName": { "type": "string" }, "Title": { "type": "string" } }, "required": [ "ParameterControlId", "SourceParameterName", "Title" ], "type": "object" }, "AWS::QuickSight::Analysis.ParameterTextFieldControl": { "additionalProperties": false, "properties": { "DisplayOptions": { "$ref": "#/definitions/AWS::QuickSight::Analysis.TextFieldControlDisplayOptions" }, "ParameterControlId": { "type": "string" }, "SourceParameterName": { "type": "string" }, "Title": { "type": "string" } }, "required": [ "ParameterControlId", "SourceParameterName", "Title" ], "type": "object" }, "AWS::QuickSight::Analysis.Parameters": { "additionalProperties": false, "properties": { "DateTimeParameters": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.DateTimeParameter" }, "type": "array" }, "DecimalParameters": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.DecimalParameter" }, "type": "array" }, "IntegerParameters": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.IntegerParameter" }, "type": "array" }, "StringParameters": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.StringParameter" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Analysis.PercentVisibleRange": { "additionalProperties": false, "properties": { "From": { "type": "number" }, "To": { "type": "number" } }, "type": "object" }, "AWS::QuickSight::Analysis.PercentageDisplayFormatConfiguration": { "additionalProperties": false, "properties": { "DecimalPlacesConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Analysis.DecimalPlacesConfiguration" }, "NegativeValueConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Analysis.NegativeValueConfiguration" }, "NullValueFormatConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Analysis.NullValueFormatConfiguration" }, "Prefix": { "type": "string" }, "SeparatorConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Analysis.NumericSeparatorConfiguration" }, "Suffix": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Analysis.PercentileAggregation": { "additionalProperties": false, "properties": { "PercentileValue": { "type": "number" } }, "type": "object" }, "AWS::QuickSight::Analysis.PeriodOverPeriodComputation": { "additionalProperties": false, "properties": { "ComputationId": { "type": "string" }, "Name": { "type": "string" }, "Time": { "$ref": "#/definitions/AWS::QuickSight::Analysis.DimensionField" }, "Value": { "$ref": "#/definitions/AWS::QuickSight::Analysis.MeasureField" } }, "required": [ "ComputationId", "Time" ], "type": "object" }, "AWS::QuickSight::Analysis.PeriodToDateComputation": { "additionalProperties": false, "properties": { "ComputationId": { "type": "string" }, "Name": { "type": "string" }, "PeriodTimeGranularity": { "type": "string" }, "Time": { "$ref": "#/definitions/AWS::QuickSight::Analysis.DimensionField" }, "Value": { "$ref": "#/definitions/AWS::QuickSight::Analysis.MeasureField" } }, "required": [ "ComputationId", "Time" ], "type": "object" }, "AWS::QuickSight::Analysis.PieChartAggregatedFieldWells": { "additionalProperties": false, "properties": { "Category": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.DimensionField" }, "type": "array" }, "SmallMultiples": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.DimensionField" }, "type": "array" }, "Values": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.MeasureField" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Analysis.PieChartConfiguration": { "additionalProperties": false, "properties": { "CategoryLabelOptions": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ChartAxisLabelOptions" }, "ContributionAnalysisDefaults": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ContributionAnalysisDefault" }, "type": "array" }, "DataLabels": { "$ref": "#/definitions/AWS::QuickSight::Analysis.DataLabelOptions" }, "DonutOptions": { "$ref": "#/definitions/AWS::QuickSight::Analysis.DonutOptions" }, "FieldWells": { "$ref": "#/definitions/AWS::QuickSight::Analysis.PieChartFieldWells" }, "Legend": { "$ref": "#/definitions/AWS::QuickSight::Analysis.LegendOptions" }, "SmallMultiplesOptions": { "$ref": "#/definitions/AWS::QuickSight::Analysis.SmallMultiplesOptions" }, "SortConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Analysis.PieChartSortConfiguration" }, "Tooltip": { "$ref": "#/definitions/AWS::QuickSight::Analysis.TooltipOptions" }, "ValueLabelOptions": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ChartAxisLabelOptions" }, "VisualPalette": { "$ref": "#/definitions/AWS::QuickSight::Analysis.VisualPalette" } }, "type": "object" }, "AWS::QuickSight::Analysis.PieChartFieldWells": { "additionalProperties": false, "properties": { "PieChartAggregatedFieldWells": { "$ref": "#/definitions/AWS::QuickSight::Analysis.PieChartAggregatedFieldWells" } }, "type": "object" }, "AWS::QuickSight::Analysis.PieChartSortConfiguration": { "additionalProperties": false, "properties": { "CategoryItemsLimit": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ItemsLimitConfiguration" }, "CategorySort": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.FieldSortOptions" }, "type": "array" }, "SmallMultiplesLimitConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ItemsLimitConfiguration" }, "SmallMultiplesSort": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.FieldSortOptions" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Analysis.PieChartVisual": { "additionalProperties": false, "properties": { "Actions": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.VisualCustomAction" }, "type": "array" }, "ChartConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Analysis.PieChartConfiguration" }, "ColumnHierarchies": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ColumnHierarchy" }, "type": "array" }, "Subtitle": { "$ref": "#/definitions/AWS::QuickSight::Analysis.VisualSubtitleLabelOptions" }, "Title": { "$ref": "#/definitions/AWS::QuickSight::Analysis.VisualTitleLabelOptions" }, "VisualId": { "type": "string" } }, "required": [ "VisualId" ], "type": "object" }, "AWS::QuickSight::Analysis.PivotFieldSortOptions": { "additionalProperties": false, "properties": { "FieldId": { "type": "string" }, "SortBy": { "$ref": "#/definitions/AWS::QuickSight::Analysis.PivotTableSortBy" } }, "required": [ "FieldId", "SortBy" ], "type": "object" }, "AWS::QuickSight::Analysis.PivotTableAggregatedFieldWells": { "additionalProperties": false, "properties": { "Columns": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.DimensionField" }, "type": "array" }, "Rows": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.DimensionField" }, "type": "array" }, "Values": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.MeasureField" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Analysis.PivotTableCellConditionalFormatting": { "additionalProperties": false, "properties": { "FieldId": { "type": "string" }, "Scope": { "$ref": "#/definitions/AWS::QuickSight::Analysis.PivotTableConditionalFormattingScope" }, "Scopes": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.PivotTableConditionalFormattingScope" }, "type": "array" }, "TextFormat": { "$ref": "#/definitions/AWS::QuickSight::Analysis.TextConditionalFormat" } }, "required": [ "FieldId" ], "type": "object" }, "AWS::QuickSight::Analysis.PivotTableConditionalFormatting": { "additionalProperties": false, "properties": { "ConditionalFormattingOptions": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.PivotTableConditionalFormattingOption" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Analysis.PivotTableConditionalFormattingOption": { "additionalProperties": false, "properties": { "Cell": { "$ref": "#/definitions/AWS::QuickSight::Analysis.PivotTableCellConditionalFormatting" } }, "type": "object" }, "AWS::QuickSight::Analysis.PivotTableConditionalFormattingScope": { "additionalProperties": false, "properties": { "Role": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Analysis.PivotTableConfiguration": { "additionalProperties": false, "properties": { "FieldOptions": { "$ref": "#/definitions/AWS::QuickSight::Analysis.PivotTableFieldOptions" }, "FieldWells": { "$ref": "#/definitions/AWS::QuickSight::Analysis.PivotTableFieldWells" }, "PaginatedReportOptions": { "$ref": "#/definitions/AWS::QuickSight::Analysis.PivotTablePaginatedReportOptions" }, "SortConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Analysis.PivotTableSortConfiguration" }, "TableOptions": { "$ref": "#/definitions/AWS::QuickSight::Analysis.PivotTableOptions" }, "TotalOptions": { "$ref": "#/definitions/AWS::QuickSight::Analysis.PivotTableTotalOptions" } }, "type": "object" }, "AWS::QuickSight::Analysis.PivotTableDataPathOption": { "additionalProperties": false, "properties": { "DataPathList": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.DataPathValue" }, "type": "array" }, "Width": { "type": "string" } }, "required": [ "DataPathList" ], "type": "object" }, "AWS::QuickSight::Analysis.PivotTableFieldCollapseStateOption": { "additionalProperties": false, "properties": { "State": { "type": "string" }, "Target": { "$ref": "#/definitions/AWS::QuickSight::Analysis.PivotTableFieldCollapseStateTarget" } }, "required": [ "Target" ], "type": "object" }, "AWS::QuickSight::Analysis.PivotTableFieldCollapseStateTarget": { "additionalProperties": false, "properties": { "FieldDataPathValues": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.DataPathValue" }, "type": "array" }, "FieldId": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Analysis.PivotTableFieldOption": { "additionalProperties": false, "properties": { "CustomLabel": { "type": "string" }, "FieldId": { "type": "string" }, "Visibility": { "type": "string" } }, "required": [ "FieldId" ], "type": "object" }, "AWS::QuickSight::Analysis.PivotTableFieldOptions": { "additionalProperties": false, "properties": { "CollapseStateOptions": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.PivotTableFieldCollapseStateOption" }, "type": "array" }, "DataPathOptions": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.PivotTableDataPathOption" }, "type": "array" }, "SelectedFieldOptions": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.PivotTableFieldOption" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Analysis.PivotTableFieldSubtotalOptions": { "additionalProperties": false, "properties": { "FieldId": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Analysis.PivotTableFieldWells": { "additionalProperties": false, "properties": { "PivotTableAggregatedFieldWells": { "$ref": "#/definitions/AWS::QuickSight::Analysis.PivotTableAggregatedFieldWells" } }, "type": "object" }, "AWS::QuickSight::Analysis.PivotTableOptions": { "additionalProperties": false, "properties": { "CellStyle": { "$ref": "#/definitions/AWS::QuickSight::Analysis.TableCellStyle" }, "CollapsedRowDimensionsVisibility": { "type": "string" }, "ColumnHeaderStyle": { "$ref": "#/definitions/AWS::QuickSight::Analysis.TableCellStyle" }, "ColumnNamesVisibility": { "type": "string" }, "MetricPlacement": { "type": "string" }, "RowAlternateColorOptions": { "$ref": "#/definitions/AWS::QuickSight::Analysis.RowAlternateColorOptions" }, "RowFieldNamesStyle": { "$ref": "#/definitions/AWS::QuickSight::Analysis.TableCellStyle" }, "RowHeaderStyle": { "$ref": "#/definitions/AWS::QuickSight::Analysis.TableCellStyle" }, "SingleMetricVisibility": { "type": "string" }, "ToggleButtonsVisibility": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Analysis.PivotTablePaginatedReportOptions": { "additionalProperties": false, "properties": { "OverflowColumnHeaderVisibility": { "type": "string" }, "VerticalOverflowVisibility": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Analysis.PivotTableSortBy": { "additionalProperties": false, "properties": { "Column": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ColumnSort" }, "DataPath": { "$ref": "#/definitions/AWS::QuickSight::Analysis.DataPathSort" }, "Field": { "$ref": "#/definitions/AWS::QuickSight::Analysis.FieldSort" } }, "type": "object" }, "AWS::QuickSight::Analysis.PivotTableSortConfiguration": { "additionalProperties": false, "properties": { "FieldSortOptions": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.PivotFieldSortOptions" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Analysis.PivotTableTotalOptions": { "additionalProperties": false, "properties": { "ColumnSubtotalOptions": { "$ref": "#/definitions/AWS::QuickSight::Analysis.SubtotalOptions" }, "ColumnTotalOptions": { "$ref": "#/definitions/AWS::QuickSight::Analysis.PivotTotalOptions" }, "RowSubtotalOptions": { "$ref": "#/definitions/AWS::QuickSight::Analysis.SubtotalOptions" }, "RowTotalOptions": { "$ref": "#/definitions/AWS::QuickSight::Analysis.PivotTotalOptions" } }, "type": "object" }, "AWS::QuickSight::Analysis.PivotTableVisual": { "additionalProperties": false, "properties": { "Actions": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.VisualCustomAction" }, "type": "array" }, "ChartConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Analysis.PivotTableConfiguration" }, "ConditionalFormatting": { "$ref": "#/definitions/AWS::QuickSight::Analysis.PivotTableConditionalFormatting" }, "Subtitle": { "$ref": "#/definitions/AWS::QuickSight::Analysis.VisualSubtitleLabelOptions" }, "Title": { "$ref": "#/definitions/AWS::QuickSight::Analysis.VisualTitleLabelOptions" }, "VisualId": { "type": "string" } }, "required": [ "VisualId" ], "type": "object" }, "AWS::QuickSight::Analysis.PivotTotalOptions": { "additionalProperties": false, "properties": { "CustomLabel": { "type": "string" }, "MetricHeaderCellStyle": { "$ref": "#/definitions/AWS::QuickSight::Analysis.TableCellStyle" }, "Placement": { "type": "string" }, "ScrollStatus": { "type": "string" }, "TotalCellStyle": { "$ref": "#/definitions/AWS::QuickSight::Analysis.TableCellStyle" }, "TotalsVisibility": { "type": "string" }, "ValueCellStyle": { "$ref": "#/definitions/AWS::QuickSight::Analysis.TableCellStyle" } }, "type": "object" }, "AWS::QuickSight::Analysis.PredefinedHierarchy": { "additionalProperties": false, "properties": { "Columns": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ColumnIdentifier" }, "type": "array" }, "DrillDownFilters": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.DrillDownFilter" }, "type": "array" }, "HierarchyId": { "type": "string" } }, "required": [ "Columns", "HierarchyId" ], "type": "object" }, "AWS::QuickSight::Analysis.ProgressBarOptions": { "additionalProperties": false, "properties": { "Visibility": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Analysis.RadarChartAggregatedFieldWells": { "additionalProperties": false, "properties": { "Category": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.DimensionField" }, "type": "array" }, "Color": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.DimensionField" }, "type": "array" }, "Values": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.MeasureField" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Analysis.RadarChartAreaStyleSettings": { "additionalProperties": false, "properties": { "Visibility": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Analysis.RadarChartConfiguration": { "additionalProperties": false, "properties": { "AlternateBandColorsVisibility": { "type": "string" }, "AlternateBandEvenColor": { "type": "string" }, "AlternateBandOddColor": { "type": "string" }, "AxesRangeScale": { "type": "string" }, "BaseSeriesSettings": { "$ref": "#/definitions/AWS::QuickSight::Analysis.RadarChartSeriesSettings" }, "CategoryAxis": { "$ref": "#/definitions/AWS::QuickSight::Analysis.AxisDisplayOptions" }, "CategoryLabelOptions": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ChartAxisLabelOptions" }, "ColorAxis": { "$ref": "#/definitions/AWS::QuickSight::Analysis.AxisDisplayOptions" }, "ColorLabelOptions": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ChartAxisLabelOptions" }, "FieldWells": { "$ref": "#/definitions/AWS::QuickSight::Analysis.RadarChartFieldWells" }, "Legend": { "$ref": "#/definitions/AWS::QuickSight::Analysis.LegendOptions" }, "Shape": { "type": "string" }, "SortConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Analysis.RadarChartSortConfiguration" }, "StartAngle": { "type": "number" }, "VisualPalette": { "$ref": "#/definitions/AWS::QuickSight::Analysis.VisualPalette" } }, "type": "object" }, "AWS::QuickSight::Analysis.RadarChartFieldWells": { "additionalProperties": false, "properties": { "RadarChartAggregatedFieldWells": { "$ref": "#/definitions/AWS::QuickSight::Analysis.RadarChartAggregatedFieldWells" } }, "type": "object" }, "AWS::QuickSight::Analysis.RadarChartSeriesSettings": { "additionalProperties": false, "properties": { "AreaStyleSettings": { "$ref": "#/definitions/AWS::QuickSight::Analysis.RadarChartAreaStyleSettings" } }, "type": "object" }, "AWS::QuickSight::Analysis.RadarChartSortConfiguration": { "additionalProperties": false, "properties": { "CategoryItemsLimit": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ItemsLimitConfiguration" }, "CategorySort": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.FieldSortOptions" }, "type": "array" }, "ColorItemsLimit": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ItemsLimitConfiguration" }, "ColorSort": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.FieldSortOptions" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Analysis.RadarChartVisual": { "additionalProperties": false, "properties": { "Actions": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.VisualCustomAction" }, "type": "array" }, "ChartConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Analysis.RadarChartConfiguration" }, "ColumnHierarchies": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ColumnHierarchy" }, "type": "array" }, "Subtitle": { "$ref": "#/definitions/AWS::QuickSight::Analysis.VisualSubtitleLabelOptions" }, "Title": { "$ref": "#/definitions/AWS::QuickSight::Analysis.VisualTitleLabelOptions" }, "VisualId": { "type": "string" } }, "required": [ "VisualId" ], "type": "object" }, "AWS::QuickSight::Analysis.RangeEndsLabelType": { "additionalProperties": false, "properties": { "Visibility": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Analysis.ReferenceLine": { "additionalProperties": false, "properties": { "DataConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ReferenceLineDataConfiguration" }, "LabelConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ReferenceLineLabelConfiguration" }, "Status": { "type": "string" }, "StyleConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ReferenceLineStyleConfiguration" } }, "required": [ "DataConfiguration" ], "type": "object" }, "AWS::QuickSight::Analysis.ReferenceLineCustomLabelConfiguration": { "additionalProperties": false, "properties": { "CustomLabel": { "type": "string" } }, "required": [ "CustomLabel" ], "type": "object" }, "AWS::QuickSight::Analysis.ReferenceLineDataConfiguration": { "additionalProperties": false, "properties": { "AxisBinding": { "type": "string" }, "DynamicConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ReferenceLineDynamicDataConfiguration" }, "StaticConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ReferenceLineStaticDataConfiguration" } }, "type": "object" }, "AWS::QuickSight::Analysis.ReferenceLineDynamicDataConfiguration": { "additionalProperties": false, "properties": { "Calculation": { "$ref": "#/definitions/AWS::QuickSight::Analysis.NumericalAggregationFunction" }, "Column": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ColumnIdentifier" }, "MeasureAggregationFunction": { "$ref": "#/definitions/AWS::QuickSight::Analysis.AggregationFunction" } }, "required": [ "Calculation", "Column" ], "type": "object" }, "AWS::QuickSight::Analysis.ReferenceLineLabelConfiguration": { "additionalProperties": false, "properties": { "CustomLabelConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ReferenceLineCustomLabelConfiguration" }, "FontColor": { "type": "string" }, "FontConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Analysis.FontConfiguration" }, "HorizontalPosition": { "type": "string" }, "ValueLabelConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ReferenceLineValueLabelConfiguration" }, "VerticalPosition": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Analysis.ReferenceLineStaticDataConfiguration": { "additionalProperties": false, "properties": { "Value": { "type": "number" } }, "required": [ "Value" ], "type": "object" }, "AWS::QuickSight::Analysis.ReferenceLineStyleConfiguration": { "additionalProperties": false, "properties": { "Color": { "type": "string" }, "Pattern": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Analysis.ReferenceLineValueLabelConfiguration": { "additionalProperties": false, "properties": { "FormatConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Analysis.NumericFormatConfiguration" }, "RelativePosition": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Analysis.RelativeDateTimeControlDisplayOptions": { "additionalProperties": false, "properties": { "DateTimeFormat": { "type": "string" }, "TitleOptions": { "$ref": "#/definitions/AWS::QuickSight::Analysis.LabelOptions" } }, "type": "object" }, "AWS::QuickSight::Analysis.RelativeDatesFilter": { "additionalProperties": false, "properties": { "AnchorDateConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Analysis.AnchorDateConfiguration" }, "Column": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ColumnIdentifier" }, "ExcludePeriodConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ExcludePeriodConfiguration" }, "FilterId": { "type": "string" }, "MinimumGranularity": { "type": "string" }, "NullOption": { "type": "string" }, "ParameterName": { "type": "string" }, "RelativeDateType": { "type": "string" }, "RelativeDateValue": { "type": "number" }, "TimeGranularity": { "type": "string" } }, "required": [ "AnchorDateConfiguration", "Column", "FilterId", "NullOption", "RelativeDateType", "TimeGranularity" ], "type": "object" }, "AWS::QuickSight::Analysis.ResourcePermission": { "additionalProperties": false, "properties": { "Actions": { "items": { "type": "string" }, "type": "array" }, "Principal": { "type": "string" }, "Resource": { "type": "string" } }, "required": [ "Actions", "Principal" ], "type": "object" }, "AWS::QuickSight::Analysis.RollingDateConfiguration": { "additionalProperties": false, "properties": { "DataSetIdentifier": { "type": "string" }, "Expression": { "type": "string" } }, "required": [ "Expression" ], "type": "object" }, "AWS::QuickSight::Analysis.RowAlternateColorOptions": { "additionalProperties": false, "properties": { "RowAlternateColors": { "items": { "type": "string" }, "type": "array" }, "Status": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Analysis.SameSheetTargetVisualConfiguration": { "additionalProperties": false, "properties": { "TargetVisualOptions": { "type": "string" }, "TargetVisuals": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Analysis.SankeyDiagramAggregatedFieldWells": { "additionalProperties": false, "properties": { "Destination": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.DimensionField" }, "type": "array" }, "Source": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.DimensionField" }, "type": "array" }, "Weight": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.MeasureField" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Analysis.SankeyDiagramChartConfiguration": { "additionalProperties": false, "properties": { "DataLabels": { "$ref": "#/definitions/AWS::QuickSight::Analysis.DataLabelOptions" }, "FieldWells": { "$ref": "#/definitions/AWS::QuickSight::Analysis.SankeyDiagramFieldWells" }, "SortConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Analysis.SankeyDiagramSortConfiguration" } }, "type": "object" }, "AWS::QuickSight::Analysis.SankeyDiagramFieldWells": { "additionalProperties": false, "properties": { "SankeyDiagramAggregatedFieldWells": { "$ref": "#/definitions/AWS::QuickSight::Analysis.SankeyDiagramAggregatedFieldWells" } }, "type": "object" }, "AWS::QuickSight::Analysis.SankeyDiagramSortConfiguration": { "additionalProperties": false, "properties": { "DestinationItemsLimit": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ItemsLimitConfiguration" }, "SourceItemsLimit": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ItemsLimitConfiguration" }, "WeightSort": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.FieldSortOptions" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Analysis.SankeyDiagramVisual": { "additionalProperties": false, "properties": { "Actions": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.VisualCustomAction" }, "type": "array" }, "ChartConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Analysis.SankeyDiagramChartConfiguration" }, "Subtitle": { "$ref": "#/definitions/AWS::QuickSight::Analysis.VisualSubtitleLabelOptions" }, "Title": { "$ref": "#/definitions/AWS::QuickSight::Analysis.VisualTitleLabelOptions" }, "VisualId": { "type": "string" } }, "required": [ "VisualId" ], "type": "object" }, "AWS::QuickSight::Analysis.ScatterPlotCategoricallyAggregatedFieldWells": { "additionalProperties": false, "properties": { "Category": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.DimensionField" }, "type": "array" }, "Label": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.DimensionField" }, "type": "array" }, "Size": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.MeasureField" }, "type": "array" }, "XAxis": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.MeasureField" }, "type": "array" }, "YAxis": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.MeasureField" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Analysis.ScatterPlotConfiguration": { "additionalProperties": false, "properties": { "DataLabels": { "$ref": "#/definitions/AWS::QuickSight::Analysis.DataLabelOptions" }, "FieldWells": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ScatterPlotFieldWells" }, "Legend": { "$ref": "#/definitions/AWS::QuickSight::Analysis.LegendOptions" }, "Tooltip": { "$ref": "#/definitions/AWS::QuickSight::Analysis.TooltipOptions" }, "VisualPalette": { "$ref": "#/definitions/AWS::QuickSight::Analysis.VisualPalette" }, "XAxisDisplayOptions": { "$ref": "#/definitions/AWS::QuickSight::Analysis.AxisDisplayOptions" }, "XAxisLabelOptions": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ChartAxisLabelOptions" }, "YAxisDisplayOptions": { "$ref": "#/definitions/AWS::QuickSight::Analysis.AxisDisplayOptions" }, "YAxisLabelOptions": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ChartAxisLabelOptions" } }, "type": "object" }, "AWS::QuickSight::Analysis.ScatterPlotFieldWells": { "additionalProperties": false, "properties": { "ScatterPlotCategoricallyAggregatedFieldWells": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ScatterPlotCategoricallyAggregatedFieldWells" }, "ScatterPlotUnaggregatedFieldWells": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ScatterPlotUnaggregatedFieldWells" } }, "type": "object" }, "AWS::QuickSight::Analysis.ScatterPlotUnaggregatedFieldWells": { "additionalProperties": false, "properties": { "Category": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.DimensionField" }, "type": "array" }, "Label": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.DimensionField" }, "type": "array" }, "Size": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.MeasureField" }, "type": "array" }, "XAxis": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.DimensionField" }, "type": "array" }, "YAxis": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.DimensionField" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Analysis.ScatterPlotVisual": { "additionalProperties": false, "properties": { "Actions": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.VisualCustomAction" }, "type": "array" }, "ChartConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ScatterPlotConfiguration" }, "ColumnHierarchies": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ColumnHierarchy" }, "type": "array" }, "Subtitle": { "$ref": "#/definitions/AWS::QuickSight::Analysis.VisualSubtitleLabelOptions" }, "Title": { "$ref": "#/definitions/AWS::QuickSight::Analysis.VisualTitleLabelOptions" }, "VisualId": { "type": "string" } }, "required": [ "VisualId" ], "type": "object" }, "AWS::QuickSight::Analysis.ScrollBarOptions": { "additionalProperties": false, "properties": { "Visibility": { "type": "string" }, "VisibleRange": { "$ref": "#/definitions/AWS::QuickSight::Analysis.VisibleRangeOptions" } }, "type": "object" }, "AWS::QuickSight::Analysis.SecondaryValueOptions": { "additionalProperties": false, "properties": { "Visibility": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Analysis.SectionAfterPageBreak": { "additionalProperties": false, "properties": { "Status": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Analysis.SectionBasedLayoutCanvasSizeOptions": { "additionalProperties": false, "properties": { "PaperCanvasSizeOptions": { "$ref": "#/definitions/AWS::QuickSight::Analysis.SectionBasedLayoutPaperCanvasSizeOptions" } }, "type": "object" }, "AWS::QuickSight::Analysis.SectionBasedLayoutConfiguration": { "additionalProperties": false, "properties": { "BodySections": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.BodySectionConfiguration" }, "type": "array" }, "CanvasSizeOptions": { "$ref": "#/definitions/AWS::QuickSight::Analysis.SectionBasedLayoutCanvasSizeOptions" }, "FooterSections": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.HeaderFooterSectionConfiguration" }, "type": "array" }, "HeaderSections": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.HeaderFooterSectionConfiguration" }, "type": "array" } }, "required": [ "BodySections", "CanvasSizeOptions", "FooterSections", "HeaderSections" ], "type": "object" }, "AWS::QuickSight::Analysis.SectionBasedLayoutPaperCanvasSizeOptions": { "additionalProperties": false, "properties": { "PaperMargin": { "$ref": "#/definitions/AWS::QuickSight::Analysis.Spacing" }, "PaperOrientation": { "type": "string" }, "PaperSize": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Analysis.SectionLayoutConfiguration": { "additionalProperties": false, "properties": { "FreeFormLayout": { "$ref": "#/definitions/AWS::QuickSight::Analysis.FreeFormSectionLayoutConfiguration" } }, "required": [ "FreeFormLayout" ], "type": "object" }, "AWS::QuickSight::Analysis.SectionPageBreakConfiguration": { "additionalProperties": false, "properties": { "After": { "$ref": "#/definitions/AWS::QuickSight::Analysis.SectionAfterPageBreak" } }, "type": "object" }, "AWS::QuickSight::Analysis.SectionStyle": { "additionalProperties": false, "properties": { "Height": { "type": "string" }, "Padding": { "$ref": "#/definitions/AWS::QuickSight::Analysis.Spacing" } }, "type": "object" }, "AWS::QuickSight::Analysis.SelectedSheetsFilterScopeConfiguration": { "additionalProperties": false, "properties": { "SheetVisualScopingConfigurations": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.SheetVisualScopingConfiguration" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Analysis.SeriesItem": { "additionalProperties": false, "properties": { "DataFieldSeriesItem": { "$ref": "#/definitions/AWS::QuickSight::Analysis.DataFieldSeriesItem" }, "FieldSeriesItem": { "$ref": "#/definitions/AWS::QuickSight::Analysis.FieldSeriesItem" } }, "type": "object" }, "AWS::QuickSight::Analysis.SetParameterValueConfiguration": { "additionalProperties": false, "properties": { "DestinationParameterName": { "type": "string" }, "Value": { "$ref": "#/definitions/AWS::QuickSight::Analysis.DestinationParameterValueConfiguration" } }, "required": [ "DestinationParameterName", "Value" ], "type": "object" }, "AWS::QuickSight::Analysis.ShapeConditionalFormat": { "additionalProperties": false, "properties": { "BackgroundColor": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ConditionalFormattingColor" } }, "required": [ "BackgroundColor" ], "type": "object" }, "AWS::QuickSight::Analysis.Sheet": { "additionalProperties": false, "properties": { "Name": { "type": "string" }, "SheetId": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Analysis.SheetControlLayout": { "additionalProperties": false, "properties": { "Configuration": { "$ref": "#/definitions/AWS::QuickSight::Analysis.SheetControlLayoutConfiguration" } }, "required": [ "Configuration" ], "type": "object" }, "AWS::QuickSight::Analysis.SheetControlLayoutConfiguration": { "additionalProperties": false, "properties": { "GridLayout": { "$ref": "#/definitions/AWS::QuickSight::Analysis.GridLayoutConfiguration" } }, "type": "object" }, "AWS::QuickSight::Analysis.SheetDefinition": { "additionalProperties": false, "properties": { "ContentType": { "type": "string" }, "Description": { "type": "string" }, "FilterControls": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.FilterControl" }, "type": "array" }, "Layouts": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.Layout" }, "type": "array" }, "Name": { "type": "string" }, "ParameterControls": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ParameterControl" }, "type": "array" }, "SheetControlLayouts": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.SheetControlLayout" }, "type": "array" }, "SheetId": { "type": "string" }, "TextBoxes": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.SheetTextBox" }, "type": "array" }, "Title": { "type": "string" }, "Visuals": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.Visual" }, "type": "array" } }, "required": [ "SheetId" ], "type": "object" }, "AWS::QuickSight::Analysis.SheetElementConfigurationOverrides": { "additionalProperties": false, "properties": { "Visibility": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Analysis.SheetElementRenderingRule": { "additionalProperties": false, "properties": { "ConfigurationOverrides": { "$ref": "#/definitions/AWS::QuickSight::Analysis.SheetElementConfigurationOverrides" }, "Expression": { "type": "string" } }, "required": [ "ConfigurationOverrides", "Expression" ], "type": "object" }, "AWS::QuickSight::Analysis.SheetTextBox": { "additionalProperties": false, "properties": { "Content": { "type": "string" }, "SheetTextBoxId": { "type": "string" } }, "required": [ "SheetTextBoxId" ], "type": "object" }, "AWS::QuickSight::Analysis.SheetVisualScopingConfiguration": { "additionalProperties": false, "properties": { "Scope": { "type": "string" }, "SheetId": { "type": "string" }, "VisualIds": { "items": { "type": "string" }, "type": "array" } }, "required": [ "Scope", "SheetId" ], "type": "object" }, "AWS::QuickSight::Analysis.ShortFormatText": { "additionalProperties": false, "properties": { "PlainText": { "type": "string" }, "RichText": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Analysis.SimpleClusterMarker": { "additionalProperties": false, "properties": { "Color": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Analysis.SliderControlDisplayOptions": { "additionalProperties": false, "properties": { "TitleOptions": { "$ref": "#/definitions/AWS::QuickSight::Analysis.LabelOptions" } }, "type": "object" }, "AWS::QuickSight::Analysis.SmallMultiplesOptions": { "additionalProperties": false, "properties": { "MaxVisibleColumns": { "type": "number" }, "MaxVisibleRows": { "type": "number" }, "PanelConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Analysis.PanelConfiguration" } }, "type": "object" }, "AWS::QuickSight::Analysis.Spacing": { "additionalProperties": false, "properties": { "Bottom": { "type": "string" }, "Left": { "type": "string" }, "Right": { "type": "string" }, "Top": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Analysis.StringDefaultValues": { "additionalProperties": false, "properties": { "DynamicValue": { "$ref": "#/definitions/AWS::QuickSight::Analysis.DynamicDefaultValue" }, "StaticValues": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Analysis.StringFormatConfiguration": { "additionalProperties": false, "properties": { "NullValueFormatConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Analysis.NullValueFormatConfiguration" }, "NumericFormatConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Analysis.NumericFormatConfiguration" } }, "type": "object" }, "AWS::QuickSight::Analysis.StringParameter": { "additionalProperties": false, "properties": { "Name": { "type": "string" }, "Values": { "items": { "type": "string" }, "type": "array" } }, "required": [ "Name", "Values" ], "type": "object" }, "AWS::QuickSight::Analysis.StringParameterDeclaration": { "additionalProperties": false, "properties": { "DefaultValues": { "$ref": "#/definitions/AWS::QuickSight::Analysis.StringDefaultValues" }, "MappedDataSetParameters": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.MappedDataSetParameter" }, "type": "array" }, "Name": { "type": "string" }, "ParameterValueType": { "type": "string" }, "ValueWhenUnset": { "$ref": "#/definitions/AWS::QuickSight::Analysis.StringValueWhenUnsetConfiguration" } }, "required": [ "Name", "ParameterValueType" ], "type": "object" }, "AWS::QuickSight::Analysis.StringValueWhenUnsetConfiguration": { "additionalProperties": false, "properties": { "CustomValue": { "type": "string" }, "ValueWhenUnsetOption": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Analysis.SubtotalOptions": { "additionalProperties": false, "properties": { "CustomLabel": { "type": "string" }, "FieldLevel": { "type": "string" }, "FieldLevelOptions": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.PivotTableFieldSubtotalOptions" }, "type": "array" }, "MetricHeaderCellStyle": { "$ref": "#/definitions/AWS::QuickSight::Analysis.TableCellStyle" }, "TotalCellStyle": { "$ref": "#/definitions/AWS::QuickSight::Analysis.TableCellStyle" }, "TotalsVisibility": { "type": "string" }, "ValueCellStyle": { "$ref": "#/definitions/AWS::QuickSight::Analysis.TableCellStyle" } }, "type": "object" }, "AWS::QuickSight::Analysis.TableAggregatedFieldWells": { "additionalProperties": false, "properties": { "GroupBy": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.DimensionField" }, "type": "array" }, "Values": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.MeasureField" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Analysis.TableBorderOptions": { "additionalProperties": false, "properties": { "Color": { "type": "string" }, "Style": { "type": "string" }, "Thickness": { "type": "number" } }, "type": "object" }, "AWS::QuickSight::Analysis.TableCellConditionalFormatting": { "additionalProperties": false, "properties": { "FieldId": { "type": "string" }, "TextFormat": { "$ref": "#/definitions/AWS::QuickSight::Analysis.TextConditionalFormat" } }, "required": [ "FieldId" ], "type": "object" }, "AWS::QuickSight::Analysis.TableCellImageSizingConfiguration": { "additionalProperties": false, "properties": { "TableCellImageScalingConfiguration": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Analysis.TableCellStyle": { "additionalProperties": false, "properties": { "BackgroundColor": { "type": "string" }, "Border": { "$ref": "#/definitions/AWS::QuickSight::Analysis.GlobalTableBorderOptions" }, "FontConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Analysis.FontConfiguration" }, "Height": { "type": "number" }, "HorizontalTextAlignment": { "type": "string" }, "TextWrap": { "type": "string" }, "VerticalTextAlignment": { "type": "string" }, "Visibility": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Analysis.TableConditionalFormatting": { "additionalProperties": false, "properties": { "ConditionalFormattingOptions": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.TableConditionalFormattingOption" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Analysis.TableConditionalFormattingOption": { "additionalProperties": false, "properties": { "Cell": { "$ref": "#/definitions/AWS::QuickSight::Analysis.TableCellConditionalFormatting" }, "Row": { "$ref": "#/definitions/AWS::QuickSight::Analysis.TableRowConditionalFormatting" } }, "type": "object" }, "AWS::QuickSight::Analysis.TableConfiguration": { "additionalProperties": false, "properties": { "FieldOptions": { "$ref": "#/definitions/AWS::QuickSight::Analysis.TableFieldOptions" }, "FieldWells": { "$ref": "#/definitions/AWS::QuickSight::Analysis.TableFieldWells" }, "PaginatedReportOptions": { "$ref": "#/definitions/AWS::QuickSight::Analysis.TablePaginatedReportOptions" }, "SortConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Analysis.TableSortConfiguration" }, "TableInlineVisualizations": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.TableInlineVisualization" }, "type": "array" }, "TableOptions": { "$ref": "#/definitions/AWS::QuickSight::Analysis.TableOptions" }, "TotalOptions": { "$ref": "#/definitions/AWS::QuickSight::Analysis.TotalOptions" } }, "type": "object" }, "AWS::QuickSight::Analysis.TableFieldCustomIconContent": { "additionalProperties": false, "properties": { "Icon": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Analysis.TableFieldCustomTextContent": { "additionalProperties": false, "properties": { "FontConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Analysis.FontConfiguration" }, "Value": { "type": "string" } }, "required": [ "FontConfiguration" ], "type": "object" }, "AWS::QuickSight::Analysis.TableFieldImageConfiguration": { "additionalProperties": false, "properties": { "SizingOptions": { "$ref": "#/definitions/AWS::QuickSight::Analysis.TableCellImageSizingConfiguration" } }, "type": "object" }, "AWS::QuickSight::Analysis.TableFieldLinkConfiguration": { "additionalProperties": false, "properties": { "Content": { "$ref": "#/definitions/AWS::QuickSight::Analysis.TableFieldLinkContentConfiguration" }, "Target": { "type": "string" } }, "required": [ "Content", "Target" ], "type": "object" }, "AWS::QuickSight::Analysis.TableFieldLinkContentConfiguration": { "additionalProperties": false, "properties": { "CustomIconContent": { "$ref": "#/definitions/AWS::QuickSight::Analysis.TableFieldCustomIconContent" }, "CustomTextContent": { "$ref": "#/definitions/AWS::QuickSight::Analysis.TableFieldCustomTextContent" } }, "type": "object" }, "AWS::QuickSight::Analysis.TableFieldOption": { "additionalProperties": false, "properties": { "CustomLabel": { "type": "string" }, "FieldId": { "type": "string" }, "URLStyling": { "$ref": "#/definitions/AWS::QuickSight::Analysis.TableFieldURLConfiguration" }, "Visibility": { "type": "string" }, "Width": { "type": "string" } }, "required": [ "FieldId" ], "type": "object" }, "AWS::QuickSight::Analysis.TableFieldOptions": { "additionalProperties": false, "properties": { "Order": { "items": { "type": "string" }, "type": "array" }, "SelectedFieldOptions": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.TableFieldOption" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Analysis.TableFieldURLConfiguration": { "additionalProperties": false, "properties": { "ImageConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Analysis.TableFieldImageConfiguration" }, "LinkConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Analysis.TableFieldLinkConfiguration" } }, "type": "object" }, "AWS::QuickSight::Analysis.TableFieldWells": { "additionalProperties": false, "properties": { "TableAggregatedFieldWells": { "$ref": "#/definitions/AWS::QuickSight::Analysis.TableAggregatedFieldWells" }, "TableUnaggregatedFieldWells": { "$ref": "#/definitions/AWS::QuickSight::Analysis.TableUnaggregatedFieldWells" } }, "type": "object" }, "AWS::QuickSight::Analysis.TableInlineVisualization": { "additionalProperties": false, "properties": { "DataBars": { "$ref": "#/definitions/AWS::QuickSight::Analysis.DataBarsOptions" } }, "type": "object" }, "AWS::QuickSight::Analysis.TableOptions": { "additionalProperties": false, "properties": { "CellStyle": { "$ref": "#/definitions/AWS::QuickSight::Analysis.TableCellStyle" }, "HeaderStyle": { "$ref": "#/definitions/AWS::QuickSight::Analysis.TableCellStyle" }, "Orientation": { "type": "string" }, "RowAlternateColorOptions": { "$ref": "#/definitions/AWS::QuickSight::Analysis.RowAlternateColorOptions" } }, "type": "object" }, "AWS::QuickSight::Analysis.TablePaginatedReportOptions": { "additionalProperties": false, "properties": { "OverflowColumnHeaderVisibility": { "type": "string" }, "VerticalOverflowVisibility": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Analysis.TableRowConditionalFormatting": { "additionalProperties": false, "properties": { "BackgroundColor": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ConditionalFormattingColor" }, "TextColor": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ConditionalFormattingColor" } }, "type": "object" }, "AWS::QuickSight::Analysis.TableSideBorderOptions": { "additionalProperties": false, "properties": { "Bottom": { "$ref": "#/definitions/AWS::QuickSight::Analysis.TableBorderOptions" }, "InnerHorizontal": { "$ref": "#/definitions/AWS::QuickSight::Analysis.TableBorderOptions" }, "InnerVertical": { "$ref": "#/definitions/AWS::QuickSight::Analysis.TableBorderOptions" }, "Left": { "$ref": "#/definitions/AWS::QuickSight::Analysis.TableBorderOptions" }, "Right": { "$ref": "#/definitions/AWS::QuickSight::Analysis.TableBorderOptions" }, "Top": { "$ref": "#/definitions/AWS::QuickSight::Analysis.TableBorderOptions" } }, "type": "object" }, "AWS::QuickSight::Analysis.TableSortConfiguration": { "additionalProperties": false, "properties": { "PaginationConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Analysis.PaginationConfiguration" }, "RowSort": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.FieldSortOptions" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Analysis.TableUnaggregatedFieldWells": { "additionalProperties": false, "properties": { "Values": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.UnaggregatedField" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Analysis.TableVisual": { "additionalProperties": false, "properties": { "Actions": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.VisualCustomAction" }, "type": "array" }, "ChartConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Analysis.TableConfiguration" }, "ConditionalFormatting": { "$ref": "#/definitions/AWS::QuickSight::Analysis.TableConditionalFormatting" }, "Subtitle": { "$ref": "#/definitions/AWS::QuickSight::Analysis.VisualSubtitleLabelOptions" }, "Title": { "$ref": "#/definitions/AWS::QuickSight::Analysis.VisualTitleLabelOptions" }, "VisualId": { "type": "string" } }, "required": [ "VisualId" ], "type": "object" }, "AWS::QuickSight::Analysis.TextAreaControlDisplayOptions": { "additionalProperties": false, "properties": { "PlaceholderOptions": { "$ref": "#/definitions/AWS::QuickSight::Analysis.TextControlPlaceholderOptions" }, "TitleOptions": { "$ref": "#/definitions/AWS::QuickSight::Analysis.LabelOptions" } }, "type": "object" }, "AWS::QuickSight::Analysis.TextConditionalFormat": { "additionalProperties": false, "properties": { "BackgroundColor": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ConditionalFormattingColor" }, "Icon": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ConditionalFormattingIcon" }, "TextColor": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ConditionalFormattingColor" } }, "type": "object" }, "AWS::QuickSight::Analysis.TextControlPlaceholderOptions": { "additionalProperties": false, "properties": { "Visibility": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Analysis.TextFieldControlDisplayOptions": { "additionalProperties": false, "properties": { "PlaceholderOptions": { "$ref": "#/definitions/AWS::QuickSight::Analysis.TextControlPlaceholderOptions" }, "TitleOptions": { "$ref": "#/definitions/AWS::QuickSight::Analysis.LabelOptions" } }, "type": "object" }, "AWS::QuickSight::Analysis.ThousandSeparatorOptions": { "additionalProperties": false, "properties": { "Symbol": { "type": "string" }, "Visibility": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Analysis.TimeBasedForecastProperties": { "additionalProperties": false, "properties": { "LowerBoundary": { "type": "number" }, "PeriodsBackward": { "type": "number" }, "PeriodsForward": { "type": "number" }, "PredictionInterval": { "type": "number" }, "Seasonality": { "type": "number" }, "UpperBoundary": { "type": "number" } }, "type": "object" }, "AWS::QuickSight::Analysis.TimeEqualityFilter": { "additionalProperties": false, "properties": { "Column": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ColumnIdentifier" }, "FilterId": { "type": "string" }, "ParameterName": { "type": "string" }, "TimeGranularity": { "type": "string" }, "Value": { "type": "string" } }, "required": [ "Column", "FilterId" ], "type": "object" }, "AWS::QuickSight::Analysis.TimeRangeDrillDownFilter": { "additionalProperties": false, "properties": { "Column": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ColumnIdentifier" }, "RangeMaximum": { "type": "string" }, "RangeMinimum": { "type": "string" }, "TimeGranularity": { "type": "string" } }, "required": [ "Column", "RangeMaximum", "RangeMinimum", "TimeGranularity" ], "type": "object" }, "AWS::QuickSight::Analysis.TimeRangeFilter": { "additionalProperties": false, "properties": { "Column": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ColumnIdentifier" }, "ExcludePeriodConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ExcludePeriodConfiguration" }, "FilterId": { "type": "string" }, "IncludeMaximum": { "type": "boolean" }, "IncludeMinimum": { "type": "boolean" }, "NullOption": { "type": "string" }, "RangeMaximumValue": { "$ref": "#/definitions/AWS::QuickSight::Analysis.TimeRangeFilterValue" }, "RangeMinimumValue": { "$ref": "#/definitions/AWS::QuickSight::Analysis.TimeRangeFilterValue" }, "TimeGranularity": { "type": "string" } }, "required": [ "Column", "FilterId", "NullOption" ], "type": "object" }, "AWS::QuickSight::Analysis.TimeRangeFilterValue": { "additionalProperties": false, "properties": { "Parameter": { "type": "string" }, "RollingDate": { "$ref": "#/definitions/AWS::QuickSight::Analysis.RollingDateConfiguration" }, "StaticValue": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Analysis.TooltipItem": { "additionalProperties": false, "properties": { "ColumnTooltipItem": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ColumnTooltipItem" }, "FieldTooltipItem": { "$ref": "#/definitions/AWS::QuickSight::Analysis.FieldTooltipItem" } }, "type": "object" }, "AWS::QuickSight::Analysis.TooltipOptions": { "additionalProperties": false, "properties": { "FieldBasedTooltip": { "$ref": "#/definitions/AWS::QuickSight::Analysis.FieldBasedTooltip" }, "SelectedTooltipType": { "type": "string" }, "TooltipVisibility": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Analysis.TopBottomFilter": { "additionalProperties": false, "properties": { "AggregationSortConfigurations": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.AggregationSortConfiguration" }, "type": "array" }, "Column": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ColumnIdentifier" }, "FilterId": { "type": "string" }, "Limit": { "type": "number" }, "ParameterName": { "type": "string" }, "TimeGranularity": { "type": "string" } }, "required": [ "AggregationSortConfigurations", "Column", "FilterId" ], "type": "object" }, "AWS::QuickSight::Analysis.TopBottomMoversComputation": { "additionalProperties": false, "properties": { "Category": { "$ref": "#/definitions/AWS::QuickSight::Analysis.DimensionField" }, "ComputationId": { "type": "string" }, "MoverSize": { "type": "number" }, "Name": { "type": "string" }, "SortOrder": { "type": "string" }, "Time": { "$ref": "#/definitions/AWS::QuickSight::Analysis.DimensionField" }, "Type": { "type": "string" }, "Value": { "$ref": "#/definitions/AWS::QuickSight::Analysis.MeasureField" } }, "required": [ "Category", "ComputationId", "Time", "Type" ], "type": "object" }, "AWS::QuickSight::Analysis.TopBottomRankedComputation": { "additionalProperties": false, "properties": { "Category": { "$ref": "#/definitions/AWS::QuickSight::Analysis.DimensionField" }, "ComputationId": { "type": "string" }, "Name": { "type": "string" }, "ResultSize": { "type": "number" }, "Type": { "type": "string" }, "Value": { "$ref": "#/definitions/AWS::QuickSight::Analysis.MeasureField" } }, "required": [ "Category", "ComputationId", "Type" ], "type": "object" }, "AWS::QuickSight::Analysis.TotalAggregationComputation": { "additionalProperties": false, "properties": { "ComputationId": { "type": "string" }, "Name": { "type": "string" }, "Value": { "$ref": "#/definitions/AWS::QuickSight::Analysis.MeasureField" } }, "required": [ "ComputationId", "Value" ], "type": "object" }, "AWS::QuickSight::Analysis.TotalOptions": { "additionalProperties": false, "properties": { "CustomLabel": { "type": "string" }, "Placement": { "type": "string" }, "ScrollStatus": { "type": "string" }, "TotalCellStyle": { "$ref": "#/definitions/AWS::QuickSight::Analysis.TableCellStyle" }, "TotalsVisibility": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Analysis.TreeMapAggregatedFieldWells": { "additionalProperties": false, "properties": { "Colors": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.MeasureField" }, "type": "array" }, "Groups": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.DimensionField" }, "type": "array" }, "Sizes": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.MeasureField" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Analysis.TreeMapConfiguration": { "additionalProperties": false, "properties": { "ColorLabelOptions": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ChartAxisLabelOptions" }, "ColorScale": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ColorScale" }, "DataLabels": { "$ref": "#/definitions/AWS::QuickSight::Analysis.DataLabelOptions" }, "FieldWells": { "$ref": "#/definitions/AWS::QuickSight::Analysis.TreeMapFieldWells" }, "GroupLabelOptions": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ChartAxisLabelOptions" }, "Legend": { "$ref": "#/definitions/AWS::QuickSight::Analysis.LegendOptions" }, "SizeLabelOptions": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ChartAxisLabelOptions" }, "SortConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Analysis.TreeMapSortConfiguration" }, "Tooltip": { "$ref": "#/definitions/AWS::QuickSight::Analysis.TooltipOptions" } }, "type": "object" }, "AWS::QuickSight::Analysis.TreeMapFieldWells": { "additionalProperties": false, "properties": { "TreeMapAggregatedFieldWells": { "$ref": "#/definitions/AWS::QuickSight::Analysis.TreeMapAggregatedFieldWells" } }, "type": "object" }, "AWS::QuickSight::Analysis.TreeMapSortConfiguration": { "additionalProperties": false, "properties": { "TreeMapGroupItemsLimitConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ItemsLimitConfiguration" }, "TreeMapSort": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.FieldSortOptions" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Analysis.TreeMapVisual": { "additionalProperties": false, "properties": { "Actions": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.VisualCustomAction" }, "type": "array" }, "ChartConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Analysis.TreeMapConfiguration" }, "ColumnHierarchies": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ColumnHierarchy" }, "type": "array" }, "Subtitle": { "$ref": "#/definitions/AWS::QuickSight::Analysis.VisualSubtitleLabelOptions" }, "Title": { "$ref": "#/definitions/AWS::QuickSight::Analysis.VisualTitleLabelOptions" }, "VisualId": { "type": "string" } }, "required": [ "VisualId" ], "type": "object" }, "AWS::QuickSight::Analysis.TrendArrowOptions": { "additionalProperties": false, "properties": { "Visibility": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Analysis.UnaggregatedField": { "additionalProperties": false, "properties": { "Column": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ColumnIdentifier" }, "FieldId": { "type": "string" }, "FormatConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Analysis.FormatConfiguration" } }, "required": [ "Column", "FieldId" ], "type": "object" }, "AWS::QuickSight::Analysis.UniqueValuesComputation": { "additionalProperties": false, "properties": { "Category": { "$ref": "#/definitions/AWS::QuickSight::Analysis.DimensionField" }, "ComputationId": { "type": "string" }, "Name": { "type": "string" } }, "required": [ "Category", "ComputationId" ], "type": "object" }, "AWS::QuickSight::Analysis.VisibleRangeOptions": { "additionalProperties": false, "properties": { "PercentRange": { "$ref": "#/definitions/AWS::QuickSight::Analysis.PercentVisibleRange" } }, "type": "object" }, "AWS::QuickSight::Analysis.Visual": { "additionalProperties": false, "properties": { "BarChartVisual": { "$ref": "#/definitions/AWS::QuickSight::Analysis.BarChartVisual" }, "BoxPlotVisual": { "$ref": "#/definitions/AWS::QuickSight::Analysis.BoxPlotVisual" }, "ComboChartVisual": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ComboChartVisual" }, "CustomContentVisual": { "$ref": "#/definitions/AWS::QuickSight::Analysis.CustomContentVisual" }, "EmptyVisual": { "$ref": "#/definitions/AWS::QuickSight::Analysis.EmptyVisual" }, "FilledMapVisual": { "$ref": "#/definitions/AWS::QuickSight::Analysis.FilledMapVisual" }, "FunnelChartVisual": { "$ref": "#/definitions/AWS::QuickSight::Analysis.FunnelChartVisual" }, "GaugeChartVisual": { "$ref": "#/definitions/AWS::QuickSight::Analysis.GaugeChartVisual" }, "GeospatialMapVisual": { "$ref": "#/definitions/AWS::QuickSight::Analysis.GeospatialMapVisual" }, "HeatMapVisual": { "$ref": "#/definitions/AWS::QuickSight::Analysis.HeatMapVisual" }, "HistogramVisual": { "$ref": "#/definitions/AWS::QuickSight::Analysis.HistogramVisual" }, "InsightVisual": { "$ref": "#/definitions/AWS::QuickSight::Analysis.InsightVisual" }, "KPIVisual": { "$ref": "#/definitions/AWS::QuickSight::Analysis.KPIVisual" }, "LineChartVisual": { "$ref": "#/definitions/AWS::QuickSight::Analysis.LineChartVisual" }, "PieChartVisual": { "$ref": "#/definitions/AWS::QuickSight::Analysis.PieChartVisual" }, "PivotTableVisual": { "$ref": "#/definitions/AWS::QuickSight::Analysis.PivotTableVisual" }, "RadarChartVisual": { "$ref": "#/definitions/AWS::QuickSight::Analysis.RadarChartVisual" }, "SankeyDiagramVisual": { "$ref": "#/definitions/AWS::QuickSight::Analysis.SankeyDiagramVisual" }, "ScatterPlotVisual": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ScatterPlotVisual" }, "TableVisual": { "$ref": "#/definitions/AWS::QuickSight::Analysis.TableVisual" }, "TreeMapVisual": { "$ref": "#/definitions/AWS::QuickSight::Analysis.TreeMapVisual" }, "WaterfallVisual": { "$ref": "#/definitions/AWS::QuickSight::Analysis.WaterfallVisual" }, "WordCloudVisual": { "$ref": "#/definitions/AWS::QuickSight::Analysis.WordCloudVisual" } }, "type": "object" }, "AWS::QuickSight::Analysis.VisualCustomAction": { "additionalProperties": false, "properties": { "ActionOperations": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.VisualCustomActionOperation" }, "type": "array" }, "CustomActionId": { "type": "string" }, "Name": { "type": "string" }, "Status": { "type": "string" }, "Trigger": { "type": "string" } }, "required": [ "ActionOperations", "CustomActionId", "Name", "Trigger" ], "type": "object" }, "AWS::QuickSight::Analysis.VisualCustomActionOperation": { "additionalProperties": false, "properties": { "FilterOperation": { "$ref": "#/definitions/AWS::QuickSight::Analysis.CustomActionFilterOperation" }, "NavigationOperation": { "$ref": "#/definitions/AWS::QuickSight::Analysis.CustomActionNavigationOperation" }, "SetParametersOperation": { "$ref": "#/definitions/AWS::QuickSight::Analysis.CustomActionSetParametersOperation" }, "URLOperation": { "$ref": "#/definitions/AWS::QuickSight::Analysis.CustomActionURLOperation" } }, "type": "object" }, "AWS::QuickSight::Analysis.VisualPalette": { "additionalProperties": false, "properties": { "ChartColor": { "type": "string" }, "ColorMap": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.DataPathColor" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Analysis.VisualSubtitleLabelOptions": { "additionalProperties": false, "properties": { "FormatText": { "$ref": "#/definitions/AWS::QuickSight::Analysis.LongFormatText" }, "Visibility": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Analysis.VisualTitleLabelOptions": { "additionalProperties": false, "properties": { "FormatText": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ShortFormatText" }, "Visibility": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Analysis.WaterfallChartAggregatedFieldWells": { "additionalProperties": false, "properties": { "Breakdowns": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.DimensionField" }, "type": "array" }, "Categories": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.DimensionField" }, "type": "array" }, "Values": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.MeasureField" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Analysis.WaterfallChartConfiguration": { "additionalProperties": false, "properties": { "CategoryAxisDisplayOptions": { "$ref": "#/definitions/AWS::QuickSight::Analysis.AxisDisplayOptions" }, "CategoryAxisLabelOptions": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ChartAxisLabelOptions" }, "DataLabels": { "$ref": "#/definitions/AWS::QuickSight::Analysis.DataLabelOptions" }, "FieldWells": { "$ref": "#/definitions/AWS::QuickSight::Analysis.WaterfallChartFieldWells" }, "Legend": { "$ref": "#/definitions/AWS::QuickSight::Analysis.LegendOptions" }, "PrimaryYAxisDisplayOptions": { "$ref": "#/definitions/AWS::QuickSight::Analysis.AxisDisplayOptions" }, "PrimaryYAxisLabelOptions": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ChartAxisLabelOptions" }, "SortConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Analysis.WaterfallChartSortConfiguration" }, "VisualPalette": { "$ref": "#/definitions/AWS::QuickSight::Analysis.VisualPalette" }, "WaterfallChartOptions": { "$ref": "#/definitions/AWS::QuickSight::Analysis.WaterfallChartOptions" } }, "type": "object" }, "AWS::QuickSight::Analysis.WaterfallChartFieldWells": { "additionalProperties": false, "properties": { "WaterfallChartAggregatedFieldWells": { "$ref": "#/definitions/AWS::QuickSight::Analysis.WaterfallChartAggregatedFieldWells" } }, "type": "object" }, "AWS::QuickSight::Analysis.WaterfallChartOptions": { "additionalProperties": false, "properties": { "TotalBarLabel": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Analysis.WaterfallChartSortConfiguration": { "additionalProperties": false, "properties": { "BreakdownItemsLimit": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ItemsLimitConfiguration" }, "CategorySort": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.FieldSortOptions" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Analysis.WaterfallVisual": { "additionalProperties": false, "properties": { "Actions": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.VisualCustomAction" }, "type": "array" }, "ChartConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Analysis.WaterfallChartConfiguration" }, "ColumnHierarchies": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ColumnHierarchy" }, "type": "array" }, "Subtitle": { "$ref": "#/definitions/AWS::QuickSight::Analysis.VisualSubtitleLabelOptions" }, "Title": { "$ref": "#/definitions/AWS::QuickSight::Analysis.VisualTitleLabelOptions" }, "VisualId": { "type": "string" } }, "required": [ "VisualId" ], "type": "object" }, "AWS::QuickSight::Analysis.WhatIfPointScenario": { "additionalProperties": false, "properties": { "Date": { "type": "string" }, "Value": { "type": "number" } }, "required": [ "Date", "Value" ], "type": "object" }, "AWS::QuickSight::Analysis.WhatIfRangeScenario": { "additionalProperties": false, "properties": { "EndDate": { "type": "string" }, "StartDate": { "type": "string" }, "Value": { "type": "number" } }, "required": [ "EndDate", "StartDate", "Value" ], "type": "object" }, "AWS::QuickSight::Analysis.WordCloudAggregatedFieldWells": { "additionalProperties": false, "properties": { "GroupBy": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.DimensionField" }, "type": "array" }, "Size": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.MeasureField" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Analysis.WordCloudChartConfiguration": { "additionalProperties": false, "properties": { "CategoryLabelOptions": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ChartAxisLabelOptions" }, "FieldWells": { "$ref": "#/definitions/AWS::QuickSight::Analysis.WordCloudFieldWells" }, "SortConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Analysis.WordCloudSortConfiguration" }, "WordCloudOptions": { "$ref": "#/definitions/AWS::QuickSight::Analysis.WordCloudOptions" } }, "type": "object" }, "AWS::QuickSight::Analysis.WordCloudFieldWells": { "additionalProperties": false, "properties": { "WordCloudAggregatedFieldWells": { "$ref": "#/definitions/AWS::QuickSight::Analysis.WordCloudAggregatedFieldWells" } }, "type": "object" }, "AWS::QuickSight::Analysis.WordCloudOptions": { "additionalProperties": false, "properties": { "CloudLayout": { "type": "string" }, "MaximumStringLength": { "type": "number" }, "WordCasing": { "type": "string" }, "WordOrientation": { "type": "string" }, "WordPadding": { "type": "string" }, "WordScaling": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Analysis.WordCloudSortConfiguration": { "additionalProperties": false, "properties": { "CategoryItemsLimit": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ItemsLimitConfiguration" }, "CategorySort": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.FieldSortOptions" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Analysis.WordCloudVisual": { "additionalProperties": false, "properties": { "Actions": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.VisualCustomAction" }, "type": "array" }, "ChartConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Analysis.WordCloudChartConfiguration" }, "ColumnHierarchies": { "items": { "$ref": "#/definitions/AWS::QuickSight::Analysis.ColumnHierarchy" }, "type": "array" }, "Subtitle": { "$ref": "#/definitions/AWS::QuickSight::Analysis.VisualSubtitleLabelOptions" }, "Title": { "$ref": "#/definitions/AWS::QuickSight::Analysis.VisualTitleLabelOptions" }, "VisualId": { "type": "string" } }, "required": [ "VisualId" ], "type": "object" }, "AWS::QuickSight::Dashboard": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AwsAccountId": { "type": "string" }, "DashboardId": { "type": "string" }, "DashboardPublishOptions": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.DashboardPublishOptions" }, "Definition": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.DashboardVersionDefinition" }, "Name": { "type": "string" }, "Parameters": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.Parameters" }, "Permissions": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ResourcePermission" }, "type": "array" }, "SourceEntity": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.DashboardSourceEntity" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "ThemeArn": { "type": "string" }, "VersionDescription": { "type": "string" } }, "required": [ "AwsAccountId", "DashboardId", "Name" ], "type": "object" }, "Type": { "enum": [ "AWS::QuickSight::Dashboard" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::QuickSight::Dashboard.AdHocFilteringOption": { "additionalProperties": false, "properties": { "AvailabilityStatus": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Dashboard.AggregationFunction": { "additionalProperties": false, "properties": { "CategoricalAggregationFunction": { "type": "string" }, "DateAggregationFunction": { "type": "string" }, "NumericalAggregationFunction": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.NumericalAggregationFunction" } }, "type": "object" }, "AWS::QuickSight::Dashboard.AggregationSortConfiguration": { "additionalProperties": false, "properties": { "AggregationFunction": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.AggregationFunction" }, "Column": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ColumnIdentifier" }, "SortDirection": { "type": "string" } }, "required": [ "Column", "SortDirection" ], "type": "object" }, "AWS::QuickSight::Dashboard.AnalysisDefaults": { "additionalProperties": false, "properties": { "DefaultNewSheetConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.DefaultNewSheetConfiguration" } }, "required": [ "DefaultNewSheetConfiguration" ], "type": "object" }, "AWS::QuickSight::Dashboard.AnchorDateConfiguration": { "additionalProperties": false, "properties": { "AnchorOption": { "type": "string" }, "ParameterName": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Dashboard.ArcAxisConfiguration": { "additionalProperties": false, "properties": { "Range": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ArcAxisDisplayRange" }, "ReserveRange": { "type": "number" } }, "type": "object" }, "AWS::QuickSight::Dashboard.ArcAxisDisplayRange": { "additionalProperties": false, "properties": { "Max": { "type": "number" }, "Min": { "type": "number" } }, "type": "object" }, "AWS::QuickSight::Dashboard.ArcConfiguration": { "additionalProperties": false, "properties": { "ArcAngle": { "type": "number" }, "ArcThickness": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Dashboard.ArcOptions": { "additionalProperties": false, "properties": { "ArcThickness": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Dashboard.AxisDataOptions": { "additionalProperties": false, "properties": { "DateAxisOptions": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.DateAxisOptions" }, "NumericAxisOptions": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.NumericAxisOptions" } }, "type": "object" }, "AWS::QuickSight::Dashboard.AxisDisplayMinMaxRange": { "additionalProperties": false, "properties": { "Maximum": { "type": "number" }, "Minimum": { "type": "number" } }, "type": "object" }, "AWS::QuickSight::Dashboard.AxisDisplayOptions": { "additionalProperties": false, "properties": { "AxisLineVisibility": { "type": "string" }, "AxisOffset": { "type": "string" }, "DataOptions": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.AxisDataOptions" }, "GridLineVisibility": { "type": "string" }, "ScrollbarOptions": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ScrollBarOptions" }, "TickLabelOptions": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.AxisTickLabelOptions" } }, "type": "object" }, "AWS::QuickSight::Dashboard.AxisDisplayRange": { "additionalProperties": false, "properties": { "DataDriven": { "type": "object" }, "MinMax": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.AxisDisplayMinMaxRange" } }, "type": "object" }, "AWS::QuickSight::Dashboard.AxisLabelOptions": { "additionalProperties": false, "properties": { "ApplyTo": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.AxisLabelReferenceOptions" }, "CustomLabel": { "type": "string" }, "FontConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.FontConfiguration" } }, "type": "object" }, "AWS::QuickSight::Dashboard.AxisLabelReferenceOptions": { "additionalProperties": false, "properties": { "Column": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ColumnIdentifier" }, "FieldId": { "type": "string" } }, "required": [ "Column", "FieldId" ], "type": "object" }, "AWS::QuickSight::Dashboard.AxisLinearScale": { "additionalProperties": false, "properties": { "StepCount": { "type": "number" }, "StepSize": { "type": "number" } }, "type": "object" }, "AWS::QuickSight::Dashboard.AxisLogarithmicScale": { "additionalProperties": false, "properties": { "Base": { "type": "number" } }, "type": "object" }, "AWS::QuickSight::Dashboard.AxisScale": { "additionalProperties": false, "properties": { "Linear": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.AxisLinearScale" }, "Logarithmic": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.AxisLogarithmicScale" } }, "type": "object" }, "AWS::QuickSight::Dashboard.AxisTickLabelOptions": { "additionalProperties": false, "properties": { "LabelOptions": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.LabelOptions" }, "RotationAngle": { "type": "number" } }, "type": "object" }, "AWS::QuickSight::Dashboard.BarChartAggregatedFieldWells": { "additionalProperties": false, "properties": { "Category": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.DimensionField" }, "type": "array" }, "Colors": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.DimensionField" }, "type": "array" }, "SmallMultiples": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.DimensionField" }, "type": "array" }, "Values": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.MeasureField" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Dashboard.BarChartConfiguration": { "additionalProperties": false, "properties": { "BarsArrangement": { "type": "string" }, "CategoryAxis": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.AxisDisplayOptions" }, "CategoryLabelOptions": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ChartAxisLabelOptions" }, "ColorLabelOptions": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ChartAxisLabelOptions" }, "ContributionAnalysisDefaults": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ContributionAnalysisDefault" }, "type": "array" }, "DataLabels": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.DataLabelOptions" }, "FieldWells": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.BarChartFieldWells" }, "Legend": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.LegendOptions" }, "Orientation": { "type": "string" }, "ReferenceLines": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ReferenceLine" }, "type": "array" }, "SmallMultiplesOptions": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.SmallMultiplesOptions" }, "SortConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.BarChartSortConfiguration" }, "Tooltip": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.TooltipOptions" }, "ValueAxis": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.AxisDisplayOptions" }, "ValueLabelOptions": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ChartAxisLabelOptions" }, "VisualPalette": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.VisualPalette" } }, "type": "object" }, "AWS::QuickSight::Dashboard.BarChartFieldWells": { "additionalProperties": false, "properties": { "BarChartAggregatedFieldWells": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.BarChartAggregatedFieldWells" } }, "type": "object" }, "AWS::QuickSight::Dashboard.BarChartSortConfiguration": { "additionalProperties": false, "properties": { "CategoryItemsLimit": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ItemsLimitConfiguration" }, "CategorySort": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.FieldSortOptions" }, "type": "array" }, "ColorItemsLimit": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ItemsLimitConfiguration" }, "ColorSort": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.FieldSortOptions" }, "type": "array" }, "SmallMultiplesLimitConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ItemsLimitConfiguration" }, "SmallMultiplesSort": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.FieldSortOptions" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Dashboard.BarChartVisual": { "additionalProperties": false, "properties": { "Actions": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.VisualCustomAction" }, "type": "array" }, "ChartConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.BarChartConfiguration" }, "ColumnHierarchies": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ColumnHierarchy" }, "type": "array" }, "Subtitle": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.VisualSubtitleLabelOptions" }, "Title": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.VisualTitleLabelOptions" }, "VisualId": { "type": "string" } }, "required": [ "VisualId" ], "type": "object" }, "AWS::QuickSight::Dashboard.BinCountOptions": { "additionalProperties": false, "properties": { "Value": { "type": "number" } }, "type": "object" }, "AWS::QuickSight::Dashboard.BinWidthOptions": { "additionalProperties": false, "properties": { "BinCountLimit": { "type": "number" }, "Value": { "type": "number" } }, "type": "object" }, "AWS::QuickSight::Dashboard.BodySectionConfiguration": { "additionalProperties": false, "properties": { "Content": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.BodySectionContent" }, "PageBreakConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.SectionPageBreakConfiguration" }, "SectionId": { "type": "string" }, "Style": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.SectionStyle" } }, "required": [ "Content", "SectionId" ], "type": "object" }, "AWS::QuickSight::Dashboard.BodySectionContent": { "additionalProperties": false, "properties": { "Layout": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.SectionLayoutConfiguration" } }, "type": "object" }, "AWS::QuickSight::Dashboard.BoxPlotAggregatedFieldWells": { "additionalProperties": false, "properties": { "GroupBy": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.DimensionField" }, "type": "array" }, "Values": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.MeasureField" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Dashboard.BoxPlotChartConfiguration": { "additionalProperties": false, "properties": { "BoxPlotOptions": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.BoxPlotOptions" }, "CategoryAxis": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.AxisDisplayOptions" }, "CategoryLabelOptions": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ChartAxisLabelOptions" }, "FieldWells": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.BoxPlotFieldWells" }, "Legend": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.LegendOptions" }, "PrimaryYAxisDisplayOptions": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.AxisDisplayOptions" }, "PrimaryYAxisLabelOptions": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ChartAxisLabelOptions" }, "ReferenceLines": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ReferenceLine" }, "type": "array" }, "SortConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.BoxPlotSortConfiguration" }, "Tooltip": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.TooltipOptions" }, "VisualPalette": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.VisualPalette" } }, "type": "object" }, "AWS::QuickSight::Dashboard.BoxPlotFieldWells": { "additionalProperties": false, "properties": { "BoxPlotAggregatedFieldWells": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.BoxPlotAggregatedFieldWells" } }, "type": "object" }, "AWS::QuickSight::Dashboard.BoxPlotOptions": { "additionalProperties": false, "properties": { "AllDataPointsVisibility": { "type": "string" }, "OutlierVisibility": { "type": "string" }, "StyleOptions": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.BoxPlotStyleOptions" } }, "type": "object" }, "AWS::QuickSight::Dashboard.BoxPlotSortConfiguration": { "additionalProperties": false, "properties": { "CategorySort": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.FieldSortOptions" }, "type": "array" }, "PaginationConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.PaginationConfiguration" } }, "type": "object" }, "AWS::QuickSight::Dashboard.BoxPlotStyleOptions": { "additionalProperties": false, "properties": { "FillStyle": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Dashboard.BoxPlotVisual": { "additionalProperties": false, "properties": { "Actions": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.VisualCustomAction" }, "type": "array" }, "ChartConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.BoxPlotChartConfiguration" }, "ColumnHierarchies": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ColumnHierarchy" }, "type": "array" }, "Subtitle": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.VisualSubtitleLabelOptions" }, "Title": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.VisualTitleLabelOptions" }, "VisualId": { "type": "string" } }, "required": [ "VisualId" ], "type": "object" }, "AWS::QuickSight::Dashboard.CalculatedField": { "additionalProperties": false, "properties": { "DataSetIdentifier": { "type": "string" }, "Expression": { "type": "string" }, "Name": { "type": "string" } }, "required": [ "DataSetIdentifier", "Expression", "Name" ], "type": "object" }, "AWS::QuickSight::Dashboard.CalculatedMeasureField": { "additionalProperties": false, "properties": { "Expression": { "type": "string" }, "FieldId": { "type": "string" } }, "required": [ "Expression", "FieldId" ], "type": "object" }, "AWS::QuickSight::Dashboard.CascadingControlConfiguration": { "additionalProperties": false, "properties": { "SourceControls": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.CascadingControlSource" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Dashboard.CascadingControlSource": { "additionalProperties": false, "properties": { "ColumnToMatch": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ColumnIdentifier" }, "SourceSheetControlId": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Dashboard.CategoricalDimensionField": { "additionalProperties": false, "properties": { "Column": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ColumnIdentifier" }, "FieldId": { "type": "string" }, "FormatConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.StringFormatConfiguration" }, "HierarchyId": { "type": "string" } }, "required": [ "Column", "FieldId" ], "type": "object" }, "AWS::QuickSight::Dashboard.CategoricalMeasureField": { "additionalProperties": false, "properties": { "AggregationFunction": { "type": "string" }, "Column": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ColumnIdentifier" }, "FieldId": { "type": "string" }, "FormatConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.StringFormatConfiguration" } }, "required": [ "Column", "FieldId" ], "type": "object" }, "AWS::QuickSight::Dashboard.CategoryDrillDownFilter": { "additionalProperties": false, "properties": { "CategoryValues": { "items": { "type": "string" }, "type": "array" }, "Column": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ColumnIdentifier" } }, "required": [ "CategoryValues", "Column" ], "type": "object" }, "AWS::QuickSight::Dashboard.CategoryFilter": { "additionalProperties": false, "properties": { "Column": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ColumnIdentifier" }, "Configuration": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.CategoryFilterConfiguration" }, "FilterId": { "type": "string" } }, "required": [ "Column", "Configuration", "FilterId" ], "type": "object" }, "AWS::QuickSight::Dashboard.CategoryFilterConfiguration": { "additionalProperties": false, "properties": { "CustomFilterConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.CustomFilterConfiguration" }, "CustomFilterListConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.CustomFilterListConfiguration" }, "FilterListConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.FilterListConfiguration" } }, "type": "object" }, "AWS::QuickSight::Dashboard.ChartAxisLabelOptions": { "additionalProperties": false, "properties": { "AxisLabelOptions": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.AxisLabelOptions" }, "type": "array" }, "SortIconVisibility": { "type": "string" }, "Visibility": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Dashboard.ClusterMarker": { "additionalProperties": false, "properties": { "SimpleClusterMarker": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.SimpleClusterMarker" } }, "type": "object" }, "AWS::QuickSight::Dashboard.ClusterMarkerConfiguration": { "additionalProperties": false, "properties": { "ClusterMarker": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ClusterMarker" } }, "type": "object" }, "AWS::QuickSight::Dashboard.ColorScale": { "additionalProperties": false, "properties": { "ColorFillType": { "type": "string" }, "Colors": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.DataColor" }, "type": "array" }, "NullValueColor": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.DataColor" } }, "required": [ "ColorFillType", "Colors" ], "type": "object" }, "AWS::QuickSight::Dashboard.ColumnConfiguration": { "additionalProperties": false, "properties": { "Column": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ColumnIdentifier" }, "FormatConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.FormatConfiguration" }, "Role": { "type": "string" } }, "required": [ "Column" ], "type": "object" }, "AWS::QuickSight::Dashboard.ColumnHierarchy": { "additionalProperties": false, "properties": { "DateTimeHierarchy": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.DateTimeHierarchy" }, "ExplicitHierarchy": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ExplicitHierarchy" }, "PredefinedHierarchy": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.PredefinedHierarchy" } }, "type": "object" }, "AWS::QuickSight::Dashboard.ColumnIdentifier": { "additionalProperties": false, "properties": { "ColumnName": { "type": "string" }, "DataSetIdentifier": { "type": "string" } }, "required": [ "ColumnName", "DataSetIdentifier" ], "type": "object" }, "AWS::QuickSight::Dashboard.ColumnSort": { "additionalProperties": false, "properties": { "AggregationFunction": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.AggregationFunction" }, "Direction": { "type": "string" }, "SortBy": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ColumnIdentifier" } }, "required": [ "Direction", "SortBy" ], "type": "object" }, "AWS::QuickSight::Dashboard.ColumnTooltipItem": { "additionalProperties": false, "properties": { "Aggregation": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.AggregationFunction" }, "Column": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ColumnIdentifier" }, "Label": { "type": "string" }, "Visibility": { "type": "string" } }, "required": [ "Column" ], "type": "object" }, "AWS::QuickSight::Dashboard.ComboChartAggregatedFieldWells": { "additionalProperties": false, "properties": { "BarValues": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.MeasureField" }, "type": "array" }, "Category": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.DimensionField" }, "type": "array" }, "Colors": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.DimensionField" }, "type": "array" }, "LineValues": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.MeasureField" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Dashboard.ComboChartConfiguration": { "additionalProperties": false, "properties": { "BarDataLabels": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.DataLabelOptions" }, "BarsArrangement": { "type": "string" }, "CategoryAxis": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.AxisDisplayOptions" }, "CategoryLabelOptions": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ChartAxisLabelOptions" }, "ColorLabelOptions": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ChartAxisLabelOptions" }, "FieldWells": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ComboChartFieldWells" }, "Legend": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.LegendOptions" }, "LineDataLabels": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.DataLabelOptions" }, "PrimaryYAxisDisplayOptions": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.AxisDisplayOptions" }, "PrimaryYAxisLabelOptions": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ChartAxisLabelOptions" }, "ReferenceLines": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ReferenceLine" }, "type": "array" }, "SecondaryYAxisDisplayOptions": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.AxisDisplayOptions" }, "SecondaryYAxisLabelOptions": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ChartAxisLabelOptions" }, "SortConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ComboChartSortConfiguration" }, "Tooltip": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.TooltipOptions" }, "VisualPalette": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.VisualPalette" } }, "type": "object" }, "AWS::QuickSight::Dashboard.ComboChartFieldWells": { "additionalProperties": false, "properties": { "ComboChartAggregatedFieldWells": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ComboChartAggregatedFieldWells" } }, "type": "object" }, "AWS::QuickSight::Dashboard.ComboChartSortConfiguration": { "additionalProperties": false, "properties": { "CategoryItemsLimit": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ItemsLimitConfiguration" }, "CategorySort": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.FieldSortOptions" }, "type": "array" }, "ColorItemsLimit": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ItemsLimitConfiguration" }, "ColorSort": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.FieldSortOptions" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Dashboard.ComboChartVisual": { "additionalProperties": false, "properties": { "Actions": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.VisualCustomAction" }, "type": "array" }, "ChartConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ComboChartConfiguration" }, "ColumnHierarchies": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ColumnHierarchy" }, "type": "array" }, "Subtitle": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.VisualSubtitleLabelOptions" }, "Title": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.VisualTitleLabelOptions" }, "VisualId": { "type": "string" } }, "required": [ "VisualId" ], "type": "object" }, "AWS::QuickSight::Dashboard.ComparisonConfiguration": { "additionalProperties": false, "properties": { "ComparisonFormat": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ComparisonFormatConfiguration" }, "ComparisonMethod": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Dashboard.ComparisonFormatConfiguration": { "additionalProperties": false, "properties": { "NumberDisplayFormatConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.NumberDisplayFormatConfiguration" }, "PercentageDisplayFormatConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.PercentageDisplayFormatConfiguration" } }, "type": "object" }, "AWS::QuickSight::Dashboard.Computation": { "additionalProperties": false, "properties": { "Forecast": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ForecastComputation" }, "GrowthRate": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.GrowthRateComputation" }, "MaximumMinimum": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.MaximumMinimumComputation" }, "MetricComparison": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.MetricComparisonComputation" }, "PeriodOverPeriod": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.PeriodOverPeriodComputation" }, "PeriodToDate": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.PeriodToDateComputation" }, "TopBottomMovers": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.TopBottomMoversComputation" }, "TopBottomRanked": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.TopBottomRankedComputation" }, "TotalAggregation": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.TotalAggregationComputation" }, "UniqueValues": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.UniqueValuesComputation" } }, "type": "object" }, "AWS::QuickSight::Dashboard.ConditionalFormattingColor": { "additionalProperties": false, "properties": { "Gradient": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ConditionalFormattingGradientColor" }, "Solid": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ConditionalFormattingSolidColor" } }, "type": "object" }, "AWS::QuickSight::Dashboard.ConditionalFormattingCustomIconCondition": { "additionalProperties": false, "properties": { "Color": { "type": "string" }, "DisplayConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ConditionalFormattingIconDisplayConfiguration" }, "Expression": { "type": "string" }, "IconOptions": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ConditionalFormattingCustomIconOptions" } }, "required": [ "Expression", "IconOptions" ], "type": "object" }, "AWS::QuickSight::Dashboard.ConditionalFormattingCustomIconOptions": { "additionalProperties": false, "properties": { "Icon": { "type": "string" }, "UnicodeIcon": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Dashboard.ConditionalFormattingGradientColor": { "additionalProperties": false, "properties": { "Color": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.GradientColor" }, "Expression": { "type": "string" } }, "required": [ "Color", "Expression" ], "type": "object" }, "AWS::QuickSight::Dashboard.ConditionalFormattingIcon": { "additionalProperties": false, "properties": { "CustomCondition": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ConditionalFormattingCustomIconCondition" }, "IconSet": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ConditionalFormattingIconSet" } }, "type": "object" }, "AWS::QuickSight::Dashboard.ConditionalFormattingIconDisplayConfiguration": { "additionalProperties": false, "properties": { "IconDisplayOption": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Dashboard.ConditionalFormattingIconSet": { "additionalProperties": false, "properties": { "Expression": { "type": "string" }, "IconSetType": { "type": "string" } }, "required": [ "Expression" ], "type": "object" }, "AWS::QuickSight::Dashboard.ConditionalFormattingSolidColor": { "additionalProperties": false, "properties": { "Color": { "type": "string" }, "Expression": { "type": "string" } }, "required": [ "Expression" ], "type": "object" }, "AWS::QuickSight::Dashboard.ContributionAnalysisDefault": { "additionalProperties": false, "properties": { "ContributorDimensions": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ColumnIdentifier" }, "type": "array" }, "MeasureFieldId": { "type": "string" } }, "required": [ "ContributorDimensions", "MeasureFieldId" ], "type": "object" }, "AWS::QuickSight::Dashboard.CurrencyDisplayFormatConfiguration": { "additionalProperties": false, "properties": { "DecimalPlacesConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.DecimalPlacesConfiguration" }, "NegativeValueConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.NegativeValueConfiguration" }, "NullValueFormatConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.NullValueFormatConfiguration" }, "NumberScale": { "type": "string" }, "Prefix": { "type": "string" }, "SeparatorConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.NumericSeparatorConfiguration" }, "Suffix": { "type": "string" }, "Symbol": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Dashboard.CustomActionFilterOperation": { "additionalProperties": false, "properties": { "SelectedFieldsConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.FilterOperationSelectedFieldsConfiguration" }, "TargetVisualsConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.FilterOperationTargetVisualsConfiguration" } }, "required": [ "SelectedFieldsConfiguration", "TargetVisualsConfiguration" ], "type": "object" }, "AWS::QuickSight::Dashboard.CustomActionNavigationOperation": { "additionalProperties": false, "properties": { "LocalNavigationConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.LocalNavigationConfiguration" } }, "type": "object" }, "AWS::QuickSight::Dashboard.CustomActionSetParametersOperation": { "additionalProperties": false, "properties": { "ParameterValueConfigurations": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.SetParameterValueConfiguration" }, "type": "array" } }, "required": [ "ParameterValueConfigurations" ], "type": "object" }, "AWS::QuickSight::Dashboard.CustomActionURLOperation": { "additionalProperties": false, "properties": { "URLTarget": { "type": "string" }, "URLTemplate": { "type": "string" } }, "required": [ "URLTarget", "URLTemplate" ], "type": "object" }, "AWS::QuickSight::Dashboard.CustomContentConfiguration": { "additionalProperties": false, "properties": { "ContentType": { "type": "string" }, "ContentUrl": { "type": "string" }, "ImageScaling": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Dashboard.CustomContentVisual": { "additionalProperties": false, "properties": { "Actions": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.VisualCustomAction" }, "type": "array" }, "ChartConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.CustomContentConfiguration" }, "DataSetIdentifier": { "type": "string" }, "Subtitle": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.VisualSubtitleLabelOptions" }, "Title": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.VisualTitleLabelOptions" }, "VisualId": { "type": "string" } }, "required": [ "DataSetIdentifier", "VisualId" ], "type": "object" }, "AWS::QuickSight::Dashboard.CustomFilterConfiguration": { "additionalProperties": false, "properties": { "CategoryValue": { "type": "string" }, "MatchOperator": { "type": "string" }, "NullOption": { "type": "string" }, "ParameterName": { "type": "string" }, "SelectAllOptions": { "type": "string" } }, "required": [ "MatchOperator", "NullOption" ], "type": "object" }, "AWS::QuickSight::Dashboard.CustomFilterListConfiguration": { "additionalProperties": false, "properties": { "CategoryValues": { "items": { "type": "string" }, "type": "array" }, "MatchOperator": { "type": "string" }, "NullOption": { "type": "string" }, "SelectAllOptions": { "type": "string" } }, "required": [ "MatchOperator", "NullOption" ], "type": "object" }, "AWS::QuickSight::Dashboard.CustomNarrativeOptions": { "additionalProperties": false, "properties": { "Narrative": { "type": "string" } }, "required": [ "Narrative" ], "type": "object" }, "AWS::QuickSight::Dashboard.CustomParameterValues": { "additionalProperties": false, "properties": { "DateTimeValues": { "items": { "type": "string" }, "type": "array" }, "DecimalValues": { "items": { "type": "number" }, "type": "array" }, "IntegerValues": { "items": { "type": "number" }, "type": "array" }, "StringValues": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Dashboard.CustomValuesConfiguration": { "additionalProperties": false, "properties": { "CustomValues": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.CustomParameterValues" }, "IncludeNullValue": { "type": "boolean" } }, "required": [ "CustomValues" ], "type": "object" }, "AWS::QuickSight::Dashboard.DashboardError": { "additionalProperties": false, "properties": { "Message": { "type": "string" }, "Type": { "type": "string" }, "ViolatedEntities": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.Entity" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Dashboard.DashboardPublishOptions": { "additionalProperties": false, "properties": { "AdHocFilteringOption": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.AdHocFilteringOption" }, "DataPointDrillUpDownOption": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.DataPointDrillUpDownOption" }, "DataPointMenuLabelOption": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.DataPointMenuLabelOption" }, "DataPointTooltipOption": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.DataPointTooltipOption" }, "ExportToCSVOption": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ExportToCSVOption" }, "ExportWithHiddenFieldsOption": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ExportWithHiddenFieldsOption" }, "SheetControlsOption": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.SheetControlsOption" }, "SheetLayoutElementMaximizationOption": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.SheetLayoutElementMaximizationOption" }, "VisualAxisSortOption": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.VisualAxisSortOption" }, "VisualMenuOption": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.VisualMenuOption" }, "VisualPublishOptions": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.DashboardVisualPublishOptions" } }, "type": "object" }, "AWS::QuickSight::Dashboard.DashboardSourceEntity": { "additionalProperties": false, "properties": { "SourceTemplate": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.DashboardSourceTemplate" } }, "type": "object" }, "AWS::QuickSight::Dashboard.DashboardSourceTemplate": { "additionalProperties": false, "properties": { "Arn": { "type": "string" }, "DataSetReferences": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.DataSetReference" }, "type": "array" } }, "required": [ "Arn", "DataSetReferences" ], "type": "object" }, "AWS::QuickSight::Dashboard.DashboardVersion": { "additionalProperties": false, "properties": { "Arn": { "type": "string" }, "CreatedTime": { "type": "string" }, "DataSetArns": { "items": { "type": "string" }, "type": "array" }, "Description": { "type": "string" }, "Errors": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.DashboardError" }, "type": "array" }, "Sheets": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.Sheet" }, "type": "array" }, "SourceEntityArn": { "type": "string" }, "Status": { "type": "string" }, "ThemeArn": { "type": "string" }, "VersionNumber": { "type": "number" } }, "type": "object" }, "AWS::QuickSight::Dashboard.DashboardVersionDefinition": { "additionalProperties": false, "properties": { "AnalysisDefaults": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.AnalysisDefaults" }, "CalculatedFields": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.CalculatedField" }, "type": "array" }, "ColumnConfigurations": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ColumnConfiguration" }, "type": "array" }, "DataSetIdentifierDeclarations": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.DataSetIdentifierDeclaration" }, "type": "array" }, "FilterGroups": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.FilterGroup" }, "type": "array" }, "ParameterDeclarations": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ParameterDeclaration" }, "type": "array" }, "Sheets": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.SheetDefinition" }, "type": "array" } }, "required": [ "DataSetIdentifierDeclarations" ], "type": "object" }, "AWS::QuickSight::Dashboard.DashboardVisualPublishOptions": { "additionalProperties": false, "properties": { "ExportHiddenFieldsOption": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ExportHiddenFieldsOption" } }, "type": "object" }, "AWS::QuickSight::Dashboard.DataBarsOptions": { "additionalProperties": false, "properties": { "FieldId": { "type": "string" }, "NegativeColor": { "type": "string" }, "PositiveColor": { "type": "string" } }, "required": [ "FieldId" ], "type": "object" }, "AWS::QuickSight::Dashboard.DataColor": { "additionalProperties": false, "properties": { "Color": { "type": "string" }, "DataValue": { "type": "number" } }, "type": "object" }, "AWS::QuickSight::Dashboard.DataFieldSeriesItem": { "additionalProperties": false, "properties": { "AxisBinding": { "type": "string" }, "FieldId": { "type": "string" }, "FieldValue": { "type": "string" }, "Settings": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.LineChartSeriesSettings" } }, "required": [ "AxisBinding", "FieldId" ], "type": "object" }, "AWS::QuickSight::Dashboard.DataLabelOptions": { "additionalProperties": false, "properties": { "CategoryLabelVisibility": { "type": "string" }, "DataLabelTypes": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.DataLabelType" }, "type": "array" }, "LabelColor": { "type": "string" }, "LabelContent": { "type": "string" }, "LabelFontConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.FontConfiguration" }, "MeasureLabelVisibility": { "type": "string" }, "Overlap": { "type": "string" }, "Position": { "type": "string" }, "TotalsVisibility": { "type": "string" }, "Visibility": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Dashboard.DataLabelType": { "additionalProperties": false, "properties": { "DataPathLabelType": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.DataPathLabelType" }, "FieldLabelType": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.FieldLabelType" }, "MaximumLabelType": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.MaximumLabelType" }, "MinimumLabelType": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.MinimumLabelType" }, "RangeEndsLabelType": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.RangeEndsLabelType" } }, "type": "object" }, "AWS::QuickSight::Dashboard.DataPathColor": { "additionalProperties": false, "properties": { "Color": { "type": "string" }, "Element": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.DataPathValue" }, "TimeGranularity": { "type": "string" } }, "required": [ "Color", "Element" ], "type": "object" }, "AWS::QuickSight::Dashboard.DataPathLabelType": { "additionalProperties": false, "properties": { "FieldId": { "type": "string" }, "FieldValue": { "type": "string" }, "Visibility": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Dashboard.DataPathSort": { "additionalProperties": false, "properties": { "Direction": { "type": "string" }, "SortPaths": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.DataPathValue" }, "type": "array" } }, "required": [ "Direction", "SortPaths" ], "type": "object" }, "AWS::QuickSight::Dashboard.DataPathValue": { "additionalProperties": false, "properties": { "FieldId": { "type": "string" }, "FieldValue": { "type": "string" } }, "required": [ "FieldId", "FieldValue" ], "type": "object" }, "AWS::QuickSight::Dashboard.DataPointDrillUpDownOption": { "additionalProperties": false, "properties": { "AvailabilityStatus": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Dashboard.DataPointMenuLabelOption": { "additionalProperties": false, "properties": { "AvailabilityStatus": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Dashboard.DataPointTooltipOption": { "additionalProperties": false, "properties": { "AvailabilityStatus": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Dashboard.DataSetIdentifierDeclaration": { "additionalProperties": false, "properties": { "DataSetArn": { "type": "string" }, "Identifier": { "type": "string" } }, "required": [ "DataSetArn", "Identifier" ], "type": "object" }, "AWS::QuickSight::Dashboard.DataSetReference": { "additionalProperties": false, "properties": { "DataSetArn": { "type": "string" }, "DataSetPlaceholder": { "type": "string" } }, "required": [ "DataSetArn", "DataSetPlaceholder" ], "type": "object" }, "AWS::QuickSight::Dashboard.DateAxisOptions": { "additionalProperties": false, "properties": { "MissingDateVisibility": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Dashboard.DateDimensionField": { "additionalProperties": false, "properties": { "Column": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ColumnIdentifier" }, "DateGranularity": { "type": "string" }, "FieldId": { "type": "string" }, "FormatConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.DateTimeFormatConfiguration" }, "HierarchyId": { "type": "string" } }, "required": [ "Column", "FieldId" ], "type": "object" }, "AWS::QuickSight::Dashboard.DateMeasureField": { "additionalProperties": false, "properties": { "AggregationFunction": { "type": "string" }, "Column": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ColumnIdentifier" }, "FieldId": { "type": "string" }, "FormatConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.DateTimeFormatConfiguration" } }, "required": [ "Column", "FieldId" ], "type": "object" }, "AWS::QuickSight::Dashboard.DateTimeDefaultValues": { "additionalProperties": false, "properties": { "DynamicValue": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.DynamicDefaultValue" }, "RollingDate": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.RollingDateConfiguration" }, "StaticValues": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Dashboard.DateTimeFormatConfiguration": { "additionalProperties": false, "properties": { "DateTimeFormat": { "type": "string" }, "NullValueFormatConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.NullValueFormatConfiguration" }, "NumericFormatConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.NumericFormatConfiguration" } }, "type": "object" }, "AWS::QuickSight::Dashboard.DateTimeHierarchy": { "additionalProperties": false, "properties": { "DrillDownFilters": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.DrillDownFilter" }, "type": "array" }, "HierarchyId": { "type": "string" } }, "required": [ "HierarchyId" ], "type": "object" }, "AWS::QuickSight::Dashboard.DateTimeParameter": { "additionalProperties": false, "properties": { "Name": { "type": "string" }, "Values": { "items": { "type": "string" }, "type": "array" } }, "required": [ "Name", "Values" ], "type": "object" }, "AWS::QuickSight::Dashboard.DateTimeParameterDeclaration": { "additionalProperties": false, "properties": { "DefaultValues": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.DateTimeDefaultValues" }, "MappedDataSetParameters": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.MappedDataSetParameter" }, "type": "array" }, "Name": { "type": "string" }, "TimeGranularity": { "type": "string" }, "ValueWhenUnset": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.DateTimeValueWhenUnsetConfiguration" } }, "required": [ "Name" ], "type": "object" }, "AWS::QuickSight::Dashboard.DateTimePickerControlDisplayOptions": { "additionalProperties": false, "properties": { "DateTimeFormat": { "type": "string" }, "TitleOptions": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.LabelOptions" } }, "type": "object" }, "AWS::QuickSight::Dashboard.DateTimeValueWhenUnsetConfiguration": { "additionalProperties": false, "properties": { "CustomValue": { "type": "string" }, "ValueWhenUnsetOption": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Dashboard.DecimalDefaultValues": { "additionalProperties": false, "properties": { "DynamicValue": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.DynamicDefaultValue" }, "StaticValues": { "items": { "type": "number" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Dashboard.DecimalParameter": { "additionalProperties": false, "properties": { "Name": { "type": "string" }, "Values": { "items": { "type": "number" }, "type": "array" } }, "required": [ "Name", "Values" ], "type": "object" }, "AWS::QuickSight::Dashboard.DecimalParameterDeclaration": { "additionalProperties": false, "properties": { "DefaultValues": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.DecimalDefaultValues" }, "MappedDataSetParameters": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.MappedDataSetParameter" }, "type": "array" }, "Name": { "type": "string" }, "ParameterValueType": { "type": "string" }, "ValueWhenUnset": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.DecimalValueWhenUnsetConfiguration" } }, "required": [ "Name", "ParameterValueType" ], "type": "object" }, "AWS::QuickSight::Dashboard.DecimalPlacesConfiguration": { "additionalProperties": false, "properties": { "DecimalPlaces": { "type": "number" } }, "required": [ "DecimalPlaces" ], "type": "object" }, "AWS::QuickSight::Dashboard.DecimalValueWhenUnsetConfiguration": { "additionalProperties": false, "properties": { "CustomValue": { "type": "number" }, "ValueWhenUnsetOption": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Dashboard.DefaultFreeFormLayoutConfiguration": { "additionalProperties": false, "properties": { "CanvasSizeOptions": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.FreeFormLayoutCanvasSizeOptions" } }, "required": [ "CanvasSizeOptions" ], "type": "object" }, "AWS::QuickSight::Dashboard.DefaultGridLayoutConfiguration": { "additionalProperties": false, "properties": { "CanvasSizeOptions": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.GridLayoutCanvasSizeOptions" } }, "required": [ "CanvasSizeOptions" ], "type": "object" }, "AWS::QuickSight::Dashboard.DefaultInteractiveLayoutConfiguration": { "additionalProperties": false, "properties": { "FreeForm": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.DefaultFreeFormLayoutConfiguration" }, "Grid": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.DefaultGridLayoutConfiguration" } }, "type": "object" }, "AWS::QuickSight::Dashboard.DefaultNewSheetConfiguration": { "additionalProperties": false, "properties": { "InteractiveLayoutConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.DefaultInteractiveLayoutConfiguration" }, "PaginatedLayoutConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.DefaultPaginatedLayoutConfiguration" }, "SheetContentType": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Dashboard.DefaultPaginatedLayoutConfiguration": { "additionalProperties": false, "properties": { "SectionBased": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.DefaultSectionBasedLayoutConfiguration" } }, "type": "object" }, "AWS::QuickSight::Dashboard.DefaultSectionBasedLayoutConfiguration": { "additionalProperties": false, "properties": { "CanvasSizeOptions": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.SectionBasedLayoutCanvasSizeOptions" } }, "required": [ "CanvasSizeOptions" ], "type": "object" }, "AWS::QuickSight::Dashboard.DestinationParameterValueConfiguration": { "additionalProperties": false, "properties": { "CustomValuesConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.CustomValuesConfiguration" }, "SelectAllValueOptions": { "type": "string" }, "SourceColumn": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ColumnIdentifier" }, "SourceField": { "type": "string" }, "SourceParameterName": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Dashboard.DimensionField": { "additionalProperties": false, "properties": { "CategoricalDimensionField": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.CategoricalDimensionField" }, "DateDimensionField": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.DateDimensionField" }, "NumericalDimensionField": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.NumericalDimensionField" } }, "type": "object" }, "AWS::QuickSight::Dashboard.DonutCenterOptions": { "additionalProperties": false, "properties": { "LabelVisibility": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Dashboard.DonutOptions": { "additionalProperties": false, "properties": { "ArcOptions": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ArcOptions" }, "DonutCenterOptions": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.DonutCenterOptions" } }, "type": "object" }, "AWS::QuickSight::Dashboard.DrillDownFilter": { "additionalProperties": false, "properties": { "CategoryFilter": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.CategoryDrillDownFilter" }, "NumericEqualityFilter": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.NumericEqualityDrillDownFilter" }, "TimeRangeFilter": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.TimeRangeDrillDownFilter" } }, "type": "object" }, "AWS::QuickSight::Dashboard.DropDownControlDisplayOptions": { "additionalProperties": false, "properties": { "SelectAllOptions": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ListControlSelectAllOptions" }, "TitleOptions": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.LabelOptions" } }, "type": "object" }, "AWS::QuickSight::Dashboard.DynamicDefaultValue": { "additionalProperties": false, "properties": { "DefaultValueColumn": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ColumnIdentifier" }, "GroupNameColumn": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ColumnIdentifier" }, "UserNameColumn": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ColumnIdentifier" } }, "required": [ "DefaultValueColumn" ], "type": "object" }, "AWS::QuickSight::Dashboard.EmptyVisual": { "additionalProperties": false, "properties": { "Actions": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.VisualCustomAction" }, "type": "array" }, "DataSetIdentifier": { "type": "string" }, "VisualId": { "type": "string" } }, "required": [ "DataSetIdentifier", "VisualId" ], "type": "object" }, "AWS::QuickSight::Dashboard.Entity": { "additionalProperties": false, "properties": { "Path": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Dashboard.ExcludePeriodConfiguration": { "additionalProperties": false, "properties": { "Amount": { "type": "number" }, "Granularity": { "type": "string" }, "Status": { "type": "string" } }, "required": [ "Amount", "Granularity" ], "type": "object" }, "AWS::QuickSight::Dashboard.ExplicitHierarchy": { "additionalProperties": false, "properties": { "Columns": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ColumnIdentifier" }, "type": "array" }, "DrillDownFilters": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.DrillDownFilter" }, "type": "array" }, "HierarchyId": { "type": "string" } }, "required": [ "Columns", "HierarchyId" ], "type": "object" }, "AWS::QuickSight::Dashboard.ExportHiddenFieldsOption": { "additionalProperties": false, "properties": { "AvailabilityStatus": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Dashboard.ExportToCSVOption": { "additionalProperties": false, "properties": { "AvailabilityStatus": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Dashboard.ExportWithHiddenFieldsOption": { "additionalProperties": false, "properties": { "AvailabilityStatus": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Dashboard.FieldBasedTooltip": { "additionalProperties": false, "properties": { "AggregationVisibility": { "type": "string" }, "TooltipFields": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.TooltipItem" }, "type": "array" }, "TooltipTitleType": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Dashboard.FieldLabelType": { "additionalProperties": false, "properties": { "FieldId": { "type": "string" }, "Visibility": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Dashboard.FieldSeriesItem": { "additionalProperties": false, "properties": { "AxisBinding": { "type": "string" }, "FieldId": { "type": "string" }, "Settings": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.LineChartSeriesSettings" } }, "required": [ "AxisBinding", "FieldId" ], "type": "object" }, "AWS::QuickSight::Dashboard.FieldSort": { "additionalProperties": false, "properties": { "Direction": { "type": "string" }, "FieldId": { "type": "string" } }, "required": [ "Direction", "FieldId" ], "type": "object" }, "AWS::QuickSight::Dashboard.FieldSortOptions": { "additionalProperties": false, "properties": { "ColumnSort": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ColumnSort" }, "FieldSort": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.FieldSort" } }, "type": "object" }, "AWS::QuickSight::Dashboard.FieldTooltipItem": { "additionalProperties": false, "properties": { "FieldId": { "type": "string" }, "Label": { "type": "string" }, "Visibility": { "type": "string" } }, "required": [ "FieldId" ], "type": "object" }, "AWS::QuickSight::Dashboard.FilledMapAggregatedFieldWells": { "additionalProperties": false, "properties": { "Geospatial": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.DimensionField" }, "type": "array" }, "Values": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.MeasureField" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Dashboard.FilledMapConditionalFormatting": { "additionalProperties": false, "properties": { "ConditionalFormattingOptions": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.FilledMapConditionalFormattingOption" }, "type": "array" } }, "required": [ "ConditionalFormattingOptions" ], "type": "object" }, "AWS::QuickSight::Dashboard.FilledMapConditionalFormattingOption": { "additionalProperties": false, "properties": { "Shape": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.FilledMapShapeConditionalFormatting" } }, "required": [ "Shape" ], "type": "object" }, "AWS::QuickSight::Dashboard.FilledMapConfiguration": { "additionalProperties": false, "properties": { "FieldWells": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.FilledMapFieldWells" }, "Legend": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.LegendOptions" }, "MapStyleOptions": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.GeospatialMapStyleOptions" }, "SortConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.FilledMapSortConfiguration" }, "Tooltip": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.TooltipOptions" }, "WindowOptions": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.GeospatialWindowOptions" } }, "type": "object" }, "AWS::QuickSight::Dashboard.FilledMapFieldWells": { "additionalProperties": false, "properties": { "FilledMapAggregatedFieldWells": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.FilledMapAggregatedFieldWells" } }, "type": "object" }, "AWS::QuickSight::Dashboard.FilledMapShapeConditionalFormatting": { "additionalProperties": false, "properties": { "FieldId": { "type": "string" }, "Format": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ShapeConditionalFormat" } }, "required": [ "FieldId" ], "type": "object" }, "AWS::QuickSight::Dashboard.FilledMapSortConfiguration": { "additionalProperties": false, "properties": { "CategorySort": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.FieldSortOptions" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Dashboard.FilledMapVisual": { "additionalProperties": false, "properties": { "Actions": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.VisualCustomAction" }, "type": "array" }, "ChartConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.FilledMapConfiguration" }, "ColumnHierarchies": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ColumnHierarchy" }, "type": "array" }, "ConditionalFormatting": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.FilledMapConditionalFormatting" }, "Subtitle": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.VisualSubtitleLabelOptions" }, "Title": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.VisualTitleLabelOptions" }, "VisualId": { "type": "string" } }, "required": [ "VisualId" ], "type": "object" }, "AWS::QuickSight::Dashboard.Filter": { "additionalProperties": false, "properties": { "CategoryFilter": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.CategoryFilter" }, "NumericEqualityFilter": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.NumericEqualityFilter" }, "NumericRangeFilter": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.NumericRangeFilter" }, "RelativeDatesFilter": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.RelativeDatesFilter" }, "TimeEqualityFilter": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.TimeEqualityFilter" }, "TimeRangeFilter": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.TimeRangeFilter" }, "TopBottomFilter": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.TopBottomFilter" } }, "type": "object" }, "AWS::QuickSight::Dashboard.FilterControl": { "additionalProperties": false, "properties": { "DateTimePicker": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.FilterDateTimePickerControl" }, "Dropdown": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.FilterDropDownControl" }, "List": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.FilterListControl" }, "RelativeDateTime": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.FilterRelativeDateTimeControl" }, "Slider": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.FilterSliderControl" }, "TextArea": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.FilterTextAreaControl" }, "TextField": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.FilterTextFieldControl" } }, "type": "object" }, "AWS::QuickSight::Dashboard.FilterDateTimePickerControl": { "additionalProperties": false, "properties": { "DisplayOptions": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.DateTimePickerControlDisplayOptions" }, "FilterControlId": { "type": "string" }, "SourceFilterId": { "type": "string" }, "Title": { "type": "string" }, "Type": { "type": "string" } }, "required": [ "FilterControlId", "SourceFilterId", "Title" ], "type": "object" }, "AWS::QuickSight::Dashboard.FilterDropDownControl": { "additionalProperties": false, "properties": { "CascadingControlConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.CascadingControlConfiguration" }, "DisplayOptions": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.DropDownControlDisplayOptions" }, "FilterControlId": { "type": "string" }, "SelectableValues": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.FilterSelectableValues" }, "SourceFilterId": { "type": "string" }, "Title": { "type": "string" }, "Type": { "type": "string" } }, "required": [ "FilterControlId", "SourceFilterId", "Title" ], "type": "object" }, "AWS::QuickSight::Dashboard.FilterGroup": { "additionalProperties": false, "properties": { "CrossDataset": { "type": "string" }, "FilterGroupId": { "type": "string" }, "Filters": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.Filter" }, "type": "array" }, "ScopeConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.FilterScopeConfiguration" }, "Status": { "type": "string" } }, "required": [ "CrossDataset", "FilterGroupId", "Filters", "ScopeConfiguration" ], "type": "object" }, "AWS::QuickSight::Dashboard.FilterListConfiguration": { "additionalProperties": false, "properties": { "CategoryValues": { "items": { "type": "string" }, "type": "array" }, "MatchOperator": { "type": "string" }, "SelectAllOptions": { "type": "string" } }, "required": [ "MatchOperator" ], "type": "object" }, "AWS::QuickSight::Dashboard.FilterListControl": { "additionalProperties": false, "properties": { "CascadingControlConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.CascadingControlConfiguration" }, "DisplayOptions": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ListControlDisplayOptions" }, "FilterControlId": { "type": "string" }, "SelectableValues": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.FilterSelectableValues" }, "SourceFilterId": { "type": "string" }, "Title": { "type": "string" }, "Type": { "type": "string" } }, "required": [ "FilterControlId", "SourceFilterId", "Title" ], "type": "object" }, "AWS::QuickSight::Dashboard.FilterOperationSelectedFieldsConfiguration": { "additionalProperties": false, "properties": { "SelectedColumns": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ColumnIdentifier" }, "type": "array" }, "SelectedFieldOptions": { "type": "string" }, "SelectedFields": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Dashboard.FilterOperationTargetVisualsConfiguration": { "additionalProperties": false, "properties": { "SameSheetTargetVisualConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.SameSheetTargetVisualConfiguration" } }, "type": "object" }, "AWS::QuickSight::Dashboard.FilterRelativeDateTimeControl": { "additionalProperties": false, "properties": { "DisplayOptions": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.RelativeDateTimeControlDisplayOptions" }, "FilterControlId": { "type": "string" }, "SourceFilterId": { "type": "string" }, "Title": { "type": "string" } }, "required": [ "FilterControlId", "SourceFilterId", "Title" ], "type": "object" }, "AWS::QuickSight::Dashboard.FilterScopeConfiguration": { "additionalProperties": false, "properties": { "SelectedSheets": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.SelectedSheetsFilterScopeConfiguration" } }, "type": "object" }, "AWS::QuickSight::Dashboard.FilterSelectableValues": { "additionalProperties": false, "properties": { "Values": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Dashboard.FilterSliderControl": { "additionalProperties": false, "properties": { "DisplayOptions": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.SliderControlDisplayOptions" }, "FilterControlId": { "type": "string" }, "MaximumValue": { "type": "number" }, "MinimumValue": { "type": "number" }, "SourceFilterId": { "type": "string" }, "StepSize": { "type": "number" }, "Title": { "type": "string" }, "Type": { "type": "string" } }, "required": [ "FilterControlId", "MaximumValue", "MinimumValue", "SourceFilterId", "StepSize", "Title" ], "type": "object" }, "AWS::QuickSight::Dashboard.FilterTextAreaControl": { "additionalProperties": false, "properties": { "Delimiter": { "type": "string" }, "DisplayOptions": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.TextAreaControlDisplayOptions" }, "FilterControlId": { "type": "string" }, "SourceFilterId": { "type": "string" }, "Title": { "type": "string" } }, "required": [ "FilterControlId", "SourceFilterId", "Title" ], "type": "object" }, "AWS::QuickSight::Dashboard.FilterTextFieldControl": { "additionalProperties": false, "properties": { "DisplayOptions": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.TextFieldControlDisplayOptions" }, "FilterControlId": { "type": "string" }, "SourceFilterId": { "type": "string" }, "Title": { "type": "string" } }, "required": [ "FilterControlId", "SourceFilterId", "Title" ], "type": "object" }, "AWS::QuickSight::Dashboard.FontConfiguration": { "additionalProperties": false, "properties": { "FontColor": { "type": "string" }, "FontDecoration": { "type": "string" }, "FontSize": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.FontSize" }, "FontStyle": { "type": "string" }, "FontWeight": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.FontWeight" } }, "type": "object" }, "AWS::QuickSight::Dashboard.FontSize": { "additionalProperties": false, "properties": { "Relative": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Dashboard.FontWeight": { "additionalProperties": false, "properties": { "Name": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Dashboard.ForecastComputation": { "additionalProperties": false, "properties": { "ComputationId": { "type": "string" }, "CustomSeasonalityValue": { "type": "number" }, "LowerBoundary": { "type": "number" }, "Name": { "type": "string" }, "PeriodsBackward": { "type": "number" }, "PeriodsForward": { "type": "number" }, "PredictionInterval": { "type": "number" }, "Seasonality": { "type": "string" }, "Time": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.DimensionField" }, "UpperBoundary": { "type": "number" }, "Value": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.MeasureField" } }, "required": [ "ComputationId", "Time" ], "type": "object" }, "AWS::QuickSight::Dashboard.ForecastConfiguration": { "additionalProperties": false, "properties": { "ForecastProperties": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.TimeBasedForecastProperties" }, "Scenario": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ForecastScenario" } }, "type": "object" }, "AWS::QuickSight::Dashboard.ForecastScenario": { "additionalProperties": false, "properties": { "WhatIfPointScenario": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.WhatIfPointScenario" }, "WhatIfRangeScenario": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.WhatIfRangeScenario" } }, "type": "object" }, "AWS::QuickSight::Dashboard.FormatConfiguration": { "additionalProperties": false, "properties": { "DateTimeFormatConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.DateTimeFormatConfiguration" }, "NumberFormatConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.NumberFormatConfiguration" }, "StringFormatConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.StringFormatConfiguration" } }, "type": "object" }, "AWS::QuickSight::Dashboard.FreeFormLayoutCanvasSizeOptions": { "additionalProperties": false, "properties": { "ScreenCanvasSizeOptions": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.FreeFormLayoutScreenCanvasSizeOptions" } }, "type": "object" }, "AWS::QuickSight::Dashboard.FreeFormLayoutConfiguration": { "additionalProperties": false, "properties": { "CanvasSizeOptions": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.FreeFormLayoutCanvasSizeOptions" }, "Elements": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.FreeFormLayoutElement" }, "type": "array" } }, "required": [ "Elements" ], "type": "object" }, "AWS::QuickSight::Dashboard.FreeFormLayoutElement": { "additionalProperties": false, "properties": { "BackgroundStyle": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.FreeFormLayoutElementBackgroundStyle" }, "BorderStyle": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.FreeFormLayoutElementBorderStyle" }, "ElementId": { "type": "string" }, "ElementType": { "type": "string" }, "Height": { "type": "string" }, "LoadingAnimation": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.LoadingAnimation" }, "RenderingRules": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.SheetElementRenderingRule" }, "type": "array" }, "SelectedBorderStyle": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.FreeFormLayoutElementBorderStyle" }, "Visibility": { "type": "string" }, "Width": { "type": "string" }, "XAxisLocation": { "type": "string" }, "YAxisLocation": { "type": "string" } }, "required": [ "ElementId", "ElementType", "Height", "Width", "XAxisLocation", "YAxisLocation" ], "type": "object" }, "AWS::QuickSight::Dashboard.FreeFormLayoutElementBackgroundStyle": { "additionalProperties": false, "properties": { "Color": { "type": "string" }, "Visibility": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Dashboard.FreeFormLayoutElementBorderStyle": { "additionalProperties": false, "properties": { "Color": { "type": "string" }, "Visibility": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Dashboard.FreeFormLayoutScreenCanvasSizeOptions": { "additionalProperties": false, "properties": { "OptimizedViewPortWidth": { "type": "string" } }, "required": [ "OptimizedViewPortWidth" ], "type": "object" }, "AWS::QuickSight::Dashboard.FreeFormSectionLayoutConfiguration": { "additionalProperties": false, "properties": { "Elements": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.FreeFormLayoutElement" }, "type": "array" } }, "required": [ "Elements" ], "type": "object" }, "AWS::QuickSight::Dashboard.FunnelChartAggregatedFieldWells": { "additionalProperties": false, "properties": { "Category": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.DimensionField" }, "type": "array" }, "Values": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.MeasureField" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Dashboard.FunnelChartConfiguration": { "additionalProperties": false, "properties": { "CategoryLabelOptions": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ChartAxisLabelOptions" }, "DataLabelOptions": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.FunnelChartDataLabelOptions" }, "FieldWells": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.FunnelChartFieldWells" }, "SortConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.FunnelChartSortConfiguration" }, "Tooltip": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.TooltipOptions" }, "ValueLabelOptions": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ChartAxisLabelOptions" }, "VisualPalette": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.VisualPalette" } }, "type": "object" }, "AWS::QuickSight::Dashboard.FunnelChartDataLabelOptions": { "additionalProperties": false, "properties": { "CategoryLabelVisibility": { "type": "string" }, "LabelColor": { "type": "string" }, "LabelFontConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.FontConfiguration" }, "MeasureDataLabelStyle": { "type": "string" }, "MeasureLabelVisibility": { "type": "string" }, "Position": { "type": "string" }, "Visibility": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Dashboard.FunnelChartFieldWells": { "additionalProperties": false, "properties": { "FunnelChartAggregatedFieldWells": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.FunnelChartAggregatedFieldWells" } }, "type": "object" }, "AWS::QuickSight::Dashboard.FunnelChartSortConfiguration": { "additionalProperties": false, "properties": { "CategoryItemsLimit": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ItemsLimitConfiguration" }, "CategorySort": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.FieldSortOptions" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Dashboard.FunnelChartVisual": { "additionalProperties": false, "properties": { "Actions": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.VisualCustomAction" }, "type": "array" }, "ChartConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.FunnelChartConfiguration" }, "ColumnHierarchies": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ColumnHierarchy" }, "type": "array" }, "Subtitle": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.VisualSubtitleLabelOptions" }, "Title": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.VisualTitleLabelOptions" }, "VisualId": { "type": "string" } }, "required": [ "VisualId" ], "type": "object" }, "AWS::QuickSight::Dashboard.GaugeChartArcConditionalFormatting": { "additionalProperties": false, "properties": { "ForegroundColor": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ConditionalFormattingColor" } }, "type": "object" }, "AWS::QuickSight::Dashboard.GaugeChartConditionalFormatting": { "additionalProperties": false, "properties": { "ConditionalFormattingOptions": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.GaugeChartConditionalFormattingOption" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Dashboard.GaugeChartConditionalFormattingOption": { "additionalProperties": false, "properties": { "Arc": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.GaugeChartArcConditionalFormatting" }, "PrimaryValue": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.GaugeChartPrimaryValueConditionalFormatting" } }, "type": "object" }, "AWS::QuickSight::Dashboard.GaugeChartConfiguration": { "additionalProperties": false, "properties": { "DataLabels": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.DataLabelOptions" }, "FieldWells": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.GaugeChartFieldWells" }, "GaugeChartOptions": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.GaugeChartOptions" }, "TooltipOptions": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.TooltipOptions" }, "VisualPalette": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.VisualPalette" } }, "type": "object" }, "AWS::QuickSight::Dashboard.GaugeChartFieldWells": { "additionalProperties": false, "properties": { "TargetValues": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.MeasureField" }, "type": "array" }, "Values": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.MeasureField" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Dashboard.GaugeChartOptions": { "additionalProperties": false, "properties": { "Arc": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ArcConfiguration" }, "ArcAxis": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ArcAxisConfiguration" }, "Comparison": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ComparisonConfiguration" }, "PrimaryValueDisplayType": { "type": "string" }, "PrimaryValueFontConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.FontConfiguration" } }, "type": "object" }, "AWS::QuickSight::Dashboard.GaugeChartPrimaryValueConditionalFormatting": { "additionalProperties": false, "properties": { "Icon": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ConditionalFormattingIcon" }, "TextColor": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ConditionalFormattingColor" } }, "type": "object" }, "AWS::QuickSight::Dashboard.GaugeChartVisual": { "additionalProperties": false, "properties": { "Actions": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.VisualCustomAction" }, "type": "array" }, "ChartConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.GaugeChartConfiguration" }, "ConditionalFormatting": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.GaugeChartConditionalFormatting" }, "Subtitle": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.VisualSubtitleLabelOptions" }, "Title": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.VisualTitleLabelOptions" }, "VisualId": { "type": "string" } }, "required": [ "VisualId" ], "type": "object" }, "AWS::QuickSight::Dashboard.GeospatialCoordinateBounds": { "additionalProperties": false, "properties": { "East": { "type": "number" }, "North": { "type": "number" }, "South": { "type": "number" }, "West": { "type": "number" } }, "required": [ "East", "North", "South", "West" ], "type": "object" }, "AWS::QuickSight::Dashboard.GeospatialHeatmapColorScale": { "additionalProperties": false, "properties": { "Colors": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.GeospatialHeatmapDataColor" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Dashboard.GeospatialHeatmapConfiguration": { "additionalProperties": false, "properties": { "HeatmapColor": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.GeospatialHeatmapColorScale" } }, "type": "object" }, "AWS::QuickSight::Dashboard.GeospatialHeatmapDataColor": { "additionalProperties": false, "properties": { "Color": { "type": "string" } }, "required": [ "Color" ], "type": "object" }, "AWS::QuickSight::Dashboard.GeospatialMapAggregatedFieldWells": { "additionalProperties": false, "properties": { "Colors": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.DimensionField" }, "type": "array" }, "Geospatial": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.DimensionField" }, "type": "array" }, "Values": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.MeasureField" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Dashboard.GeospatialMapConfiguration": { "additionalProperties": false, "properties": { "FieldWells": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.GeospatialMapFieldWells" }, "Legend": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.LegendOptions" }, "MapStyleOptions": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.GeospatialMapStyleOptions" }, "PointStyleOptions": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.GeospatialPointStyleOptions" }, "Tooltip": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.TooltipOptions" }, "VisualPalette": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.VisualPalette" }, "WindowOptions": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.GeospatialWindowOptions" } }, "type": "object" }, "AWS::QuickSight::Dashboard.GeospatialMapFieldWells": { "additionalProperties": false, "properties": { "GeospatialMapAggregatedFieldWells": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.GeospatialMapAggregatedFieldWells" } }, "type": "object" }, "AWS::QuickSight::Dashboard.GeospatialMapStyleOptions": { "additionalProperties": false, "properties": { "BaseMapStyle": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Dashboard.GeospatialMapVisual": { "additionalProperties": false, "properties": { "Actions": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.VisualCustomAction" }, "type": "array" }, "ChartConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.GeospatialMapConfiguration" }, "ColumnHierarchies": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ColumnHierarchy" }, "type": "array" }, "Subtitle": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.VisualSubtitleLabelOptions" }, "Title": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.VisualTitleLabelOptions" }, "VisualId": { "type": "string" } }, "required": [ "VisualId" ], "type": "object" }, "AWS::QuickSight::Dashboard.GeospatialPointStyleOptions": { "additionalProperties": false, "properties": { "ClusterMarkerConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ClusterMarkerConfiguration" }, "HeatmapConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.GeospatialHeatmapConfiguration" }, "SelectedPointStyle": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Dashboard.GeospatialWindowOptions": { "additionalProperties": false, "properties": { "Bounds": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.GeospatialCoordinateBounds" }, "MapZoomMode": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Dashboard.GlobalTableBorderOptions": { "additionalProperties": false, "properties": { "SideSpecificBorder": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.TableSideBorderOptions" }, "UniformBorder": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.TableBorderOptions" } }, "type": "object" }, "AWS::QuickSight::Dashboard.GradientColor": { "additionalProperties": false, "properties": { "Stops": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.GradientStop" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Dashboard.GradientStop": { "additionalProperties": false, "properties": { "Color": { "type": "string" }, "DataValue": { "type": "number" }, "GradientOffset": { "type": "number" } }, "required": [ "GradientOffset" ], "type": "object" }, "AWS::QuickSight::Dashboard.GridLayoutCanvasSizeOptions": { "additionalProperties": false, "properties": { "ScreenCanvasSizeOptions": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.GridLayoutScreenCanvasSizeOptions" } }, "type": "object" }, "AWS::QuickSight::Dashboard.GridLayoutConfiguration": { "additionalProperties": false, "properties": { "CanvasSizeOptions": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.GridLayoutCanvasSizeOptions" }, "Elements": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.GridLayoutElement" }, "type": "array" } }, "required": [ "Elements" ], "type": "object" }, "AWS::QuickSight::Dashboard.GridLayoutElement": { "additionalProperties": false, "properties": { "ColumnIndex": { "type": "number" }, "ColumnSpan": { "type": "number" }, "ElementId": { "type": "string" }, "ElementType": { "type": "string" }, "RowIndex": { "type": "number" }, "RowSpan": { "type": "number" } }, "required": [ "ColumnSpan", "ElementId", "ElementType", "RowSpan" ], "type": "object" }, "AWS::QuickSight::Dashboard.GridLayoutScreenCanvasSizeOptions": { "additionalProperties": false, "properties": { "OptimizedViewPortWidth": { "type": "string" }, "ResizeOption": { "type": "string" } }, "required": [ "ResizeOption" ], "type": "object" }, "AWS::QuickSight::Dashboard.GrowthRateComputation": { "additionalProperties": false, "properties": { "ComputationId": { "type": "string" }, "Name": { "type": "string" }, "PeriodSize": { "type": "number" }, "Time": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.DimensionField" }, "Value": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.MeasureField" } }, "required": [ "ComputationId", "Time" ], "type": "object" }, "AWS::QuickSight::Dashboard.HeaderFooterSectionConfiguration": { "additionalProperties": false, "properties": { "Layout": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.SectionLayoutConfiguration" }, "SectionId": { "type": "string" }, "Style": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.SectionStyle" } }, "required": [ "Layout", "SectionId" ], "type": "object" }, "AWS::QuickSight::Dashboard.HeatMapAggregatedFieldWells": { "additionalProperties": false, "properties": { "Columns": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.DimensionField" }, "type": "array" }, "Rows": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.DimensionField" }, "type": "array" }, "Values": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.MeasureField" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Dashboard.HeatMapConfiguration": { "additionalProperties": false, "properties": { "ColorScale": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ColorScale" }, "ColumnLabelOptions": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ChartAxisLabelOptions" }, "DataLabels": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.DataLabelOptions" }, "FieldWells": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.HeatMapFieldWells" }, "Legend": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.LegendOptions" }, "RowLabelOptions": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ChartAxisLabelOptions" }, "SortConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.HeatMapSortConfiguration" }, "Tooltip": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.TooltipOptions" } }, "type": "object" }, "AWS::QuickSight::Dashboard.HeatMapFieldWells": { "additionalProperties": false, "properties": { "HeatMapAggregatedFieldWells": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.HeatMapAggregatedFieldWells" } }, "type": "object" }, "AWS::QuickSight::Dashboard.HeatMapSortConfiguration": { "additionalProperties": false, "properties": { "HeatMapColumnItemsLimitConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ItemsLimitConfiguration" }, "HeatMapColumnSort": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.FieldSortOptions" }, "type": "array" }, "HeatMapRowItemsLimitConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ItemsLimitConfiguration" }, "HeatMapRowSort": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.FieldSortOptions" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Dashboard.HeatMapVisual": { "additionalProperties": false, "properties": { "Actions": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.VisualCustomAction" }, "type": "array" }, "ChartConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.HeatMapConfiguration" }, "ColumnHierarchies": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ColumnHierarchy" }, "type": "array" }, "Subtitle": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.VisualSubtitleLabelOptions" }, "Title": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.VisualTitleLabelOptions" }, "VisualId": { "type": "string" } }, "required": [ "VisualId" ], "type": "object" }, "AWS::QuickSight::Dashboard.HistogramAggregatedFieldWells": { "additionalProperties": false, "properties": { "Values": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.MeasureField" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Dashboard.HistogramBinOptions": { "additionalProperties": false, "properties": { "BinCount": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.BinCountOptions" }, "BinWidth": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.BinWidthOptions" }, "SelectedBinType": { "type": "string" }, "StartValue": { "type": "number" } }, "type": "object" }, "AWS::QuickSight::Dashboard.HistogramConfiguration": { "additionalProperties": false, "properties": { "BinOptions": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.HistogramBinOptions" }, "DataLabels": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.DataLabelOptions" }, "FieldWells": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.HistogramFieldWells" }, "Tooltip": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.TooltipOptions" }, "VisualPalette": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.VisualPalette" }, "XAxisDisplayOptions": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.AxisDisplayOptions" }, "XAxisLabelOptions": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ChartAxisLabelOptions" }, "YAxisDisplayOptions": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.AxisDisplayOptions" } }, "type": "object" }, "AWS::QuickSight::Dashboard.HistogramFieldWells": { "additionalProperties": false, "properties": { "HistogramAggregatedFieldWells": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.HistogramAggregatedFieldWells" } }, "type": "object" }, "AWS::QuickSight::Dashboard.HistogramVisual": { "additionalProperties": false, "properties": { "Actions": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.VisualCustomAction" }, "type": "array" }, "ChartConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.HistogramConfiguration" }, "Subtitle": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.VisualSubtitleLabelOptions" }, "Title": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.VisualTitleLabelOptions" }, "VisualId": { "type": "string" } }, "required": [ "VisualId" ], "type": "object" }, "AWS::QuickSight::Dashboard.InsightConfiguration": { "additionalProperties": false, "properties": { "Computations": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.Computation" }, "type": "array" }, "CustomNarrative": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.CustomNarrativeOptions" } }, "type": "object" }, "AWS::QuickSight::Dashboard.InsightVisual": { "additionalProperties": false, "properties": { "Actions": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.VisualCustomAction" }, "type": "array" }, "DataSetIdentifier": { "type": "string" }, "InsightConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.InsightConfiguration" }, "Subtitle": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.VisualSubtitleLabelOptions" }, "Title": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.VisualTitleLabelOptions" }, "VisualId": { "type": "string" } }, "required": [ "DataSetIdentifier", "VisualId" ], "type": "object" }, "AWS::QuickSight::Dashboard.IntegerDefaultValues": { "additionalProperties": false, "properties": { "DynamicValue": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.DynamicDefaultValue" }, "StaticValues": { "items": { "type": "number" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Dashboard.IntegerParameter": { "additionalProperties": false, "properties": { "Name": { "type": "string" }, "Values": { "items": { "type": "number" }, "type": "array" } }, "required": [ "Name", "Values" ], "type": "object" }, "AWS::QuickSight::Dashboard.IntegerParameterDeclaration": { "additionalProperties": false, "properties": { "DefaultValues": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.IntegerDefaultValues" }, "MappedDataSetParameters": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.MappedDataSetParameter" }, "type": "array" }, "Name": { "type": "string" }, "ParameterValueType": { "type": "string" }, "ValueWhenUnset": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.IntegerValueWhenUnsetConfiguration" } }, "required": [ "Name", "ParameterValueType" ], "type": "object" }, "AWS::QuickSight::Dashboard.IntegerValueWhenUnsetConfiguration": { "additionalProperties": false, "properties": { "CustomValue": { "type": "number" }, "ValueWhenUnsetOption": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Dashboard.ItemsLimitConfiguration": { "additionalProperties": false, "properties": { "ItemsLimit": { "type": "number" }, "OtherCategories": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Dashboard.KPIConditionalFormatting": { "additionalProperties": false, "properties": { "ConditionalFormattingOptions": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.KPIConditionalFormattingOption" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Dashboard.KPIConditionalFormattingOption": { "additionalProperties": false, "properties": { "PrimaryValue": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.KPIPrimaryValueConditionalFormatting" }, "ProgressBar": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.KPIProgressBarConditionalFormatting" } }, "type": "object" }, "AWS::QuickSight::Dashboard.KPIConfiguration": { "additionalProperties": false, "properties": { "FieldWells": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.KPIFieldWells" }, "KPIOptions": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.KPIOptions" }, "SortConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.KPISortConfiguration" } }, "type": "object" }, "AWS::QuickSight::Dashboard.KPIFieldWells": { "additionalProperties": false, "properties": { "TargetValues": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.MeasureField" }, "type": "array" }, "TrendGroups": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.DimensionField" }, "type": "array" }, "Values": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.MeasureField" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Dashboard.KPIOptions": { "additionalProperties": false, "properties": { "Comparison": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ComparisonConfiguration" }, "PrimaryValueDisplayType": { "type": "string" }, "PrimaryValueFontConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.FontConfiguration" }, "ProgressBar": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ProgressBarOptions" }, "SecondaryValue": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.SecondaryValueOptions" }, "SecondaryValueFontConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.FontConfiguration" }, "TrendArrows": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.TrendArrowOptions" } }, "type": "object" }, "AWS::QuickSight::Dashboard.KPIPrimaryValueConditionalFormatting": { "additionalProperties": false, "properties": { "Icon": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ConditionalFormattingIcon" }, "TextColor": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ConditionalFormattingColor" } }, "type": "object" }, "AWS::QuickSight::Dashboard.KPIProgressBarConditionalFormatting": { "additionalProperties": false, "properties": { "ForegroundColor": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ConditionalFormattingColor" } }, "type": "object" }, "AWS::QuickSight::Dashboard.KPISortConfiguration": { "additionalProperties": false, "properties": { "TrendGroupSort": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.FieldSortOptions" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Dashboard.KPIVisual": { "additionalProperties": false, "properties": { "Actions": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.VisualCustomAction" }, "type": "array" }, "ChartConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.KPIConfiguration" }, "ColumnHierarchies": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ColumnHierarchy" }, "type": "array" }, "ConditionalFormatting": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.KPIConditionalFormatting" }, "Subtitle": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.VisualSubtitleLabelOptions" }, "Title": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.VisualTitleLabelOptions" }, "VisualId": { "type": "string" } }, "required": [ "VisualId" ], "type": "object" }, "AWS::QuickSight::Dashboard.LabelOptions": { "additionalProperties": false, "properties": { "CustomLabel": { "type": "string" }, "FontConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.FontConfiguration" }, "Visibility": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Dashboard.Layout": { "additionalProperties": false, "properties": { "Configuration": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.LayoutConfiguration" } }, "required": [ "Configuration" ], "type": "object" }, "AWS::QuickSight::Dashboard.LayoutConfiguration": { "additionalProperties": false, "properties": { "FreeFormLayout": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.FreeFormLayoutConfiguration" }, "GridLayout": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.GridLayoutConfiguration" }, "SectionBasedLayout": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.SectionBasedLayoutConfiguration" } }, "type": "object" }, "AWS::QuickSight::Dashboard.LegendOptions": { "additionalProperties": false, "properties": { "Height": { "type": "string" }, "Position": { "type": "string" }, "Title": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.LabelOptions" }, "Visibility": { "type": "string" }, "Width": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Dashboard.LineChartAggregatedFieldWells": { "additionalProperties": false, "properties": { "Category": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.DimensionField" }, "type": "array" }, "Colors": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.DimensionField" }, "type": "array" }, "SmallMultiples": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.DimensionField" }, "type": "array" }, "Values": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.MeasureField" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Dashboard.LineChartConfiguration": { "additionalProperties": false, "properties": { "ContributionAnalysisDefaults": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ContributionAnalysisDefault" }, "type": "array" }, "DataLabels": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.DataLabelOptions" }, "DefaultSeriesSettings": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.LineChartDefaultSeriesSettings" }, "FieldWells": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.LineChartFieldWells" }, "ForecastConfigurations": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ForecastConfiguration" }, "type": "array" }, "Legend": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.LegendOptions" }, "PrimaryYAxisDisplayOptions": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.LineSeriesAxisDisplayOptions" }, "PrimaryYAxisLabelOptions": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ChartAxisLabelOptions" }, "ReferenceLines": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ReferenceLine" }, "type": "array" }, "SecondaryYAxisDisplayOptions": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.LineSeriesAxisDisplayOptions" }, "SecondaryYAxisLabelOptions": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ChartAxisLabelOptions" }, "Series": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.SeriesItem" }, "type": "array" }, "SmallMultiplesOptions": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.SmallMultiplesOptions" }, "SortConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.LineChartSortConfiguration" }, "Tooltip": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.TooltipOptions" }, "Type": { "type": "string" }, "VisualPalette": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.VisualPalette" }, "XAxisDisplayOptions": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.AxisDisplayOptions" }, "XAxisLabelOptions": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ChartAxisLabelOptions" } }, "type": "object" }, "AWS::QuickSight::Dashboard.LineChartDefaultSeriesSettings": { "additionalProperties": false, "properties": { "AxisBinding": { "type": "string" }, "LineStyleSettings": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.LineChartLineStyleSettings" }, "MarkerStyleSettings": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.LineChartMarkerStyleSettings" } }, "type": "object" }, "AWS::QuickSight::Dashboard.LineChartFieldWells": { "additionalProperties": false, "properties": { "LineChartAggregatedFieldWells": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.LineChartAggregatedFieldWells" } }, "type": "object" }, "AWS::QuickSight::Dashboard.LineChartLineStyleSettings": { "additionalProperties": false, "properties": { "LineInterpolation": { "type": "string" }, "LineStyle": { "type": "string" }, "LineVisibility": { "type": "string" }, "LineWidth": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Dashboard.LineChartMarkerStyleSettings": { "additionalProperties": false, "properties": { "MarkerColor": { "type": "string" }, "MarkerShape": { "type": "string" }, "MarkerSize": { "type": "string" }, "MarkerVisibility": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Dashboard.LineChartSeriesSettings": { "additionalProperties": false, "properties": { "LineStyleSettings": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.LineChartLineStyleSettings" }, "MarkerStyleSettings": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.LineChartMarkerStyleSettings" } }, "type": "object" }, "AWS::QuickSight::Dashboard.LineChartSortConfiguration": { "additionalProperties": false, "properties": { "CategoryItemsLimitConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ItemsLimitConfiguration" }, "CategorySort": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.FieldSortOptions" }, "type": "array" }, "ColorItemsLimitConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ItemsLimitConfiguration" }, "SmallMultiplesLimitConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ItemsLimitConfiguration" }, "SmallMultiplesSort": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.FieldSortOptions" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Dashboard.LineChartVisual": { "additionalProperties": false, "properties": { "Actions": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.VisualCustomAction" }, "type": "array" }, "ChartConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.LineChartConfiguration" }, "ColumnHierarchies": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ColumnHierarchy" }, "type": "array" }, "Subtitle": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.VisualSubtitleLabelOptions" }, "Title": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.VisualTitleLabelOptions" }, "VisualId": { "type": "string" } }, "required": [ "VisualId" ], "type": "object" }, "AWS::QuickSight::Dashboard.LineSeriesAxisDisplayOptions": { "additionalProperties": false, "properties": { "AxisOptions": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.AxisDisplayOptions" }, "MissingDataConfigurations": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.MissingDataConfiguration" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Dashboard.ListControlDisplayOptions": { "additionalProperties": false, "properties": { "SearchOptions": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ListControlSearchOptions" }, "SelectAllOptions": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ListControlSelectAllOptions" }, "TitleOptions": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.LabelOptions" } }, "type": "object" }, "AWS::QuickSight::Dashboard.ListControlSearchOptions": { "additionalProperties": false, "properties": { "Visibility": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Dashboard.ListControlSelectAllOptions": { "additionalProperties": false, "properties": { "Visibility": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Dashboard.LoadingAnimation": { "additionalProperties": false, "properties": { "Visibility": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Dashboard.LocalNavigationConfiguration": { "additionalProperties": false, "properties": { "TargetSheetId": { "type": "string" } }, "required": [ "TargetSheetId" ], "type": "object" }, "AWS::QuickSight::Dashboard.LongFormatText": { "additionalProperties": false, "properties": { "PlainText": { "type": "string" }, "RichText": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Dashboard.MappedDataSetParameter": { "additionalProperties": false, "properties": { "DataSetIdentifier": { "type": "string" }, "DataSetParameterName": { "type": "string" } }, "required": [ "DataSetIdentifier", "DataSetParameterName" ], "type": "object" }, "AWS::QuickSight::Dashboard.MaximumLabelType": { "additionalProperties": false, "properties": { "Visibility": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Dashboard.MaximumMinimumComputation": { "additionalProperties": false, "properties": { "ComputationId": { "type": "string" }, "Name": { "type": "string" }, "Time": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.DimensionField" }, "Type": { "type": "string" }, "Value": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.MeasureField" } }, "required": [ "ComputationId", "Time", "Type" ], "type": "object" }, "AWS::QuickSight::Dashboard.MeasureField": { "additionalProperties": false, "properties": { "CalculatedMeasureField": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.CalculatedMeasureField" }, "CategoricalMeasureField": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.CategoricalMeasureField" }, "DateMeasureField": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.DateMeasureField" }, "NumericalMeasureField": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.NumericalMeasureField" } }, "type": "object" }, "AWS::QuickSight::Dashboard.MetricComparisonComputation": { "additionalProperties": false, "properties": { "ComputationId": { "type": "string" }, "FromValue": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.MeasureField" }, "Name": { "type": "string" }, "TargetValue": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.MeasureField" }, "Time": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.DimensionField" } }, "required": [ "ComputationId", "FromValue", "TargetValue", "Time" ], "type": "object" }, "AWS::QuickSight::Dashboard.MinimumLabelType": { "additionalProperties": false, "properties": { "Visibility": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Dashboard.MissingDataConfiguration": { "additionalProperties": false, "properties": { "TreatmentOption": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Dashboard.NegativeValueConfiguration": { "additionalProperties": false, "properties": { "DisplayMode": { "type": "string" } }, "required": [ "DisplayMode" ], "type": "object" }, "AWS::QuickSight::Dashboard.NullValueFormatConfiguration": { "additionalProperties": false, "properties": { "NullString": { "type": "string" } }, "required": [ "NullString" ], "type": "object" }, "AWS::QuickSight::Dashboard.NumberDisplayFormatConfiguration": { "additionalProperties": false, "properties": { "DecimalPlacesConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.DecimalPlacesConfiguration" }, "NegativeValueConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.NegativeValueConfiguration" }, "NullValueFormatConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.NullValueFormatConfiguration" }, "NumberScale": { "type": "string" }, "Prefix": { "type": "string" }, "SeparatorConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.NumericSeparatorConfiguration" }, "Suffix": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Dashboard.NumberFormatConfiguration": { "additionalProperties": false, "properties": { "FormatConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.NumericFormatConfiguration" } }, "type": "object" }, "AWS::QuickSight::Dashboard.NumericAxisOptions": { "additionalProperties": false, "properties": { "Range": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.AxisDisplayRange" }, "Scale": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.AxisScale" } }, "type": "object" }, "AWS::QuickSight::Dashboard.NumericEqualityDrillDownFilter": { "additionalProperties": false, "properties": { "Column": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ColumnIdentifier" }, "Value": { "type": "number" } }, "required": [ "Column", "Value" ], "type": "object" }, "AWS::QuickSight::Dashboard.NumericEqualityFilter": { "additionalProperties": false, "properties": { "AggregationFunction": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.AggregationFunction" }, "Column": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ColumnIdentifier" }, "FilterId": { "type": "string" }, "MatchOperator": { "type": "string" }, "NullOption": { "type": "string" }, "ParameterName": { "type": "string" }, "SelectAllOptions": { "type": "string" }, "Value": { "type": "number" } }, "required": [ "Column", "FilterId", "MatchOperator", "NullOption" ], "type": "object" }, "AWS::QuickSight::Dashboard.NumericFormatConfiguration": { "additionalProperties": false, "properties": { "CurrencyDisplayFormatConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.CurrencyDisplayFormatConfiguration" }, "NumberDisplayFormatConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.NumberDisplayFormatConfiguration" }, "PercentageDisplayFormatConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.PercentageDisplayFormatConfiguration" } }, "type": "object" }, "AWS::QuickSight::Dashboard.NumericRangeFilter": { "additionalProperties": false, "properties": { "AggregationFunction": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.AggregationFunction" }, "Column": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ColumnIdentifier" }, "FilterId": { "type": "string" }, "IncludeMaximum": { "type": "boolean" }, "IncludeMinimum": { "type": "boolean" }, "NullOption": { "type": "string" }, "RangeMaximum": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.NumericRangeFilterValue" }, "RangeMinimum": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.NumericRangeFilterValue" }, "SelectAllOptions": { "type": "string" } }, "required": [ "Column", "FilterId", "NullOption" ], "type": "object" }, "AWS::QuickSight::Dashboard.NumericRangeFilterValue": { "additionalProperties": false, "properties": { "Parameter": { "type": "string" }, "StaticValue": { "type": "number" } }, "type": "object" }, "AWS::QuickSight::Dashboard.NumericSeparatorConfiguration": { "additionalProperties": false, "properties": { "DecimalSeparator": { "type": "string" }, "ThousandsSeparator": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ThousandSeparatorOptions" } }, "type": "object" }, "AWS::QuickSight::Dashboard.NumericalAggregationFunction": { "additionalProperties": false, "properties": { "PercentileAggregation": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.PercentileAggregation" }, "SimpleNumericalAggregation": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Dashboard.NumericalDimensionField": { "additionalProperties": false, "properties": { "Column": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ColumnIdentifier" }, "FieldId": { "type": "string" }, "FormatConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.NumberFormatConfiguration" }, "HierarchyId": { "type": "string" } }, "required": [ "Column", "FieldId" ], "type": "object" }, "AWS::QuickSight::Dashboard.NumericalMeasureField": { "additionalProperties": false, "properties": { "AggregationFunction": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.NumericalAggregationFunction" }, "Column": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ColumnIdentifier" }, "FieldId": { "type": "string" }, "FormatConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.NumberFormatConfiguration" } }, "required": [ "Column", "FieldId" ], "type": "object" }, "AWS::QuickSight::Dashboard.PaginationConfiguration": { "additionalProperties": false, "properties": { "PageNumber": { "type": "number" }, "PageSize": { "type": "number" } }, "required": [ "PageNumber", "PageSize" ], "type": "object" }, "AWS::QuickSight::Dashboard.PanelConfiguration": { "additionalProperties": false, "properties": { "BackgroundColor": { "type": "string" }, "BackgroundVisibility": { "type": "string" }, "BorderColor": { "type": "string" }, "BorderStyle": { "type": "string" }, "BorderThickness": { "type": "string" }, "BorderVisibility": { "type": "string" }, "GutterSpacing": { "type": "string" }, "GutterVisibility": { "type": "string" }, "Title": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.PanelTitleOptions" } }, "type": "object" }, "AWS::QuickSight::Dashboard.PanelTitleOptions": { "additionalProperties": false, "properties": { "FontConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.FontConfiguration" }, "HorizontalTextAlignment": { "type": "string" }, "Visibility": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Dashboard.ParameterControl": { "additionalProperties": false, "properties": { "DateTimePicker": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ParameterDateTimePickerControl" }, "Dropdown": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ParameterDropDownControl" }, "List": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ParameterListControl" }, "Slider": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ParameterSliderControl" }, "TextArea": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ParameterTextAreaControl" }, "TextField": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ParameterTextFieldControl" } }, "type": "object" }, "AWS::QuickSight::Dashboard.ParameterDateTimePickerControl": { "additionalProperties": false, "properties": { "DisplayOptions": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.DateTimePickerControlDisplayOptions" }, "ParameterControlId": { "type": "string" }, "SourceParameterName": { "type": "string" }, "Title": { "type": "string" } }, "required": [ "ParameterControlId", "SourceParameterName", "Title" ], "type": "object" }, "AWS::QuickSight::Dashboard.ParameterDeclaration": { "additionalProperties": false, "properties": { "DateTimeParameterDeclaration": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.DateTimeParameterDeclaration" }, "DecimalParameterDeclaration": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.DecimalParameterDeclaration" }, "IntegerParameterDeclaration": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.IntegerParameterDeclaration" }, "StringParameterDeclaration": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.StringParameterDeclaration" } }, "type": "object" }, "AWS::QuickSight::Dashboard.ParameterDropDownControl": { "additionalProperties": false, "properties": { "CascadingControlConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.CascadingControlConfiguration" }, "DisplayOptions": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.DropDownControlDisplayOptions" }, "ParameterControlId": { "type": "string" }, "SelectableValues": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ParameterSelectableValues" }, "SourceParameterName": { "type": "string" }, "Title": { "type": "string" }, "Type": { "type": "string" } }, "required": [ "ParameterControlId", "SourceParameterName", "Title" ], "type": "object" }, "AWS::QuickSight::Dashboard.ParameterListControl": { "additionalProperties": false, "properties": { "CascadingControlConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.CascadingControlConfiguration" }, "DisplayOptions": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ListControlDisplayOptions" }, "ParameterControlId": { "type": "string" }, "SelectableValues": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ParameterSelectableValues" }, "SourceParameterName": { "type": "string" }, "Title": { "type": "string" }, "Type": { "type": "string" } }, "required": [ "ParameterControlId", "SourceParameterName", "Title" ], "type": "object" }, "AWS::QuickSight::Dashboard.ParameterSelectableValues": { "additionalProperties": false, "properties": { "LinkToDataSetColumn": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ColumnIdentifier" }, "Values": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Dashboard.ParameterSliderControl": { "additionalProperties": false, "properties": { "DisplayOptions": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.SliderControlDisplayOptions" }, "MaximumValue": { "type": "number" }, "MinimumValue": { "type": "number" }, "ParameterControlId": { "type": "string" }, "SourceParameterName": { "type": "string" }, "StepSize": { "type": "number" }, "Title": { "type": "string" } }, "required": [ "MaximumValue", "MinimumValue", "ParameterControlId", "SourceParameterName", "StepSize", "Title" ], "type": "object" }, "AWS::QuickSight::Dashboard.ParameterTextAreaControl": { "additionalProperties": false, "properties": { "Delimiter": { "type": "string" }, "DisplayOptions": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.TextAreaControlDisplayOptions" }, "ParameterControlId": { "type": "string" }, "SourceParameterName": { "type": "string" }, "Title": { "type": "string" } }, "required": [ "ParameterControlId", "SourceParameterName", "Title" ], "type": "object" }, "AWS::QuickSight::Dashboard.ParameterTextFieldControl": { "additionalProperties": false, "properties": { "DisplayOptions": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.TextFieldControlDisplayOptions" }, "ParameterControlId": { "type": "string" }, "SourceParameterName": { "type": "string" }, "Title": { "type": "string" } }, "required": [ "ParameterControlId", "SourceParameterName", "Title" ], "type": "object" }, "AWS::QuickSight::Dashboard.Parameters": { "additionalProperties": false, "properties": { "DateTimeParameters": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.DateTimeParameter" }, "type": "array" }, "DecimalParameters": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.DecimalParameter" }, "type": "array" }, "IntegerParameters": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.IntegerParameter" }, "type": "array" }, "StringParameters": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.StringParameter" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Dashboard.PercentVisibleRange": { "additionalProperties": false, "properties": { "From": { "type": "number" }, "To": { "type": "number" } }, "type": "object" }, "AWS::QuickSight::Dashboard.PercentageDisplayFormatConfiguration": { "additionalProperties": false, "properties": { "DecimalPlacesConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.DecimalPlacesConfiguration" }, "NegativeValueConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.NegativeValueConfiguration" }, "NullValueFormatConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.NullValueFormatConfiguration" }, "Prefix": { "type": "string" }, "SeparatorConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.NumericSeparatorConfiguration" }, "Suffix": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Dashboard.PercentileAggregation": { "additionalProperties": false, "properties": { "PercentileValue": { "type": "number" } }, "type": "object" }, "AWS::QuickSight::Dashboard.PeriodOverPeriodComputation": { "additionalProperties": false, "properties": { "ComputationId": { "type": "string" }, "Name": { "type": "string" }, "Time": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.DimensionField" }, "Value": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.MeasureField" } }, "required": [ "ComputationId", "Time" ], "type": "object" }, "AWS::QuickSight::Dashboard.PeriodToDateComputation": { "additionalProperties": false, "properties": { "ComputationId": { "type": "string" }, "Name": { "type": "string" }, "PeriodTimeGranularity": { "type": "string" }, "Time": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.DimensionField" }, "Value": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.MeasureField" } }, "required": [ "ComputationId", "Time" ], "type": "object" }, "AWS::QuickSight::Dashboard.PieChartAggregatedFieldWells": { "additionalProperties": false, "properties": { "Category": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.DimensionField" }, "type": "array" }, "SmallMultiples": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.DimensionField" }, "type": "array" }, "Values": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.MeasureField" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Dashboard.PieChartConfiguration": { "additionalProperties": false, "properties": { "CategoryLabelOptions": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ChartAxisLabelOptions" }, "ContributionAnalysisDefaults": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ContributionAnalysisDefault" }, "type": "array" }, "DataLabels": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.DataLabelOptions" }, "DonutOptions": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.DonutOptions" }, "FieldWells": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.PieChartFieldWells" }, "Legend": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.LegendOptions" }, "SmallMultiplesOptions": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.SmallMultiplesOptions" }, "SortConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.PieChartSortConfiguration" }, "Tooltip": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.TooltipOptions" }, "ValueLabelOptions": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ChartAxisLabelOptions" }, "VisualPalette": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.VisualPalette" } }, "type": "object" }, "AWS::QuickSight::Dashboard.PieChartFieldWells": { "additionalProperties": false, "properties": { "PieChartAggregatedFieldWells": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.PieChartAggregatedFieldWells" } }, "type": "object" }, "AWS::QuickSight::Dashboard.PieChartSortConfiguration": { "additionalProperties": false, "properties": { "CategoryItemsLimit": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ItemsLimitConfiguration" }, "CategorySort": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.FieldSortOptions" }, "type": "array" }, "SmallMultiplesLimitConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ItemsLimitConfiguration" }, "SmallMultiplesSort": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.FieldSortOptions" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Dashboard.PieChartVisual": { "additionalProperties": false, "properties": { "Actions": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.VisualCustomAction" }, "type": "array" }, "ChartConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.PieChartConfiguration" }, "ColumnHierarchies": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ColumnHierarchy" }, "type": "array" }, "Subtitle": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.VisualSubtitleLabelOptions" }, "Title": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.VisualTitleLabelOptions" }, "VisualId": { "type": "string" } }, "required": [ "VisualId" ], "type": "object" }, "AWS::QuickSight::Dashboard.PivotFieldSortOptions": { "additionalProperties": false, "properties": { "FieldId": { "type": "string" }, "SortBy": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.PivotTableSortBy" } }, "required": [ "FieldId", "SortBy" ], "type": "object" }, "AWS::QuickSight::Dashboard.PivotTableAggregatedFieldWells": { "additionalProperties": false, "properties": { "Columns": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.DimensionField" }, "type": "array" }, "Rows": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.DimensionField" }, "type": "array" }, "Values": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.MeasureField" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Dashboard.PivotTableCellConditionalFormatting": { "additionalProperties": false, "properties": { "FieldId": { "type": "string" }, "Scope": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.PivotTableConditionalFormattingScope" }, "Scopes": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.PivotTableConditionalFormattingScope" }, "type": "array" }, "TextFormat": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.TextConditionalFormat" } }, "required": [ "FieldId" ], "type": "object" }, "AWS::QuickSight::Dashboard.PivotTableConditionalFormatting": { "additionalProperties": false, "properties": { "ConditionalFormattingOptions": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.PivotTableConditionalFormattingOption" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Dashboard.PivotTableConditionalFormattingOption": { "additionalProperties": false, "properties": { "Cell": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.PivotTableCellConditionalFormatting" } }, "type": "object" }, "AWS::QuickSight::Dashboard.PivotTableConditionalFormattingScope": { "additionalProperties": false, "properties": { "Role": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Dashboard.PivotTableConfiguration": { "additionalProperties": false, "properties": { "FieldOptions": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.PivotTableFieldOptions" }, "FieldWells": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.PivotTableFieldWells" }, "PaginatedReportOptions": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.PivotTablePaginatedReportOptions" }, "SortConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.PivotTableSortConfiguration" }, "TableOptions": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.PivotTableOptions" }, "TotalOptions": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.PivotTableTotalOptions" } }, "type": "object" }, "AWS::QuickSight::Dashboard.PivotTableDataPathOption": { "additionalProperties": false, "properties": { "DataPathList": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.DataPathValue" }, "type": "array" }, "Width": { "type": "string" } }, "required": [ "DataPathList" ], "type": "object" }, "AWS::QuickSight::Dashboard.PivotTableFieldCollapseStateOption": { "additionalProperties": false, "properties": { "State": { "type": "string" }, "Target": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.PivotTableFieldCollapseStateTarget" } }, "required": [ "Target" ], "type": "object" }, "AWS::QuickSight::Dashboard.PivotTableFieldCollapseStateTarget": { "additionalProperties": false, "properties": { "FieldDataPathValues": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.DataPathValue" }, "type": "array" }, "FieldId": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Dashboard.PivotTableFieldOption": { "additionalProperties": false, "properties": { "CustomLabel": { "type": "string" }, "FieldId": { "type": "string" }, "Visibility": { "type": "string" } }, "required": [ "FieldId" ], "type": "object" }, "AWS::QuickSight::Dashboard.PivotTableFieldOptions": { "additionalProperties": false, "properties": { "CollapseStateOptions": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.PivotTableFieldCollapseStateOption" }, "type": "array" }, "DataPathOptions": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.PivotTableDataPathOption" }, "type": "array" }, "SelectedFieldOptions": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.PivotTableFieldOption" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Dashboard.PivotTableFieldSubtotalOptions": { "additionalProperties": false, "properties": { "FieldId": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Dashboard.PivotTableFieldWells": { "additionalProperties": false, "properties": { "PivotTableAggregatedFieldWells": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.PivotTableAggregatedFieldWells" } }, "type": "object" }, "AWS::QuickSight::Dashboard.PivotTableOptions": { "additionalProperties": false, "properties": { "CellStyle": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.TableCellStyle" }, "CollapsedRowDimensionsVisibility": { "type": "string" }, "ColumnHeaderStyle": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.TableCellStyle" }, "ColumnNamesVisibility": { "type": "string" }, "MetricPlacement": { "type": "string" }, "RowAlternateColorOptions": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.RowAlternateColorOptions" }, "RowFieldNamesStyle": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.TableCellStyle" }, "RowHeaderStyle": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.TableCellStyle" }, "SingleMetricVisibility": { "type": "string" }, "ToggleButtonsVisibility": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Dashboard.PivotTablePaginatedReportOptions": { "additionalProperties": false, "properties": { "OverflowColumnHeaderVisibility": { "type": "string" }, "VerticalOverflowVisibility": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Dashboard.PivotTableSortBy": { "additionalProperties": false, "properties": { "Column": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ColumnSort" }, "DataPath": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.DataPathSort" }, "Field": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.FieldSort" } }, "type": "object" }, "AWS::QuickSight::Dashboard.PivotTableSortConfiguration": { "additionalProperties": false, "properties": { "FieldSortOptions": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.PivotFieldSortOptions" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Dashboard.PivotTableTotalOptions": { "additionalProperties": false, "properties": { "ColumnSubtotalOptions": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.SubtotalOptions" }, "ColumnTotalOptions": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.PivotTotalOptions" }, "RowSubtotalOptions": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.SubtotalOptions" }, "RowTotalOptions": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.PivotTotalOptions" } }, "type": "object" }, "AWS::QuickSight::Dashboard.PivotTableVisual": { "additionalProperties": false, "properties": { "Actions": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.VisualCustomAction" }, "type": "array" }, "ChartConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.PivotTableConfiguration" }, "ConditionalFormatting": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.PivotTableConditionalFormatting" }, "Subtitle": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.VisualSubtitleLabelOptions" }, "Title": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.VisualTitleLabelOptions" }, "VisualId": { "type": "string" } }, "required": [ "VisualId" ], "type": "object" }, "AWS::QuickSight::Dashboard.PivotTotalOptions": { "additionalProperties": false, "properties": { "CustomLabel": { "type": "string" }, "MetricHeaderCellStyle": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.TableCellStyle" }, "Placement": { "type": "string" }, "ScrollStatus": { "type": "string" }, "TotalCellStyle": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.TableCellStyle" }, "TotalsVisibility": { "type": "string" }, "ValueCellStyle": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.TableCellStyle" } }, "type": "object" }, "AWS::QuickSight::Dashboard.PredefinedHierarchy": { "additionalProperties": false, "properties": { "Columns": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ColumnIdentifier" }, "type": "array" }, "DrillDownFilters": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.DrillDownFilter" }, "type": "array" }, "HierarchyId": { "type": "string" } }, "required": [ "Columns", "HierarchyId" ], "type": "object" }, "AWS::QuickSight::Dashboard.ProgressBarOptions": { "additionalProperties": false, "properties": { "Visibility": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Dashboard.RadarChartAggregatedFieldWells": { "additionalProperties": false, "properties": { "Category": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.DimensionField" }, "type": "array" }, "Color": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.DimensionField" }, "type": "array" }, "Values": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.MeasureField" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Dashboard.RadarChartAreaStyleSettings": { "additionalProperties": false, "properties": { "Visibility": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Dashboard.RadarChartConfiguration": { "additionalProperties": false, "properties": { "AlternateBandColorsVisibility": { "type": "string" }, "AlternateBandEvenColor": { "type": "string" }, "AlternateBandOddColor": { "type": "string" }, "AxesRangeScale": { "type": "string" }, "BaseSeriesSettings": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.RadarChartSeriesSettings" }, "CategoryAxis": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.AxisDisplayOptions" }, "CategoryLabelOptions": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ChartAxisLabelOptions" }, "ColorAxis": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.AxisDisplayOptions" }, "ColorLabelOptions": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ChartAxisLabelOptions" }, "FieldWells": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.RadarChartFieldWells" }, "Legend": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.LegendOptions" }, "Shape": { "type": "string" }, "SortConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.RadarChartSortConfiguration" }, "StartAngle": { "type": "number" }, "VisualPalette": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.VisualPalette" } }, "type": "object" }, "AWS::QuickSight::Dashboard.RadarChartFieldWells": { "additionalProperties": false, "properties": { "RadarChartAggregatedFieldWells": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.RadarChartAggregatedFieldWells" } }, "type": "object" }, "AWS::QuickSight::Dashboard.RadarChartSeriesSettings": { "additionalProperties": false, "properties": { "AreaStyleSettings": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.RadarChartAreaStyleSettings" } }, "type": "object" }, "AWS::QuickSight::Dashboard.RadarChartSortConfiguration": { "additionalProperties": false, "properties": { "CategoryItemsLimit": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ItemsLimitConfiguration" }, "CategorySort": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.FieldSortOptions" }, "type": "array" }, "ColorItemsLimit": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ItemsLimitConfiguration" }, "ColorSort": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.FieldSortOptions" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Dashboard.RadarChartVisual": { "additionalProperties": false, "properties": { "Actions": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.VisualCustomAction" }, "type": "array" }, "ChartConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.RadarChartConfiguration" }, "ColumnHierarchies": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ColumnHierarchy" }, "type": "array" }, "Subtitle": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.VisualSubtitleLabelOptions" }, "Title": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.VisualTitleLabelOptions" }, "VisualId": { "type": "string" } }, "required": [ "VisualId" ], "type": "object" }, "AWS::QuickSight::Dashboard.RangeEndsLabelType": { "additionalProperties": false, "properties": { "Visibility": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Dashboard.ReferenceLine": { "additionalProperties": false, "properties": { "DataConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ReferenceLineDataConfiguration" }, "LabelConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ReferenceLineLabelConfiguration" }, "Status": { "type": "string" }, "StyleConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ReferenceLineStyleConfiguration" } }, "required": [ "DataConfiguration" ], "type": "object" }, "AWS::QuickSight::Dashboard.ReferenceLineCustomLabelConfiguration": { "additionalProperties": false, "properties": { "CustomLabel": { "type": "string" } }, "required": [ "CustomLabel" ], "type": "object" }, "AWS::QuickSight::Dashboard.ReferenceLineDataConfiguration": { "additionalProperties": false, "properties": { "AxisBinding": { "type": "string" }, "DynamicConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ReferenceLineDynamicDataConfiguration" }, "StaticConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ReferenceLineStaticDataConfiguration" } }, "type": "object" }, "AWS::QuickSight::Dashboard.ReferenceLineDynamicDataConfiguration": { "additionalProperties": false, "properties": { "Calculation": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.NumericalAggregationFunction" }, "Column": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ColumnIdentifier" }, "MeasureAggregationFunction": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.AggregationFunction" } }, "required": [ "Calculation", "Column" ], "type": "object" }, "AWS::QuickSight::Dashboard.ReferenceLineLabelConfiguration": { "additionalProperties": false, "properties": { "CustomLabelConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ReferenceLineCustomLabelConfiguration" }, "FontColor": { "type": "string" }, "FontConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.FontConfiguration" }, "HorizontalPosition": { "type": "string" }, "ValueLabelConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ReferenceLineValueLabelConfiguration" }, "VerticalPosition": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Dashboard.ReferenceLineStaticDataConfiguration": { "additionalProperties": false, "properties": { "Value": { "type": "number" } }, "required": [ "Value" ], "type": "object" }, "AWS::QuickSight::Dashboard.ReferenceLineStyleConfiguration": { "additionalProperties": false, "properties": { "Color": { "type": "string" }, "Pattern": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Dashboard.ReferenceLineValueLabelConfiguration": { "additionalProperties": false, "properties": { "FormatConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.NumericFormatConfiguration" }, "RelativePosition": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Dashboard.RelativeDateTimeControlDisplayOptions": { "additionalProperties": false, "properties": { "DateTimeFormat": { "type": "string" }, "TitleOptions": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.LabelOptions" } }, "type": "object" }, "AWS::QuickSight::Dashboard.RelativeDatesFilter": { "additionalProperties": false, "properties": { "AnchorDateConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.AnchorDateConfiguration" }, "Column": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ColumnIdentifier" }, "ExcludePeriodConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ExcludePeriodConfiguration" }, "FilterId": { "type": "string" }, "MinimumGranularity": { "type": "string" }, "NullOption": { "type": "string" }, "ParameterName": { "type": "string" }, "RelativeDateType": { "type": "string" }, "RelativeDateValue": { "type": "number" }, "TimeGranularity": { "type": "string" } }, "required": [ "AnchorDateConfiguration", "Column", "FilterId", "NullOption", "RelativeDateType", "TimeGranularity" ], "type": "object" }, "AWS::QuickSight::Dashboard.ResourcePermission": { "additionalProperties": false, "properties": { "Actions": { "items": { "type": "string" }, "type": "array" }, "Principal": { "type": "string" }, "Resource": { "type": "string" } }, "required": [ "Actions", "Principal" ], "type": "object" }, "AWS::QuickSight::Dashboard.RollingDateConfiguration": { "additionalProperties": false, "properties": { "DataSetIdentifier": { "type": "string" }, "Expression": { "type": "string" } }, "required": [ "Expression" ], "type": "object" }, "AWS::QuickSight::Dashboard.RowAlternateColorOptions": { "additionalProperties": false, "properties": { "RowAlternateColors": { "items": { "type": "string" }, "type": "array" }, "Status": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Dashboard.SameSheetTargetVisualConfiguration": { "additionalProperties": false, "properties": { "TargetVisualOptions": { "type": "string" }, "TargetVisuals": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Dashboard.SankeyDiagramAggregatedFieldWells": { "additionalProperties": false, "properties": { "Destination": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.DimensionField" }, "type": "array" }, "Source": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.DimensionField" }, "type": "array" }, "Weight": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.MeasureField" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Dashboard.SankeyDiagramChartConfiguration": { "additionalProperties": false, "properties": { "DataLabels": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.DataLabelOptions" }, "FieldWells": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.SankeyDiagramFieldWells" }, "SortConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.SankeyDiagramSortConfiguration" } }, "type": "object" }, "AWS::QuickSight::Dashboard.SankeyDiagramFieldWells": { "additionalProperties": false, "properties": { "SankeyDiagramAggregatedFieldWells": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.SankeyDiagramAggregatedFieldWells" } }, "type": "object" }, "AWS::QuickSight::Dashboard.SankeyDiagramSortConfiguration": { "additionalProperties": false, "properties": { "DestinationItemsLimit": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ItemsLimitConfiguration" }, "SourceItemsLimit": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ItemsLimitConfiguration" }, "WeightSort": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.FieldSortOptions" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Dashboard.SankeyDiagramVisual": { "additionalProperties": false, "properties": { "Actions": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.VisualCustomAction" }, "type": "array" }, "ChartConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.SankeyDiagramChartConfiguration" }, "Subtitle": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.VisualSubtitleLabelOptions" }, "Title": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.VisualTitleLabelOptions" }, "VisualId": { "type": "string" } }, "required": [ "VisualId" ], "type": "object" }, "AWS::QuickSight::Dashboard.ScatterPlotCategoricallyAggregatedFieldWells": { "additionalProperties": false, "properties": { "Category": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.DimensionField" }, "type": "array" }, "Label": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.DimensionField" }, "type": "array" }, "Size": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.MeasureField" }, "type": "array" }, "XAxis": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.MeasureField" }, "type": "array" }, "YAxis": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.MeasureField" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Dashboard.ScatterPlotConfiguration": { "additionalProperties": false, "properties": { "DataLabels": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.DataLabelOptions" }, "FieldWells": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ScatterPlotFieldWells" }, "Legend": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.LegendOptions" }, "Tooltip": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.TooltipOptions" }, "VisualPalette": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.VisualPalette" }, "XAxisDisplayOptions": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.AxisDisplayOptions" }, "XAxisLabelOptions": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ChartAxisLabelOptions" }, "YAxisDisplayOptions": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.AxisDisplayOptions" }, "YAxisLabelOptions": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ChartAxisLabelOptions" } }, "type": "object" }, "AWS::QuickSight::Dashboard.ScatterPlotFieldWells": { "additionalProperties": false, "properties": { "ScatterPlotCategoricallyAggregatedFieldWells": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ScatterPlotCategoricallyAggregatedFieldWells" }, "ScatterPlotUnaggregatedFieldWells": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ScatterPlotUnaggregatedFieldWells" } }, "type": "object" }, "AWS::QuickSight::Dashboard.ScatterPlotUnaggregatedFieldWells": { "additionalProperties": false, "properties": { "Category": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.DimensionField" }, "type": "array" }, "Label": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.DimensionField" }, "type": "array" }, "Size": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.MeasureField" }, "type": "array" }, "XAxis": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.DimensionField" }, "type": "array" }, "YAxis": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.DimensionField" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Dashboard.ScatterPlotVisual": { "additionalProperties": false, "properties": { "Actions": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.VisualCustomAction" }, "type": "array" }, "ChartConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ScatterPlotConfiguration" }, "ColumnHierarchies": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ColumnHierarchy" }, "type": "array" }, "Subtitle": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.VisualSubtitleLabelOptions" }, "Title": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.VisualTitleLabelOptions" }, "VisualId": { "type": "string" } }, "required": [ "VisualId" ], "type": "object" }, "AWS::QuickSight::Dashboard.ScrollBarOptions": { "additionalProperties": false, "properties": { "Visibility": { "type": "string" }, "VisibleRange": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.VisibleRangeOptions" } }, "type": "object" }, "AWS::QuickSight::Dashboard.SecondaryValueOptions": { "additionalProperties": false, "properties": { "Visibility": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Dashboard.SectionAfterPageBreak": { "additionalProperties": false, "properties": { "Status": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Dashboard.SectionBasedLayoutCanvasSizeOptions": { "additionalProperties": false, "properties": { "PaperCanvasSizeOptions": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.SectionBasedLayoutPaperCanvasSizeOptions" } }, "type": "object" }, "AWS::QuickSight::Dashboard.SectionBasedLayoutConfiguration": { "additionalProperties": false, "properties": { "BodySections": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.BodySectionConfiguration" }, "type": "array" }, "CanvasSizeOptions": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.SectionBasedLayoutCanvasSizeOptions" }, "FooterSections": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.HeaderFooterSectionConfiguration" }, "type": "array" }, "HeaderSections": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.HeaderFooterSectionConfiguration" }, "type": "array" } }, "required": [ "BodySections", "CanvasSizeOptions", "FooterSections", "HeaderSections" ], "type": "object" }, "AWS::QuickSight::Dashboard.SectionBasedLayoutPaperCanvasSizeOptions": { "additionalProperties": false, "properties": { "PaperMargin": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.Spacing" }, "PaperOrientation": { "type": "string" }, "PaperSize": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Dashboard.SectionLayoutConfiguration": { "additionalProperties": false, "properties": { "FreeFormLayout": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.FreeFormSectionLayoutConfiguration" } }, "required": [ "FreeFormLayout" ], "type": "object" }, "AWS::QuickSight::Dashboard.SectionPageBreakConfiguration": { "additionalProperties": false, "properties": { "After": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.SectionAfterPageBreak" } }, "type": "object" }, "AWS::QuickSight::Dashboard.SectionStyle": { "additionalProperties": false, "properties": { "Height": { "type": "string" }, "Padding": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.Spacing" } }, "type": "object" }, "AWS::QuickSight::Dashboard.SelectedSheetsFilterScopeConfiguration": { "additionalProperties": false, "properties": { "SheetVisualScopingConfigurations": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.SheetVisualScopingConfiguration" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Dashboard.SeriesItem": { "additionalProperties": false, "properties": { "DataFieldSeriesItem": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.DataFieldSeriesItem" }, "FieldSeriesItem": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.FieldSeriesItem" } }, "type": "object" }, "AWS::QuickSight::Dashboard.SetParameterValueConfiguration": { "additionalProperties": false, "properties": { "DestinationParameterName": { "type": "string" }, "Value": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.DestinationParameterValueConfiguration" } }, "required": [ "DestinationParameterName", "Value" ], "type": "object" }, "AWS::QuickSight::Dashboard.ShapeConditionalFormat": { "additionalProperties": false, "properties": { "BackgroundColor": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ConditionalFormattingColor" } }, "required": [ "BackgroundColor" ], "type": "object" }, "AWS::QuickSight::Dashboard.Sheet": { "additionalProperties": false, "properties": { "Name": { "type": "string" }, "SheetId": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Dashboard.SheetControlLayout": { "additionalProperties": false, "properties": { "Configuration": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.SheetControlLayoutConfiguration" } }, "required": [ "Configuration" ], "type": "object" }, "AWS::QuickSight::Dashboard.SheetControlLayoutConfiguration": { "additionalProperties": false, "properties": { "GridLayout": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.GridLayoutConfiguration" } }, "type": "object" }, "AWS::QuickSight::Dashboard.SheetControlsOption": { "additionalProperties": false, "properties": { "VisibilityState": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Dashboard.SheetDefinition": { "additionalProperties": false, "properties": { "ContentType": { "type": "string" }, "Description": { "type": "string" }, "FilterControls": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.FilterControl" }, "type": "array" }, "Layouts": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.Layout" }, "type": "array" }, "Name": { "type": "string" }, "ParameterControls": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ParameterControl" }, "type": "array" }, "SheetControlLayouts": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.SheetControlLayout" }, "type": "array" }, "SheetId": { "type": "string" }, "TextBoxes": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.SheetTextBox" }, "type": "array" }, "Title": { "type": "string" }, "Visuals": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.Visual" }, "type": "array" } }, "required": [ "SheetId" ], "type": "object" }, "AWS::QuickSight::Dashboard.SheetElementConfigurationOverrides": { "additionalProperties": false, "properties": { "Visibility": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Dashboard.SheetElementRenderingRule": { "additionalProperties": false, "properties": { "ConfigurationOverrides": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.SheetElementConfigurationOverrides" }, "Expression": { "type": "string" } }, "required": [ "ConfigurationOverrides", "Expression" ], "type": "object" }, "AWS::QuickSight::Dashboard.SheetLayoutElementMaximizationOption": { "additionalProperties": false, "properties": { "AvailabilityStatus": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Dashboard.SheetTextBox": { "additionalProperties": false, "properties": { "Content": { "type": "string" }, "SheetTextBoxId": { "type": "string" } }, "required": [ "SheetTextBoxId" ], "type": "object" }, "AWS::QuickSight::Dashboard.SheetVisualScopingConfiguration": { "additionalProperties": false, "properties": { "Scope": { "type": "string" }, "SheetId": { "type": "string" }, "VisualIds": { "items": { "type": "string" }, "type": "array" } }, "required": [ "Scope", "SheetId" ], "type": "object" }, "AWS::QuickSight::Dashboard.ShortFormatText": { "additionalProperties": false, "properties": { "PlainText": { "type": "string" }, "RichText": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Dashboard.SimpleClusterMarker": { "additionalProperties": false, "properties": { "Color": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Dashboard.SliderControlDisplayOptions": { "additionalProperties": false, "properties": { "TitleOptions": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.LabelOptions" } }, "type": "object" }, "AWS::QuickSight::Dashboard.SmallMultiplesOptions": { "additionalProperties": false, "properties": { "MaxVisibleColumns": { "type": "number" }, "MaxVisibleRows": { "type": "number" }, "PanelConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.PanelConfiguration" } }, "type": "object" }, "AWS::QuickSight::Dashboard.Spacing": { "additionalProperties": false, "properties": { "Bottom": { "type": "string" }, "Left": { "type": "string" }, "Right": { "type": "string" }, "Top": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Dashboard.StringDefaultValues": { "additionalProperties": false, "properties": { "DynamicValue": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.DynamicDefaultValue" }, "StaticValues": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Dashboard.StringFormatConfiguration": { "additionalProperties": false, "properties": { "NullValueFormatConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.NullValueFormatConfiguration" }, "NumericFormatConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.NumericFormatConfiguration" } }, "type": "object" }, "AWS::QuickSight::Dashboard.StringParameter": { "additionalProperties": false, "properties": { "Name": { "type": "string" }, "Values": { "items": { "type": "string" }, "type": "array" } }, "required": [ "Name", "Values" ], "type": "object" }, "AWS::QuickSight::Dashboard.StringParameterDeclaration": { "additionalProperties": false, "properties": { "DefaultValues": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.StringDefaultValues" }, "MappedDataSetParameters": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.MappedDataSetParameter" }, "type": "array" }, "Name": { "type": "string" }, "ParameterValueType": { "type": "string" }, "ValueWhenUnset": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.StringValueWhenUnsetConfiguration" } }, "required": [ "Name", "ParameterValueType" ], "type": "object" }, "AWS::QuickSight::Dashboard.StringValueWhenUnsetConfiguration": { "additionalProperties": false, "properties": { "CustomValue": { "type": "string" }, "ValueWhenUnsetOption": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Dashboard.SubtotalOptions": { "additionalProperties": false, "properties": { "CustomLabel": { "type": "string" }, "FieldLevel": { "type": "string" }, "FieldLevelOptions": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.PivotTableFieldSubtotalOptions" }, "type": "array" }, "MetricHeaderCellStyle": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.TableCellStyle" }, "TotalCellStyle": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.TableCellStyle" }, "TotalsVisibility": { "type": "string" }, "ValueCellStyle": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.TableCellStyle" } }, "type": "object" }, "AWS::QuickSight::Dashboard.TableAggregatedFieldWells": { "additionalProperties": false, "properties": { "GroupBy": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.DimensionField" }, "type": "array" }, "Values": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.MeasureField" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Dashboard.TableBorderOptions": { "additionalProperties": false, "properties": { "Color": { "type": "string" }, "Style": { "type": "string" }, "Thickness": { "type": "number" } }, "type": "object" }, "AWS::QuickSight::Dashboard.TableCellConditionalFormatting": { "additionalProperties": false, "properties": { "FieldId": { "type": "string" }, "TextFormat": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.TextConditionalFormat" } }, "required": [ "FieldId" ], "type": "object" }, "AWS::QuickSight::Dashboard.TableCellImageSizingConfiguration": { "additionalProperties": false, "properties": { "TableCellImageScalingConfiguration": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Dashboard.TableCellStyle": { "additionalProperties": false, "properties": { "BackgroundColor": { "type": "string" }, "Border": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.GlobalTableBorderOptions" }, "FontConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.FontConfiguration" }, "Height": { "type": "number" }, "HorizontalTextAlignment": { "type": "string" }, "TextWrap": { "type": "string" }, "VerticalTextAlignment": { "type": "string" }, "Visibility": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Dashboard.TableConditionalFormatting": { "additionalProperties": false, "properties": { "ConditionalFormattingOptions": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.TableConditionalFormattingOption" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Dashboard.TableConditionalFormattingOption": { "additionalProperties": false, "properties": { "Cell": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.TableCellConditionalFormatting" }, "Row": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.TableRowConditionalFormatting" } }, "type": "object" }, "AWS::QuickSight::Dashboard.TableConfiguration": { "additionalProperties": false, "properties": { "FieldOptions": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.TableFieldOptions" }, "FieldWells": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.TableFieldWells" }, "PaginatedReportOptions": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.TablePaginatedReportOptions" }, "SortConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.TableSortConfiguration" }, "TableInlineVisualizations": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.TableInlineVisualization" }, "type": "array" }, "TableOptions": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.TableOptions" }, "TotalOptions": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.TotalOptions" } }, "type": "object" }, "AWS::QuickSight::Dashboard.TableFieldCustomIconContent": { "additionalProperties": false, "properties": { "Icon": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Dashboard.TableFieldCustomTextContent": { "additionalProperties": false, "properties": { "FontConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.FontConfiguration" }, "Value": { "type": "string" } }, "required": [ "FontConfiguration" ], "type": "object" }, "AWS::QuickSight::Dashboard.TableFieldImageConfiguration": { "additionalProperties": false, "properties": { "SizingOptions": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.TableCellImageSizingConfiguration" } }, "type": "object" }, "AWS::QuickSight::Dashboard.TableFieldLinkConfiguration": { "additionalProperties": false, "properties": { "Content": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.TableFieldLinkContentConfiguration" }, "Target": { "type": "string" } }, "required": [ "Content", "Target" ], "type": "object" }, "AWS::QuickSight::Dashboard.TableFieldLinkContentConfiguration": { "additionalProperties": false, "properties": { "CustomIconContent": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.TableFieldCustomIconContent" }, "CustomTextContent": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.TableFieldCustomTextContent" } }, "type": "object" }, "AWS::QuickSight::Dashboard.TableFieldOption": { "additionalProperties": false, "properties": { "CustomLabel": { "type": "string" }, "FieldId": { "type": "string" }, "URLStyling": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.TableFieldURLConfiguration" }, "Visibility": { "type": "string" }, "Width": { "type": "string" } }, "required": [ "FieldId" ], "type": "object" }, "AWS::QuickSight::Dashboard.TableFieldOptions": { "additionalProperties": false, "properties": { "Order": { "items": { "type": "string" }, "type": "array" }, "SelectedFieldOptions": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.TableFieldOption" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Dashboard.TableFieldURLConfiguration": { "additionalProperties": false, "properties": { "ImageConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.TableFieldImageConfiguration" }, "LinkConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.TableFieldLinkConfiguration" } }, "type": "object" }, "AWS::QuickSight::Dashboard.TableFieldWells": { "additionalProperties": false, "properties": { "TableAggregatedFieldWells": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.TableAggregatedFieldWells" }, "TableUnaggregatedFieldWells": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.TableUnaggregatedFieldWells" } }, "type": "object" }, "AWS::QuickSight::Dashboard.TableInlineVisualization": { "additionalProperties": false, "properties": { "DataBars": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.DataBarsOptions" } }, "type": "object" }, "AWS::QuickSight::Dashboard.TableOptions": { "additionalProperties": false, "properties": { "CellStyle": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.TableCellStyle" }, "HeaderStyle": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.TableCellStyle" }, "Orientation": { "type": "string" }, "RowAlternateColorOptions": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.RowAlternateColorOptions" } }, "type": "object" }, "AWS::QuickSight::Dashboard.TablePaginatedReportOptions": { "additionalProperties": false, "properties": { "OverflowColumnHeaderVisibility": { "type": "string" }, "VerticalOverflowVisibility": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Dashboard.TableRowConditionalFormatting": { "additionalProperties": false, "properties": { "BackgroundColor": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ConditionalFormattingColor" }, "TextColor": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ConditionalFormattingColor" } }, "type": "object" }, "AWS::QuickSight::Dashboard.TableSideBorderOptions": { "additionalProperties": false, "properties": { "Bottom": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.TableBorderOptions" }, "InnerHorizontal": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.TableBorderOptions" }, "InnerVertical": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.TableBorderOptions" }, "Left": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.TableBorderOptions" }, "Right": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.TableBorderOptions" }, "Top": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.TableBorderOptions" } }, "type": "object" }, "AWS::QuickSight::Dashboard.TableSortConfiguration": { "additionalProperties": false, "properties": { "PaginationConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.PaginationConfiguration" }, "RowSort": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.FieldSortOptions" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Dashboard.TableUnaggregatedFieldWells": { "additionalProperties": false, "properties": { "Values": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.UnaggregatedField" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Dashboard.TableVisual": { "additionalProperties": false, "properties": { "Actions": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.VisualCustomAction" }, "type": "array" }, "ChartConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.TableConfiguration" }, "ConditionalFormatting": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.TableConditionalFormatting" }, "Subtitle": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.VisualSubtitleLabelOptions" }, "Title": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.VisualTitleLabelOptions" }, "VisualId": { "type": "string" } }, "required": [ "VisualId" ], "type": "object" }, "AWS::QuickSight::Dashboard.TextAreaControlDisplayOptions": { "additionalProperties": false, "properties": { "PlaceholderOptions": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.TextControlPlaceholderOptions" }, "TitleOptions": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.LabelOptions" } }, "type": "object" }, "AWS::QuickSight::Dashboard.TextConditionalFormat": { "additionalProperties": false, "properties": { "BackgroundColor": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ConditionalFormattingColor" }, "Icon": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ConditionalFormattingIcon" }, "TextColor": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ConditionalFormattingColor" } }, "type": "object" }, "AWS::QuickSight::Dashboard.TextControlPlaceholderOptions": { "additionalProperties": false, "properties": { "Visibility": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Dashboard.TextFieldControlDisplayOptions": { "additionalProperties": false, "properties": { "PlaceholderOptions": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.TextControlPlaceholderOptions" }, "TitleOptions": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.LabelOptions" } }, "type": "object" }, "AWS::QuickSight::Dashboard.ThousandSeparatorOptions": { "additionalProperties": false, "properties": { "Symbol": { "type": "string" }, "Visibility": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Dashboard.TimeBasedForecastProperties": { "additionalProperties": false, "properties": { "LowerBoundary": { "type": "number" }, "PeriodsBackward": { "type": "number" }, "PeriodsForward": { "type": "number" }, "PredictionInterval": { "type": "number" }, "Seasonality": { "type": "number" }, "UpperBoundary": { "type": "number" } }, "type": "object" }, "AWS::QuickSight::Dashboard.TimeEqualityFilter": { "additionalProperties": false, "properties": { "Column": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ColumnIdentifier" }, "FilterId": { "type": "string" }, "ParameterName": { "type": "string" }, "TimeGranularity": { "type": "string" }, "Value": { "type": "string" } }, "required": [ "Column", "FilterId" ], "type": "object" }, "AWS::QuickSight::Dashboard.TimeRangeDrillDownFilter": { "additionalProperties": false, "properties": { "Column": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ColumnIdentifier" }, "RangeMaximum": { "type": "string" }, "RangeMinimum": { "type": "string" }, "TimeGranularity": { "type": "string" } }, "required": [ "Column", "RangeMaximum", "RangeMinimum", "TimeGranularity" ], "type": "object" }, "AWS::QuickSight::Dashboard.TimeRangeFilter": { "additionalProperties": false, "properties": { "Column": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ColumnIdentifier" }, "ExcludePeriodConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ExcludePeriodConfiguration" }, "FilterId": { "type": "string" }, "IncludeMaximum": { "type": "boolean" }, "IncludeMinimum": { "type": "boolean" }, "NullOption": { "type": "string" }, "RangeMaximumValue": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.TimeRangeFilterValue" }, "RangeMinimumValue": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.TimeRangeFilterValue" }, "TimeGranularity": { "type": "string" } }, "required": [ "Column", "FilterId", "NullOption" ], "type": "object" }, "AWS::QuickSight::Dashboard.TimeRangeFilterValue": { "additionalProperties": false, "properties": { "Parameter": { "type": "string" }, "RollingDate": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.RollingDateConfiguration" }, "StaticValue": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Dashboard.TooltipItem": { "additionalProperties": false, "properties": { "ColumnTooltipItem": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ColumnTooltipItem" }, "FieldTooltipItem": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.FieldTooltipItem" } }, "type": "object" }, "AWS::QuickSight::Dashboard.TooltipOptions": { "additionalProperties": false, "properties": { "FieldBasedTooltip": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.FieldBasedTooltip" }, "SelectedTooltipType": { "type": "string" }, "TooltipVisibility": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Dashboard.TopBottomFilter": { "additionalProperties": false, "properties": { "AggregationSortConfigurations": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.AggregationSortConfiguration" }, "type": "array" }, "Column": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ColumnIdentifier" }, "FilterId": { "type": "string" }, "Limit": { "type": "number" }, "ParameterName": { "type": "string" }, "TimeGranularity": { "type": "string" } }, "required": [ "AggregationSortConfigurations", "Column", "FilterId" ], "type": "object" }, "AWS::QuickSight::Dashboard.TopBottomMoversComputation": { "additionalProperties": false, "properties": { "Category": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.DimensionField" }, "ComputationId": { "type": "string" }, "MoverSize": { "type": "number" }, "Name": { "type": "string" }, "SortOrder": { "type": "string" }, "Time": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.DimensionField" }, "Type": { "type": "string" }, "Value": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.MeasureField" } }, "required": [ "Category", "ComputationId", "Time", "Type" ], "type": "object" }, "AWS::QuickSight::Dashboard.TopBottomRankedComputation": { "additionalProperties": false, "properties": { "Category": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.DimensionField" }, "ComputationId": { "type": "string" }, "Name": { "type": "string" }, "ResultSize": { "type": "number" }, "Type": { "type": "string" }, "Value": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.MeasureField" } }, "required": [ "Category", "ComputationId", "Type" ], "type": "object" }, "AWS::QuickSight::Dashboard.TotalAggregationComputation": { "additionalProperties": false, "properties": { "ComputationId": { "type": "string" }, "Name": { "type": "string" }, "Value": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.MeasureField" } }, "required": [ "ComputationId", "Value" ], "type": "object" }, "AWS::QuickSight::Dashboard.TotalOptions": { "additionalProperties": false, "properties": { "CustomLabel": { "type": "string" }, "Placement": { "type": "string" }, "ScrollStatus": { "type": "string" }, "TotalCellStyle": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.TableCellStyle" }, "TotalsVisibility": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Dashboard.TreeMapAggregatedFieldWells": { "additionalProperties": false, "properties": { "Colors": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.MeasureField" }, "type": "array" }, "Groups": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.DimensionField" }, "type": "array" }, "Sizes": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.MeasureField" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Dashboard.TreeMapConfiguration": { "additionalProperties": false, "properties": { "ColorLabelOptions": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ChartAxisLabelOptions" }, "ColorScale": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ColorScale" }, "DataLabels": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.DataLabelOptions" }, "FieldWells": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.TreeMapFieldWells" }, "GroupLabelOptions": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ChartAxisLabelOptions" }, "Legend": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.LegendOptions" }, "SizeLabelOptions": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ChartAxisLabelOptions" }, "SortConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.TreeMapSortConfiguration" }, "Tooltip": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.TooltipOptions" } }, "type": "object" }, "AWS::QuickSight::Dashboard.TreeMapFieldWells": { "additionalProperties": false, "properties": { "TreeMapAggregatedFieldWells": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.TreeMapAggregatedFieldWells" } }, "type": "object" }, "AWS::QuickSight::Dashboard.TreeMapSortConfiguration": { "additionalProperties": false, "properties": { "TreeMapGroupItemsLimitConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ItemsLimitConfiguration" }, "TreeMapSort": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.FieldSortOptions" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Dashboard.TreeMapVisual": { "additionalProperties": false, "properties": { "Actions": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.VisualCustomAction" }, "type": "array" }, "ChartConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.TreeMapConfiguration" }, "ColumnHierarchies": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ColumnHierarchy" }, "type": "array" }, "Subtitle": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.VisualSubtitleLabelOptions" }, "Title": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.VisualTitleLabelOptions" }, "VisualId": { "type": "string" } }, "required": [ "VisualId" ], "type": "object" }, "AWS::QuickSight::Dashboard.TrendArrowOptions": { "additionalProperties": false, "properties": { "Visibility": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Dashboard.UnaggregatedField": { "additionalProperties": false, "properties": { "Column": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ColumnIdentifier" }, "FieldId": { "type": "string" }, "FormatConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.FormatConfiguration" } }, "required": [ "Column", "FieldId" ], "type": "object" }, "AWS::QuickSight::Dashboard.UniqueValuesComputation": { "additionalProperties": false, "properties": { "Category": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.DimensionField" }, "ComputationId": { "type": "string" }, "Name": { "type": "string" } }, "required": [ "Category", "ComputationId" ], "type": "object" }, "AWS::QuickSight::Dashboard.VisibleRangeOptions": { "additionalProperties": false, "properties": { "PercentRange": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.PercentVisibleRange" } }, "type": "object" }, "AWS::QuickSight::Dashboard.Visual": { "additionalProperties": false, "properties": { "BarChartVisual": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.BarChartVisual" }, "BoxPlotVisual": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.BoxPlotVisual" }, "ComboChartVisual": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ComboChartVisual" }, "CustomContentVisual": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.CustomContentVisual" }, "EmptyVisual": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.EmptyVisual" }, "FilledMapVisual": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.FilledMapVisual" }, "FunnelChartVisual": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.FunnelChartVisual" }, "GaugeChartVisual": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.GaugeChartVisual" }, "GeospatialMapVisual": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.GeospatialMapVisual" }, "HeatMapVisual": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.HeatMapVisual" }, "HistogramVisual": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.HistogramVisual" }, "InsightVisual": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.InsightVisual" }, "KPIVisual": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.KPIVisual" }, "LineChartVisual": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.LineChartVisual" }, "PieChartVisual": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.PieChartVisual" }, "PivotTableVisual": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.PivotTableVisual" }, "RadarChartVisual": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.RadarChartVisual" }, "SankeyDiagramVisual": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.SankeyDiagramVisual" }, "ScatterPlotVisual": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ScatterPlotVisual" }, "TableVisual": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.TableVisual" }, "TreeMapVisual": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.TreeMapVisual" }, "WaterfallVisual": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.WaterfallVisual" }, "WordCloudVisual": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.WordCloudVisual" } }, "type": "object" }, "AWS::QuickSight::Dashboard.VisualAxisSortOption": { "additionalProperties": false, "properties": { "AvailabilityStatus": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Dashboard.VisualCustomAction": { "additionalProperties": false, "properties": { "ActionOperations": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.VisualCustomActionOperation" }, "type": "array" }, "CustomActionId": { "type": "string" }, "Name": { "type": "string" }, "Status": { "type": "string" }, "Trigger": { "type": "string" } }, "required": [ "ActionOperations", "CustomActionId", "Name", "Trigger" ], "type": "object" }, "AWS::QuickSight::Dashboard.VisualCustomActionOperation": { "additionalProperties": false, "properties": { "FilterOperation": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.CustomActionFilterOperation" }, "NavigationOperation": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.CustomActionNavigationOperation" }, "SetParametersOperation": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.CustomActionSetParametersOperation" }, "URLOperation": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.CustomActionURLOperation" } }, "type": "object" }, "AWS::QuickSight::Dashboard.VisualMenuOption": { "additionalProperties": false, "properties": { "AvailabilityStatus": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Dashboard.VisualPalette": { "additionalProperties": false, "properties": { "ChartColor": { "type": "string" }, "ColorMap": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.DataPathColor" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Dashboard.VisualSubtitleLabelOptions": { "additionalProperties": false, "properties": { "FormatText": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.LongFormatText" }, "Visibility": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Dashboard.VisualTitleLabelOptions": { "additionalProperties": false, "properties": { "FormatText": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ShortFormatText" }, "Visibility": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Dashboard.WaterfallChartAggregatedFieldWells": { "additionalProperties": false, "properties": { "Breakdowns": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.DimensionField" }, "type": "array" }, "Categories": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.DimensionField" }, "type": "array" }, "Values": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.MeasureField" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Dashboard.WaterfallChartConfiguration": { "additionalProperties": false, "properties": { "CategoryAxisDisplayOptions": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.AxisDisplayOptions" }, "CategoryAxisLabelOptions": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ChartAxisLabelOptions" }, "DataLabels": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.DataLabelOptions" }, "FieldWells": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.WaterfallChartFieldWells" }, "Legend": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.LegendOptions" }, "PrimaryYAxisDisplayOptions": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.AxisDisplayOptions" }, "PrimaryYAxisLabelOptions": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ChartAxisLabelOptions" }, "SortConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.WaterfallChartSortConfiguration" }, "VisualPalette": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.VisualPalette" }, "WaterfallChartOptions": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.WaterfallChartOptions" } }, "type": "object" }, "AWS::QuickSight::Dashboard.WaterfallChartFieldWells": { "additionalProperties": false, "properties": { "WaterfallChartAggregatedFieldWells": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.WaterfallChartAggregatedFieldWells" } }, "type": "object" }, "AWS::QuickSight::Dashboard.WaterfallChartOptions": { "additionalProperties": false, "properties": { "TotalBarLabel": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Dashboard.WaterfallChartSortConfiguration": { "additionalProperties": false, "properties": { "BreakdownItemsLimit": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ItemsLimitConfiguration" }, "CategorySort": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.FieldSortOptions" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Dashboard.WaterfallVisual": { "additionalProperties": false, "properties": { "Actions": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.VisualCustomAction" }, "type": "array" }, "ChartConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.WaterfallChartConfiguration" }, "ColumnHierarchies": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ColumnHierarchy" }, "type": "array" }, "Subtitle": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.VisualSubtitleLabelOptions" }, "Title": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.VisualTitleLabelOptions" }, "VisualId": { "type": "string" } }, "required": [ "VisualId" ], "type": "object" }, "AWS::QuickSight::Dashboard.WhatIfPointScenario": { "additionalProperties": false, "properties": { "Date": { "type": "string" }, "Value": { "type": "number" } }, "required": [ "Date", "Value" ], "type": "object" }, "AWS::QuickSight::Dashboard.WhatIfRangeScenario": { "additionalProperties": false, "properties": { "EndDate": { "type": "string" }, "StartDate": { "type": "string" }, "Value": { "type": "number" } }, "required": [ "EndDate", "StartDate", "Value" ], "type": "object" }, "AWS::QuickSight::Dashboard.WordCloudAggregatedFieldWells": { "additionalProperties": false, "properties": { "GroupBy": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.DimensionField" }, "type": "array" }, "Size": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.MeasureField" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Dashboard.WordCloudChartConfiguration": { "additionalProperties": false, "properties": { "CategoryLabelOptions": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ChartAxisLabelOptions" }, "FieldWells": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.WordCloudFieldWells" }, "SortConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.WordCloudSortConfiguration" }, "WordCloudOptions": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.WordCloudOptions" } }, "type": "object" }, "AWS::QuickSight::Dashboard.WordCloudFieldWells": { "additionalProperties": false, "properties": { "WordCloudAggregatedFieldWells": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.WordCloudAggregatedFieldWells" } }, "type": "object" }, "AWS::QuickSight::Dashboard.WordCloudOptions": { "additionalProperties": false, "properties": { "CloudLayout": { "type": "string" }, "MaximumStringLength": { "type": "number" }, "WordCasing": { "type": "string" }, "WordOrientation": { "type": "string" }, "WordPadding": { "type": "string" }, "WordScaling": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Dashboard.WordCloudSortConfiguration": { "additionalProperties": false, "properties": { "CategoryItemsLimit": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ItemsLimitConfiguration" }, "CategorySort": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.FieldSortOptions" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Dashboard.WordCloudVisual": { "additionalProperties": false, "properties": { "Actions": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.VisualCustomAction" }, "type": "array" }, "ChartConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.WordCloudChartConfiguration" }, "ColumnHierarchies": { "items": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.ColumnHierarchy" }, "type": "array" }, "Subtitle": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.VisualSubtitleLabelOptions" }, "Title": { "$ref": "#/definitions/AWS::QuickSight::Dashboard.VisualTitleLabelOptions" }, "VisualId": { "type": "string" } }, "required": [ "VisualId" ], "type": "object" }, "AWS::QuickSight::DataSet": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AwsAccountId": { "type": "string" }, "ColumnGroups": { "items": { "$ref": "#/definitions/AWS::QuickSight::DataSet.ColumnGroup" }, "type": "array" }, "ColumnLevelPermissionRules": { "items": { "$ref": "#/definitions/AWS::QuickSight::DataSet.ColumnLevelPermissionRule" }, "type": "array" }, "DataSetId": { "type": "string" }, "DataSetRefreshProperties": { "$ref": "#/definitions/AWS::QuickSight::DataSet.DataSetRefreshProperties" }, "DataSetUsageConfiguration": { "$ref": "#/definitions/AWS::QuickSight::DataSet.DataSetUsageConfiguration" }, "DatasetParameters": { "items": { "$ref": "#/definitions/AWS::QuickSight::DataSet.DatasetParameter" }, "type": "array" }, "FieldFolders": { "additionalProperties": false, "patternProperties": { "^[a-zA-Z0-9]+$": { "$ref": "#/definitions/AWS::QuickSight::DataSet.FieldFolder" } }, "type": "object" }, "ImportMode": { "type": "string" }, "IngestionWaitPolicy": { "$ref": "#/definitions/AWS::QuickSight::DataSet.IngestionWaitPolicy" }, "LogicalTableMap": { "additionalProperties": false, "patternProperties": { "^[a-zA-Z0-9]+$": { "$ref": "#/definitions/AWS::QuickSight::DataSet.LogicalTable" } }, "type": "object" }, "Name": { "type": "string" }, "Permissions": { "items": { "$ref": "#/definitions/AWS::QuickSight::DataSet.ResourcePermission" }, "type": "array" }, "PhysicalTableMap": { "additionalProperties": false, "patternProperties": { "^[a-zA-Z0-9]+$": { "$ref": "#/definitions/AWS::QuickSight::DataSet.PhysicalTable" } }, "type": "object" }, "RowLevelPermissionDataSet": { "$ref": "#/definitions/AWS::QuickSight::DataSet.RowLevelPermissionDataSet" }, "RowLevelPermissionTagConfiguration": { "$ref": "#/definitions/AWS::QuickSight::DataSet.RowLevelPermissionTagConfiguration" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "type": "object" }, "Type": { "enum": [ "AWS::QuickSight::DataSet" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::QuickSight::DataSet.CalculatedColumn": { "additionalProperties": false, "properties": { "ColumnId": { "type": "string" }, "ColumnName": { "type": "string" }, "Expression": { "type": "string" } }, "required": [ "ColumnId", "ColumnName", "Expression" ], "type": "object" }, "AWS::QuickSight::DataSet.CastColumnTypeOperation": { "additionalProperties": false, "properties": { "ColumnName": { "type": "string" }, "Format": { "type": "string" }, "NewColumnType": { "type": "string" } }, "required": [ "ColumnName", "NewColumnType" ], "type": "object" }, "AWS::QuickSight::DataSet.ColumnDescription": { "additionalProperties": false, "properties": { "Text": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::DataSet.ColumnGroup": { "additionalProperties": false, "properties": { "GeoSpatialColumnGroup": { "$ref": "#/definitions/AWS::QuickSight::DataSet.GeoSpatialColumnGroup" } }, "type": "object" }, "AWS::QuickSight::DataSet.ColumnLevelPermissionRule": { "additionalProperties": false, "properties": { "ColumnNames": { "items": { "type": "string" }, "type": "array" }, "Principals": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::DataSet.ColumnTag": { "additionalProperties": false, "properties": { "ColumnDescription": { "$ref": "#/definitions/AWS::QuickSight::DataSet.ColumnDescription" }, "ColumnGeographicRole": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::DataSet.CreateColumnsOperation": { "additionalProperties": false, "properties": { "Columns": { "items": { "$ref": "#/definitions/AWS::QuickSight::DataSet.CalculatedColumn" }, "type": "array" } }, "required": [ "Columns" ], "type": "object" }, "AWS::QuickSight::DataSet.CustomSql": { "additionalProperties": false, "properties": { "Columns": { "items": { "$ref": "#/definitions/AWS::QuickSight::DataSet.InputColumn" }, "type": "array" }, "DataSourceArn": { "type": "string" }, "Name": { "type": "string" }, "SqlQuery": { "type": "string" } }, "required": [ "Columns", "DataSourceArn", "Name", "SqlQuery" ], "type": "object" }, "AWS::QuickSight::DataSet.DataSetRefreshProperties": { "additionalProperties": false, "properties": { "RefreshConfiguration": { "$ref": "#/definitions/AWS::QuickSight::DataSet.RefreshConfiguration" } }, "type": "object" }, "AWS::QuickSight::DataSet.DataSetUsageConfiguration": { "additionalProperties": false, "properties": { "DisableUseAsDirectQuerySource": { "type": "boolean" }, "DisableUseAsImportedSource": { "type": "boolean" } }, "type": "object" }, "AWS::QuickSight::DataSet.DatasetParameter": { "additionalProperties": false, "properties": { "DateTimeDatasetParameter": { "$ref": "#/definitions/AWS::QuickSight::DataSet.DateTimeDatasetParameter" }, "DecimalDatasetParameter": { "$ref": "#/definitions/AWS::QuickSight::DataSet.DecimalDatasetParameter" }, "IntegerDatasetParameter": { "$ref": "#/definitions/AWS::QuickSight::DataSet.IntegerDatasetParameter" }, "StringDatasetParameter": { "$ref": "#/definitions/AWS::QuickSight::DataSet.StringDatasetParameter" } }, "type": "object" }, "AWS::QuickSight::DataSet.DateTimeDatasetParameter": { "additionalProperties": false, "properties": { "DefaultValues": { "$ref": "#/definitions/AWS::QuickSight::DataSet.DateTimeDatasetParameterDefaultValues" }, "Id": { "type": "string" }, "Name": { "type": "string" }, "TimeGranularity": { "type": "string" }, "ValueType": { "type": "string" } }, "required": [ "Id", "Name", "ValueType" ], "type": "object" }, "AWS::QuickSight::DataSet.DateTimeDatasetParameterDefaultValues": { "additionalProperties": false, "properties": { "StaticValues": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::DataSet.DecimalDatasetParameter": { "additionalProperties": false, "properties": { "DefaultValues": { "$ref": "#/definitions/AWS::QuickSight::DataSet.DecimalDatasetParameterDefaultValues" }, "Id": { "type": "string" }, "Name": { "type": "string" }, "ValueType": { "type": "string" } }, "required": [ "Id", "Name", "ValueType" ], "type": "object" }, "AWS::QuickSight::DataSet.DecimalDatasetParameterDefaultValues": { "additionalProperties": false, "properties": { "StaticValues": { "items": { "type": "number" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::DataSet.FieldFolder": { "additionalProperties": false, "properties": { "Columns": { "items": { "type": "string" }, "type": "array" }, "Description": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::DataSet.FilterOperation": { "additionalProperties": false, "properties": { "ConditionExpression": { "type": "string" } }, "required": [ "ConditionExpression" ], "type": "object" }, "AWS::QuickSight::DataSet.GeoSpatialColumnGroup": { "additionalProperties": false, "properties": { "Columns": { "items": { "type": "string" }, "type": "array" }, "CountryCode": { "type": "string" }, "Name": { "type": "string" } }, "required": [ "Columns", "Name" ], "type": "object" }, "AWS::QuickSight::DataSet.IncrementalRefresh": { "additionalProperties": false, "properties": { "LookbackWindow": { "$ref": "#/definitions/AWS::QuickSight::DataSet.LookbackWindow" } }, "type": "object" }, "AWS::QuickSight::DataSet.IngestionWaitPolicy": { "additionalProperties": false, "properties": { "IngestionWaitTimeInHours": { "type": "number" }, "WaitForSpiceIngestion": { "type": "boolean" } }, "type": "object" }, "AWS::QuickSight::DataSet.InputColumn": { "additionalProperties": false, "properties": { "Name": { "type": "string" }, "Type": { "type": "string" } }, "required": [ "Name", "Type" ], "type": "object" }, "AWS::QuickSight::DataSet.IntegerDatasetParameter": { "additionalProperties": false, "properties": { "DefaultValues": { "$ref": "#/definitions/AWS::QuickSight::DataSet.IntegerDatasetParameterDefaultValues" }, "Id": { "type": "string" }, "Name": { "type": "string" }, "ValueType": { "type": "string" } }, "required": [ "Id", "Name", "ValueType" ], "type": "object" }, "AWS::QuickSight::DataSet.IntegerDatasetParameterDefaultValues": { "additionalProperties": false, "properties": { "StaticValues": { "items": { "type": "number" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::DataSet.JoinInstruction": { "additionalProperties": false, "properties": { "LeftJoinKeyProperties": { "$ref": "#/definitions/AWS::QuickSight::DataSet.JoinKeyProperties" }, "LeftOperand": { "type": "string" }, "OnClause": { "type": "string" }, "RightJoinKeyProperties": { "$ref": "#/definitions/AWS::QuickSight::DataSet.JoinKeyProperties" }, "RightOperand": { "type": "string" }, "Type": { "type": "string" } }, "required": [ "LeftOperand", "OnClause", "RightOperand", "Type" ], "type": "object" }, "AWS::QuickSight::DataSet.JoinKeyProperties": { "additionalProperties": false, "properties": { "UniqueKey": { "type": "boolean" } }, "type": "object" }, "AWS::QuickSight::DataSet.LogicalTable": { "additionalProperties": false, "properties": { "Alias": { "type": "string" }, "DataTransforms": { "items": { "$ref": "#/definitions/AWS::QuickSight::DataSet.TransformOperation" }, "type": "array" }, "Source": { "$ref": "#/definitions/AWS::QuickSight::DataSet.LogicalTableSource" } }, "required": [ "Alias", "Source" ], "type": "object" }, "AWS::QuickSight::DataSet.LogicalTableSource": { "additionalProperties": false, "properties": { "DataSetArn": { "type": "string" }, "JoinInstruction": { "$ref": "#/definitions/AWS::QuickSight::DataSet.JoinInstruction" }, "PhysicalTableId": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::DataSet.LookbackWindow": { "additionalProperties": false, "properties": { "ColumnName": { "type": "string" }, "Size": { "type": "number" }, "SizeUnit": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::DataSet.NewDefaultValues": { "additionalProperties": false, "properties": { "DateTimeStaticValues": { "items": { "type": "string" }, "type": "array" }, "DecimalStaticValues": { "items": { "type": "number" }, "type": "array" }, "IntegerStaticValues": { "items": { "type": "number" }, "type": "array" }, "StringStaticValues": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::DataSet.OutputColumn": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "Name": { "type": "string" }, "Type": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::DataSet.OverrideDatasetParameterOperation": { "additionalProperties": false, "properties": { "NewDefaultValues": { "$ref": "#/definitions/AWS::QuickSight::DataSet.NewDefaultValues" }, "NewParameterName": { "type": "string" }, "ParameterName": { "type": "string" } }, "required": [ "ParameterName" ], "type": "object" }, "AWS::QuickSight::DataSet.PhysicalTable": { "additionalProperties": false, "properties": { "CustomSql": { "$ref": "#/definitions/AWS::QuickSight::DataSet.CustomSql" }, "RelationalTable": { "$ref": "#/definitions/AWS::QuickSight::DataSet.RelationalTable" }, "S3Source": { "$ref": "#/definitions/AWS::QuickSight::DataSet.S3Source" } }, "type": "object" }, "AWS::QuickSight::DataSet.ProjectOperation": { "additionalProperties": false, "properties": { "ProjectedColumns": { "items": { "type": "string" }, "type": "array" } }, "required": [ "ProjectedColumns" ], "type": "object" }, "AWS::QuickSight::DataSet.RefreshConfiguration": { "additionalProperties": false, "properties": { "IncrementalRefresh": { "$ref": "#/definitions/AWS::QuickSight::DataSet.IncrementalRefresh" } }, "type": "object" }, "AWS::QuickSight::DataSet.RelationalTable": { "additionalProperties": false, "properties": { "Catalog": { "type": "string" }, "DataSourceArn": { "type": "string" }, "InputColumns": { "items": { "$ref": "#/definitions/AWS::QuickSight::DataSet.InputColumn" }, "type": "array" }, "Name": { "type": "string" }, "Schema": { "type": "string" } }, "required": [ "DataSourceArn", "InputColumns", "Name" ], "type": "object" }, "AWS::QuickSight::DataSet.RenameColumnOperation": { "additionalProperties": false, "properties": { "ColumnName": { "type": "string" }, "NewColumnName": { "type": "string" } }, "required": [ "ColumnName", "NewColumnName" ], "type": "object" }, "AWS::QuickSight::DataSet.ResourcePermission": { "additionalProperties": false, "properties": { "Actions": { "items": { "type": "string" }, "type": "array" }, "Principal": { "type": "string" } }, "required": [ "Actions", "Principal" ], "type": "object" }, "AWS::QuickSight::DataSet.RowLevelPermissionDataSet": { "additionalProperties": false, "properties": { "Arn": { "type": "string" }, "FormatVersion": { "type": "string" }, "Namespace": { "type": "string" }, "PermissionPolicy": { "type": "string" }, "Status": { "type": "string" } }, "required": [ "Arn", "PermissionPolicy" ], "type": "object" }, "AWS::QuickSight::DataSet.RowLevelPermissionTagConfiguration": { "additionalProperties": false, "properties": { "Status": { "type": "string" }, "TagRuleConfigurations": { "type": "object" }, "TagRules": { "items": { "$ref": "#/definitions/AWS::QuickSight::DataSet.RowLevelPermissionTagRule" }, "type": "array" } }, "required": [ "TagRules" ], "type": "object" }, "AWS::QuickSight::DataSet.RowLevelPermissionTagRule": { "additionalProperties": false, "properties": { "ColumnName": { "type": "string" }, "MatchAllValue": { "type": "string" }, "TagKey": { "type": "string" }, "TagMultiValueDelimiter": { "type": "string" } }, "required": [ "ColumnName", "TagKey" ], "type": "object" }, "AWS::QuickSight::DataSet.S3Source": { "additionalProperties": false, "properties": { "DataSourceArn": { "type": "string" }, "InputColumns": { "items": { "$ref": "#/definitions/AWS::QuickSight::DataSet.InputColumn" }, "type": "array" }, "UploadSettings": { "$ref": "#/definitions/AWS::QuickSight::DataSet.UploadSettings" } }, "required": [ "DataSourceArn", "InputColumns" ], "type": "object" }, "AWS::QuickSight::DataSet.StringDatasetParameter": { "additionalProperties": false, "properties": { "DefaultValues": { "$ref": "#/definitions/AWS::QuickSight::DataSet.StringDatasetParameterDefaultValues" }, "Id": { "type": "string" }, "Name": { "type": "string" }, "ValueType": { "type": "string" } }, "required": [ "Id", "Name", "ValueType" ], "type": "object" }, "AWS::QuickSight::DataSet.StringDatasetParameterDefaultValues": { "additionalProperties": false, "properties": { "StaticValues": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::DataSet.TagColumnOperation": { "additionalProperties": false, "properties": { "ColumnName": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/AWS::QuickSight::DataSet.ColumnTag" }, "type": "array" } }, "required": [ "ColumnName", "Tags" ], "type": "object" }, "AWS::QuickSight::DataSet.TransformOperation": { "additionalProperties": false, "properties": { "CastColumnTypeOperation": { "$ref": "#/definitions/AWS::QuickSight::DataSet.CastColumnTypeOperation" }, "CreateColumnsOperation": { "$ref": "#/definitions/AWS::QuickSight::DataSet.CreateColumnsOperation" }, "FilterOperation": { "$ref": "#/definitions/AWS::QuickSight::DataSet.FilterOperation" }, "OverrideDatasetParameterOperation": { "$ref": "#/definitions/AWS::QuickSight::DataSet.OverrideDatasetParameterOperation" }, "ProjectOperation": { "$ref": "#/definitions/AWS::QuickSight::DataSet.ProjectOperation" }, "RenameColumnOperation": { "$ref": "#/definitions/AWS::QuickSight::DataSet.RenameColumnOperation" }, "TagColumnOperation": { "$ref": "#/definitions/AWS::QuickSight::DataSet.TagColumnOperation" } }, "type": "object" }, "AWS::QuickSight::DataSet.UploadSettings": { "additionalProperties": false, "properties": { "ContainsHeader": { "type": "boolean" }, "Delimiter": { "type": "string" }, "Format": { "type": "string" }, "StartFromRow": { "type": "number" }, "TextQualifier": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::DataSource": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AlternateDataSourceParameters": { "items": { "$ref": "#/definitions/AWS::QuickSight::DataSource.DataSourceParameters" }, "type": "array" }, "AwsAccountId": { "type": "string" }, "Credentials": { "$ref": "#/definitions/AWS::QuickSight::DataSource.DataSourceCredentials" }, "DataSourceId": { "type": "string" }, "DataSourceParameters": { "$ref": "#/definitions/AWS::QuickSight::DataSource.DataSourceParameters" }, "ErrorInfo": { "$ref": "#/definitions/AWS::QuickSight::DataSource.DataSourceErrorInfo" }, "Name": { "type": "string" }, "Permissions": { "items": { "$ref": "#/definitions/AWS::QuickSight::DataSource.ResourcePermission" }, "type": "array" }, "SslProperties": { "$ref": "#/definitions/AWS::QuickSight::DataSource.SslProperties" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "Type": { "type": "string" }, "VpcConnectionProperties": { "$ref": "#/definitions/AWS::QuickSight::DataSource.VpcConnectionProperties" } }, "type": "object" }, "Type": { "enum": [ "AWS::QuickSight::DataSource" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::QuickSight::DataSource.AmazonElasticsearchParameters": { "additionalProperties": false, "properties": { "Domain": { "type": "string" } }, "required": [ "Domain" ], "type": "object" }, "AWS::QuickSight::DataSource.AmazonOpenSearchParameters": { "additionalProperties": false, "properties": { "Domain": { "type": "string" } }, "required": [ "Domain" ], "type": "object" }, "AWS::QuickSight::DataSource.AthenaParameters": { "additionalProperties": false, "properties": { "RoleArn": { "type": "string" }, "WorkGroup": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::DataSource.AuroraParameters": { "additionalProperties": false, "properties": { "Database": { "type": "string" }, "Host": { "type": "string" }, "Port": { "type": "number" } }, "required": [ "Database", "Host", "Port" ], "type": "object" }, "AWS::QuickSight::DataSource.AuroraPostgreSqlParameters": { "additionalProperties": false, "properties": { "Database": { "type": "string" }, "Host": { "type": "string" }, "Port": { "type": "number" } }, "required": [ "Database", "Host", "Port" ], "type": "object" }, "AWS::QuickSight::DataSource.CredentialPair": { "additionalProperties": false, "properties": { "AlternateDataSourceParameters": { "items": { "$ref": "#/definitions/AWS::QuickSight::DataSource.DataSourceParameters" }, "type": "array" }, "Password": { "type": "string" }, "Username": { "type": "string" } }, "required": [ "Password", "Username" ], "type": "object" }, "AWS::QuickSight::DataSource.DataSourceCredentials": { "additionalProperties": false, "properties": { "CopySourceArn": { "type": "string" }, "CredentialPair": { "$ref": "#/definitions/AWS::QuickSight::DataSource.CredentialPair" }, "SecretArn": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::DataSource.DataSourceErrorInfo": { "additionalProperties": false, "properties": { "Message": { "type": "string" }, "Type": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::DataSource.DataSourceParameters": { "additionalProperties": false, "properties": { "AmazonElasticsearchParameters": { "$ref": "#/definitions/AWS::QuickSight::DataSource.AmazonElasticsearchParameters" }, "AmazonOpenSearchParameters": { "$ref": "#/definitions/AWS::QuickSight::DataSource.AmazonOpenSearchParameters" }, "AthenaParameters": { "$ref": "#/definitions/AWS::QuickSight::DataSource.AthenaParameters" }, "AuroraParameters": { "$ref": "#/definitions/AWS::QuickSight::DataSource.AuroraParameters" }, "AuroraPostgreSqlParameters": { "$ref": "#/definitions/AWS::QuickSight::DataSource.AuroraPostgreSqlParameters" }, "DatabricksParameters": { "$ref": "#/definitions/AWS::QuickSight::DataSource.DatabricksParameters" }, "MariaDbParameters": { "$ref": "#/definitions/AWS::QuickSight::DataSource.MariaDbParameters" }, "MySqlParameters": { "$ref": "#/definitions/AWS::QuickSight::DataSource.MySqlParameters" }, "OracleParameters": { "$ref": "#/definitions/AWS::QuickSight::DataSource.OracleParameters" }, "PostgreSqlParameters": { "$ref": "#/definitions/AWS::QuickSight::DataSource.PostgreSqlParameters" }, "PrestoParameters": { "$ref": "#/definitions/AWS::QuickSight::DataSource.PrestoParameters" }, "RdsParameters": { "$ref": "#/definitions/AWS::QuickSight::DataSource.RdsParameters" }, "RedshiftParameters": { "$ref": "#/definitions/AWS::QuickSight::DataSource.RedshiftParameters" }, "S3Parameters": { "$ref": "#/definitions/AWS::QuickSight::DataSource.S3Parameters" }, "SnowflakeParameters": { "$ref": "#/definitions/AWS::QuickSight::DataSource.SnowflakeParameters" }, "SparkParameters": { "$ref": "#/definitions/AWS::QuickSight::DataSource.SparkParameters" }, "SqlServerParameters": { "$ref": "#/definitions/AWS::QuickSight::DataSource.SqlServerParameters" }, "TeradataParameters": { "$ref": "#/definitions/AWS::QuickSight::DataSource.TeradataParameters" } }, "type": "object" }, "AWS::QuickSight::DataSource.DatabricksParameters": { "additionalProperties": false, "properties": { "Host": { "type": "string" }, "Port": { "type": "number" }, "SqlEndpointPath": { "type": "string" } }, "required": [ "Host", "Port", "SqlEndpointPath" ], "type": "object" }, "AWS::QuickSight::DataSource.ManifestFileLocation": { "additionalProperties": false, "properties": { "Bucket": { "type": "string" }, "Key": { "type": "string" } }, "required": [ "Bucket", "Key" ], "type": "object" }, "AWS::QuickSight::DataSource.MariaDbParameters": { "additionalProperties": false, "properties": { "Database": { "type": "string" }, "Host": { "type": "string" }, "Port": { "type": "number" } }, "required": [ "Database", "Host", "Port" ], "type": "object" }, "AWS::QuickSight::DataSource.MySqlParameters": { "additionalProperties": false, "properties": { "Database": { "type": "string" }, "Host": { "type": "string" }, "Port": { "type": "number" } }, "required": [ "Database", "Host", "Port" ], "type": "object" }, "AWS::QuickSight::DataSource.OracleParameters": { "additionalProperties": false, "properties": { "Database": { "type": "string" }, "Host": { "type": "string" }, "Port": { "type": "number" } }, "required": [ "Database", "Host", "Port" ], "type": "object" }, "AWS::QuickSight::DataSource.PostgreSqlParameters": { "additionalProperties": false, "properties": { "Database": { "type": "string" }, "Host": { "type": "string" }, "Port": { "type": "number" } }, "required": [ "Database", "Host", "Port" ], "type": "object" }, "AWS::QuickSight::DataSource.PrestoParameters": { "additionalProperties": false, "properties": { "Catalog": { "type": "string" }, "Host": { "type": "string" }, "Port": { "type": "number" } }, "required": [ "Catalog", "Host", "Port" ], "type": "object" }, "AWS::QuickSight::DataSource.RdsParameters": { "additionalProperties": false, "properties": { "Database": { "type": "string" }, "InstanceId": { "type": "string" } }, "required": [ "Database", "InstanceId" ], "type": "object" }, "AWS::QuickSight::DataSource.RedshiftParameters": { "additionalProperties": false, "properties": { "ClusterId": { "type": "string" }, "Database": { "type": "string" }, "Host": { "type": "string" }, "Port": { "type": "number" } }, "required": [ "Database" ], "type": "object" }, "AWS::QuickSight::DataSource.ResourcePermission": { "additionalProperties": false, "properties": { "Actions": { "items": { "type": "string" }, "type": "array" }, "Principal": { "type": "string" } }, "required": [ "Actions", "Principal" ], "type": "object" }, "AWS::QuickSight::DataSource.S3Parameters": { "additionalProperties": false, "properties": { "ManifestFileLocation": { "$ref": "#/definitions/AWS::QuickSight::DataSource.ManifestFileLocation" }, "RoleArn": { "type": "string" } }, "required": [ "ManifestFileLocation" ], "type": "object" }, "AWS::QuickSight::DataSource.SnowflakeParameters": { "additionalProperties": false, "properties": { "Database": { "type": "string" }, "Host": { "type": "string" }, "Warehouse": { "type": "string" } }, "required": [ "Database", "Host", "Warehouse" ], "type": "object" }, "AWS::QuickSight::DataSource.SparkParameters": { "additionalProperties": false, "properties": { "Host": { "type": "string" }, "Port": { "type": "number" } }, "required": [ "Host", "Port" ], "type": "object" }, "AWS::QuickSight::DataSource.SqlServerParameters": { "additionalProperties": false, "properties": { "Database": { "type": "string" }, "Host": { "type": "string" }, "Port": { "type": "number" } }, "required": [ "Database", "Host", "Port" ], "type": "object" }, "AWS::QuickSight::DataSource.SslProperties": { "additionalProperties": false, "properties": { "DisableSsl": { "type": "boolean" } }, "type": "object" }, "AWS::QuickSight::DataSource.TeradataParameters": { "additionalProperties": false, "properties": { "Database": { "type": "string" }, "Host": { "type": "string" }, "Port": { "type": "number" } }, "required": [ "Database", "Host", "Port" ], "type": "object" }, "AWS::QuickSight::DataSource.VpcConnectionProperties": { "additionalProperties": false, "properties": { "VpcConnectionArn": { "type": "string" } }, "required": [ "VpcConnectionArn" ], "type": "object" }, "AWS::QuickSight::RefreshSchedule": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AwsAccountId": { "type": "string" }, "DataSetId": { "type": "string" }, "Schedule": { "$ref": "#/definitions/AWS::QuickSight::RefreshSchedule.RefreshScheduleMap" } }, "type": "object" }, "Type": { "enum": [ "AWS::QuickSight::RefreshSchedule" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::QuickSight::RefreshSchedule.RefreshOnDay": { "additionalProperties": false, "properties": { "DayOfMonth": { "type": "string" }, "DayOfWeek": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::RefreshSchedule.RefreshScheduleMap": { "additionalProperties": false, "properties": { "RefreshType": { "type": "string" }, "ScheduleFrequency": { "$ref": "#/definitions/AWS::QuickSight::RefreshSchedule.ScheduleFrequency" }, "ScheduleId": { "type": "string" }, "StartAfterDateTime": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::RefreshSchedule.ScheduleFrequency": { "additionalProperties": false, "properties": { "Interval": { "type": "string" }, "RefreshOnDay": { "$ref": "#/definitions/AWS::QuickSight::RefreshSchedule.RefreshOnDay" }, "TimeOfTheDay": { "type": "string" }, "TimeZone": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Template": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AwsAccountId": { "type": "string" }, "Definition": { "$ref": "#/definitions/AWS::QuickSight::Template.TemplateVersionDefinition" }, "Name": { "type": "string" }, "Permissions": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.ResourcePermission" }, "type": "array" }, "SourceEntity": { "$ref": "#/definitions/AWS::QuickSight::Template.TemplateSourceEntity" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "TemplateId": { "type": "string" }, "VersionDescription": { "type": "string" } }, "required": [ "AwsAccountId", "TemplateId" ], "type": "object" }, "Type": { "enum": [ "AWS::QuickSight::Template" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::QuickSight::Template.AggregationFunction": { "additionalProperties": false, "properties": { "CategoricalAggregationFunction": { "type": "string" }, "DateAggregationFunction": { "type": "string" }, "NumericalAggregationFunction": { "$ref": "#/definitions/AWS::QuickSight::Template.NumericalAggregationFunction" } }, "type": "object" }, "AWS::QuickSight::Template.AggregationSortConfiguration": { "additionalProperties": false, "properties": { "AggregationFunction": { "$ref": "#/definitions/AWS::QuickSight::Template.AggregationFunction" }, "Column": { "$ref": "#/definitions/AWS::QuickSight::Template.ColumnIdentifier" }, "SortDirection": { "type": "string" } }, "required": [ "Column", "SortDirection" ], "type": "object" }, "AWS::QuickSight::Template.AnalysisDefaults": { "additionalProperties": false, "properties": { "DefaultNewSheetConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Template.DefaultNewSheetConfiguration" } }, "required": [ "DefaultNewSheetConfiguration" ], "type": "object" }, "AWS::QuickSight::Template.AnchorDateConfiguration": { "additionalProperties": false, "properties": { "AnchorOption": { "type": "string" }, "ParameterName": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Template.ArcAxisConfiguration": { "additionalProperties": false, "properties": { "Range": { "$ref": "#/definitions/AWS::QuickSight::Template.ArcAxisDisplayRange" }, "ReserveRange": { "type": "number" } }, "type": "object" }, "AWS::QuickSight::Template.ArcAxisDisplayRange": { "additionalProperties": false, "properties": { "Max": { "type": "number" }, "Min": { "type": "number" } }, "type": "object" }, "AWS::QuickSight::Template.ArcConfiguration": { "additionalProperties": false, "properties": { "ArcAngle": { "type": "number" }, "ArcThickness": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Template.ArcOptions": { "additionalProperties": false, "properties": { "ArcThickness": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Template.AxisDataOptions": { "additionalProperties": false, "properties": { "DateAxisOptions": { "$ref": "#/definitions/AWS::QuickSight::Template.DateAxisOptions" }, "NumericAxisOptions": { "$ref": "#/definitions/AWS::QuickSight::Template.NumericAxisOptions" } }, "type": "object" }, "AWS::QuickSight::Template.AxisDisplayMinMaxRange": { "additionalProperties": false, "properties": { "Maximum": { "type": "number" }, "Minimum": { "type": "number" } }, "type": "object" }, "AWS::QuickSight::Template.AxisDisplayOptions": { "additionalProperties": false, "properties": { "AxisLineVisibility": { "type": "string" }, "AxisOffset": { "type": "string" }, "DataOptions": { "$ref": "#/definitions/AWS::QuickSight::Template.AxisDataOptions" }, "GridLineVisibility": { "type": "string" }, "ScrollbarOptions": { "$ref": "#/definitions/AWS::QuickSight::Template.ScrollBarOptions" }, "TickLabelOptions": { "$ref": "#/definitions/AWS::QuickSight::Template.AxisTickLabelOptions" } }, "type": "object" }, "AWS::QuickSight::Template.AxisDisplayRange": { "additionalProperties": false, "properties": { "DataDriven": { "type": "object" }, "MinMax": { "$ref": "#/definitions/AWS::QuickSight::Template.AxisDisplayMinMaxRange" } }, "type": "object" }, "AWS::QuickSight::Template.AxisLabelOptions": { "additionalProperties": false, "properties": { "ApplyTo": { "$ref": "#/definitions/AWS::QuickSight::Template.AxisLabelReferenceOptions" }, "CustomLabel": { "type": "string" }, "FontConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Template.FontConfiguration" } }, "type": "object" }, "AWS::QuickSight::Template.AxisLabelReferenceOptions": { "additionalProperties": false, "properties": { "Column": { "$ref": "#/definitions/AWS::QuickSight::Template.ColumnIdentifier" }, "FieldId": { "type": "string" } }, "required": [ "Column", "FieldId" ], "type": "object" }, "AWS::QuickSight::Template.AxisLinearScale": { "additionalProperties": false, "properties": { "StepCount": { "type": "number" }, "StepSize": { "type": "number" } }, "type": "object" }, "AWS::QuickSight::Template.AxisLogarithmicScale": { "additionalProperties": false, "properties": { "Base": { "type": "number" } }, "type": "object" }, "AWS::QuickSight::Template.AxisScale": { "additionalProperties": false, "properties": { "Linear": { "$ref": "#/definitions/AWS::QuickSight::Template.AxisLinearScale" }, "Logarithmic": { "$ref": "#/definitions/AWS::QuickSight::Template.AxisLogarithmicScale" } }, "type": "object" }, "AWS::QuickSight::Template.AxisTickLabelOptions": { "additionalProperties": false, "properties": { "LabelOptions": { "$ref": "#/definitions/AWS::QuickSight::Template.LabelOptions" }, "RotationAngle": { "type": "number" } }, "type": "object" }, "AWS::QuickSight::Template.BarChartAggregatedFieldWells": { "additionalProperties": false, "properties": { "Category": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.DimensionField" }, "type": "array" }, "Colors": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.DimensionField" }, "type": "array" }, "SmallMultiples": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.DimensionField" }, "type": "array" }, "Values": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.MeasureField" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Template.BarChartConfiguration": { "additionalProperties": false, "properties": { "BarsArrangement": { "type": "string" }, "CategoryAxis": { "$ref": "#/definitions/AWS::QuickSight::Template.AxisDisplayOptions" }, "CategoryLabelOptions": { "$ref": "#/definitions/AWS::QuickSight::Template.ChartAxisLabelOptions" }, "ColorLabelOptions": { "$ref": "#/definitions/AWS::QuickSight::Template.ChartAxisLabelOptions" }, "ContributionAnalysisDefaults": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.ContributionAnalysisDefault" }, "type": "array" }, "DataLabels": { "$ref": "#/definitions/AWS::QuickSight::Template.DataLabelOptions" }, "FieldWells": { "$ref": "#/definitions/AWS::QuickSight::Template.BarChartFieldWells" }, "Legend": { "$ref": "#/definitions/AWS::QuickSight::Template.LegendOptions" }, "Orientation": { "type": "string" }, "ReferenceLines": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.ReferenceLine" }, "type": "array" }, "SmallMultiplesOptions": { "$ref": "#/definitions/AWS::QuickSight::Template.SmallMultiplesOptions" }, "SortConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Template.BarChartSortConfiguration" }, "Tooltip": { "$ref": "#/definitions/AWS::QuickSight::Template.TooltipOptions" }, "ValueAxis": { "$ref": "#/definitions/AWS::QuickSight::Template.AxisDisplayOptions" }, "ValueLabelOptions": { "$ref": "#/definitions/AWS::QuickSight::Template.ChartAxisLabelOptions" }, "VisualPalette": { "$ref": "#/definitions/AWS::QuickSight::Template.VisualPalette" } }, "type": "object" }, "AWS::QuickSight::Template.BarChartFieldWells": { "additionalProperties": false, "properties": { "BarChartAggregatedFieldWells": { "$ref": "#/definitions/AWS::QuickSight::Template.BarChartAggregatedFieldWells" } }, "type": "object" }, "AWS::QuickSight::Template.BarChartSortConfiguration": { "additionalProperties": false, "properties": { "CategoryItemsLimit": { "$ref": "#/definitions/AWS::QuickSight::Template.ItemsLimitConfiguration" }, "CategorySort": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.FieldSortOptions" }, "type": "array" }, "ColorItemsLimit": { "$ref": "#/definitions/AWS::QuickSight::Template.ItemsLimitConfiguration" }, "ColorSort": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.FieldSortOptions" }, "type": "array" }, "SmallMultiplesLimitConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Template.ItemsLimitConfiguration" }, "SmallMultiplesSort": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.FieldSortOptions" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Template.BarChartVisual": { "additionalProperties": false, "properties": { "Actions": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.VisualCustomAction" }, "type": "array" }, "ChartConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Template.BarChartConfiguration" }, "ColumnHierarchies": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.ColumnHierarchy" }, "type": "array" }, "Subtitle": { "$ref": "#/definitions/AWS::QuickSight::Template.VisualSubtitleLabelOptions" }, "Title": { "$ref": "#/definitions/AWS::QuickSight::Template.VisualTitleLabelOptions" }, "VisualId": { "type": "string" } }, "required": [ "VisualId" ], "type": "object" }, "AWS::QuickSight::Template.BinCountOptions": { "additionalProperties": false, "properties": { "Value": { "type": "number" } }, "type": "object" }, "AWS::QuickSight::Template.BinWidthOptions": { "additionalProperties": false, "properties": { "BinCountLimit": { "type": "number" }, "Value": { "type": "number" } }, "type": "object" }, "AWS::QuickSight::Template.BodySectionConfiguration": { "additionalProperties": false, "properties": { "Content": { "$ref": "#/definitions/AWS::QuickSight::Template.BodySectionContent" }, "PageBreakConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Template.SectionPageBreakConfiguration" }, "SectionId": { "type": "string" }, "Style": { "$ref": "#/definitions/AWS::QuickSight::Template.SectionStyle" } }, "required": [ "Content", "SectionId" ], "type": "object" }, "AWS::QuickSight::Template.BodySectionContent": { "additionalProperties": false, "properties": { "Layout": { "$ref": "#/definitions/AWS::QuickSight::Template.SectionLayoutConfiguration" } }, "type": "object" }, "AWS::QuickSight::Template.BoxPlotAggregatedFieldWells": { "additionalProperties": false, "properties": { "GroupBy": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.DimensionField" }, "type": "array" }, "Values": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.MeasureField" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Template.BoxPlotChartConfiguration": { "additionalProperties": false, "properties": { "BoxPlotOptions": { "$ref": "#/definitions/AWS::QuickSight::Template.BoxPlotOptions" }, "CategoryAxis": { "$ref": "#/definitions/AWS::QuickSight::Template.AxisDisplayOptions" }, "CategoryLabelOptions": { "$ref": "#/definitions/AWS::QuickSight::Template.ChartAxisLabelOptions" }, "FieldWells": { "$ref": "#/definitions/AWS::QuickSight::Template.BoxPlotFieldWells" }, "Legend": { "$ref": "#/definitions/AWS::QuickSight::Template.LegendOptions" }, "PrimaryYAxisDisplayOptions": { "$ref": "#/definitions/AWS::QuickSight::Template.AxisDisplayOptions" }, "PrimaryYAxisLabelOptions": { "$ref": "#/definitions/AWS::QuickSight::Template.ChartAxisLabelOptions" }, "ReferenceLines": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.ReferenceLine" }, "type": "array" }, "SortConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Template.BoxPlotSortConfiguration" }, "Tooltip": { "$ref": "#/definitions/AWS::QuickSight::Template.TooltipOptions" }, "VisualPalette": { "$ref": "#/definitions/AWS::QuickSight::Template.VisualPalette" } }, "type": "object" }, "AWS::QuickSight::Template.BoxPlotFieldWells": { "additionalProperties": false, "properties": { "BoxPlotAggregatedFieldWells": { "$ref": "#/definitions/AWS::QuickSight::Template.BoxPlotAggregatedFieldWells" } }, "type": "object" }, "AWS::QuickSight::Template.BoxPlotOptions": { "additionalProperties": false, "properties": { "AllDataPointsVisibility": { "type": "string" }, "OutlierVisibility": { "type": "string" }, "StyleOptions": { "$ref": "#/definitions/AWS::QuickSight::Template.BoxPlotStyleOptions" } }, "type": "object" }, "AWS::QuickSight::Template.BoxPlotSortConfiguration": { "additionalProperties": false, "properties": { "CategorySort": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.FieldSortOptions" }, "type": "array" }, "PaginationConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Template.PaginationConfiguration" } }, "type": "object" }, "AWS::QuickSight::Template.BoxPlotStyleOptions": { "additionalProperties": false, "properties": { "FillStyle": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Template.BoxPlotVisual": { "additionalProperties": false, "properties": { "Actions": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.VisualCustomAction" }, "type": "array" }, "ChartConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Template.BoxPlotChartConfiguration" }, "ColumnHierarchies": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.ColumnHierarchy" }, "type": "array" }, "Subtitle": { "$ref": "#/definitions/AWS::QuickSight::Template.VisualSubtitleLabelOptions" }, "Title": { "$ref": "#/definitions/AWS::QuickSight::Template.VisualTitleLabelOptions" }, "VisualId": { "type": "string" } }, "required": [ "VisualId" ], "type": "object" }, "AWS::QuickSight::Template.CalculatedField": { "additionalProperties": false, "properties": { "DataSetIdentifier": { "type": "string" }, "Expression": { "type": "string" }, "Name": { "type": "string" } }, "required": [ "DataSetIdentifier", "Expression", "Name" ], "type": "object" }, "AWS::QuickSight::Template.CalculatedMeasureField": { "additionalProperties": false, "properties": { "Expression": { "type": "string" }, "FieldId": { "type": "string" } }, "required": [ "Expression", "FieldId" ], "type": "object" }, "AWS::QuickSight::Template.CascadingControlConfiguration": { "additionalProperties": false, "properties": { "SourceControls": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.CascadingControlSource" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Template.CascadingControlSource": { "additionalProperties": false, "properties": { "ColumnToMatch": { "$ref": "#/definitions/AWS::QuickSight::Template.ColumnIdentifier" }, "SourceSheetControlId": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Template.CategoricalDimensionField": { "additionalProperties": false, "properties": { "Column": { "$ref": "#/definitions/AWS::QuickSight::Template.ColumnIdentifier" }, "FieldId": { "type": "string" }, "FormatConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Template.StringFormatConfiguration" }, "HierarchyId": { "type": "string" } }, "required": [ "Column", "FieldId" ], "type": "object" }, "AWS::QuickSight::Template.CategoricalMeasureField": { "additionalProperties": false, "properties": { "AggregationFunction": { "type": "string" }, "Column": { "$ref": "#/definitions/AWS::QuickSight::Template.ColumnIdentifier" }, "FieldId": { "type": "string" }, "FormatConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Template.StringFormatConfiguration" } }, "required": [ "Column", "FieldId" ], "type": "object" }, "AWS::QuickSight::Template.CategoryDrillDownFilter": { "additionalProperties": false, "properties": { "CategoryValues": { "items": { "type": "string" }, "type": "array" }, "Column": { "$ref": "#/definitions/AWS::QuickSight::Template.ColumnIdentifier" } }, "required": [ "CategoryValues", "Column" ], "type": "object" }, "AWS::QuickSight::Template.CategoryFilter": { "additionalProperties": false, "properties": { "Column": { "$ref": "#/definitions/AWS::QuickSight::Template.ColumnIdentifier" }, "Configuration": { "$ref": "#/definitions/AWS::QuickSight::Template.CategoryFilterConfiguration" }, "FilterId": { "type": "string" } }, "required": [ "Column", "Configuration", "FilterId" ], "type": "object" }, "AWS::QuickSight::Template.CategoryFilterConfiguration": { "additionalProperties": false, "properties": { "CustomFilterConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Template.CustomFilterConfiguration" }, "CustomFilterListConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Template.CustomFilterListConfiguration" }, "FilterListConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Template.FilterListConfiguration" } }, "type": "object" }, "AWS::QuickSight::Template.ChartAxisLabelOptions": { "additionalProperties": false, "properties": { "AxisLabelOptions": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.AxisLabelOptions" }, "type": "array" }, "SortIconVisibility": { "type": "string" }, "Visibility": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Template.ClusterMarker": { "additionalProperties": false, "properties": { "SimpleClusterMarker": { "$ref": "#/definitions/AWS::QuickSight::Template.SimpleClusterMarker" } }, "type": "object" }, "AWS::QuickSight::Template.ClusterMarkerConfiguration": { "additionalProperties": false, "properties": { "ClusterMarker": { "$ref": "#/definitions/AWS::QuickSight::Template.ClusterMarker" } }, "type": "object" }, "AWS::QuickSight::Template.ColorScale": { "additionalProperties": false, "properties": { "ColorFillType": { "type": "string" }, "Colors": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.DataColor" }, "type": "array" }, "NullValueColor": { "$ref": "#/definitions/AWS::QuickSight::Template.DataColor" } }, "required": [ "ColorFillType", "Colors" ], "type": "object" }, "AWS::QuickSight::Template.ColumnConfiguration": { "additionalProperties": false, "properties": { "Column": { "$ref": "#/definitions/AWS::QuickSight::Template.ColumnIdentifier" }, "FormatConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Template.FormatConfiguration" }, "Role": { "type": "string" } }, "required": [ "Column" ], "type": "object" }, "AWS::QuickSight::Template.ColumnGroupColumnSchema": { "additionalProperties": false, "properties": { "Name": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Template.ColumnGroupSchema": { "additionalProperties": false, "properties": { "ColumnGroupColumnSchemaList": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.ColumnGroupColumnSchema" }, "type": "array" }, "Name": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Template.ColumnHierarchy": { "additionalProperties": false, "properties": { "DateTimeHierarchy": { "$ref": "#/definitions/AWS::QuickSight::Template.DateTimeHierarchy" }, "ExplicitHierarchy": { "$ref": "#/definitions/AWS::QuickSight::Template.ExplicitHierarchy" }, "PredefinedHierarchy": { "$ref": "#/definitions/AWS::QuickSight::Template.PredefinedHierarchy" } }, "type": "object" }, "AWS::QuickSight::Template.ColumnIdentifier": { "additionalProperties": false, "properties": { "ColumnName": { "type": "string" }, "DataSetIdentifier": { "type": "string" } }, "required": [ "ColumnName", "DataSetIdentifier" ], "type": "object" }, "AWS::QuickSight::Template.ColumnSchema": { "additionalProperties": false, "properties": { "DataType": { "type": "string" }, "GeographicRole": { "type": "string" }, "Name": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Template.ColumnSort": { "additionalProperties": false, "properties": { "AggregationFunction": { "$ref": "#/definitions/AWS::QuickSight::Template.AggregationFunction" }, "Direction": { "type": "string" }, "SortBy": { "$ref": "#/definitions/AWS::QuickSight::Template.ColumnIdentifier" } }, "required": [ "Direction", "SortBy" ], "type": "object" }, "AWS::QuickSight::Template.ColumnTooltipItem": { "additionalProperties": false, "properties": { "Aggregation": { "$ref": "#/definitions/AWS::QuickSight::Template.AggregationFunction" }, "Column": { "$ref": "#/definitions/AWS::QuickSight::Template.ColumnIdentifier" }, "Label": { "type": "string" }, "Visibility": { "type": "string" } }, "required": [ "Column" ], "type": "object" }, "AWS::QuickSight::Template.ComboChartAggregatedFieldWells": { "additionalProperties": false, "properties": { "BarValues": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.MeasureField" }, "type": "array" }, "Category": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.DimensionField" }, "type": "array" }, "Colors": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.DimensionField" }, "type": "array" }, "LineValues": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.MeasureField" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Template.ComboChartConfiguration": { "additionalProperties": false, "properties": { "BarDataLabels": { "$ref": "#/definitions/AWS::QuickSight::Template.DataLabelOptions" }, "BarsArrangement": { "type": "string" }, "CategoryAxis": { "$ref": "#/definitions/AWS::QuickSight::Template.AxisDisplayOptions" }, "CategoryLabelOptions": { "$ref": "#/definitions/AWS::QuickSight::Template.ChartAxisLabelOptions" }, "ColorLabelOptions": { "$ref": "#/definitions/AWS::QuickSight::Template.ChartAxisLabelOptions" }, "FieldWells": { "$ref": "#/definitions/AWS::QuickSight::Template.ComboChartFieldWells" }, "Legend": { "$ref": "#/definitions/AWS::QuickSight::Template.LegendOptions" }, "LineDataLabels": { "$ref": "#/definitions/AWS::QuickSight::Template.DataLabelOptions" }, "PrimaryYAxisDisplayOptions": { "$ref": "#/definitions/AWS::QuickSight::Template.AxisDisplayOptions" }, "PrimaryYAxisLabelOptions": { "$ref": "#/definitions/AWS::QuickSight::Template.ChartAxisLabelOptions" }, "ReferenceLines": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.ReferenceLine" }, "type": "array" }, "SecondaryYAxisDisplayOptions": { "$ref": "#/definitions/AWS::QuickSight::Template.AxisDisplayOptions" }, "SecondaryYAxisLabelOptions": { "$ref": "#/definitions/AWS::QuickSight::Template.ChartAxisLabelOptions" }, "SortConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Template.ComboChartSortConfiguration" }, "Tooltip": { "$ref": "#/definitions/AWS::QuickSight::Template.TooltipOptions" }, "VisualPalette": { "$ref": "#/definitions/AWS::QuickSight::Template.VisualPalette" } }, "type": "object" }, "AWS::QuickSight::Template.ComboChartFieldWells": { "additionalProperties": false, "properties": { "ComboChartAggregatedFieldWells": { "$ref": "#/definitions/AWS::QuickSight::Template.ComboChartAggregatedFieldWells" } }, "type": "object" }, "AWS::QuickSight::Template.ComboChartSortConfiguration": { "additionalProperties": false, "properties": { "CategoryItemsLimit": { "$ref": "#/definitions/AWS::QuickSight::Template.ItemsLimitConfiguration" }, "CategorySort": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.FieldSortOptions" }, "type": "array" }, "ColorItemsLimit": { "$ref": "#/definitions/AWS::QuickSight::Template.ItemsLimitConfiguration" }, "ColorSort": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.FieldSortOptions" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Template.ComboChartVisual": { "additionalProperties": false, "properties": { "Actions": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.VisualCustomAction" }, "type": "array" }, "ChartConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Template.ComboChartConfiguration" }, "ColumnHierarchies": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.ColumnHierarchy" }, "type": "array" }, "Subtitle": { "$ref": "#/definitions/AWS::QuickSight::Template.VisualSubtitleLabelOptions" }, "Title": { "$ref": "#/definitions/AWS::QuickSight::Template.VisualTitleLabelOptions" }, "VisualId": { "type": "string" } }, "required": [ "VisualId" ], "type": "object" }, "AWS::QuickSight::Template.ComparisonConfiguration": { "additionalProperties": false, "properties": { "ComparisonFormat": { "$ref": "#/definitions/AWS::QuickSight::Template.ComparisonFormatConfiguration" }, "ComparisonMethod": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Template.ComparisonFormatConfiguration": { "additionalProperties": false, "properties": { "NumberDisplayFormatConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Template.NumberDisplayFormatConfiguration" }, "PercentageDisplayFormatConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Template.PercentageDisplayFormatConfiguration" } }, "type": "object" }, "AWS::QuickSight::Template.Computation": { "additionalProperties": false, "properties": { "Forecast": { "$ref": "#/definitions/AWS::QuickSight::Template.ForecastComputation" }, "GrowthRate": { "$ref": "#/definitions/AWS::QuickSight::Template.GrowthRateComputation" }, "MaximumMinimum": { "$ref": "#/definitions/AWS::QuickSight::Template.MaximumMinimumComputation" }, "MetricComparison": { "$ref": "#/definitions/AWS::QuickSight::Template.MetricComparisonComputation" }, "PeriodOverPeriod": { "$ref": "#/definitions/AWS::QuickSight::Template.PeriodOverPeriodComputation" }, "PeriodToDate": { "$ref": "#/definitions/AWS::QuickSight::Template.PeriodToDateComputation" }, "TopBottomMovers": { "$ref": "#/definitions/AWS::QuickSight::Template.TopBottomMoversComputation" }, "TopBottomRanked": { "$ref": "#/definitions/AWS::QuickSight::Template.TopBottomRankedComputation" }, "TotalAggregation": { "$ref": "#/definitions/AWS::QuickSight::Template.TotalAggregationComputation" }, "UniqueValues": { "$ref": "#/definitions/AWS::QuickSight::Template.UniqueValuesComputation" } }, "type": "object" }, "AWS::QuickSight::Template.ConditionalFormattingColor": { "additionalProperties": false, "properties": { "Gradient": { "$ref": "#/definitions/AWS::QuickSight::Template.ConditionalFormattingGradientColor" }, "Solid": { "$ref": "#/definitions/AWS::QuickSight::Template.ConditionalFormattingSolidColor" } }, "type": "object" }, "AWS::QuickSight::Template.ConditionalFormattingCustomIconCondition": { "additionalProperties": false, "properties": { "Color": { "type": "string" }, "DisplayConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Template.ConditionalFormattingIconDisplayConfiguration" }, "Expression": { "type": "string" }, "IconOptions": { "$ref": "#/definitions/AWS::QuickSight::Template.ConditionalFormattingCustomIconOptions" } }, "required": [ "Expression", "IconOptions" ], "type": "object" }, "AWS::QuickSight::Template.ConditionalFormattingCustomIconOptions": { "additionalProperties": false, "properties": { "Icon": { "type": "string" }, "UnicodeIcon": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Template.ConditionalFormattingGradientColor": { "additionalProperties": false, "properties": { "Color": { "$ref": "#/definitions/AWS::QuickSight::Template.GradientColor" }, "Expression": { "type": "string" } }, "required": [ "Color", "Expression" ], "type": "object" }, "AWS::QuickSight::Template.ConditionalFormattingIcon": { "additionalProperties": false, "properties": { "CustomCondition": { "$ref": "#/definitions/AWS::QuickSight::Template.ConditionalFormattingCustomIconCondition" }, "IconSet": { "$ref": "#/definitions/AWS::QuickSight::Template.ConditionalFormattingIconSet" } }, "type": "object" }, "AWS::QuickSight::Template.ConditionalFormattingIconDisplayConfiguration": { "additionalProperties": false, "properties": { "IconDisplayOption": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Template.ConditionalFormattingIconSet": { "additionalProperties": false, "properties": { "Expression": { "type": "string" }, "IconSetType": { "type": "string" } }, "required": [ "Expression" ], "type": "object" }, "AWS::QuickSight::Template.ConditionalFormattingSolidColor": { "additionalProperties": false, "properties": { "Color": { "type": "string" }, "Expression": { "type": "string" } }, "required": [ "Expression" ], "type": "object" }, "AWS::QuickSight::Template.ContributionAnalysisDefault": { "additionalProperties": false, "properties": { "ContributorDimensions": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.ColumnIdentifier" }, "type": "array" }, "MeasureFieldId": { "type": "string" } }, "required": [ "ContributorDimensions", "MeasureFieldId" ], "type": "object" }, "AWS::QuickSight::Template.CurrencyDisplayFormatConfiguration": { "additionalProperties": false, "properties": { "DecimalPlacesConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Template.DecimalPlacesConfiguration" }, "NegativeValueConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Template.NegativeValueConfiguration" }, "NullValueFormatConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Template.NullValueFormatConfiguration" }, "NumberScale": { "type": "string" }, "Prefix": { "type": "string" }, "SeparatorConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Template.NumericSeparatorConfiguration" }, "Suffix": { "type": "string" }, "Symbol": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Template.CustomActionFilterOperation": { "additionalProperties": false, "properties": { "SelectedFieldsConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Template.FilterOperationSelectedFieldsConfiguration" }, "TargetVisualsConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Template.FilterOperationTargetVisualsConfiguration" } }, "required": [ "SelectedFieldsConfiguration", "TargetVisualsConfiguration" ], "type": "object" }, "AWS::QuickSight::Template.CustomActionNavigationOperation": { "additionalProperties": false, "properties": { "LocalNavigationConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Template.LocalNavigationConfiguration" } }, "type": "object" }, "AWS::QuickSight::Template.CustomActionSetParametersOperation": { "additionalProperties": false, "properties": { "ParameterValueConfigurations": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.SetParameterValueConfiguration" }, "type": "array" } }, "required": [ "ParameterValueConfigurations" ], "type": "object" }, "AWS::QuickSight::Template.CustomActionURLOperation": { "additionalProperties": false, "properties": { "URLTarget": { "type": "string" }, "URLTemplate": { "type": "string" } }, "required": [ "URLTarget", "URLTemplate" ], "type": "object" }, "AWS::QuickSight::Template.CustomContentConfiguration": { "additionalProperties": false, "properties": { "ContentType": { "type": "string" }, "ContentUrl": { "type": "string" }, "ImageScaling": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Template.CustomContentVisual": { "additionalProperties": false, "properties": { "Actions": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.VisualCustomAction" }, "type": "array" }, "ChartConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Template.CustomContentConfiguration" }, "DataSetIdentifier": { "type": "string" }, "Subtitle": { "$ref": "#/definitions/AWS::QuickSight::Template.VisualSubtitleLabelOptions" }, "Title": { "$ref": "#/definitions/AWS::QuickSight::Template.VisualTitleLabelOptions" }, "VisualId": { "type": "string" } }, "required": [ "DataSetIdentifier", "VisualId" ], "type": "object" }, "AWS::QuickSight::Template.CustomFilterConfiguration": { "additionalProperties": false, "properties": { "CategoryValue": { "type": "string" }, "MatchOperator": { "type": "string" }, "NullOption": { "type": "string" }, "ParameterName": { "type": "string" }, "SelectAllOptions": { "type": "string" } }, "required": [ "MatchOperator", "NullOption" ], "type": "object" }, "AWS::QuickSight::Template.CustomFilterListConfiguration": { "additionalProperties": false, "properties": { "CategoryValues": { "items": { "type": "string" }, "type": "array" }, "MatchOperator": { "type": "string" }, "NullOption": { "type": "string" }, "SelectAllOptions": { "type": "string" } }, "required": [ "MatchOperator", "NullOption" ], "type": "object" }, "AWS::QuickSight::Template.CustomNarrativeOptions": { "additionalProperties": false, "properties": { "Narrative": { "type": "string" } }, "required": [ "Narrative" ], "type": "object" }, "AWS::QuickSight::Template.CustomParameterValues": { "additionalProperties": false, "properties": { "DateTimeValues": { "items": { "type": "string" }, "type": "array" }, "DecimalValues": { "items": { "type": "number" }, "type": "array" }, "IntegerValues": { "items": { "type": "number" }, "type": "array" }, "StringValues": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Template.CustomValuesConfiguration": { "additionalProperties": false, "properties": { "CustomValues": { "$ref": "#/definitions/AWS::QuickSight::Template.CustomParameterValues" }, "IncludeNullValue": { "type": "boolean" } }, "required": [ "CustomValues" ], "type": "object" }, "AWS::QuickSight::Template.DataBarsOptions": { "additionalProperties": false, "properties": { "FieldId": { "type": "string" }, "NegativeColor": { "type": "string" }, "PositiveColor": { "type": "string" } }, "required": [ "FieldId" ], "type": "object" }, "AWS::QuickSight::Template.DataColor": { "additionalProperties": false, "properties": { "Color": { "type": "string" }, "DataValue": { "type": "number" } }, "type": "object" }, "AWS::QuickSight::Template.DataFieldSeriesItem": { "additionalProperties": false, "properties": { "AxisBinding": { "type": "string" }, "FieldId": { "type": "string" }, "FieldValue": { "type": "string" }, "Settings": { "$ref": "#/definitions/AWS::QuickSight::Template.LineChartSeriesSettings" } }, "required": [ "AxisBinding", "FieldId" ], "type": "object" }, "AWS::QuickSight::Template.DataLabelOptions": { "additionalProperties": false, "properties": { "CategoryLabelVisibility": { "type": "string" }, "DataLabelTypes": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.DataLabelType" }, "type": "array" }, "LabelColor": { "type": "string" }, "LabelContent": { "type": "string" }, "LabelFontConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Template.FontConfiguration" }, "MeasureLabelVisibility": { "type": "string" }, "Overlap": { "type": "string" }, "Position": { "type": "string" }, "TotalsVisibility": { "type": "string" }, "Visibility": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Template.DataLabelType": { "additionalProperties": false, "properties": { "DataPathLabelType": { "$ref": "#/definitions/AWS::QuickSight::Template.DataPathLabelType" }, "FieldLabelType": { "$ref": "#/definitions/AWS::QuickSight::Template.FieldLabelType" }, "MaximumLabelType": { "$ref": "#/definitions/AWS::QuickSight::Template.MaximumLabelType" }, "MinimumLabelType": { "$ref": "#/definitions/AWS::QuickSight::Template.MinimumLabelType" }, "RangeEndsLabelType": { "$ref": "#/definitions/AWS::QuickSight::Template.RangeEndsLabelType" } }, "type": "object" }, "AWS::QuickSight::Template.DataPathColor": { "additionalProperties": false, "properties": { "Color": { "type": "string" }, "Element": { "$ref": "#/definitions/AWS::QuickSight::Template.DataPathValue" }, "TimeGranularity": { "type": "string" } }, "required": [ "Color", "Element" ], "type": "object" }, "AWS::QuickSight::Template.DataPathLabelType": { "additionalProperties": false, "properties": { "FieldId": { "type": "string" }, "FieldValue": { "type": "string" }, "Visibility": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Template.DataPathSort": { "additionalProperties": false, "properties": { "Direction": { "type": "string" }, "SortPaths": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.DataPathValue" }, "type": "array" } }, "required": [ "Direction", "SortPaths" ], "type": "object" }, "AWS::QuickSight::Template.DataPathValue": { "additionalProperties": false, "properties": { "FieldId": { "type": "string" }, "FieldValue": { "type": "string" } }, "required": [ "FieldId", "FieldValue" ], "type": "object" }, "AWS::QuickSight::Template.DataSetConfiguration": { "additionalProperties": false, "properties": { "ColumnGroupSchemaList": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.ColumnGroupSchema" }, "type": "array" }, "DataSetSchema": { "$ref": "#/definitions/AWS::QuickSight::Template.DataSetSchema" }, "Placeholder": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Template.DataSetReference": { "additionalProperties": false, "properties": { "DataSetArn": { "type": "string" }, "DataSetPlaceholder": { "type": "string" } }, "required": [ "DataSetArn", "DataSetPlaceholder" ], "type": "object" }, "AWS::QuickSight::Template.DataSetSchema": { "additionalProperties": false, "properties": { "ColumnSchemaList": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.ColumnSchema" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Template.DateAxisOptions": { "additionalProperties": false, "properties": { "MissingDateVisibility": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Template.DateDimensionField": { "additionalProperties": false, "properties": { "Column": { "$ref": "#/definitions/AWS::QuickSight::Template.ColumnIdentifier" }, "DateGranularity": { "type": "string" }, "FieldId": { "type": "string" }, "FormatConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Template.DateTimeFormatConfiguration" }, "HierarchyId": { "type": "string" } }, "required": [ "Column", "FieldId" ], "type": "object" }, "AWS::QuickSight::Template.DateMeasureField": { "additionalProperties": false, "properties": { "AggregationFunction": { "type": "string" }, "Column": { "$ref": "#/definitions/AWS::QuickSight::Template.ColumnIdentifier" }, "FieldId": { "type": "string" }, "FormatConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Template.DateTimeFormatConfiguration" } }, "required": [ "Column", "FieldId" ], "type": "object" }, "AWS::QuickSight::Template.DateTimeDefaultValues": { "additionalProperties": false, "properties": { "DynamicValue": { "$ref": "#/definitions/AWS::QuickSight::Template.DynamicDefaultValue" }, "RollingDate": { "$ref": "#/definitions/AWS::QuickSight::Template.RollingDateConfiguration" }, "StaticValues": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Template.DateTimeFormatConfiguration": { "additionalProperties": false, "properties": { "DateTimeFormat": { "type": "string" }, "NullValueFormatConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Template.NullValueFormatConfiguration" }, "NumericFormatConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Template.NumericFormatConfiguration" } }, "type": "object" }, "AWS::QuickSight::Template.DateTimeHierarchy": { "additionalProperties": false, "properties": { "DrillDownFilters": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.DrillDownFilter" }, "type": "array" }, "HierarchyId": { "type": "string" } }, "required": [ "HierarchyId" ], "type": "object" }, "AWS::QuickSight::Template.DateTimeParameterDeclaration": { "additionalProperties": false, "properties": { "DefaultValues": { "$ref": "#/definitions/AWS::QuickSight::Template.DateTimeDefaultValues" }, "MappedDataSetParameters": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.MappedDataSetParameter" }, "type": "array" }, "Name": { "type": "string" }, "TimeGranularity": { "type": "string" }, "ValueWhenUnset": { "$ref": "#/definitions/AWS::QuickSight::Template.DateTimeValueWhenUnsetConfiguration" } }, "required": [ "Name" ], "type": "object" }, "AWS::QuickSight::Template.DateTimePickerControlDisplayOptions": { "additionalProperties": false, "properties": { "DateTimeFormat": { "type": "string" }, "TitleOptions": { "$ref": "#/definitions/AWS::QuickSight::Template.LabelOptions" } }, "type": "object" }, "AWS::QuickSight::Template.DateTimeValueWhenUnsetConfiguration": { "additionalProperties": false, "properties": { "CustomValue": { "type": "string" }, "ValueWhenUnsetOption": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Template.DecimalDefaultValues": { "additionalProperties": false, "properties": { "DynamicValue": { "$ref": "#/definitions/AWS::QuickSight::Template.DynamicDefaultValue" }, "StaticValues": { "items": { "type": "number" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Template.DecimalParameterDeclaration": { "additionalProperties": false, "properties": { "DefaultValues": { "$ref": "#/definitions/AWS::QuickSight::Template.DecimalDefaultValues" }, "MappedDataSetParameters": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.MappedDataSetParameter" }, "type": "array" }, "Name": { "type": "string" }, "ParameterValueType": { "type": "string" }, "ValueWhenUnset": { "$ref": "#/definitions/AWS::QuickSight::Template.DecimalValueWhenUnsetConfiguration" } }, "required": [ "Name", "ParameterValueType" ], "type": "object" }, "AWS::QuickSight::Template.DecimalPlacesConfiguration": { "additionalProperties": false, "properties": { "DecimalPlaces": { "type": "number" } }, "required": [ "DecimalPlaces" ], "type": "object" }, "AWS::QuickSight::Template.DecimalValueWhenUnsetConfiguration": { "additionalProperties": false, "properties": { "CustomValue": { "type": "number" }, "ValueWhenUnsetOption": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Template.DefaultFreeFormLayoutConfiguration": { "additionalProperties": false, "properties": { "CanvasSizeOptions": { "$ref": "#/definitions/AWS::QuickSight::Template.FreeFormLayoutCanvasSizeOptions" } }, "required": [ "CanvasSizeOptions" ], "type": "object" }, "AWS::QuickSight::Template.DefaultGridLayoutConfiguration": { "additionalProperties": false, "properties": { "CanvasSizeOptions": { "$ref": "#/definitions/AWS::QuickSight::Template.GridLayoutCanvasSizeOptions" } }, "required": [ "CanvasSizeOptions" ], "type": "object" }, "AWS::QuickSight::Template.DefaultInteractiveLayoutConfiguration": { "additionalProperties": false, "properties": { "FreeForm": { "$ref": "#/definitions/AWS::QuickSight::Template.DefaultFreeFormLayoutConfiguration" }, "Grid": { "$ref": "#/definitions/AWS::QuickSight::Template.DefaultGridLayoutConfiguration" } }, "type": "object" }, "AWS::QuickSight::Template.DefaultNewSheetConfiguration": { "additionalProperties": false, "properties": { "InteractiveLayoutConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Template.DefaultInteractiveLayoutConfiguration" }, "PaginatedLayoutConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Template.DefaultPaginatedLayoutConfiguration" }, "SheetContentType": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Template.DefaultPaginatedLayoutConfiguration": { "additionalProperties": false, "properties": { "SectionBased": { "$ref": "#/definitions/AWS::QuickSight::Template.DefaultSectionBasedLayoutConfiguration" } }, "type": "object" }, "AWS::QuickSight::Template.DefaultSectionBasedLayoutConfiguration": { "additionalProperties": false, "properties": { "CanvasSizeOptions": { "$ref": "#/definitions/AWS::QuickSight::Template.SectionBasedLayoutCanvasSizeOptions" } }, "required": [ "CanvasSizeOptions" ], "type": "object" }, "AWS::QuickSight::Template.DestinationParameterValueConfiguration": { "additionalProperties": false, "properties": { "CustomValuesConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Template.CustomValuesConfiguration" }, "SelectAllValueOptions": { "type": "string" }, "SourceColumn": { "$ref": "#/definitions/AWS::QuickSight::Template.ColumnIdentifier" }, "SourceField": { "type": "string" }, "SourceParameterName": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Template.DimensionField": { "additionalProperties": false, "properties": { "CategoricalDimensionField": { "$ref": "#/definitions/AWS::QuickSight::Template.CategoricalDimensionField" }, "DateDimensionField": { "$ref": "#/definitions/AWS::QuickSight::Template.DateDimensionField" }, "NumericalDimensionField": { "$ref": "#/definitions/AWS::QuickSight::Template.NumericalDimensionField" } }, "type": "object" }, "AWS::QuickSight::Template.DonutCenterOptions": { "additionalProperties": false, "properties": { "LabelVisibility": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Template.DonutOptions": { "additionalProperties": false, "properties": { "ArcOptions": { "$ref": "#/definitions/AWS::QuickSight::Template.ArcOptions" }, "DonutCenterOptions": { "$ref": "#/definitions/AWS::QuickSight::Template.DonutCenterOptions" } }, "type": "object" }, "AWS::QuickSight::Template.DrillDownFilter": { "additionalProperties": false, "properties": { "CategoryFilter": { "$ref": "#/definitions/AWS::QuickSight::Template.CategoryDrillDownFilter" }, "NumericEqualityFilter": { "$ref": "#/definitions/AWS::QuickSight::Template.NumericEqualityDrillDownFilter" }, "TimeRangeFilter": { "$ref": "#/definitions/AWS::QuickSight::Template.TimeRangeDrillDownFilter" } }, "type": "object" }, "AWS::QuickSight::Template.DropDownControlDisplayOptions": { "additionalProperties": false, "properties": { "SelectAllOptions": { "$ref": "#/definitions/AWS::QuickSight::Template.ListControlSelectAllOptions" }, "TitleOptions": { "$ref": "#/definitions/AWS::QuickSight::Template.LabelOptions" } }, "type": "object" }, "AWS::QuickSight::Template.DynamicDefaultValue": { "additionalProperties": false, "properties": { "DefaultValueColumn": { "$ref": "#/definitions/AWS::QuickSight::Template.ColumnIdentifier" }, "GroupNameColumn": { "$ref": "#/definitions/AWS::QuickSight::Template.ColumnIdentifier" }, "UserNameColumn": { "$ref": "#/definitions/AWS::QuickSight::Template.ColumnIdentifier" } }, "required": [ "DefaultValueColumn" ], "type": "object" }, "AWS::QuickSight::Template.EmptyVisual": { "additionalProperties": false, "properties": { "Actions": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.VisualCustomAction" }, "type": "array" }, "DataSetIdentifier": { "type": "string" }, "VisualId": { "type": "string" } }, "required": [ "DataSetIdentifier", "VisualId" ], "type": "object" }, "AWS::QuickSight::Template.Entity": { "additionalProperties": false, "properties": { "Path": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Template.ExcludePeriodConfiguration": { "additionalProperties": false, "properties": { "Amount": { "type": "number" }, "Granularity": { "type": "string" }, "Status": { "type": "string" } }, "required": [ "Amount", "Granularity" ], "type": "object" }, "AWS::QuickSight::Template.ExplicitHierarchy": { "additionalProperties": false, "properties": { "Columns": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.ColumnIdentifier" }, "type": "array" }, "DrillDownFilters": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.DrillDownFilter" }, "type": "array" }, "HierarchyId": { "type": "string" } }, "required": [ "Columns", "HierarchyId" ], "type": "object" }, "AWS::QuickSight::Template.FieldBasedTooltip": { "additionalProperties": false, "properties": { "AggregationVisibility": { "type": "string" }, "TooltipFields": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.TooltipItem" }, "type": "array" }, "TooltipTitleType": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Template.FieldLabelType": { "additionalProperties": false, "properties": { "FieldId": { "type": "string" }, "Visibility": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Template.FieldSeriesItem": { "additionalProperties": false, "properties": { "AxisBinding": { "type": "string" }, "FieldId": { "type": "string" }, "Settings": { "$ref": "#/definitions/AWS::QuickSight::Template.LineChartSeriesSettings" } }, "required": [ "AxisBinding", "FieldId" ], "type": "object" }, "AWS::QuickSight::Template.FieldSort": { "additionalProperties": false, "properties": { "Direction": { "type": "string" }, "FieldId": { "type": "string" } }, "required": [ "Direction", "FieldId" ], "type": "object" }, "AWS::QuickSight::Template.FieldSortOptions": { "additionalProperties": false, "properties": { "ColumnSort": { "$ref": "#/definitions/AWS::QuickSight::Template.ColumnSort" }, "FieldSort": { "$ref": "#/definitions/AWS::QuickSight::Template.FieldSort" } }, "type": "object" }, "AWS::QuickSight::Template.FieldTooltipItem": { "additionalProperties": false, "properties": { "FieldId": { "type": "string" }, "Label": { "type": "string" }, "Visibility": { "type": "string" } }, "required": [ "FieldId" ], "type": "object" }, "AWS::QuickSight::Template.FilledMapAggregatedFieldWells": { "additionalProperties": false, "properties": { "Geospatial": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.DimensionField" }, "type": "array" }, "Values": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.MeasureField" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Template.FilledMapConditionalFormatting": { "additionalProperties": false, "properties": { "ConditionalFormattingOptions": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.FilledMapConditionalFormattingOption" }, "type": "array" } }, "required": [ "ConditionalFormattingOptions" ], "type": "object" }, "AWS::QuickSight::Template.FilledMapConditionalFormattingOption": { "additionalProperties": false, "properties": { "Shape": { "$ref": "#/definitions/AWS::QuickSight::Template.FilledMapShapeConditionalFormatting" } }, "required": [ "Shape" ], "type": "object" }, "AWS::QuickSight::Template.FilledMapConfiguration": { "additionalProperties": false, "properties": { "FieldWells": { "$ref": "#/definitions/AWS::QuickSight::Template.FilledMapFieldWells" }, "Legend": { "$ref": "#/definitions/AWS::QuickSight::Template.LegendOptions" }, "MapStyleOptions": { "$ref": "#/definitions/AWS::QuickSight::Template.GeospatialMapStyleOptions" }, "SortConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Template.FilledMapSortConfiguration" }, "Tooltip": { "$ref": "#/definitions/AWS::QuickSight::Template.TooltipOptions" }, "WindowOptions": { "$ref": "#/definitions/AWS::QuickSight::Template.GeospatialWindowOptions" } }, "type": "object" }, "AWS::QuickSight::Template.FilledMapFieldWells": { "additionalProperties": false, "properties": { "FilledMapAggregatedFieldWells": { "$ref": "#/definitions/AWS::QuickSight::Template.FilledMapAggregatedFieldWells" } }, "type": "object" }, "AWS::QuickSight::Template.FilledMapShapeConditionalFormatting": { "additionalProperties": false, "properties": { "FieldId": { "type": "string" }, "Format": { "$ref": "#/definitions/AWS::QuickSight::Template.ShapeConditionalFormat" } }, "required": [ "FieldId" ], "type": "object" }, "AWS::QuickSight::Template.FilledMapSortConfiguration": { "additionalProperties": false, "properties": { "CategorySort": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.FieldSortOptions" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Template.FilledMapVisual": { "additionalProperties": false, "properties": { "Actions": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.VisualCustomAction" }, "type": "array" }, "ChartConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Template.FilledMapConfiguration" }, "ColumnHierarchies": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.ColumnHierarchy" }, "type": "array" }, "ConditionalFormatting": { "$ref": "#/definitions/AWS::QuickSight::Template.FilledMapConditionalFormatting" }, "Subtitle": { "$ref": "#/definitions/AWS::QuickSight::Template.VisualSubtitleLabelOptions" }, "Title": { "$ref": "#/definitions/AWS::QuickSight::Template.VisualTitleLabelOptions" }, "VisualId": { "type": "string" } }, "required": [ "VisualId" ], "type": "object" }, "AWS::QuickSight::Template.Filter": { "additionalProperties": false, "properties": { "CategoryFilter": { "$ref": "#/definitions/AWS::QuickSight::Template.CategoryFilter" }, "NumericEqualityFilter": { "$ref": "#/definitions/AWS::QuickSight::Template.NumericEqualityFilter" }, "NumericRangeFilter": { "$ref": "#/definitions/AWS::QuickSight::Template.NumericRangeFilter" }, "RelativeDatesFilter": { "$ref": "#/definitions/AWS::QuickSight::Template.RelativeDatesFilter" }, "TimeEqualityFilter": { "$ref": "#/definitions/AWS::QuickSight::Template.TimeEqualityFilter" }, "TimeRangeFilter": { "$ref": "#/definitions/AWS::QuickSight::Template.TimeRangeFilter" }, "TopBottomFilter": { "$ref": "#/definitions/AWS::QuickSight::Template.TopBottomFilter" } }, "type": "object" }, "AWS::QuickSight::Template.FilterControl": { "additionalProperties": false, "properties": { "DateTimePicker": { "$ref": "#/definitions/AWS::QuickSight::Template.FilterDateTimePickerControl" }, "Dropdown": { "$ref": "#/definitions/AWS::QuickSight::Template.FilterDropDownControl" }, "List": { "$ref": "#/definitions/AWS::QuickSight::Template.FilterListControl" }, "RelativeDateTime": { "$ref": "#/definitions/AWS::QuickSight::Template.FilterRelativeDateTimeControl" }, "Slider": { "$ref": "#/definitions/AWS::QuickSight::Template.FilterSliderControl" }, "TextArea": { "$ref": "#/definitions/AWS::QuickSight::Template.FilterTextAreaControl" }, "TextField": { "$ref": "#/definitions/AWS::QuickSight::Template.FilterTextFieldControl" } }, "type": "object" }, "AWS::QuickSight::Template.FilterDateTimePickerControl": { "additionalProperties": false, "properties": { "DisplayOptions": { "$ref": "#/definitions/AWS::QuickSight::Template.DateTimePickerControlDisplayOptions" }, "FilterControlId": { "type": "string" }, "SourceFilterId": { "type": "string" }, "Title": { "type": "string" }, "Type": { "type": "string" } }, "required": [ "FilterControlId", "SourceFilterId", "Title" ], "type": "object" }, "AWS::QuickSight::Template.FilterDropDownControl": { "additionalProperties": false, "properties": { "CascadingControlConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Template.CascadingControlConfiguration" }, "DisplayOptions": { "$ref": "#/definitions/AWS::QuickSight::Template.DropDownControlDisplayOptions" }, "FilterControlId": { "type": "string" }, "SelectableValues": { "$ref": "#/definitions/AWS::QuickSight::Template.FilterSelectableValues" }, "SourceFilterId": { "type": "string" }, "Title": { "type": "string" }, "Type": { "type": "string" } }, "required": [ "FilterControlId", "SourceFilterId", "Title" ], "type": "object" }, "AWS::QuickSight::Template.FilterGroup": { "additionalProperties": false, "properties": { "CrossDataset": { "type": "string" }, "FilterGroupId": { "type": "string" }, "Filters": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.Filter" }, "type": "array" }, "ScopeConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Template.FilterScopeConfiguration" }, "Status": { "type": "string" } }, "required": [ "CrossDataset", "FilterGroupId", "Filters", "ScopeConfiguration" ], "type": "object" }, "AWS::QuickSight::Template.FilterListConfiguration": { "additionalProperties": false, "properties": { "CategoryValues": { "items": { "type": "string" }, "type": "array" }, "MatchOperator": { "type": "string" }, "SelectAllOptions": { "type": "string" } }, "required": [ "MatchOperator" ], "type": "object" }, "AWS::QuickSight::Template.FilterListControl": { "additionalProperties": false, "properties": { "CascadingControlConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Template.CascadingControlConfiguration" }, "DisplayOptions": { "$ref": "#/definitions/AWS::QuickSight::Template.ListControlDisplayOptions" }, "FilterControlId": { "type": "string" }, "SelectableValues": { "$ref": "#/definitions/AWS::QuickSight::Template.FilterSelectableValues" }, "SourceFilterId": { "type": "string" }, "Title": { "type": "string" }, "Type": { "type": "string" } }, "required": [ "FilterControlId", "SourceFilterId", "Title" ], "type": "object" }, "AWS::QuickSight::Template.FilterOperationSelectedFieldsConfiguration": { "additionalProperties": false, "properties": { "SelectedColumns": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.ColumnIdentifier" }, "type": "array" }, "SelectedFieldOptions": { "type": "string" }, "SelectedFields": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Template.FilterOperationTargetVisualsConfiguration": { "additionalProperties": false, "properties": { "SameSheetTargetVisualConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Template.SameSheetTargetVisualConfiguration" } }, "type": "object" }, "AWS::QuickSight::Template.FilterRelativeDateTimeControl": { "additionalProperties": false, "properties": { "DisplayOptions": { "$ref": "#/definitions/AWS::QuickSight::Template.RelativeDateTimeControlDisplayOptions" }, "FilterControlId": { "type": "string" }, "SourceFilterId": { "type": "string" }, "Title": { "type": "string" } }, "required": [ "FilterControlId", "SourceFilterId", "Title" ], "type": "object" }, "AWS::QuickSight::Template.FilterScopeConfiguration": { "additionalProperties": false, "properties": { "SelectedSheets": { "$ref": "#/definitions/AWS::QuickSight::Template.SelectedSheetsFilterScopeConfiguration" } }, "type": "object" }, "AWS::QuickSight::Template.FilterSelectableValues": { "additionalProperties": false, "properties": { "Values": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Template.FilterSliderControl": { "additionalProperties": false, "properties": { "DisplayOptions": { "$ref": "#/definitions/AWS::QuickSight::Template.SliderControlDisplayOptions" }, "FilterControlId": { "type": "string" }, "MaximumValue": { "type": "number" }, "MinimumValue": { "type": "number" }, "SourceFilterId": { "type": "string" }, "StepSize": { "type": "number" }, "Title": { "type": "string" }, "Type": { "type": "string" } }, "required": [ "FilterControlId", "MaximumValue", "MinimumValue", "SourceFilterId", "StepSize", "Title" ], "type": "object" }, "AWS::QuickSight::Template.FilterTextAreaControl": { "additionalProperties": false, "properties": { "Delimiter": { "type": "string" }, "DisplayOptions": { "$ref": "#/definitions/AWS::QuickSight::Template.TextAreaControlDisplayOptions" }, "FilterControlId": { "type": "string" }, "SourceFilterId": { "type": "string" }, "Title": { "type": "string" } }, "required": [ "FilterControlId", "SourceFilterId", "Title" ], "type": "object" }, "AWS::QuickSight::Template.FilterTextFieldControl": { "additionalProperties": false, "properties": { "DisplayOptions": { "$ref": "#/definitions/AWS::QuickSight::Template.TextFieldControlDisplayOptions" }, "FilterControlId": { "type": "string" }, "SourceFilterId": { "type": "string" }, "Title": { "type": "string" } }, "required": [ "FilterControlId", "SourceFilterId", "Title" ], "type": "object" }, "AWS::QuickSight::Template.FontConfiguration": { "additionalProperties": false, "properties": { "FontColor": { "type": "string" }, "FontDecoration": { "type": "string" }, "FontSize": { "$ref": "#/definitions/AWS::QuickSight::Template.FontSize" }, "FontStyle": { "type": "string" }, "FontWeight": { "$ref": "#/definitions/AWS::QuickSight::Template.FontWeight" } }, "type": "object" }, "AWS::QuickSight::Template.FontSize": { "additionalProperties": false, "properties": { "Relative": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Template.FontWeight": { "additionalProperties": false, "properties": { "Name": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Template.ForecastComputation": { "additionalProperties": false, "properties": { "ComputationId": { "type": "string" }, "CustomSeasonalityValue": { "type": "number" }, "LowerBoundary": { "type": "number" }, "Name": { "type": "string" }, "PeriodsBackward": { "type": "number" }, "PeriodsForward": { "type": "number" }, "PredictionInterval": { "type": "number" }, "Seasonality": { "type": "string" }, "Time": { "$ref": "#/definitions/AWS::QuickSight::Template.DimensionField" }, "UpperBoundary": { "type": "number" }, "Value": { "$ref": "#/definitions/AWS::QuickSight::Template.MeasureField" } }, "required": [ "ComputationId", "Time" ], "type": "object" }, "AWS::QuickSight::Template.ForecastConfiguration": { "additionalProperties": false, "properties": { "ForecastProperties": { "$ref": "#/definitions/AWS::QuickSight::Template.TimeBasedForecastProperties" }, "Scenario": { "$ref": "#/definitions/AWS::QuickSight::Template.ForecastScenario" } }, "type": "object" }, "AWS::QuickSight::Template.ForecastScenario": { "additionalProperties": false, "properties": { "WhatIfPointScenario": { "$ref": "#/definitions/AWS::QuickSight::Template.WhatIfPointScenario" }, "WhatIfRangeScenario": { "$ref": "#/definitions/AWS::QuickSight::Template.WhatIfRangeScenario" } }, "type": "object" }, "AWS::QuickSight::Template.FormatConfiguration": { "additionalProperties": false, "properties": { "DateTimeFormatConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Template.DateTimeFormatConfiguration" }, "NumberFormatConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Template.NumberFormatConfiguration" }, "StringFormatConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Template.StringFormatConfiguration" } }, "type": "object" }, "AWS::QuickSight::Template.FreeFormLayoutCanvasSizeOptions": { "additionalProperties": false, "properties": { "ScreenCanvasSizeOptions": { "$ref": "#/definitions/AWS::QuickSight::Template.FreeFormLayoutScreenCanvasSizeOptions" } }, "type": "object" }, "AWS::QuickSight::Template.FreeFormLayoutConfiguration": { "additionalProperties": false, "properties": { "CanvasSizeOptions": { "$ref": "#/definitions/AWS::QuickSight::Template.FreeFormLayoutCanvasSizeOptions" }, "Elements": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.FreeFormLayoutElement" }, "type": "array" } }, "required": [ "Elements" ], "type": "object" }, "AWS::QuickSight::Template.FreeFormLayoutElement": { "additionalProperties": false, "properties": { "BackgroundStyle": { "$ref": "#/definitions/AWS::QuickSight::Template.FreeFormLayoutElementBackgroundStyle" }, "BorderStyle": { "$ref": "#/definitions/AWS::QuickSight::Template.FreeFormLayoutElementBorderStyle" }, "ElementId": { "type": "string" }, "ElementType": { "type": "string" }, "Height": { "type": "string" }, "LoadingAnimation": { "$ref": "#/definitions/AWS::QuickSight::Template.LoadingAnimation" }, "RenderingRules": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.SheetElementRenderingRule" }, "type": "array" }, "SelectedBorderStyle": { "$ref": "#/definitions/AWS::QuickSight::Template.FreeFormLayoutElementBorderStyle" }, "Visibility": { "type": "string" }, "Width": { "type": "string" }, "XAxisLocation": { "type": "string" }, "YAxisLocation": { "type": "string" } }, "required": [ "ElementId", "ElementType", "Height", "Width", "XAxisLocation", "YAxisLocation" ], "type": "object" }, "AWS::QuickSight::Template.FreeFormLayoutElementBackgroundStyle": { "additionalProperties": false, "properties": { "Color": { "type": "string" }, "Visibility": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Template.FreeFormLayoutElementBorderStyle": { "additionalProperties": false, "properties": { "Color": { "type": "string" }, "Visibility": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Template.FreeFormLayoutScreenCanvasSizeOptions": { "additionalProperties": false, "properties": { "OptimizedViewPortWidth": { "type": "string" } }, "required": [ "OptimizedViewPortWidth" ], "type": "object" }, "AWS::QuickSight::Template.FreeFormSectionLayoutConfiguration": { "additionalProperties": false, "properties": { "Elements": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.FreeFormLayoutElement" }, "type": "array" } }, "required": [ "Elements" ], "type": "object" }, "AWS::QuickSight::Template.FunnelChartAggregatedFieldWells": { "additionalProperties": false, "properties": { "Category": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.DimensionField" }, "type": "array" }, "Values": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.MeasureField" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Template.FunnelChartConfiguration": { "additionalProperties": false, "properties": { "CategoryLabelOptions": { "$ref": "#/definitions/AWS::QuickSight::Template.ChartAxisLabelOptions" }, "DataLabelOptions": { "$ref": "#/definitions/AWS::QuickSight::Template.FunnelChartDataLabelOptions" }, "FieldWells": { "$ref": "#/definitions/AWS::QuickSight::Template.FunnelChartFieldWells" }, "SortConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Template.FunnelChartSortConfiguration" }, "Tooltip": { "$ref": "#/definitions/AWS::QuickSight::Template.TooltipOptions" }, "ValueLabelOptions": { "$ref": "#/definitions/AWS::QuickSight::Template.ChartAxisLabelOptions" }, "VisualPalette": { "$ref": "#/definitions/AWS::QuickSight::Template.VisualPalette" } }, "type": "object" }, "AWS::QuickSight::Template.FunnelChartDataLabelOptions": { "additionalProperties": false, "properties": { "CategoryLabelVisibility": { "type": "string" }, "LabelColor": { "type": "string" }, "LabelFontConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Template.FontConfiguration" }, "MeasureDataLabelStyle": { "type": "string" }, "MeasureLabelVisibility": { "type": "string" }, "Position": { "type": "string" }, "Visibility": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Template.FunnelChartFieldWells": { "additionalProperties": false, "properties": { "FunnelChartAggregatedFieldWells": { "$ref": "#/definitions/AWS::QuickSight::Template.FunnelChartAggregatedFieldWells" } }, "type": "object" }, "AWS::QuickSight::Template.FunnelChartSortConfiguration": { "additionalProperties": false, "properties": { "CategoryItemsLimit": { "$ref": "#/definitions/AWS::QuickSight::Template.ItemsLimitConfiguration" }, "CategorySort": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.FieldSortOptions" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Template.FunnelChartVisual": { "additionalProperties": false, "properties": { "Actions": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.VisualCustomAction" }, "type": "array" }, "ChartConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Template.FunnelChartConfiguration" }, "ColumnHierarchies": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.ColumnHierarchy" }, "type": "array" }, "Subtitle": { "$ref": "#/definitions/AWS::QuickSight::Template.VisualSubtitleLabelOptions" }, "Title": { "$ref": "#/definitions/AWS::QuickSight::Template.VisualTitleLabelOptions" }, "VisualId": { "type": "string" } }, "required": [ "VisualId" ], "type": "object" }, "AWS::QuickSight::Template.GaugeChartArcConditionalFormatting": { "additionalProperties": false, "properties": { "ForegroundColor": { "$ref": "#/definitions/AWS::QuickSight::Template.ConditionalFormattingColor" } }, "type": "object" }, "AWS::QuickSight::Template.GaugeChartConditionalFormatting": { "additionalProperties": false, "properties": { "ConditionalFormattingOptions": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.GaugeChartConditionalFormattingOption" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Template.GaugeChartConditionalFormattingOption": { "additionalProperties": false, "properties": { "Arc": { "$ref": "#/definitions/AWS::QuickSight::Template.GaugeChartArcConditionalFormatting" }, "PrimaryValue": { "$ref": "#/definitions/AWS::QuickSight::Template.GaugeChartPrimaryValueConditionalFormatting" } }, "type": "object" }, "AWS::QuickSight::Template.GaugeChartConfiguration": { "additionalProperties": false, "properties": { "DataLabels": { "$ref": "#/definitions/AWS::QuickSight::Template.DataLabelOptions" }, "FieldWells": { "$ref": "#/definitions/AWS::QuickSight::Template.GaugeChartFieldWells" }, "GaugeChartOptions": { "$ref": "#/definitions/AWS::QuickSight::Template.GaugeChartOptions" }, "TooltipOptions": { "$ref": "#/definitions/AWS::QuickSight::Template.TooltipOptions" }, "VisualPalette": { "$ref": "#/definitions/AWS::QuickSight::Template.VisualPalette" } }, "type": "object" }, "AWS::QuickSight::Template.GaugeChartFieldWells": { "additionalProperties": false, "properties": { "TargetValues": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.MeasureField" }, "type": "array" }, "Values": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.MeasureField" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Template.GaugeChartOptions": { "additionalProperties": false, "properties": { "Arc": { "$ref": "#/definitions/AWS::QuickSight::Template.ArcConfiguration" }, "ArcAxis": { "$ref": "#/definitions/AWS::QuickSight::Template.ArcAxisConfiguration" }, "Comparison": { "$ref": "#/definitions/AWS::QuickSight::Template.ComparisonConfiguration" }, "PrimaryValueDisplayType": { "type": "string" }, "PrimaryValueFontConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Template.FontConfiguration" } }, "type": "object" }, "AWS::QuickSight::Template.GaugeChartPrimaryValueConditionalFormatting": { "additionalProperties": false, "properties": { "Icon": { "$ref": "#/definitions/AWS::QuickSight::Template.ConditionalFormattingIcon" }, "TextColor": { "$ref": "#/definitions/AWS::QuickSight::Template.ConditionalFormattingColor" } }, "type": "object" }, "AWS::QuickSight::Template.GaugeChartVisual": { "additionalProperties": false, "properties": { "Actions": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.VisualCustomAction" }, "type": "array" }, "ChartConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Template.GaugeChartConfiguration" }, "ConditionalFormatting": { "$ref": "#/definitions/AWS::QuickSight::Template.GaugeChartConditionalFormatting" }, "Subtitle": { "$ref": "#/definitions/AWS::QuickSight::Template.VisualSubtitleLabelOptions" }, "Title": { "$ref": "#/definitions/AWS::QuickSight::Template.VisualTitleLabelOptions" }, "VisualId": { "type": "string" } }, "required": [ "VisualId" ], "type": "object" }, "AWS::QuickSight::Template.GeospatialCoordinateBounds": { "additionalProperties": false, "properties": { "East": { "type": "number" }, "North": { "type": "number" }, "South": { "type": "number" }, "West": { "type": "number" } }, "required": [ "East", "North", "South", "West" ], "type": "object" }, "AWS::QuickSight::Template.GeospatialHeatmapColorScale": { "additionalProperties": false, "properties": { "Colors": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.GeospatialHeatmapDataColor" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Template.GeospatialHeatmapConfiguration": { "additionalProperties": false, "properties": { "HeatmapColor": { "$ref": "#/definitions/AWS::QuickSight::Template.GeospatialHeatmapColorScale" } }, "type": "object" }, "AWS::QuickSight::Template.GeospatialHeatmapDataColor": { "additionalProperties": false, "properties": { "Color": { "type": "string" } }, "required": [ "Color" ], "type": "object" }, "AWS::QuickSight::Template.GeospatialMapAggregatedFieldWells": { "additionalProperties": false, "properties": { "Colors": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.DimensionField" }, "type": "array" }, "Geospatial": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.DimensionField" }, "type": "array" }, "Values": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.MeasureField" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Template.GeospatialMapConfiguration": { "additionalProperties": false, "properties": { "FieldWells": { "$ref": "#/definitions/AWS::QuickSight::Template.GeospatialMapFieldWells" }, "Legend": { "$ref": "#/definitions/AWS::QuickSight::Template.LegendOptions" }, "MapStyleOptions": { "$ref": "#/definitions/AWS::QuickSight::Template.GeospatialMapStyleOptions" }, "PointStyleOptions": { "$ref": "#/definitions/AWS::QuickSight::Template.GeospatialPointStyleOptions" }, "Tooltip": { "$ref": "#/definitions/AWS::QuickSight::Template.TooltipOptions" }, "VisualPalette": { "$ref": "#/definitions/AWS::QuickSight::Template.VisualPalette" }, "WindowOptions": { "$ref": "#/definitions/AWS::QuickSight::Template.GeospatialWindowOptions" } }, "type": "object" }, "AWS::QuickSight::Template.GeospatialMapFieldWells": { "additionalProperties": false, "properties": { "GeospatialMapAggregatedFieldWells": { "$ref": "#/definitions/AWS::QuickSight::Template.GeospatialMapAggregatedFieldWells" } }, "type": "object" }, "AWS::QuickSight::Template.GeospatialMapStyleOptions": { "additionalProperties": false, "properties": { "BaseMapStyle": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Template.GeospatialMapVisual": { "additionalProperties": false, "properties": { "Actions": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.VisualCustomAction" }, "type": "array" }, "ChartConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Template.GeospatialMapConfiguration" }, "ColumnHierarchies": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.ColumnHierarchy" }, "type": "array" }, "Subtitle": { "$ref": "#/definitions/AWS::QuickSight::Template.VisualSubtitleLabelOptions" }, "Title": { "$ref": "#/definitions/AWS::QuickSight::Template.VisualTitleLabelOptions" }, "VisualId": { "type": "string" } }, "required": [ "VisualId" ], "type": "object" }, "AWS::QuickSight::Template.GeospatialPointStyleOptions": { "additionalProperties": false, "properties": { "ClusterMarkerConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Template.ClusterMarkerConfiguration" }, "HeatmapConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Template.GeospatialHeatmapConfiguration" }, "SelectedPointStyle": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Template.GeospatialWindowOptions": { "additionalProperties": false, "properties": { "Bounds": { "$ref": "#/definitions/AWS::QuickSight::Template.GeospatialCoordinateBounds" }, "MapZoomMode": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Template.GlobalTableBorderOptions": { "additionalProperties": false, "properties": { "SideSpecificBorder": { "$ref": "#/definitions/AWS::QuickSight::Template.TableSideBorderOptions" }, "UniformBorder": { "$ref": "#/definitions/AWS::QuickSight::Template.TableBorderOptions" } }, "type": "object" }, "AWS::QuickSight::Template.GradientColor": { "additionalProperties": false, "properties": { "Stops": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.GradientStop" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Template.GradientStop": { "additionalProperties": false, "properties": { "Color": { "type": "string" }, "DataValue": { "type": "number" }, "GradientOffset": { "type": "number" } }, "required": [ "GradientOffset" ], "type": "object" }, "AWS::QuickSight::Template.GridLayoutCanvasSizeOptions": { "additionalProperties": false, "properties": { "ScreenCanvasSizeOptions": { "$ref": "#/definitions/AWS::QuickSight::Template.GridLayoutScreenCanvasSizeOptions" } }, "type": "object" }, "AWS::QuickSight::Template.GridLayoutConfiguration": { "additionalProperties": false, "properties": { "CanvasSizeOptions": { "$ref": "#/definitions/AWS::QuickSight::Template.GridLayoutCanvasSizeOptions" }, "Elements": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.GridLayoutElement" }, "type": "array" } }, "required": [ "Elements" ], "type": "object" }, "AWS::QuickSight::Template.GridLayoutElement": { "additionalProperties": false, "properties": { "ColumnIndex": { "type": "number" }, "ColumnSpan": { "type": "number" }, "ElementId": { "type": "string" }, "ElementType": { "type": "string" }, "RowIndex": { "type": "number" }, "RowSpan": { "type": "number" } }, "required": [ "ColumnSpan", "ElementId", "ElementType", "RowSpan" ], "type": "object" }, "AWS::QuickSight::Template.GridLayoutScreenCanvasSizeOptions": { "additionalProperties": false, "properties": { "OptimizedViewPortWidth": { "type": "string" }, "ResizeOption": { "type": "string" } }, "required": [ "ResizeOption" ], "type": "object" }, "AWS::QuickSight::Template.GrowthRateComputation": { "additionalProperties": false, "properties": { "ComputationId": { "type": "string" }, "Name": { "type": "string" }, "PeriodSize": { "type": "number" }, "Time": { "$ref": "#/definitions/AWS::QuickSight::Template.DimensionField" }, "Value": { "$ref": "#/definitions/AWS::QuickSight::Template.MeasureField" } }, "required": [ "ComputationId", "Time" ], "type": "object" }, "AWS::QuickSight::Template.HeaderFooterSectionConfiguration": { "additionalProperties": false, "properties": { "Layout": { "$ref": "#/definitions/AWS::QuickSight::Template.SectionLayoutConfiguration" }, "SectionId": { "type": "string" }, "Style": { "$ref": "#/definitions/AWS::QuickSight::Template.SectionStyle" } }, "required": [ "Layout", "SectionId" ], "type": "object" }, "AWS::QuickSight::Template.HeatMapAggregatedFieldWells": { "additionalProperties": false, "properties": { "Columns": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.DimensionField" }, "type": "array" }, "Rows": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.DimensionField" }, "type": "array" }, "Values": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.MeasureField" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Template.HeatMapConfiguration": { "additionalProperties": false, "properties": { "ColorScale": { "$ref": "#/definitions/AWS::QuickSight::Template.ColorScale" }, "ColumnLabelOptions": { "$ref": "#/definitions/AWS::QuickSight::Template.ChartAxisLabelOptions" }, "DataLabels": { "$ref": "#/definitions/AWS::QuickSight::Template.DataLabelOptions" }, "FieldWells": { "$ref": "#/definitions/AWS::QuickSight::Template.HeatMapFieldWells" }, "Legend": { "$ref": "#/definitions/AWS::QuickSight::Template.LegendOptions" }, "RowLabelOptions": { "$ref": "#/definitions/AWS::QuickSight::Template.ChartAxisLabelOptions" }, "SortConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Template.HeatMapSortConfiguration" }, "Tooltip": { "$ref": "#/definitions/AWS::QuickSight::Template.TooltipOptions" } }, "type": "object" }, "AWS::QuickSight::Template.HeatMapFieldWells": { "additionalProperties": false, "properties": { "HeatMapAggregatedFieldWells": { "$ref": "#/definitions/AWS::QuickSight::Template.HeatMapAggregatedFieldWells" } }, "type": "object" }, "AWS::QuickSight::Template.HeatMapSortConfiguration": { "additionalProperties": false, "properties": { "HeatMapColumnItemsLimitConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Template.ItemsLimitConfiguration" }, "HeatMapColumnSort": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.FieldSortOptions" }, "type": "array" }, "HeatMapRowItemsLimitConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Template.ItemsLimitConfiguration" }, "HeatMapRowSort": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.FieldSortOptions" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Template.HeatMapVisual": { "additionalProperties": false, "properties": { "Actions": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.VisualCustomAction" }, "type": "array" }, "ChartConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Template.HeatMapConfiguration" }, "ColumnHierarchies": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.ColumnHierarchy" }, "type": "array" }, "Subtitle": { "$ref": "#/definitions/AWS::QuickSight::Template.VisualSubtitleLabelOptions" }, "Title": { "$ref": "#/definitions/AWS::QuickSight::Template.VisualTitleLabelOptions" }, "VisualId": { "type": "string" } }, "required": [ "VisualId" ], "type": "object" }, "AWS::QuickSight::Template.HistogramAggregatedFieldWells": { "additionalProperties": false, "properties": { "Values": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.MeasureField" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Template.HistogramBinOptions": { "additionalProperties": false, "properties": { "BinCount": { "$ref": "#/definitions/AWS::QuickSight::Template.BinCountOptions" }, "BinWidth": { "$ref": "#/definitions/AWS::QuickSight::Template.BinWidthOptions" }, "SelectedBinType": { "type": "string" }, "StartValue": { "type": "number" } }, "type": "object" }, "AWS::QuickSight::Template.HistogramConfiguration": { "additionalProperties": false, "properties": { "BinOptions": { "$ref": "#/definitions/AWS::QuickSight::Template.HistogramBinOptions" }, "DataLabels": { "$ref": "#/definitions/AWS::QuickSight::Template.DataLabelOptions" }, "FieldWells": { "$ref": "#/definitions/AWS::QuickSight::Template.HistogramFieldWells" }, "Tooltip": { "$ref": "#/definitions/AWS::QuickSight::Template.TooltipOptions" }, "VisualPalette": { "$ref": "#/definitions/AWS::QuickSight::Template.VisualPalette" }, "XAxisDisplayOptions": { "$ref": "#/definitions/AWS::QuickSight::Template.AxisDisplayOptions" }, "XAxisLabelOptions": { "$ref": "#/definitions/AWS::QuickSight::Template.ChartAxisLabelOptions" }, "YAxisDisplayOptions": { "$ref": "#/definitions/AWS::QuickSight::Template.AxisDisplayOptions" } }, "type": "object" }, "AWS::QuickSight::Template.HistogramFieldWells": { "additionalProperties": false, "properties": { "HistogramAggregatedFieldWells": { "$ref": "#/definitions/AWS::QuickSight::Template.HistogramAggregatedFieldWells" } }, "type": "object" }, "AWS::QuickSight::Template.HistogramVisual": { "additionalProperties": false, "properties": { "Actions": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.VisualCustomAction" }, "type": "array" }, "ChartConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Template.HistogramConfiguration" }, "Subtitle": { "$ref": "#/definitions/AWS::QuickSight::Template.VisualSubtitleLabelOptions" }, "Title": { "$ref": "#/definitions/AWS::QuickSight::Template.VisualTitleLabelOptions" }, "VisualId": { "type": "string" } }, "required": [ "VisualId" ], "type": "object" }, "AWS::QuickSight::Template.InsightConfiguration": { "additionalProperties": false, "properties": { "Computations": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.Computation" }, "type": "array" }, "CustomNarrative": { "$ref": "#/definitions/AWS::QuickSight::Template.CustomNarrativeOptions" } }, "type": "object" }, "AWS::QuickSight::Template.InsightVisual": { "additionalProperties": false, "properties": { "Actions": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.VisualCustomAction" }, "type": "array" }, "DataSetIdentifier": { "type": "string" }, "InsightConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Template.InsightConfiguration" }, "Subtitle": { "$ref": "#/definitions/AWS::QuickSight::Template.VisualSubtitleLabelOptions" }, "Title": { "$ref": "#/definitions/AWS::QuickSight::Template.VisualTitleLabelOptions" }, "VisualId": { "type": "string" } }, "required": [ "DataSetIdentifier", "VisualId" ], "type": "object" }, "AWS::QuickSight::Template.IntegerDefaultValues": { "additionalProperties": false, "properties": { "DynamicValue": { "$ref": "#/definitions/AWS::QuickSight::Template.DynamicDefaultValue" }, "StaticValues": { "items": { "type": "number" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Template.IntegerParameterDeclaration": { "additionalProperties": false, "properties": { "DefaultValues": { "$ref": "#/definitions/AWS::QuickSight::Template.IntegerDefaultValues" }, "MappedDataSetParameters": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.MappedDataSetParameter" }, "type": "array" }, "Name": { "type": "string" }, "ParameterValueType": { "type": "string" }, "ValueWhenUnset": { "$ref": "#/definitions/AWS::QuickSight::Template.IntegerValueWhenUnsetConfiguration" } }, "required": [ "Name", "ParameterValueType" ], "type": "object" }, "AWS::QuickSight::Template.IntegerValueWhenUnsetConfiguration": { "additionalProperties": false, "properties": { "CustomValue": { "type": "number" }, "ValueWhenUnsetOption": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Template.ItemsLimitConfiguration": { "additionalProperties": false, "properties": { "ItemsLimit": { "type": "number" }, "OtherCategories": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Template.KPIConditionalFormatting": { "additionalProperties": false, "properties": { "ConditionalFormattingOptions": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.KPIConditionalFormattingOption" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Template.KPIConditionalFormattingOption": { "additionalProperties": false, "properties": { "PrimaryValue": { "$ref": "#/definitions/AWS::QuickSight::Template.KPIPrimaryValueConditionalFormatting" }, "ProgressBar": { "$ref": "#/definitions/AWS::QuickSight::Template.KPIProgressBarConditionalFormatting" } }, "type": "object" }, "AWS::QuickSight::Template.KPIConfiguration": { "additionalProperties": false, "properties": { "FieldWells": { "$ref": "#/definitions/AWS::QuickSight::Template.KPIFieldWells" }, "KPIOptions": { "$ref": "#/definitions/AWS::QuickSight::Template.KPIOptions" }, "SortConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Template.KPISortConfiguration" } }, "type": "object" }, "AWS::QuickSight::Template.KPIFieldWells": { "additionalProperties": false, "properties": { "TargetValues": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.MeasureField" }, "type": "array" }, "TrendGroups": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.DimensionField" }, "type": "array" }, "Values": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.MeasureField" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Template.KPIOptions": { "additionalProperties": false, "properties": { "Comparison": { "$ref": "#/definitions/AWS::QuickSight::Template.ComparisonConfiguration" }, "PrimaryValueDisplayType": { "type": "string" }, "PrimaryValueFontConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Template.FontConfiguration" }, "ProgressBar": { "$ref": "#/definitions/AWS::QuickSight::Template.ProgressBarOptions" }, "SecondaryValue": { "$ref": "#/definitions/AWS::QuickSight::Template.SecondaryValueOptions" }, "SecondaryValueFontConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Template.FontConfiguration" }, "TrendArrows": { "$ref": "#/definitions/AWS::QuickSight::Template.TrendArrowOptions" } }, "type": "object" }, "AWS::QuickSight::Template.KPIPrimaryValueConditionalFormatting": { "additionalProperties": false, "properties": { "Icon": { "$ref": "#/definitions/AWS::QuickSight::Template.ConditionalFormattingIcon" }, "TextColor": { "$ref": "#/definitions/AWS::QuickSight::Template.ConditionalFormattingColor" } }, "type": "object" }, "AWS::QuickSight::Template.KPIProgressBarConditionalFormatting": { "additionalProperties": false, "properties": { "ForegroundColor": { "$ref": "#/definitions/AWS::QuickSight::Template.ConditionalFormattingColor" } }, "type": "object" }, "AWS::QuickSight::Template.KPISortConfiguration": { "additionalProperties": false, "properties": { "TrendGroupSort": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.FieldSortOptions" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Template.KPIVisual": { "additionalProperties": false, "properties": { "Actions": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.VisualCustomAction" }, "type": "array" }, "ChartConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Template.KPIConfiguration" }, "ColumnHierarchies": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.ColumnHierarchy" }, "type": "array" }, "ConditionalFormatting": { "$ref": "#/definitions/AWS::QuickSight::Template.KPIConditionalFormatting" }, "Subtitle": { "$ref": "#/definitions/AWS::QuickSight::Template.VisualSubtitleLabelOptions" }, "Title": { "$ref": "#/definitions/AWS::QuickSight::Template.VisualTitleLabelOptions" }, "VisualId": { "type": "string" } }, "required": [ "VisualId" ], "type": "object" }, "AWS::QuickSight::Template.LabelOptions": { "additionalProperties": false, "properties": { "CustomLabel": { "type": "string" }, "FontConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Template.FontConfiguration" }, "Visibility": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Template.Layout": { "additionalProperties": false, "properties": { "Configuration": { "$ref": "#/definitions/AWS::QuickSight::Template.LayoutConfiguration" } }, "required": [ "Configuration" ], "type": "object" }, "AWS::QuickSight::Template.LayoutConfiguration": { "additionalProperties": false, "properties": { "FreeFormLayout": { "$ref": "#/definitions/AWS::QuickSight::Template.FreeFormLayoutConfiguration" }, "GridLayout": { "$ref": "#/definitions/AWS::QuickSight::Template.GridLayoutConfiguration" }, "SectionBasedLayout": { "$ref": "#/definitions/AWS::QuickSight::Template.SectionBasedLayoutConfiguration" } }, "type": "object" }, "AWS::QuickSight::Template.LegendOptions": { "additionalProperties": false, "properties": { "Height": { "type": "string" }, "Position": { "type": "string" }, "Title": { "$ref": "#/definitions/AWS::QuickSight::Template.LabelOptions" }, "Visibility": { "type": "string" }, "Width": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Template.LineChartAggregatedFieldWells": { "additionalProperties": false, "properties": { "Category": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.DimensionField" }, "type": "array" }, "Colors": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.DimensionField" }, "type": "array" }, "SmallMultiples": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.DimensionField" }, "type": "array" }, "Values": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.MeasureField" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Template.LineChartConfiguration": { "additionalProperties": false, "properties": { "ContributionAnalysisDefaults": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.ContributionAnalysisDefault" }, "type": "array" }, "DataLabels": { "$ref": "#/definitions/AWS::QuickSight::Template.DataLabelOptions" }, "DefaultSeriesSettings": { "$ref": "#/definitions/AWS::QuickSight::Template.LineChartDefaultSeriesSettings" }, "FieldWells": { "$ref": "#/definitions/AWS::QuickSight::Template.LineChartFieldWells" }, "ForecastConfigurations": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.ForecastConfiguration" }, "type": "array" }, "Legend": { "$ref": "#/definitions/AWS::QuickSight::Template.LegendOptions" }, "PrimaryYAxisDisplayOptions": { "$ref": "#/definitions/AWS::QuickSight::Template.LineSeriesAxisDisplayOptions" }, "PrimaryYAxisLabelOptions": { "$ref": "#/definitions/AWS::QuickSight::Template.ChartAxisLabelOptions" }, "ReferenceLines": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.ReferenceLine" }, "type": "array" }, "SecondaryYAxisDisplayOptions": { "$ref": "#/definitions/AWS::QuickSight::Template.LineSeriesAxisDisplayOptions" }, "SecondaryYAxisLabelOptions": { "$ref": "#/definitions/AWS::QuickSight::Template.ChartAxisLabelOptions" }, "Series": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.SeriesItem" }, "type": "array" }, "SmallMultiplesOptions": { "$ref": "#/definitions/AWS::QuickSight::Template.SmallMultiplesOptions" }, "SortConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Template.LineChartSortConfiguration" }, "Tooltip": { "$ref": "#/definitions/AWS::QuickSight::Template.TooltipOptions" }, "Type": { "type": "string" }, "VisualPalette": { "$ref": "#/definitions/AWS::QuickSight::Template.VisualPalette" }, "XAxisDisplayOptions": { "$ref": "#/definitions/AWS::QuickSight::Template.AxisDisplayOptions" }, "XAxisLabelOptions": { "$ref": "#/definitions/AWS::QuickSight::Template.ChartAxisLabelOptions" } }, "type": "object" }, "AWS::QuickSight::Template.LineChartDefaultSeriesSettings": { "additionalProperties": false, "properties": { "AxisBinding": { "type": "string" }, "LineStyleSettings": { "$ref": "#/definitions/AWS::QuickSight::Template.LineChartLineStyleSettings" }, "MarkerStyleSettings": { "$ref": "#/definitions/AWS::QuickSight::Template.LineChartMarkerStyleSettings" } }, "type": "object" }, "AWS::QuickSight::Template.LineChartFieldWells": { "additionalProperties": false, "properties": { "LineChartAggregatedFieldWells": { "$ref": "#/definitions/AWS::QuickSight::Template.LineChartAggregatedFieldWells" } }, "type": "object" }, "AWS::QuickSight::Template.LineChartLineStyleSettings": { "additionalProperties": false, "properties": { "LineInterpolation": { "type": "string" }, "LineStyle": { "type": "string" }, "LineVisibility": { "type": "string" }, "LineWidth": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Template.LineChartMarkerStyleSettings": { "additionalProperties": false, "properties": { "MarkerColor": { "type": "string" }, "MarkerShape": { "type": "string" }, "MarkerSize": { "type": "string" }, "MarkerVisibility": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Template.LineChartSeriesSettings": { "additionalProperties": false, "properties": { "LineStyleSettings": { "$ref": "#/definitions/AWS::QuickSight::Template.LineChartLineStyleSettings" }, "MarkerStyleSettings": { "$ref": "#/definitions/AWS::QuickSight::Template.LineChartMarkerStyleSettings" } }, "type": "object" }, "AWS::QuickSight::Template.LineChartSortConfiguration": { "additionalProperties": false, "properties": { "CategoryItemsLimitConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Template.ItemsLimitConfiguration" }, "CategorySort": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.FieldSortOptions" }, "type": "array" }, "ColorItemsLimitConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Template.ItemsLimitConfiguration" }, "SmallMultiplesLimitConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Template.ItemsLimitConfiguration" }, "SmallMultiplesSort": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.FieldSortOptions" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Template.LineChartVisual": { "additionalProperties": false, "properties": { "Actions": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.VisualCustomAction" }, "type": "array" }, "ChartConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Template.LineChartConfiguration" }, "ColumnHierarchies": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.ColumnHierarchy" }, "type": "array" }, "Subtitle": { "$ref": "#/definitions/AWS::QuickSight::Template.VisualSubtitleLabelOptions" }, "Title": { "$ref": "#/definitions/AWS::QuickSight::Template.VisualTitleLabelOptions" }, "VisualId": { "type": "string" } }, "required": [ "VisualId" ], "type": "object" }, "AWS::QuickSight::Template.LineSeriesAxisDisplayOptions": { "additionalProperties": false, "properties": { "AxisOptions": { "$ref": "#/definitions/AWS::QuickSight::Template.AxisDisplayOptions" }, "MissingDataConfigurations": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.MissingDataConfiguration" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Template.ListControlDisplayOptions": { "additionalProperties": false, "properties": { "SearchOptions": { "$ref": "#/definitions/AWS::QuickSight::Template.ListControlSearchOptions" }, "SelectAllOptions": { "$ref": "#/definitions/AWS::QuickSight::Template.ListControlSelectAllOptions" }, "TitleOptions": { "$ref": "#/definitions/AWS::QuickSight::Template.LabelOptions" } }, "type": "object" }, "AWS::QuickSight::Template.ListControlSearchOptions": { "additionalProperties": false, "properties": { "Visibility": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Template.ListControlSelectAllOptions": { "additionalProperties": false, "properties": { "Visibility": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Template.LoadingAnimation": { "additionalProperties": false, "properties": { "Visibility": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Template.LocalNavigationConfiguration": { "additionalProperties": false, "properties": { "TargetSheetId": { "type": "string" } }, "required": [ "TargetSheetId" ], "type": "object" }, "AWS::QuickSight::Template.LongFormatText": { "additionalProperties": false, "properties": { "PlainText": { "type": "string" }, "RichText": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Template.MappedDataSetParameter": { "additionalProperties": false, "properties": { "DataSetIdentifier": { "type": "string" }, "DataSetParameterName": { "type": "string" } }, "required": [ "DataSetIdentifier", "DataSetParameterName" ], "type": "object" }, "AWS::QuickSight::Template.MaximumLabelType": { "additionalProperties": false, "properties": { "Visibility": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Template.MaximumMinimumComputation": { "additionalProperties": false, "properties": { "ComputationId": { "type": "string" }, "Name": { "type": "string" }, "Time": { "$ref": "#/definitions/AWS::QuickSight::Template.DimensionField" }, "Type": { "type": "string" }, "Value": { "$ref": "#/definitions/AWS::QuickSight::Template.MeasureField" } }, "required": [ "ComputationId", "Time", "Type" ], "type": "object" }, "AWS::QuickSight::Template.MeasureField": { "additionalProperties": false, "properties": { "CalculatedMeasureField": { "$ref": "#/definitions/AWS::QuickSight::Template.CalculatedMeasureField" }, "CategoricalMeasureField": { "$ref": "#/definitions/AWS::QuickSight::Template.CategoricalMeasureField" }, "DateMeasureField": { "$ref": "#/definitions/AWS::QuickSight::Template.DateMeasureField" }, "NumericalMeasureField": { "$ref": "#/definitions/AWS::QuickSight::Template.NumericalMeasureField" } }, "type": "object" }, "AWS::QuickSight::Template.MetricComparisonComputation": { "additionalProperties": false, "properties": { "ComputationId": { "type": "string" }, "FromValue": { "$ref": "#/definitions/AWS::QuickSight::Template.MeasureField" }, "Name": { "type": "string" }, "TargetValue": { "$ref": "#/definitions/AWS::QuickSight::Template.MeasureField" }, "Time": { "$ref": "#/definitions/AWS::QuickSight::Template.DimensionField" } }, "required": [ "ComputationId", "FromValue", "TargetValue", "Time" ], "type": "object" }, "AWS::QuickSight::Template.MinimumLabelType": { "additionalProperties": false, "properties": { "Visibility": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Template.MissingDataConfiguration": { "additionalProperties": false, "properties": { "TreatmentOption": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Template.NegativeValueConfiguration": { "additionalProperties": false, "properties": { "DisplayMode": { "type": "string" } }, "required": [ "DisplayMode" ], "type": "object" }, "AWS::QuickSight::Template.NullValueFormatConfiguration": { "additionalProperties": false, "properties": { "NullString": { "type": "string" } }, "required": [ "NullString" ], "type": "object" }, "AWS::QuickSight::Template.NumberDisplayFormatConfiguration": { "additionalProperties": false, "properties": { "DecimalPlacesConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Template.DecimalPlacesConfiguration" }, "NegativeValueConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Template.NegativeValueConfiguration" }, "NullValueFormatConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Template.NullValueFormatConfiguration" }, "NumberScale": { "type": "string" }, "Prefix": { "type": "string" }, "SeparatorConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Template.NumericSeparatorConfiguration" }, "Suffix": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Template.NumberFormatConfiguration": { "additionalProperties": false, "properties": { "FormatConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Template.NumericFormatConfiguration" } }, "type": "object" }, "AWS::QuickSight::Template.NumericAxisOptions": { "additionalProperties": false, "properties": { "Range": { "$ref": "#/definitions/AWS::QuickSight::Template.AxisDisplayRange" }, "Scale": { "$ref": "#/definitions/AWS::QuickSight::Template.AxisScale" } }, "type": "object" }, "AWS::QuickSight::Template.NumericEqualityDrillDownFilter": { "additionalProperties": false, "properties": { "Column": { "$ref": "#/definitions/AWS::QuickSight::Template.ColumnIdentifier" }, "Value": { "type": "number" } }, "required": [ "Column", "Value" ], "type": "object" }, "AWS::QuickSight::Template.NumericEqualityFilter": { "additionalProperties": false, "properties": { "AggregationFunction": { "$ref": "#/definitions/AWS::QuickSight::Template.AggregationFunction" }, "Column": { "$ref": "#/definitions/AWS::QuickSight::Template.ColumnIdentifier" }, "FilterId": { "type": "string" }, "MatchOperator": { "type": "string" }, "NullOption": { "type": "string" }, "ParameterName": { "type": "string" }, "SelectAllOptions": { "type": "string" }, "Value": { "type": "number" } }, "required": [ "Column", "FilterId", "MatchOperator", "NullOption" ], "type": "object" }, "AWS::QuickSight::Template.NumericFormatConfiguration": { "additionalProperties": false, "properties": { "CurrencyDisplayFormatConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Template.CurrencyDisplayFormatConfiguration" }, "NumberDisplayFormatConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Template.NumberDisplayFormatConfiguration" }, "PercentageDisplayFormatConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Template.PercentageDisplayFormatConfiguration" } }, "type": "object" }, "AWS::QuickSight::Template.NumericRangeFilter": { "additionalProperties": false, "properties": { "AggregationFunction": { "$ref": "#/definitions/AWS::QuickSight::Template.AggregationFunction" }, "Column": { "$ref": "#/definitions/AWS::QuickSight::Template.ColumnIdentifier" }, "FilterId": { "type": "string" }, "IncludeMaximum": { "type": "boolean" }, "IncludeMinimum": { "type": "boolean" }, "NullOption": { "type": "string" }, "RangeMaximum": { "$ref": "#/definitions/AWS::QuickSight::Template.NumericRangeFilterValue" }, "RangeMinimum": { "$ref": "#/definitions/AWS::QuickSight::Template.NumericRangeFilterValue" }, "SelectAllOptions": { "type": "string" } }, "required": [ "Column", "FilterId", "NullOption" ], "type": "object" }, "AWS::QuickSight::Template.NumericRangeFilterValue": { "additionalProperties": false, "properties": { "Parameter": { "type": "string" }, "StaticValue": { "type": "number" } }, "type": "object" }, "AWS::QuickSight::Template.NumericSeparatorConfiguration": { "additionalProperties": false, "properties": { "DecimalSeparator": { "type": "string" }, "ThousandsSeparator": { "$ref": "#/definitions/AWS::QuickSight::Template.ThousandSeparatorOptions" } }, "type": "object" }, "AWS::QuickSight::Template.NumericalAggregationFunction": { "additionalProperties": false, "properties": { "PercentileAggregation": { "$ref": "#/definitions/AWS::QuickSight::Template.PercentileAggregation" }, "SimpleNumericalAggregation": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Template.NumericalDimensionField": { "additionalProperties": false, "properties": { "Column": { "$ref": "#/definitions/AWS::QuickSight::Template.ColumnIdentifier" }, "FieldId": { "type": "string" }, "FormatConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Template.NumberFormatConfiguration" }, "HierarchyId": { "type": "string" } }, "required": [ "Column", "FieldId" ], "type": "object" }, "AWS::QuickSight::Template.NumericalMeasureField": { "additionalProperties": false, "properties": { "AggregationFunction": { "$ref": "#/definitions/AWS::QuickSight::Template.NumericalAggregationFunction" }, "Column": { "$ref": "#/definitions/AWS::QuickSight::Template.ColumnIdentifier" }, "FieldId": { "type": "string" }, "FormatConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Template.NumberFormatConfiguration" } }, "required": [ "Column", "FieldId" ], "type": "object" }, "AWS::QuickSight::Template.PaginationConfiguration": { "additionalProperties": false, "properties": { "PageNumber": { "type": "number" }, "PageSize": { "type": "number" } }, "required": [ "PageNumber", "PageSize" ], "type": "object" }, "AWS::QuickSight::Template.PanelConfiguration": { "additionalProperties": false, "properties": { "BackgroundColor": { "type": "string" }, "BackgroundVisibility": { "type": "string" }, "BorderColor": { "type": "string" }, "BorderStyle": { "type": "string" }, "BorderThickness": { "type": "string" }, "BorderVisibility": { "type": "string" }, "GutterSpacing": { "type": "string" }, "GutterVisibility": { "type": "string" }, "Title": { "$ref": "#/definitions/AWS::QuickSight::Template.PanelTitleOptions" } }, "type": "object" }, "AWS::QuickSight::Template.PanelTitleOptions": { "additionalProperties": false, "properties": { "FontConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Template.FontConfiguration" }, "HorizontalTextAlignment": { "type": "string" }, "Visibility": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Template.ParameterControl": { "additionalProperties": false, "properties": { "DateTimePicker": { "$ref": "#/definitions/AWS::QuickSight::Template.ParameterDateTimePickerControl" }, "Dropdown": { "$ref": "#/definitions/AWS::QuickSight::Template.ParameterDropDownControl" }, "List": { "$ref": "#/definitions/AWS::QuickSight::Template.ParameterListControl" }, "Slider": { "$ref": "#/definitions/AWS::QuickSight::Template.ParameterSliderControl" }, "TextArea": { "$ref": "#/definitions/AWS::QuickSight::Template.ParameterTextAreaControl" }, "TextField": { "$ref": "#/definitions/AWS::QuickSight::Template.ParameterTextFieldControl" } }, "type": "object" }, "AWS::QuickSight::Template.ParameterDateTimePickerControl": { "additionalProperties": false, "properties": { "DisplayOptions": { "$ref": "#/definitions/AWS::QuickSight::Template.DateTimePickerControlDisplayOptions" }, "ParameterControlId": { "type": "string" }, "SourceParameterName": { "type": "string" }, "Title": { "type": "string" } }, "required": [ "ParameterControlId", "SourceParameterName", "Title" ], "type": "object" }, "AWS::QuickSight::Template.ParameterDeclaration": { "additionalProperties": false, "properties": { "DateTimeParameterDeclaration": { "$ref": "#/definitions/AWS::QuickSight::Template.DateTimeParameterDeclaration" }, "DecimalParameterDeclaration": { "$ref": "#/definitions/AWS::QuickSight::Template.DecimalParameterDeclaration" }, "IntegerParameterDeclaration": { "$ref": "#/definitions/AWS::QuickSight::Template.IntegerParameterDeclaration" }, "StringParameterDeclaration": { "$ref": "#/definitions/AWS::QuickSight::Template.StringParameterDeclaration" } }, "type": "object" }, "AWS::QuickSight::Template.ParameterDropDownControl": { "additionalProperties": false, "properties": { "CascadingControlConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Template.CascadingControlConfiguration" }, "DisplayOptions": { "$ref": "#/definitions/AWS::QuickSight::Template.DropDownControlDisplayOptions" }, "ParameterControlId": { "type": "string" }, "SelectableValues": { "$ref": "#/definitions/AWS::QuickSight::Template.ParameterSelectableValues" }, "SourceParameterName": { "type": "string" }, "Title": { "type": "string" }, "Type": { "type": "string" } }, "required": [ "ParameterControlId", "SourceParameterName", "Title" ], "type": "object" }, "AWS::QuickSight::Template.ParameterListControl": { "additionalProperties": false, "properties": { "CascadingControlConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Template.CascadingControlConfiguration" }, "DisplayOptions": { "$ref": "#/definitions/AWS::QuickSight::Template.ListControlDisplayOptions" }, "ParameterControlId": { "type": "string" }, "SelectableValues": { "$ref": "#/definitions/AWS::QuickSight::Template.ParameterSelectableValues" }, "SourceParameterName": { "type": "string" }, "Title": { "type": "string" }, "Type": { "type": "string" } }, "required": [ "ParameterControlId", "SourceParameterName", "Title" ], "type": "object" }, "AWS::QuickSight::Template.ParameterSelectableValues": { "additionalProperties": false, "properties": { "LinkToDataSetColumn": { "$ref": "#/definitions/AWS::QuickSight::Template.ColumnIdentifier" }, "Values": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Template.ParameterSliderControl": { "additionalProperties": false, "properties": { "DisplayOptions": { "$ref": "#/definitions/AWS::QuickSight::Template.SliderControlDisplayOptions" }, "MaximumValue": { "type": "number" }, "MinimumValue": { "type": "number" }, "ParameterControlId": { "type": "string" }, "SourceParameterName": { "type": "string" }, "StepSize": { "type": "number" }, "Title": { "type": "string" } }, "required": [ "MaximumValue", "MinimumValue", "ParameterControlId", "SourceParameterName", "StepSize", "Title" ], "type": "object" }, "AWS::QuickSight::Template.ParameterTextAreaControl": { "additionalProperties": false, "properties": { "Delimiter": { "type": "string" }, "DisplayOptions": { "$ref": "#/definitions/AWS::QuickSight::Template.TextAreaControlDisplayOptions" }, "ParameterControlId": { "type": "string" }, "SourceParameterName": { "type": "string" }, "Title": { "type": "string" } }, "required": [ "ParameterControlId", "SourceParameterName", "Title" ], "type": "object" }, "AWS::QuickSight::Template.ParameterTextFieldControl": { "additionalProperties": false, "properties": { "DisplayOptions": { "$ref": "#/definitions/AWS::QuickSight::Template.TextFieldControlDisplayOptions" }, "ParameterControlId": { "type": "string" }, "SourceParameterName": { "type": "string" }, "Title": { "type": "string" } }, "required": [ "ParameterControlId", "SourceParameterName", "Title" ], "type": "object" }, "AWS::QuickSight::Template.PercentVisibleRange": { "additionalProperties": false, "properties": { "From": { "type": "number" }, "To": { "type": "number" } }, "type": "object" }, "AWS::QuickSight::Template.PercentageDisplayFormatConfiguration": { "additionalProperties": false, "properties": { "DecimalPlacesConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Template.DecimalPlacesConfiguration" }, "NegativeValueConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Template.NegativeValueConfiguration" }, "NullValueFormatConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Template.NullValueFormatConfiguration" }, "Prefix": { "type": "string" }, "SeparatorConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Template.NumericSeparatorConfiguration" }, "Suffix": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Template.PercentileAggregation": { "additionalProperties": false, "properties": { "PercentileValue": { "type": "number" } }, "type": "object" }, "AWS::QuickSight::Template.PeriodOverPeriodComputation": { "additionalProperties": false, "properties": { "ComputationId": { "type": "string" }, "Name": { "type": "string" }, "Time": { "$ref": "#/definitions/AWS::QuickSight::Template.DimensionField" }, "Value": { "$ref": "#/definitions/AWS::QuickSight::Template.MeasureField" } }, "required": [ "ComputationId", "Time" ], "type": "object" }, "AWS::QuickSight::Template.PeriodToDateComputation": { "additionalProperties": false, "properties": { "ComputationId": { "type": "string" }, "Name": { "type": "string" }, "PeriodTimeGranularity": { "type": "string" }, "Time": { "$ref": "#/definitions/AWS::QuickSight::Template.DimensionField" }, "Value": { "$ref": "#/definitions/AWS::QuickSight::Template.MeasureField" } }, "required": [ "ComputationId", "Time" ], "type": "object" }, "AWS::QuickSight::Template.PieChartAggregatedFieldWells": { "additionalProperties": false, "properties": { "Category": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.DimensionField" }, "type": "array" }, "SmallMultiples": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.DimensionField" }, "type": "array" }, "Values": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.MeasureField" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Template.PieChartConfiguration": { "additionalProperties": false, "properties": { "CategoryLabelOptions": { "$ref": "#/definitions/AWS::QuickSight::Template.ChartAxisLabelOptions" }, "ContributionAnalysisDefaults": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.ContributionAnalysisDefault" }, "type": "array" }, "DataLabels": { "$ref": "#/definitions/AWS::QuickSight::Template.DataLabelOptions" }, "DonutOptions": { "$ref": "#/definitions/AWS::QuickSight::Template.DonutOptions" }, "FieldWells": { "$ref": "#/definitions/AWS::QuickSight::Template.PieChartFieldWells" }, "Legend": { "$ref": "#/definitions/AWS::QuickSight::Template.LegendOptions" }, "SmallMultiplesOptions": { "$ref": "#/definitions/AWS::QuickSight::Template.SmallMultiplesOptions" }, "SortConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Template.PieChartSortConfiguration" }, "Tooltip": { "$ref": "#/definitions/AWS::QuickSight::Template.TooltipOptions" }, "ValueLabelOptions": { "$ref": "#/definitions/AWS::QuickSight::Template.ChartAxisLabelOptions" }, "VisualPalette": { "$ref": "#/definitions/AWS::QuickSight::Template.VisualPalette" } }, "type": "object" }, "AWS::QuickSight::Template.PieChartFieldWells": { "additionalProperties": false, "properties": { "PieChartAggregatedFieldWells": { "$ref": "#/definitions/AWS::QuickSight::Template.PieChartAggregatedFieldWells" } }, "type": "object" }, "AWS::QuickSight::Template.PieChartSortConfiguration": { "additionalProperties": false, "properties": { "CategoryItemsLimit": { "$ref": "#/definitions/AWS::QuickSight::Template.ItemsLimitConfiguration" }, "CategorySort": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.FieldSortOptions" }, "type": "array" }, "SmallMultiplesLimitConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Template.ItemsLimitConfiguration" }, "SmallMultiplesSort": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.FieldSortOptions" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Template.PieChartVisual": { "additionalProperties": false, "properties": { "Actions": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.VisualCustomAction" }, "type": "array" }, "ChartConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Template.PieChartConfiguration" }, "ColumnHierarchies": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.ColumnHierarchy" }, "type": "array" }, "Subtitle": { "$ref": "#/definitions/AWS::QuickSight::Template.VisualSubtitleLabelOptions" }, "Title": { "$ref": "#/definitions/AWS::QuickSight::Template.VisualTitleLabelOptions" }, "VisualId": { "type": "string" } }, "required": [ "VisualId" ], "type": "object" }, "AWS::QuickSight::Template.PivotFieldSortOptions": { "additionalProperties": false, "properties": { "FieldId": { "type": "string" }, "SortBy": { "$ref": "#/definitions/AWS::QuickSight::Template.PivotTableSortBy" } }, "required": [ "FieldId", "SortBy" ], "type": "object" }, "AWS::QuickSight::Template.PivotTableAggregatedFieldWells": { "additionalProperties": false, "properties": { "Columns": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.DimensionField" }, "type": "array" }, "Rows": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.DimensionField" }, "type": "array" }, "Values": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.MeasureField" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Template.PivotTableCellConditionalFormatting": { "additionalProperties": false, "properties": { "FieldId": { "type": "string" }, "Scope": { "$ref": "#/definitions/AWS::QuickSight::Template.PivotTableConditionalFormattingScope" }, "Scopes": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.PivotTableConditionalFormattingScope" }, "type": "array" }, "TextFormat": { "$ref": "#/definitions/AWS::QuickSight::Template.TextConditionalFormat" } }, "required": [ "FieldId" ], "type": "object" }, "AWS::QuickSight::Template.PivotTableConditionalFormatting": { "additionalProperties": false, "properties": { "ConditionalFormattingOptions": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.PivotTableConditionalFormattingOption" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Template.PivotTableConditionalFormattingOption": { "additionalProperties": false, "properties": { "Cell": { "$ref": "#/definitions/AWS::QuickSight::Template.PivotTableCellConditionalFormatting" } }, "type": "object" }, "AWS::QuickSight::Template.PivotTableConditionalFormattingScope": { "additionalProperties": false, "properties": { "Role": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Template.PivotTableConfiguration": { "additionalProperties": false, "properties": { "FieldOptions": { "$ref": "#/definitions/AWS::QuickSight::Template.PivotTableFieldOptions" }, "FieldWells": { "$ref": "#/definitions/AWS::QuickSight::Template.PivotTableFieldWells" }, "PaginatedReportOptions": { "$ref": "#/definitions/AWS::QuickSight::Template.PivotTablePaginatedReportOptions" }, "SortConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Template.PivotTableSortConfiguration" }, "TableOptions": { "$ref": "#/definitions/AWS::QuickSight::Template.PivotTableOptions" }, "TotalOptions": { "$ref": "#/definitions/AWS::QuickSight::Template.PivotTableTotalOptions" } }, "type": "object" }, "AWS::QuickSight::Template.PivotTableDataPathOption": { "additionalProperties": false, "properties": { "DataPathList": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.DataPathValue" }, "type": "array" }, "Width": { "type": "string" } }, "required": [ "DataPathList" ], "type": "object" }, "AWS::QuickSight::Template.PivotTableFieldCollapseStateOption": { "additionalProperties": false, "properties": { "State": { "type": "string" }, "Target": { "$ref": "#/definitions/AWS::QuickSight::Template.PivotTableFieldCollapseStateTarget" } }, "required": [ "Target" ], "type": "object" }, "AWS::QuickSight::Template.PivotTableFieldCollapseStateTarget": { "additionalProperties": false, "properties": { "FieldDataPathValues": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.DataPathValue" }, "type": "array" }, "FieldId": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Template.PivotTableFieldOption": { "additionalProperties": false, "properties": { "CustomLabel": { "type": "string" }, "FieldId": { "type": "string" }, "Visibility": { "type": "string" } }, "required": [ "FieldId" ], "type": "object" }, "AWS::QuickSight::Template.PivotTableFieldOptions": { "additionalProperties": false, "properties": { "CollapseStateOptions": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.PivotTableFieldCollapseStateOption" }, "type": "array" }, "DataPathOptions": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.PivotTableDataPathOption" }, "type": "array" }, "SelectedFieldOptions": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.PivotTableFieldOption" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Template.PivotTableFieldSubtotalOptions": { "additionalProperties": false, "properties": { "FieldId": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Template.PivotTableFieldWells": { "additionalProperties": false, "properties": { "PivotTableAggregatedFieldWells": { "$ref": "#/definitions/AWS::QuickSight::Template.PivotTableAggregatedFieldWells" } }, "type": "object" }, "AWS::QuickSight::Template.PivotTableOptions": { "additionalProperties": false, "properties": { "CellStyle": { "$ref": "#/definitions/AWS::QuickSight::Template.TableCellStyle" }, "CollapsedRowDimensionsVisibility": { "type": "string" }, "ColumnHeaderStyle": { "$ref": "#/definitions/AWS::QuickSight::Template.TableCellStyle" }, "ColumnNamesVisibility": { "type": "string" }, "MetricPlacement": { "type": "string" }, "RowAlternateColorOptions": { "$ref": "#/definitions/AWS::QuickSight::Template.RowAlternateColorOptions" }, "RowFieldNamesStyle": { "$ref": "#/definitions/AWS::QuickSight::Template.TableCellStyle" }, "RowHeaderStyle": { "$ref": "#/definitions/AWS::QuickSight::Template.TableCellStyle" }, "SingleMetricVisibility": { "type": "string" }, "ToggleButtonsVisibility": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Template.PivotTablePaginatedReportOptions": { "additionalProperties": false, "properties": { "OverflowColumnHeaderVisibility": { "type": "string" }, "VerticalOverflowVisibility": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Template.PivotTableSortBy": { "additionalProperties": false, "properties": { "Column": { "$ref": "#/definitions/AWS::QuickSight::Template.ColumnSort" }, "DataPath": { "$ref": "#/definitions/AWS::QuickSight::Template.DataPathSort" }, "Field": { "$ref": "#/definitions/AWS::QuickSight::Template.FieldSort" } }, "type": "object" }, "AWS::QuickSight::Template.PivotTableSortConfiguration": { "additionalProperties": false, "properties": { "FieldSortOptions": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.PivotFieldSortOptions" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Template.PivotTableTotalOptions": { "additionalProperties": false, "properties": { "ColumnSubtotalOptions": { "$ref": "#/definitions/AWS::QuickSight::Template.SubtotalOptions" }, "ColumnTotalOptions": { "$ref": "#/definitions/AWS::QuickSight::Template.PivotTotalOptions" }, "RowSubtotalOptions": { "$ref": "#/definitions/AWS::QuickSight::Template.SubtotalOptions" }, "RowTotalOptions": { "$ref": "#/definitions/AWS::QuickSight::Template.PivotTotalOptions" } }, "type": "object" }, "AWS::QuickSight::Template.PivotTableVisual": { "additionalProperties": false, "properties": { "Actions": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.VisualCustomAction" }, "type": "array" }, "ChartConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Template.PivotTableConfiguration" }, "ConditionalFormatting": { "$ref": "#/definitions/AWS::QuickSight::Template.PivotTableConditionalFormatting" }, "Subtitle": { "$ref": "#/definitions/AWS::QuickSight::Template.VisualSubtitleLabelOptions" }, "Title": { "$ref": "#/definitions/AWS::QuickSight::Template.VisualTitleLabelOptions" }, "VisualId": { "type": "string" } }, "required": [ "VisualId" ], "type": "object" }, "AWS::QuickSight::Template.PivotTotalOptions": { "additionalProperties": false, "properties": { "CustomLabel": { "type": "string" }, "MetricHeaderCellStyle": { "$ref": "#/definitions/AWS::QuickSight::Template.TableCellStyle" }, "Placement": { "type": "string" }, "ScrollStatus": { "type": "string" }, "TotalCellStyle": { "$ref": "#/definitions/AWS::QuickSight::Template.TableCellStyle" }, "TotalsVisibility": { "type": "string" }, "ValueCellStyle": { "$ref": "#/definitions/AWS::QuickSight::Template.TableCellStyle" } }, "type": "object" }, "AWS::QuickSight::Template.PredefinedHierarchy": { "additionalProperties": false, "properties": { "Columns": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.ColumnIdentifier" }, "type": "array" }, "DrillDownFilters": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.DrillDownFilter" }, "type": "array" }, "HierarchyId": { "type": "string" } }, "required": [ "Columns", "HierarchyId" ], "type": "object" }, "AWS::QuickSight::Template.ProgressBarOptions": { "additionalProperties": false, "properties": { "Visibility": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Template.RadarChartAggregatedFieldWells": { "additionalProperties": false, "properties": { "Category": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.DimensionField" }, "type": "array" }, "Color": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.DimensionField" }, "type": "array" }, "Values": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.MeasureField" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Template.RadarChartAreaStyleSettings": { "additionalProperties": false, "properties": { "Visibility": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Template.RadarChartConfiguration": { "additionalProperties": false, "properties": { "AlternateBandColorsVisibility": { "type": "string" }, "AlternateBandEvenColor": { "type": "string" }, "AlternateBandOddColor": { "type": "string" }, "AxesRangeScale": { "type": "string" }, "BaseSeriesSettings": { "$ref": "#/definitions/AWS::QuickSight::Template.RadarChartSeriesSettings" }, "CategoryAxis": { "$ref": "#/definitions/AWS::QuickSight::Template.AxisDisplayOptions" }, "CategoryLabelOptions": { "$ref": "#/definitions/AWS::QuickSight::Template.ChartAxisLabelOptions" }, "ColorAxis": { "$ref": "#/definitions/AWS::QuickSight::Template.AxisDisplayOptions" }, "ColorLabelOptions": { "$ref": "#/definitions/AWS::QuickSight::Template.ChartAxisLabelOptions" }, "FieldWells": { "$ref": "#/definitions/AWS::QuickSight::Template.RadarChartFieldWells" }, "Legend": { "$ref": "#/definitions/AWS::QuickSight::Template.LegendOptions" }, "Shape": { "type": "string" }, "SortConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Template.RadarChartSortConfiguration" }, "StartAngle": { "type": "number" }, "VisualPalette": { "$ref": "#/definitions/AWS::QuickSight::Template.VisualPalette" } }, "type": "object" }, "AWS::QuickSight::Template.RadarChartFieldWells": { "additionalProperties": false, "properties": { "RadarChartAggregatedFieldWells": { "$ref": "#/definitions/AWS::QuickSight::Template.RadarChartAggregatedFieldWells" } }, "type": "object" }, "AWS::QuickSight::Template.RadarChartSeriesSettings": { "additionalProperties": false, "properties": { "AreaStyleSettings": { "$ref": "#/definitions/AWS::QuickSight::Template.RadarChartAreaStyleSettings" } }, "type": "object" }, "AWS::QuickSight::Template.RadarChartSortConfiguration": { "additionalProperties": false, "properties": { "CategoryItemsLimit": { "$ref": "#/definitions/AWS::QuickSight::Template.ItemsLimitConfiguration" }, "CategorySort": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.FieldSortOptions" }, "type": "array" }, "ColorItemsLimit": { "$ref": "#/definitions/AWS::QuickSight::Template.ItemsLimitConfiguration" }, "ColorSort": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.FieldSortOptions" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Template.RadarChartVisual": { "additionalProperties": false, "properties": { "Actions": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.VisualCustomAction" }, "type": "array" }, "ChartConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Template.RadarChartConfiguration" }, "ColumnHierarchies": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.ColumnHierarchy" }, "type": "array" }, "Subtitle": { "$ref": "#/definitions/AWS::QuickSight::Template.VisualSubtitleLabelOptions" }, "Title": { "$ref": "#/definitions/AWS::QuickSight::Template.VisualTitleLabelOptions" }, "VisualId": { "type": "string" } }, "required": [ "VisualId" ], "type": "object" }, "AWS::QuickSight::Template.RangeEndsLabelType": { "additionalProperties": false, "properties": { "Visibility": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Template.ReferenceLine": { "additionalProperties": false, "properties": { "DataConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Template.ReferenceLineDataConfiguration" }, "LabelConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Template.ReferenceLineLabelConfiguration" }, "Status": { "type": "string" }, "StyleConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Template.ReferenceLineStyleConfiguration" } }, "required": [ "DataConfiguration" ], "type": "object" }, "AWS::QuickSight::Template.ReferenceLineCustomLabelConfiguration": { "additionalProperties": false, "properties": { "CustomLabel": { "type": "string" } }, "required": [ "CustomLabel" ], "type": "object" }, "AWS::QuickSight::Template.ReferenceLineDataConfiguration": { "additionalProperties": false, "properties": { "AxisBinding": { "type": "string" }, "DynamicConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Template.ReferenceLineDynamicDataConfiguration" }, "StaticConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Template.ReferenceLineStaticDataConfiguration" } }, "type": "object" }, "AWS::QuickSight::Template.ReferenceLineDynamicDataConfiguration": { "additionalProperties": false, "properties": { "Calculation": { "$ref": "#/definitions/AWS::QuickSight::Template.NumericalAggregationFunction" }, "Column": { "$ref": "#/definitions/AWS::QuickSight::Template.ColumnIdentifier" }, "MeasureAggregationFunction": { "$ref": "#/definitions/AWS::QuickSight::Template.AggregationFunction" } }, "required": [ "Calculation", "Column" ], "type": "object" }, "AWS::QuickSight::Template.ReferenceLineLabelConfiguration": { "additionalProperties": false, "properties": { "CustomLabelConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Template.ReferenceLineCustomLabelConfiguration" }, "FontColor": { "type": "string" }, "FontConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Template.FontConfiguration" }, "HorizontalPosition": { "type": "string" }, "ValueLabelConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Template.ReferenceLineValueLabelConfiguration" }, "VerticalPosition": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Template.ReferenceLineStaticDataConfiguration": { "additionalProperties": false, "properties": { "Value": { "type": "number" } }, "required": [ "Value" ], "type": "object" }, "AWS::QuickSight::Template.ReferenceLineStyleConfiguration": { "additionalProperties": false, "properties": { "Color": { "type": "string" }, "Pattern": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Template.ReferenceLineValueLabelConfiguration": { "additionalProperties": false, "properties": { "FormatConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Template.NumericFormatConfiguration" }, "RelativePosition": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Template.RelativeDateTimeControlDisplayOptions": { "additionalProperties": false, "properties": { "DateTimeFormat": { "type": "string" }, "TitleOptions": { "$ref": "#/definitions/AWS::QuickSight::Template.LabelOptions" } }, "type": "object" }, "AWS::QuickSight::Template.RelativeDatesFilter": { "additionalProperties": false, "properties": { "AnchorDateConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Template.AnchorDateConfiguration" }, "Column": { "$ref": "#/definitions/AWS::QuickSight::Template.ColumnIdentifier" }, "ExcludePeriodConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Template.ExcludePeriodConfiguration" }, "FilterId": { "type": "string" }, "MinimumGranularity": { "type": "string" }, "NullOption": { "type": "string" }, "ParameterName": { "type": "string" }, "RelativeDateType": { "type": "string" }, "RelativeDateValue": { "type": "number" }, "TimeGranularity": { "type": "string" } }, "required": [ "AnchorDateConfiguration", "Column", "FilterId", "NullOption", "RelativeDateType", "TimeGranularity" ], "type": "object" }, "AWS::QuickSight::Template.ResourcePermission": { "additionalProperties": false, "properties": { "Actions": { "items": { "type": "string" }, "type": "array" }, "Principal": { "type": "string" }, "Resource": { "type": "string" } }, "required": [ "Actions", "Principal" ], "type": "object" }, "AWS::QuickSight::Template.RollingDateConfiguration": { "additionalProperties": false, "properties": { "DataSetIdentifier": { "type": "string" }, "Expression": { "type": "string" } }, "required": [ "Expression" ], "type": "object" }, "AWS::QuickSight::Template.RowAlternateColorOptions": { "additionalProperties": false, "properties": { "RowAlternateColors": { "items": { "type": "string" }, "type": "array" }, "Status": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Template.SameSheetTargetVisualConfiguration": { "additionalProperties": false, "properties": { "TargetVisualOptions": { "type": "string" }, "TargetVisuals": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Template.SankeyDiagramAggregatedFieldWells": { "additionalProperties": false, "properties": { "Destination": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.DimensionField" }, "type": "array" }, "Source": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.DimensionField" }, "type": "array" }, "Weight": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.MeasureField" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Template.SankeyDiagramChartConfiguration": { "additionalProperties": false, "properties": { "DataLabels": { "$ref": "#/definitions/AWS::QuickSight::Template.DataLabelOptions" }, "FieldWells": { "$ref": "#/definitions/AWS::QuickSight::Template.SankeyDiagramFieldWells" }, "SortConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Template.SankeyDiagramSortConfiguration" } }, "type": "object" }, "AWS::QuickSight::Template.SankeyDiagramFieldWells": { "additionalProperties": false, "properties": { "SankeyDiagramAggregatedFieldWells": { "$ref": "#/definitions/AWS::QuickSight::Template.SankeyDiagramAggregatedFieldWells" } }, "type": "object" }, "AWS::QuickSight::Template.SankeyDiagramSortConfiguration": { "additionalProperties": false, "properties": { "DestinationItemsLimit": { "$ref": "#/definitions/AWS::QuickSight::Template.ItemsLimitConfiguration" }, "SourceItemsLimit": { "$ref": "#/definitions/AWS::QuickSight::Template.ItemsLimitConfiguration" }, "WeightSort": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.FieldSortOptions" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Template.SankeyDiagramVisual": { "additionalProperties": false, "properties": { "Actions": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.VisualCustomAction" }, "type": "array" }, "ChartConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Template.SankeyDiagramChartConfiguration" }, "Subtitle": { "$ref": "#/definitions/AWS::QuickSight::Template.VisualSubtitleLabelOptions" }, "Title": { "$ref": "#/definitions/AWS::QuickSight::Template.VisualTitleLabelOptions" }, "VisualId": { "type": "string" } }, "required": [ "VisualId" ], "type": "object" }, "AWS::QuickSight::Template.ScatterPlotCategoricallyAggregatedFieldWells": { "additionalProperties": false, "properties": { "Category": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.DimensionField" }, "type": "array" }, "Label": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.DimensionField" }, "type": "array" }, "Size": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.MeasureField" }, "type": "array" }, "XAxis": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.MeasureField" }, "type": "array" }, "YAxis": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.MeasureField" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Template.ScatterPlotConfiguration": { "additionalProperties": false, "properties": { "DataLabels": { "$ref": "#/definitions/AWS::QuickSight::Template.DataLabelOptions" }, "FieldWells": { "$ref": "#/definitions/AWS::QuickSight::Template.ScatterPlotFieldWells" }, "Legend": { "$ref": "#/definitions/AWS::QuickSight::Template.LegendOptions" }, "Tooltip": { "$ref": "#/definitions/AWS::QuickSight::Template.TooltipOptions" }, "VisualPalette": { "$ref": "#/definitions/AWS::QuickSight::Template.VisualPalette" }, "XAxisDisplayOptions": { "$ref": "#/definitions/AWS::QuickSight::Template.AxisDisplayOptions" }, "XAxisLabelOptions": { "$ref": "#/definitions/AWS::QuickSight::Template.ChartAxisLabelOptions" }, "YAxisDisplayOptions": { "$ref": "#/definitions/AWS::QuickSight::Template.AxisDisplayOptions" }, "YAxisLabelOptions": { "$ref": "#/definitions/AWS::QuickSight::Template.ChartAxisLabelOptions" } }, "type": "object" }, "AWS::QuickSight::Template.ScatterPlotFieldWells": { "additionalProperties": false, "properties": { "ScatterPlotCategoricallyAggregatedFieldWells": { "$ref": "#/definitions/AWS::QuickSight::Template.ScatterPlotCategoricallyAggregatedFieldWells" }, "ScatterPlotUnaggregatedFieldWells": { "$ref": "#/definitions/AWS::QuickSight::Template.ScatterPlotUnaggregatedFieldWells" } }, "type": "object" }, "AWS::QuickSight::Template.ScatterPlotUnaggregatedFieldWells": { "additionalProperties": false, "properties": { "Category": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.DimensionField" }, "type": "array" }, "Label": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.DimensionField" }, "type": "array" }, "Size": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.MeasureField" }, "type": "array" }, "XAxis": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.DimensionField" }, "type": "array" }, "YAxis": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.DimensionField" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Template.ScatterPlotVisual": { "additionalProperties": false, "properties": { "Actions": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.VisualCustomAction" }, "type": "array" }, "ChartConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Template.ScatterPlotConfiguration" }, "ColumnHierarchies": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.ColumnHierarchy" }, "type": "array" }, "Subtitle": { "$ref": "#/definitions/AWS::QuickSight::Template.VisualSubtitleLabelOptions" }, "Title": { "$ref": "#/definitions/AWS::QuickSight::Template.VisualTitleLabelOptions" }, "VisualId": { "type": "string" } }, "required": [ "VisualId" ], "type": "object" }, "AWS::QuickSight::Template.ScrollBarOptions": { "additionalProperties": false, "properties": { "Visibility": { "type": "string" }, "VisibleRange": { "$ref": "#/definitions/AWS::QuickSight::Template.VisibleRangeOptions" } }, "type": "object" }, "AWS::QuickSight::Template.SecondaryValueOptions": { "additionalProperties": false, "properties": { "Visibility": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Template.SectionAfterPageBreak": { "additionalProperties": false, "properties": { "Status": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Template.SectionBasedLayoutCanvasSizeOptions": { "additionalProperties": false, "properties": { "PaperCanvasSizeOptions": { "$ref": "#/definitions/AWS::QuickSight::Template.SectionBasedLayoutPaperCanvasSizeOptions" } }, "type": "object" }, "AWS::QuickSight::Template.SectionBasedLayoutConfiguration": { "additionalProperties": false, "properties": { "BodySections": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.BodySectionConfiguration" }, "type": "array" }, "CanvasSizeOptions": { "$ref": "#/definitions/AWS::QuickSight::Template.SectionBasedLayoutCanvasSizeOptions" }, "FooterSections": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.HeaderFooterSectionConfiguration" }, "type": "array" }, "HeaderSections": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.HeaderFooterSectionConfiguration" }, "type": "array" } }, "required": [ "BodySections", "CanvasSizeOptions", "FooterSections", "HeaderSections" ], "type": "object" }, "AWS::QuickSight::Template.SectionBasedLayoutPaperCanvasSizeOptions": { "additionalProperties": false, "properties": { "PaperMargin": { "$ref": "#/definitions/AWS::QuickSight::Template.Spacing" }, "PaperOrientation": { "type": "string" }, "PaperSize": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Template.SectionLayoutConfiguration": { "additionalProperties": false, "properties": { "FreeFormLayout": { "$ref": "#/definitions/AWS::QuickSight::Template.FreeFormSectionLayoutConfiguration" } }, "required": [ "FreeFormLayout" ], "type": "object" }, "AWS::QuickSight::Template.SectionPageBreakConfiguration": { "additionalProperties": false, "properties": { "After": { "$ref": "#/definitions/AWS::QuickSight::Template.SectionAfterPageBreak" } }, "type": "object" }, "AWS::QuickSight::Template.SectionStyle": { "additionalProperties": false, "properties": { "Height": { "type": "string" }, "Padding": { "$ref": "#/definitions/AWS::QuickSight::Template.Spacing" } }, "type": "object" }, "AWS::QuickSight::Template.SelectedSheetsFilterScopeConfiguration": { "additionalProperties": false, "properties": { "SheetVisualScopingConfigurations": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.SheetVisualScopingConfiguration" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Template.SeriesItem": { "additionalProperties": false, "properties": { "DataFieldSeriesItem": { "$ref": "#/definitions/AWS::QuickSight::Template.DataFieldSeriesItem" }, "FieldSeriesItem": { "$ref": "#/definitions/AWS::QuickSight::Template.FieldSeriesItem" } }, "type": "object" }, "AWS::QuickSight::Template.SetParameterValueConfiguration": { "additionalProperties": false, "properties": { "DestinationParameterName": { "type": "string" }, "Value": { "$ref": "#/definitions/AWS::QuickSight::Template.DestinationParameterValueConfiguration" } }, "required": [ "DestinationParameterName", "Value" ], "type": "object" }, "AWS::QuickSight::Template.ShapeConditionalFormat": { "additionalProperties": false, "properties": { "BackgroundColor": { "$ref": "#/definitions/AWS::QuickSight::Template.ConditionalFormattingColor" } }, "required": [ "BackgroundColor" ], "type": "object" }, "AWS::QuickSight::Template.Sheet": { "additionalProperties": false, "properties": { "Name": { "type": "string" }, "SheetId": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Template.SheetControlLayout": { "additionalProperties": false, "properties": { "Configuration": { "$ref": "#/definitions/AWS::QuickSight::Template.SheetControlLayoutConfiguration" } }, "required": [ "Configuration" ], "type": "object" }, "AWS::QuickSight::Template.SheetControlLayoutConfiguration": { "additionalProperties": false, "properties": { "GridLayout": { "$ref": "#/definitions/AWS::QuickSight::Template.GridLayoutConfiguration" } }, "type": "object" }, "AWS::QuickSight::Template.SheetDefinition": { "additionalProperties": false, "properties": { "ContentType": { "type": "string" }, "Description": { "type": "string" }, "FilterControls": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.FilterControl" }, "type": "array" }, "Layouts": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.Layout" }, "type": "array" }, "Name": { "type": "string" }, "ParameterControls": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.ParameterControl" }, "type": "array" }, "SheetControlLayouts": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.SheetControlLayout" }, "type": "array" }, "SheetId": { "type": "string" }, "TextBoxes": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.SheetTextBox" }, "type": "array" }, "Title": { "type": "string" }, "Visuals": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.Visual" }, "type": "array" } }, "required": [ "SheetId" ], "type": "object" }, "AWS::QuickSight::Template.SheetElementConfigurationOverrides": { "additionalProperties": false, "properties": { "Visibility": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Template.SheetElementRenderingRule": { "additionalProperties": false, "properties": { "ConfigurationOverrides": { "$ref": "#/definitions/AWS::QuickSight::Template.SheetElementConfigurationOverrides" }, "Expression": { "type": "string" } }, "required": [ "ConfigurationOverrides", "Expression" ], "type": "object" }, "AWS::QuickSight::Template.SheetTextBox": { "additionalProperties": false, "properties": { "Content": { "type": "string" }, "SheetTextBoxId": { "type": "string" } }, "required": [ "SheetTextBoxId" ], "type": "object" }, "AWS::QuickSight::Template.SheetVisualScopingConfiguration": { "additionalProperties": false, "properties": { "Scope": { "type": "string" }, "SheetId": { "type": "string" }, "VisualIds": { "items": { "type": "string" }, "type": "array" } }, "required": [ "Scope", "SheetId" ], "type": "object" }, "AWS::QuickSight::Template.ShortFormatText": { "additionalProperties": false, "properties": { "PlainText": { "type": "string" }, "RichText": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Template.SimpleClusterMarker": { "additionalProperties": false, "properties": { "Color": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Template.SliderControlDisplayOptions": { "additionalProperties": false, "properties": { "TitleOptions": { "$ref": "#/definitions/AWS::QuickSight::Template.LabelOptions" } }, "type": "object" }, "AWS::QuickSight::Template.SmallMultiplesOptions": { "additionalProperties": false, "properties": { "MaxVisibleColumns": { "type": "number" }, "MaxVisibleRows": { "type": "number" }, "PanelConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Template.PanelConfiguration" } }, "type": "object" }, "AWS::QuickSight::Template.Spacing": { "additionalProperties": false, "properties": { "Bottom": { "type": "string" }, "Left": { "type": "string" }, "Right": { "type": "string" }, "Top": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Template.StringDefaultValues": { "additionalProperties": false, "properties": { "DynamicValue": { "$ref": "#/definitions/AWS::QuickSight::Template.DynamicDefaultValue" }, "StaticValues": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Template.StringFormatConfiguration": { "additionalProperties": false, "properties": { "NullValueFormatConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Template.NullValueFormatConfiguration" }, "NumericFormatConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Template.NumericFormatConfiguration" } }, "type": "object" }, "AWS::QuickSight::Template.StringParameterDeclaration": { "additionalProperties": false, "properties": { "DefaultValues": { "$ref": "#/definitions/AWS::QuickSight::Template.StringDefaultValues" }, "MappedDataSetParameters": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.MappedDataSetParameter" }, "type": "array" }, "Name": { "type": "string" }, "ParameterValueType": { "type": "string" }, "ValueWhenUnset": { "$ref": "#/definitions/AWS::QuickSight::Template.StringValueWhenUnsetConfiguration" } }, "required": [ "Name", "ParameterValueType" ], "type": "object" }, "AWS::QuickSight::Template.StringValueWhenUnsetConfiguration": { "additionalProperties": false, "properties": { "CustomValue": { "type": "string" }, "ValueWhenUnsetOption": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Template.SubtotalOptions": { "additionalProperties": false, "properties": { "CustomLabel": { "type": "string" }, "FieldLevel": { "type": "string" }, "FieldLevelOptions": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.PivotTableFieldSubtotalOptions" }, "type": "array" }, "MetricHeaderCellStyle": { "$ref": "#/definitions/AWS::QuickSight::Template.TableCellStyle" }, "TotalCellStyle": { "$ref": "#/definitions/AWS::QuickSight::Template.TableCellStyle" }, "TotalsVisibility": { "type": "string" }, "ValueCellStyle": { "$ref": "#/definitions/AWS::QuickSight::Template.TableCellStyle" } }, "type": "object" }, "AWS::QuickSight::Template.TableAggregatedFieldWells": { "additionalProperties": false, "properties": { "GroupBy": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.DimensionField" }, "type": "array" }, "Values": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.MeasureField" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Template.TableBorderOptions": { "additionalProperties": false, "properties": { "Color": { "type": "string" }, "Style": { "type": "string" }, "Thickness": { "type": "number" } }, "type": "object" }, "AWS::QuickSight::Template.TableCellConditionalFormatting": { "additionalProperties": false, "properties": { "FieldId": { "type": "string" }, "TextFormat": { "$ref": "#/definitions/AWS::QuickSight::Template.TextConditionalFormat" } }, "required": [ "FieldId" ], "type": "object" }, "AWS::QuickSight::Template.TableCellImageSizingConfiguration": { "additionalProperties": false, "properties": { "TableCellImageScalingConfiguration": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Template.TableCellStyle": { "additionalProperties": false, "properties": { "BackgroundColor": { "type": "string" }, "Border": { "$ref": "#/definitions/AWS::QuickSight::Template.GlobalTableBorderOptions" }, "FontConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Template.FontConfiguration" }, "Height": { "type": "number" }, "HorizontalTextAlignment": { "type": "string" }, "TextWrap": { "type": "string" }, "VerticalTextAlignment": { "type": "string" }, "Visibility": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Template.TableConditionalFormatting": { "additionalProperties": false, "properties": { "ConditionalFormattingOptions": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.TableConditionalFormattingOption" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Template.TableConditionalFormattingOption": { "additionalProperties": false, "properties": { "Cell": { "$ref": "#/definitions/AWS::QuickSight::Template.TableCellConditionalFormatting" }, "Row": { "$ref": "#/definitions/AWS::QuickSight::Template.TableRowConditionalFormatting" } }, "type": "object" }, "AWS::QuickSight::Template.TableConfiguration": { "additionalProperties": false, "properties": { "FieldOptions": { "$ref": "#/definitions/AWS::QuickSight::Template.TableFieldOptions" }, "FieldWells": { "$ref": "#/definitions/AWS::QuickSight::Template.TableFieldWells" }, "PaginatedReportOptions": { "$ref": "#/definitions/AWS::QuickSight::Template.TablePaginatedReportOptions" }, "SortConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Template.TableSortConfiguration" }, "TableInlineVisualizations": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.TableInlineVisualization" }, "type": "array" }, "TableOptions": { "$ref": "#/definitions/AWS::QuickSight::Template.TableOptions" }, "TotalOptions": { "$ref": "#/definitions/AWS::QuickSight::Template.TotalOptions" } }, "type": "object" }, "AWS::QuickSight::Template.TableFieldCustomIconContent": { "additionalProperties": false, "properties": { "Icon": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Template.TableFieldCustomTextContent": { "additionalProperties": false, "properties": { "FontConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Template.FontConfiguration" }, "Value": { "type": "string" } }, "required": [ "FontConfiguration" ], "type": "object" }, "AWS::QuickSight::Template.TableFieldImageConfiguration": { "additionalProperties": false, "properties": { "SizingOptions": { "$ref": "#/definitions/AWS::QuickSight::Template.TableCellImageSizingConfiguration" } }, "type": "object" }, "AWS::QuickSight::Template.TableFieldLinkConfiguration": { "additionalProperties": false, "properties": { "Content": { "$ref": "#/definitions/AWS::QuickSight::Template.TableFieldLinkContentConfiguration" }, "Target": { "type": "string" } }, "required": [ "Content", "Target" ], "type": "object" }, "AWS::QuickSight::Template.TableFieldLinkContentConfiguration": { "additionalProperties": false, "properties": { "CustomIconContent": { "$ref": "#/definitions/AWS::QuickSight::Template.TableFieldCustomIconContent" }, "CustomTextContent": { "$ref": "#/definitions/AWS::QuickSight::Template.TableFieldCustomTextContent" } }, "type": "object" }, "AWS::QuickSight::Template.TableFieldOption": { "additionalProperties": false, "properties": { "CustomLabel": { "type": "string" }, "FieldId": { "type": "string" }, "URLStyling": { "$ref": "#/definitions/AWS::QuickSight::Template.TableFieldURLConfiguration" }, "Visibility": { "type": "string" }, "Width": { "type": "string" } }, "required": [ "FieldId" ], "type": "object" }, "AWS::QuickSight::Template.TableFieldOptions": { "additionalProperties": false, "properties": { "Order": { "items": { "type": "string" }, "type": "array" }, "SelectedFieldOptions": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.TableFieldOption" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Template.TableFieldURLConfiguration": { "additionalProperties": false, "properties": { "ImageConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Template.TableFieldImageConfiguration" }, "LinkConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Template.TableFieldLinkConfiguration" } }, "type": "object" }, "AWS::QuickSight::Template.TableFieldWells": { "additionalProperties": false, "properties": { "TableAggregatedFieldWells": { "$ref": "#/definitions/AWS::QuickSight::Template.TableAggregatedFieldWells" }, "TableUnaggregatedFieldWells": { "$ref": "#/definitions/AWS::QuickSight::Template.TableUnaggregatedFieldWells" } }, "type": "object" }, "AWS::QuickSight::Template.TableInlineVisualization": { "additionalProperties": false, "properties": { "DataBars": { "$ref": "#/definitions/AWS::QuickSight::Template.DataBarsOptions" } }, "type": "object" }, "AWS::QuickSight::Template.TableOptions": { "additionalProperties": false, "properties": { "CellStyle": { "$ref": "#/definitions/AWS::QuickSight::Template.TableCellStyle" }, "HeaderStyle": { "$ref": "#/definitions/AWS::QuickSight::Template.TableCellStyle" }, "Orientation": { "type": "string" }, "RowAlternateColorOptions": { "$ref": "#/definitions/AWS::QuickSight::Template.RowAlternateColorOptions" } }, "type": "object" }, "AWS::QuickSight::Template.TablePaginatedReportOptions": { "additionalProperties": false, "properties": { "OverflowColumnHeaderVisibility": { "type": "string" }, "VerticalOverflowVisibility": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Template.TableRowConditionalFormatting": { "additionalProperties": false, "properties": { "BackgroundColor": { "$ref": "#/definitions/AWS::QuickSight::Template.ConditionalFormattingColor" }, "TextColor": { "$ref": "#/definitions/AWS::QuickSight::Template.ConditionalFormattingColor" } }, "type": "object" }, "AWS::QuickSight::Template.TableSideBorderOptions": { "additionalProperties": false, "properties": { "Bottom": { "$ref": "#/definitions/AWS::QuickSight::Template.TableBorderOptions" }, "InnerHorizontal": { "$ref": "#/definitions/AWS::QuickSight::Template.TableBorderOptions" }, "InnerVertical": { "$ref": "#/definitions/AWS::QuickSight::Template.TableBorderOptions" }, "Left": { "$ref": "#/definitions/AWS::QuickSight::Template.TableBorderOptions" }, "Right": { "$ref": "#/definitions/AWS::QuickSight::Template.TableBorderOptions" }, "Top": { "$ref": "#/definitions/AWS::QuickSight::Template.TableBorderOptions" } }, "type": "object" }, "AWS::QuickSight::Template.TableSortConfiguration": { "additionalProperties": false, "properties": { "PaginationConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Template.PaginationConfiguration" }, "RowSort": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.FieldSortOptions" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Template.TableUnaggregatedFieldWells": { "additionalProperties": false, "properties": { "Values": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.UnaggregatedField" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Template.TableVisual": { "additionalProperties": false, "properties": { "Actions": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.VisualCustomAction" }, "type": "array" }, "ChartConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Template.TableConfiguration" }, "ConditionalFormatting": { "$ref": "#/definitions/AWS::QuickSight::Template.TableConditionalFormatting" }, "Subtitle": { "$ref": "#/definitions/AWS::QuickSight::Template.VisualSubtitleLabelOptions" }, "Title": { "$ref": "#/definitions/AWS::QuickSight::Template.VisualTitleLabelOptions" }, "VisualId": { "type": "string" } }, "required": [ "VisualId" ], "type": "object" }, "AWS::QuickSight::Template.TemplateError": { "additionalProperties": false, "properties": { "Message": { "type": "string" }, "Type": { "type": "string" }, "ViolatedEntities": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.Entity" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Template.TemplateSourceAnalysis": { "additionalProperties": false, "properties": { "Arn": { "type": "string" }, "DataSetReferences": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.DataSetReference" }, "type": "array" } }, "required": [ "Arn", "DataSetReferences" ], "type": "object" }, "AWS::QuickSight::Template.TemplateSourceEntity": { "additionalProperties": false, "properties": { "SourceAnalysis": { "$ref": "#/definitions/AWS::QuickSight::Template.TemplateSourceAnalysis" }, "SourceTemplate": { "$ref": "#/definitions/AWS::QuickSight::Template.TemplateSourceTemplate" } }, "type": "object" }, "AWS::QuickSight::Template.TemplateSourceTemplate": { "additionalProperties": false, "properties": { "Arn": { "type": "string" } }, "required": [ "Arn" ], "type": "object" }, "AWS::QuickSight::Template.TemplateVersion": { "additionalProperties": false, "properties": { "CreatedTime": { "type": "string" }, "DataSetConfigurations": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.DataSetConfiguration" }, "type": "array" }, "Description": { "type": "string" }, "Errors": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.TemplateError" }, "type": "array" }, "Sheets": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.Sheet" }, "type": "array" }, "SourceEntityArn": { "type": "string" }, "Status": { "type": "string" }, "ThemeArn": { "type": "string" }, "VersionNumber": { "type": "number" } }, "type": "object" }, "AWS::QuickSight::Template.TemplateVersionDefinition": { "additionalProperties": false, "properties": { "AnalysisDefaults": { "$ref": "#/definitions/AWS::QuickSight::Template.AnalysisDefaults" }, "CalculatedFields": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.CalculatedField" }, "type": "array" }, "ColumnConfigurations": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.ColumnConfiguration" }, "type": "array" }, "DataSetConfigurations": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.DataSetConfiguration" }, "type": "array" }, "FilterGroups": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.FilterGroup" }, "type": "array" }, "ParameterDeclarations": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.ParameterDeclaration" }, "type": "array" }, "Sheets": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.SheetDefinition" }, "type": "array" } }, "required": [ "DataSetConfigurations" ], "type": "object" }, "AWS::QuickSight::Template.TextAreaControlDisplayOptions": { "additionalProperties": false, "properties": { "PlaceholderOptions": { "$ref": "#/definitions/AWS::QuickSight::Template.TextControlPlaceholderOptions" }, "TitleOptions": { "$ref": "#/definitions/AWS::QuickSight::Template.LabelOptions" } }, "type": "object" }, "AWS::QuickSight::Template.TextConditionalFormat": { "additionalProperties": false, "properties": { "BackgroundColor": { "$ref": "#/definitions/AWS::QuickSight::Template.ConditionalFormattingColor" }, "Icon": { "$ref": "#/definitions/AWS::QuickSight::Template.ConditionalFormattingIcon" }, "TextColor": { "$ref": "#/definitions/AWS::QuickSight::Template.ConditionalFormattingColor" } }, "type": "object" }, "AWS::QuickSight::Template.TextControlPlaceholderOptions": { "additionalProperties": false, "properties": { "Visibility": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Template.TextFieldControlDisplayOptions": { "additionalProperties": false, "properties": { "PlaceholderOptions": { "$ref": "#/definitions/AWS::QuickSight::Template.TextControlPlaceholderOptions" }, "TitleOptions": { "$ref": "#/definitions/AWS::QuickSight::Template.LabelOptions" } }, "type": "object" }, "AWS::QuickSight::Template.ThousandSeparatorOptions": { "additionalProperties": false, "properties": { "Symbol": { "type": "string" }, "Visibility": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Template.TimeBasedForecastProperties": { "additionalProperties": false, "properties": { "LowerBoundary": { "type": "number" }, "PeriodsBackward": { "type": "number" }, "PeriodsForward": { "type": "number" }, "PredictionInterval": { "type": "number" }, "Seasonality": { "type": "number" }, "UpperBoundary": { "type": "number" } }, "type": "object" }, "AWS::QuickSight::Template.TimeEqualityFilter": { "additionalProperties": false, "properties": { "Column": { "$ref": "#/definitions/AWS::QuickSight::Template.ColumnIdentifier" }, "FilterId": { "type": "string" }, "ParameterName": { "type": "string" }, "TimeGranularity": { "type": "string" }, "Value": { "type": "string" } }, "required": [ "Column", "FilterId" ], "type": "object" }, "AWS::QuickSight::Template.TimeRangeDrillDownFilter": { "additionalProperties": false, "properties": { "Column": { "$ref": "#/definitions/AWS::QuickSight::Template.ColumnIdentifier" }, "RangeMaximum": { "type": "string" }, "RangeMinimum": { "type": "string" }, "TimeGranularity": { "type": "string" } }, "required": [ "Column", "RangeMaximum", "RangeMinimum", "TimeGranularity" ], "type": "object" }, "AWS::QuickSight::Template.TimeRangeFilter": { "additionalProperties": false, "properties": { "Column": { "$ref": "#/definitions/AWS::QuickSight::Template.ColumnIdentifier" }, "ExcludePeriodConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Template.ExcludePeriodConfiguration" }, "FilterId": { "type": "string" }, "IncludeMaximum": { "type": "boolean" }, "IncludeMinimum": { "type": "boolean" }, "NullOption": { "type": "string" }, "RangeMaximumValue": { "$ref": "#/definitions/AWS::QuickSight::Template.TimeRangeFilterValue" }, "RangeMinimumValue": { "$ref": "#/definitions/AWS::QuickSight::Template.TimeRangeFilterValue" }, "TimeGranularity": { "type": "string" } }, "required": [ "Column", "FilterId", "NullOption" ], "type": "object" }, "AWS::QuickSight::Template.TimeRangeFilterValue": { "additionalProperties": false, "properties": { "Parameter": { "type": "string" }, "RollingDate": { "$ref": "#/definitions/AWS::QuickSight::Template.RollingDateConfiguration" }, "StaticValue": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Template.TooltipItem": { "additionalProperties": false, "properties": { "ColumnTooltipItem": { "$ref": "#/definitions/AWS::QuickSight::Template.ColumnTooltipItem" }, "FieldTooltipItem": { "$ref": "#/definitions/AWS::QuickSight::Template.FieldTooltipItem" } }, "type": "object" }, "AWS::QuickSight::Template.TooltipOptions": { "additionalProperties": false, "properties": { "FieldBasedTooltip": { "$ref": "#/definitions/AWS::QuickSight::Template.FieldBasedTooltip" }, "SelectedTooltipType": { "type": "string" }, "TooltipVisibility": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Template.TopBottomFilter": { "additionalProperties": false, "properties": { "AggregationSortConfigurations": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.AggregationSortConfiguration" }, "type": "array" }, "Column": { "$ref": "#/definitions/AWS::QuickSight::Template.ColumnIdentifier" }, "FilterId": { "type": "string" }, "Limit": { "type": "number" }, "ParameterName": { "type": "string" }, "TimeGranularity": { "type": "string" } }, "required": [ "AggregationSortConfigurations", "Column", "FilterId" ], "type": "object" }, "AWS::QuickSight::Template.TopBottomMoversComputation": { "additionalProperties": false, "properties": { "Category": { "$ref": "#/definitions/AWS::QuickSight::Template.DimensionField" }, "ComputationId": { "type": "string" }, "MoverSize": { "type": "number" }, "Name": { "type": "string" }, "SortOrder": { "type": "string" }, "Time": { "$ref": "#/definitions/AWS::QuickSight::Template.DimensionField" }, "Type": { "type": "string" }, "Value": { "$ref": "#/definitions/AWS::QuickSight::Template.MeasureField" } }, "required": [ "Category", "ComputationId", "Time", "Type" ], "type": "object" }, "AWS::QuickSight::Template.TopBottomRankedComputation": { "additionalProperties": false, "properties": { "Category": { "$ref": "#/definitions/AWS::QuickSight::Template.DimensionField" }, "ComputationId": { "type": "string" }, "Name": { "type": "string" }, "ResultSize": { "type": "number" }, "Type": { "type": "string" }, "Value": { "$ref": "#/definitions/AWS::QuickSight::Template.MeasureField" } }, "required": [ "Category", "ComputationId", "Type" ], "type": "object" }, "AWS::QuickSight::Template.TotalAggregationComputation": { "additionalProperties": false, "properties": { "ComputationId": { "type": "string" }, "Name": { "type": "string" }, "Value": { "$ref": "#/definitions/AWS::QuickSight::Template.MeasureField" } }, "required": [ "ComputationId", "Value" ], "type": "object" }, "AWS::QuickSight::Template.TotalOptions": { "additionalProperties": false, "properties": { "CustomLabel": { "type": "string" }, "Placement": { "type": "string" }, "ScrollStatus": { "type": "string" }, "TotalCellStyle": { "$ref": "#/definitions/AWS::QuickSight::Template.TableCellStyle" }, "TotalsVisibility": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Template.TreeMapAggregatedFieldWells": { "additionalProperties": false, "properties": { "Colors": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.MeasureField" }, "type": "array" }, "Groups": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.DimensionField" }, "type": "array" }, "Sizes": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.MeasureField" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Template.TreeMapConfiguration": { "additionalProperties": false, "properties": { "ColorLabelOptions": { "$ref": "#/definitions/AWS::QuickSight::Template.ChartAxisLabelOptions" }, "ColorScale": { "$ref": "#/definitions/AWS::QuickSight::Template.ColorScale" }, "DataLabels": { "$ref": "#/definitions/AWS::QuickSight::Template.DataLabelOptions" }, "FieldWells": { "$ref": "#/definitions/AWS::QuickSight::Template.TreeMapFieldWells" }, "GroupLabelOptions": { "$ref": "#/definitions/AWS::QuickSight::Template.ChartAxisLabelOptions" }, "Legend": { "$ref": "#/definitions/AWS::QuickSight::Template.LegendOptions" }, "SizeLabelOptions": { "$ref": "#/definitions/AWS::QuickSight::Template.ChartAxisLabelOptions" }, "SortConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Template.TreeMapSortConfiguration" }, "Tooltip": { "$ref": "#/definitions/AWS::QuickSight::Template.TooltipOptions" } }, "type": "object" }, "AWS::QuickSight::Template.TreeMapFieldWells": { "additionalProperties": false, "properties": { "TreeMapAggregatedFieldWells": { "$ref": "#/definitions/AWS::QuickSight::Template.TreeMapAggregatedFieldWells" } }, "type": "object" }, "AWS::QuickSight::Template.TreeMapSortConfiguration": { "additionalProperties": false, "properties": { "TreeMapGroupItemsLimitConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Template.ItemsLimitConfiguration" }, "TreeMapSort": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.FieldSortOptions" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Template.TreeMapVisual": { "additionalProperties": false, "properties": { "Actions": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.VisualCustomAction" }, "type": "array" }, "ChartConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Template.TreeMapConfiguration" }, "ColumnHierarchies": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.ColumnHierarchy" }, "type": "array" }, "Subtitle": { "$ref": "#/definitions/AWS::QuickSight::Template.VisualSubtitleLabelOptions" }, "Title": { "$ref": "#/definitions/AWS::QuickSight::Template.VisualTitleLabelOptions" }, "VisualId": { "type": "string" } }, "required": [ "VisualId" ], "type": "object" }, "AWS::QuickSight::Template.TrendArrowOptions": { "additionalProperties": false, "properties": { "Visibility": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Template.UnaggregatedField": { "additionalProperties": false, "properties": { "Column": { "$ref": "#/definitions/AWS::QuickSight::Template.ColumnIdentifier" }, "FieldId": { "type": "string" }, "FormatConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Template.FormatConfiguration" } }, "required": [ "Column", "FieldId" ], "type": "object" }, "AWS::QuickSight::Template.UniqueValuesComputation": { "additionalProperties": false, "properties": { "Category": { "$ref": "#/definitions/AWS::QuickSight::Template.DimensionField" }, "ComputationId": { "type": "string" }, "Name": { "type": "string" } }, "required": [ "Category", "ComputationId" ], "type": "object" }, "AWS::QuickSight::Template.VisibleRangeOptions": { "additionalProperties": false, "properties": { "PercentRange": { "$ref": "#/definitions/AWS::QuickSight::Template.PercentVisibleRange" } }, "type": "object" }, "AWS::QuickSight::Template.Visual": { "additionalProperties": false, "properties": { "BarChartVisual": { "$ref": "#/definitions/AWS::QuickSight::Template.BarChartVisual" }, "BoxPlotVisual": { "$ref": "#/definitions/AWS::QuickSight::Template.BoxPlotVisual" }, "ComboChartVisual": { "$ref": "#/definitions/AWS::QuickSight::Template.ComboChartVisual" }, "CustomContentVisual": { "$ref": "#/definitions/AWS::QuickSight::Template.CustomContentVisual" }, "EmptyVisual": { "$ref": "#/definitions/AWS::QuickSight::Template.EmptyVisual" }, "FilledMapVisual": { "$ref": "#/definitions/AWS::QuickSight::Template.FilledMapVisual" }, "FunnelChartVisual": { "$ref": "#/definitions/AWS::QuickSight::Template.FunnelChartVisual" }, "GaugeChartVisual": { "$ref": "#/definitions/AWS::QuickSight::Template.GaugeChartVisual" }, "GeospatialMapVisual": { "$ref": "#/definitions/AWS::QuickSight::Template.GeospatialMapVisual" }, "HeatMapVisual": { "$ref": "#/definitions/AWS::QuickSight::Template.HeatMapVisual" }, "HistogramVisual": { "$ref": "#/definitions/AWS::QuickSight::Template.HistogramVisual" }, "InsightVisual": { "$ref": "#/definitions/AWS::QuickSight::Template.InsightVisual" }, "KPIVisual": { "$ref": "#/definitions/AWS::QuickSight::Template.KPIVisual" }, "LineChartVisual": { "$ref": "#/definitions/AWS::QuickSight::Template.LineChartVisual" }, "PieChartVisual": { "$ref": "#/definitions/AWS::QuickSight::Template.PieChartVisual" }, "PivotTableVisual": { "$ref": "#/definitions/AWS::QuickSight::Template.PivotTableVisual" }, "RadarChartVisual": { "$ref": "#/definitions/AWS::QuickSight::Template.RadarChartVisual" }, "SankeyDiagramVisual": { "$ref": "#/definitions/AWS::QuickSight::Template.SankeyDiagramVisual" }, "ScatterPlotVisual": { "$ref": "#/definitions/AWS::QuickSight::Template.ScatterPlotVisual" }, "TableVisual": { "$ref": "#/definitions/AWS::QuickSight::Template.TableVisual" }, "TreeMapVisual": { "$ref": "#/definitions/AWS::QuickSight::Template.TreeMapVisual" }, "WaterfallVisual": { "$ref": "#/definitions/AWS::QuickSight::Template.WaterfallVisual" }, "WordCloudVisual": { "$ref": "#/definitions/AWS::QuickSight::Template.WordCloudVisual" } }, "type": "object" }, "AWS::QuickSight::Template.VisualCustomAction": { "additionalProperties": false, "properties": { "ActionOperations": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.VisualCustomActionOperation" }, "type": "array" }, "CustomActionId": { "type": "string" }, "Name": { "type": "string" }, "Status": { "type": "string" }, "Trigger": { "type": "string" } }, "required": [ "ActionOperations", "CustomActionId", "Name", "Trigger" ], "type": "object" }, "AWS::QuickSight::Template.VisualCustomActionOperation": { "additionalProperties": false, "properties": { "FilterOperation": { "$ref": "#/definitions/AWS::QuickSight::Template.CustomActionFilterOperation" }, "NavigationOperation": { "$ref": "#/definitions/AWS::QuickSight::Template.CustomActionNavigationOperation" }, "SetParametersOperation": { "$ref": "#/definitions/AWS::QuickSight::Template.CustomActionSetParametersOperation" }, "URLOperation": { "$ref": "#/definitions/AWS::QuickSight::Template.CustomActionURLOperation" } }, "type": "object" }, "AWS::QuickSight::Template.VisualPalette": { "additionalProperties": false, "properties": { "ChartColor": { "type": "string" }, "ColorMap": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.DataPathColor" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Template.VisualSubtitleLabelOptions": { "additionalProperties": false, "properties": { "FormatText": { "$ref": "#/definitions/AWS::QuickSight::Template.LongFormatText" }, "Visibility": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Template.VisualTitleLabelOptions": { "additionalProperties": false, "properties": { "FormatText": { "$ref": "#/definitions/AWS::QuickSight::Template.ShortFormatText" }, "Visibility": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Template.WaterfallChartAggregatedFieldWells": { "additionalProperties": false, "properties": { "Breakdowns": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.DimensionField" }, "type": "array" }, "Categories": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.DimensionField" }, "type": "array" }, "Values": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.MeasureField" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Template.WaterfallChartConfiguration": { "additionalProperties": false, "properties": { "CategoryAxisDisplayOptions": { "$ref": "#/definitions/AWS::QuickSight::Template.AxisDisplayOptions" }, "CategoryAxisLabelOptions": { "$ref": "#/definitions/AWS::QuickSight::Template.ChartAxisLabelOptions" }, "DataLabels": { "$ref": "#/definitions/AWS::QuickSight::Template.DataLabelOptions" }, "FieldWells": { "$ref": "#/definitions/AWS::QuickSight::Template.WaterfallChartFieldWells" }, "Legend": { "$ref": "#/definitions/AWS::QuickSight::Template.LegendOptions" }, "PrimaryYAxisDisplayOptions": { "$ref": "#/definitions/AWS::QuickSight::Template.AxisDisplayOptions" }, "PrimaryYAxisLabelOptions": { "$ref": "#/definitions/AWS::QuickSight::Template.ChartAxisLabelOptions" }, "SortConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Template.WaterfallChartSortConfiguration" }, "VisualPalette": { "$ref": "#/definitions/AWS::QuickSight::Template.VisualPalette" }, "WaterfallChartOptions": { "$ref": "#/definitions/AWS::QuickSight::Template.WaterfallChartOptions" } }, "type": "object" }, "AWS::QuickSight::Template.WaterfallChartFieldWells": { "additionalProperties": false, "properties": { "WaterfallChartAggregatedFieldWells": { "$ref": "#/definitions/AWS::QuickSight::Template.WaterfallChartAggregatedFieldWells" } }, "type": "object" }, "AWS::QuickSight::Template.WaterfallChartOptions": { "additionalProperties": false, "properties": { "TotalBarLabel": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Template.WaterfallChartSortConfiguration": { "additionalProperties": false, "properties": { "BreakdownItemsLimit": { "$ref": "#/definitions/AWS::QuickSight::Template.ItemsLimitConfiguration" }, "CategorySort": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.FieldSortOptions" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Template.WaterfallVisual": { "additionalProperties": false, "properties": { "Actions": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.VisualCustomAction" }, "type": "array" }, "ChartConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Template.WaterfallChartConfiguration" }, "ColumnHierarchies": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.ColumnHierarchy" }, "type": "array" }, "Subtitle": { "$ref": "#/definitions/AWS::QuickSight::Template.VisualSubtitleLabelOptions" }, "Title": { "$ref": "#/definitions/AWS::QuickSight::Template.VisualTitleLabelOptions" }, "VisualId": { "type": "string" } }, "required": [ "VisualId" ], "type": "object" }, "AWS::QuickSight::Template.WhatIfPointScenario": { "additionalProperties": false, "properties": { "Date": { "type": "string" }, "Value": { "type": "number" } }, "required": [ "Date", "Value" ], "type": "object" }, "AWS::QuickSight::Template.WhatIfRangeScenario": { "additionalProperties": false, "properties": { "EndDate": { "type": "string" }, "StartDate": { "type": "string" }, "Value": { "type": "number" } }, "required": [ "EndDate", "StartDate", "Value" ], "type": "object" }, "AWS::QuickSight::Template.WordCloudAggregatedFieldWells": { "additionalProperties": false, "properties": { "GroupBy": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.DimensionField" }, "type": "array" }, "Size": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.MeasureField" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Template.WordCloudChartConfiguration": { "additionalProperties": false, "properties": { "CategoryLabelOptions": { "$ref": "#/definitions/AWS::QuickSight::Template.ChartAxisLabelOptions" }, "FieldWells": { "$ref": "#/definitions/AWS::QuickSight::Template.WordCloudFieldWells" }, "SortConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Template.WordCloudSortConfiguration" }, "WordCloudOptions": { "$ref": "#/definitions/AWS::QuickSight::Template.WordCloudOptions" } }, "type": "object" }, "AWS::QuickSight::Template.WordCloudFieldWells": { "additionalProperties": false, "properties": { "WordCloudAggregatedFieldWells": { "$ref": "#/definitions/AWS::QuickSight::Template.WordCloudAggregatedFieldWells" } }, "type": "object" }, "AWS::QuickSight::Template.WordCloudOptions": { "additionalProperties": false, "properties": { "CloudLayout": { "type": "string" }, "MaximumStringLength": { "type": "number" }, "WordCasing": { "type": "string" }, "WordOrientation": { "type": "string" }, "WordPadding": { "type": "string" }, "WordScaling": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Template.WordCloudSortConfiguration": { "additionalProperties": false, "properties": { "CategoryItemsLimit": { "$ref": "#/definitions/AWS::QuickSight::Template.ItemsLimitConfiguration" }, "CategorySort": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.FieldSortOptions" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Template.WordCloudVisual": { "additionalProperties": false, "properties": { "Actions": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.VisualCustomAction" }, "type": "array" }, "ChartConfiguration": { "$ref": "#/definitions/AWS::QuickSight::Template.WordCloudChartConfiguration" }, "ColumnHierarchies": { "items": { "$ref": "#/definitions/AWS::QuickSight::Template.ColumnHierarchy" }, "type": "array" }, "Subtitle": { "$ref": "#/definitions/AWS::QuickSight::Template.VisualSubtitleLabelOptions" }, "Title": { "$ref": "#/definitions/AWS::QuickSight::Template.VisualTitleLabelOptions" }, "VisualId": { "type": "string" } }, "required": [ "VisualId" ], "type": "object" }, "AWS::QuickSight::Theme": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AwsAccountId": { "type": "string" }, "BaseThemeId": { "type": "string" }, "Configuration": { "$ref": "#/definitions/AWS::QuickSight::Theme.ThemeConfiguration" }, "Name": { "type": "string" }, "Permissions": { "items": { "$ref": "#/definitions/AWS::QuickSight::Theme.ResourcePermission" }, "type": "array" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "ThemeId": { "type": "string" }, "VersionDescription": { "type": "string" } }, "required": [ "AwsAccountId", "BaseThemeId", "Configuration", "Name", "ThemeId" ], "type": "object" }, "Type": { "enum": [ "AWS::QuickSight::Theme" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::QuickSight::Theme.BorderStyle": { "additionalProperties": false, "properties": { "Show": { "type": "boolean" } }, "type": "object" }, "AWS::QuickSight::Theme.DataColorPalette": { "additionalProperties": false, "properties": { "Colors": { "items": { "type": "string" }, "type": "array" }, "EmptyFillColor": { "type": "string" }, "MinMaxGradient": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Theme.Font": { "additionalProperties": false, "properties": { "FontFamily": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Theme.GutterStyle": { "additionalProperties": false, "properties": { "Show": { "type": "boolean" } }, "type": "object" }, "AWS::QuickSight::Theme.MarginStyle": { "additionalProperties": false, "properties": { "Show": { "type": "boolean" } }, "type": "object" }, "AWS::QuickSight::Theme.ResourcePermission": { "additionalProperties": false, "properties": { "Actions": { "items": { "type": "string" }, "type": "array" }, "Principal": { "type": "string" }, "Resource": { "type": "string" } }, "required": [ "Actions", "Principal" ], "type": "object" }, "AWS::QuickSight::Theme.SheetStyle": { "additionalProperties": false, "properties": { "Tile": { "$ref": "#/definitions/AWS::QuickSight::Theme.TileStyle" }, "TileLayout": { "$ref": "#/definitions/AWS::QuickSight::Theme.TileLayoutStyle" } }, "type": "object" }, "AWS::QuickSight::Theme.ThemeConfiguration": { "additionalProperties": false, "properties": { "DataColorPalette": { "$ref": "#/definitions/AWS::QuickSight::Theme.DataColorPalette" }, "Sheet": { "$ref": "#/definitions/AWS::QuickSight::Theme.SheetStyle" }, "Typography": { "$ref": "#/definitions/AWS::QuickSight::Theme.Typography" }, "UIColorPalette": { "$ref": "#/definitions/AWS::QuickSight::Theme.UIColorPalette" } }, "type": "object" }, "AWS::QuickSight::Theme.ThemeError": { "additionalProperties": false, "properties": { "Message": { "type": "string" }, "Type": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Theme.ThemeVersion": { "additionalProperties": false, "properties": { "Arn": { "type": "string" }, "BaseThemeId": { "type": "string" }, "Configuration": { "$ref": "#/definitions/AWS::QuickSight::Theme.ThemeConfiguration" }, "CreatedTime": { "type": "string" }, "Description": { "type": "string" }, "Errors": { "items": { "$ref": "#/definitions/AWS::QuickSight::Theme.ThemeError" }, "type": "array" }, "Status": { "type": "string" }, "VersionNumber": { "type": "number" } }, "type": "object" }, "AWS::QuickSight::Theme.TileLayoutStyle": { "additionalProperties": false, "properties": { "Gutter": { "$ref": "#/definitions/AWS::QuickSight::Theme.GutterStyle" }, "Margin": { "$ref": "#/definitions/AWS::QuickSight::Theme.MarginStyle" } }, "type": "object" }, "AWS::QuickSight::Theme.TileStyle": { "additionalProperties": false, "properties": { "Border": { "$ref": "#/definitions/AWS::QuickSight::Theme.BorderStyle" } }, "type": "object" }, "AWS::QuickSight::Theme.Typography": { "additionalProperties": false, "properties": { "FontFamilies": { "items": { "$ref": "#/definitions/AWS::QuickSight::Theme.Font" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Theme.UIColorPalette": { "additionalProperties": false, "properties": { "Accent": { "type": "string" }, "AccentForeground": { "type": "string" }, "Danger": { "type": "string" }, "DangerForeground": { "type": "string" }, "Dimension": { "type": "string" }, "DimensionForeground": { "type": "string" }, "Measure": { "type": "string" }, "MeasureForeground": { "type": "string" }, "PrimaryBackground": { "type": "string" }, "PrimaryForeground": { "type": "string" }, "SecondaryBackground": { "type": "string" }, "SecondaryForeground": { "type": "string" }, "Success": { "type": "string" }, "SuccessForeground": { "type": "string" }, "Warning": { "type": "string" }, "WarningForeground": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Topic": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AwsAccountId": { "type": "string" }, "DataSets": { "items": { "$ref": "#/definitions/AWS::QuickSight::Topic.DatasetMetadata" }, "type": "array" }, "Description": { "type": "string" }, "Name": { "type": "string" }, "TopicId": { "type": "string" } }, "type": "object" }, "Type": { "enum": [ "AWS::QuickSight::Topic" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::QuickSight::Topic.CellValueSynonym": { "additionalProperties": false, "properties": { "CellValue": { "type": "string" }, "Synonyms": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Topic.CollectiveConstant": { "additionalProperties": false, "properties": { "ValueList": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::QuickSight::Topic.ComparativeOrder": { "additionalProperties": false, "properties": { "SpecifedOrder": { "items": { "type": "string" }, "type": "array" }, "TreatUndefinedSpecifiedValues": { "type": "string" }, "UseOrdering": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Topic.DataAggregation": { "additionalProperties": false, "properties": { "DatasetRowDateGranularity": { "type": "string" }, "DefaultDateColumnName": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Topic.DatasetMetadata": { "additionalProperties": false, "properties": { "CalculatedFields": { "items": { "$ref": "#/definitions/AWS::QuickSight::Topic.TopicCalculatedField" }, "type": "array" }, "Columns": { "items": { "$ref": "#/definitions/AWS::QuickSight::Topic.TopicColumn" }, "type": "array" }, "DataAggregation": { "$ref": "#/definitions/AWS::QuickSight::Topic.DataAggregation" }, "DatasetArn": { "type": "string" }, "DatasetDescription": { "type": "string" }, "DatasetName": { "type": "string" }, "Filters": { "items": { "$ref": "#/definitions/AWS::QuickSight::Topic.TopicFilter" }, "type": "array" }, "NamedEntities": { "items": { "$ref": "#/definitions/AWS::QuickSight::Topic.TopicNamedEntity" }, "type": "array" } }, "required": [ "DatasetArn" ], "type": "object" }, "AWS::QuickSight::Topic.DefaultFormatting": { "additionalProperties": false, "properties": { "DisplayFormat": { "type": "string" }, "DisplayFormatOptions": { "$ref": "#/definitions/AWS::QuickSight::Topic.DisplayFormatOptions" } }, "type": "object" }, "AWS::QuickSight::Topic.DisplayFormatOptions": { "additionalProperties": false, "properties": { "BlankCellFormat": { "type": "string" }, "CurrencySymbol": { "type": "string" }, "DateFormat": { "type": "string" }, "DecimalSeparator": { "type": "string" }, "FractionDigits": { "type": "number" }, "GroupingSeparator": { "type": "string" }, "NegativeFormat": { "$ref": "#/definitions/AWS::QuickSight::Topic.NegativeFormat" }, "Prefix": { "type": "string" }, "Suffix": { "type": "string" }, "UnitScaler": { "type": "string" }, "UseBlankCellFormat": { "type": "boolean" }, "UseGrouping": { "type": "boolean" } }, "type": "object" }, "AWS::QuickSight::Topic.NamedEntityDefinition": { "additionalProperties": false, "properties": { "FieldName": { "type": "string" }, "Metric": { "$ref": "#/definitions/AWS::QuickSight::Topic.NamedEntityDefinitionMetric" }, "PropertyName": { "type": "string" }, "PropertyRole": { "type": "string" }, "PropertyUsage": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Topic.NamedEntityDefinitionMetric": { "additionalProperties": false, "properties": { "Aggregation": { "type": "string" }, "AggregationFunctionParameters": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" } }, "type": "object" }, "AWS::QuickSight::Topic.NegativeFormat": { "additionalProperties": false, "properties": { "Prefix": { "type": "string" }, "Suffix": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Topic.RangeConstant": { "additionalProperties": false, "properties": { "Maximum": { "type": "string" }, "Minimum": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Topic.SemanticEntityType": { "additionalProperties": false, "properties": { "SubTypeName": { "type": "string" }, "TypeName": { "type": "string" }, "TypeParameters": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" } }, "type": "object" }, "AWS::QuickSight::Topic.SemanticType": { "additionalProperties": false, "properties": { "FalseyCellValue": { "type": "string" }, "FalseyCellValueSynonyms": { "items": { "type": "string" }, "type": "array" }, "SubTypeName": { "type": "string" }, "TruthyCellValue": { "type": "string" }, "TruthyCellValueSynonyms": { "items": { "type": "string" }, "type": "array" }, "TypeName": { "type": "string" }, "TypeParameters": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" } }, "type": "object" }, "AWS::QuickSight::Topic.TopicCalculatedField": { "additionalProperties": false, "properties": { "Aggregation": { "type": "string" }, "AllowedAggregations": { "items": { "type": "string" }, "type": "array" }, "CalculatedFieldDescription": { "type": "string" }, "CalculatedFieldName": { "type": "string" }, "CalculatedFieldSynonyms": { "items": { "type": "string" }, "type": "array" }, "CellValueSynonyms": { "items": { "$ref": "#/definitions/AWS::QuickSight::Topic.CellValueSynonym" }, "type": "array" }, "ColumnDataRole": { "type": "string" }, "ComparativeOrder": { "$ref": "#/definitions/AWS::QuickSight::Topic.ComparativeOrder" }, "DefaultFormatting": { "$ref": "#/definitions/AWS::QuickSight::Topic.DefaultFormatting" }, "Expression": { "type": "string" }, "IsIncludedInTopic": { "type": "boolean" }, "NeverAggregateInFilter": { "type": "boolean" }, "NotAllowedAggregations": { "items": { "type": "string" }, "type": "array" }, "SemanticType": { "$ref": "#/definitions/AWS::QuickSight::Topic.SemanticType" }, "TimeGranularity": { "type": "string" } }, "required": [ "CalculatedFieldName", "Expression" ], "type": "object" }, "AWS::QuickSight::Topic.TopicCategoryFilter": { "additionalProperties": false, "properties": { "CategoryFilterFunction": { "type": "string" }, "CategoryFilterType": { "type": "string" }, "Constant": { "$ref": "#/definitions/AWS::QuickSight::Topic.TopicCategoryFilterConstant" }, "Inverse": { "type": "boolean" } }, "type": "object" }, "AWS::QuickSight::Topic.TopicCategoryFilterConstant": { "additionalProperties": false, "properties": { "CollectiveConstant": { "$ref": "#/definitions/AWS::QuickSight::Topic.CollectiveConstant" }, "ConstantType": { "type": "string" }, "SingularConstant": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Topic.TopicColumn": { "additionalProperties": false, "properties": { "Aggregation": { "type": "string" }, "AllowedAggregations": { "items": { "type": "string" }, "type": "array" }, "CellValueSynonyms": { "items": { "$ref": "#/definitions/AWS::QuickSight::Topic.CellValueSynonym" }, "type": "array" }, "ColumnDataRole": { "type": "string" }, "ColumnDescription": { "type": "string" }, "ColumnFriendlyName": { "type": "string" }, "ColumnName": { "type": "string" }, "ColumnSynonyms": { "items": { "type": "string" }, "type": "array" }, "ComparativeOrder": { "$ref": "#/definitions/AWS::QuickSight::Topic.ComparativeOrder" }, "DefaultFormatting": { "$ref": "#/definitions/AWS::QuickSight::Topic.DefaultFormatting" }, "IsIncludedInTopic": { "type": "boolean" }, "NeverAggregateInFilter": { "type": "boolean" }, "NotAllowedAggregations": { "items": { "type": "string" }, "type": "array" }, "SemanticType": { "$ref": "#/definitions/AWS::QuickSight::Topic.SemanticType" }, "TimeGranularity": { "type": "string" } }, "required": [ "ColumnName" ], "type": "object" }, "AWS::QuickSight::Topic.TopicDateRangeFilter": { "additionalProperties": false, "properties": { "Constant": { "$ref": "#/definitions/AWS::QuickSight::Topic.TopicRangeFilterConstant" }, "Inclusive": { "type": "boolean" } }, "type": "object" }, "AWS::QuickSight::Topic.TopicFilter": { "additionalProperties": false, "properties": { "CategoryFilter": { "$ref": "#/definitions/AWS::QuickSight::Topic.TopicCategoryFilter" }, "DateRangeFilter": { "$ref": "#/definitions/AWS::QuickSight::Topic.TopicDateRangeFilter" }, "FilterClass": { "type": "string" }, "FilterDescription": { "type": "string" }, "FilterName": { "type": "string" }, "FilterSynonyms": { "items": { "type": "string" }, "type": "array" }, "FilterType": { "type": "string" }, "NumericEqualityFilter": { "$ref": "#/definitions/AWS::QuickSight::Topic.TopicNumericEqualityFilter" }, "NumericRangeFilter": { "$ref": "#/definitions/AWS::QuickSight::Topic.TopicNumericRangeFilter" }, "OperandFieldName": { "type": "string" }, "RelativeDateFilter": { "$ref": "#/definitions/AWS::QuickSight::Topic.TopicRelativeDateFilter" } }, "required": [ "FilterName", "OperandFieldName" ], "type": "object" }, "AWS::QuickSight::Topic.TopicNamedEntity": { "additionalProperties": false, "properties": { "Definition": { "items": { "$ref": "#/definitions/AWS::QuickSight::Topic.NamedEntityDefinition" }, "type": "array" }, "EntityDescription": { "type": "string" }, "EntityName": { "type": "string" }, "EntitySynonyms": { "items": { "type": "string" }, "type": "array" }, "SemanticEntityType": { "$ref": "#/definitions/AWS::QuickSight::Topic.SemanticEntityType" } }, "required": [ "EntityName" ], "type": "object" }, "AWS::QuickSight::Topic.TopicNumericEqualityFilter": { "additionalProperties": false, "properties": { "Aggregation": { "type": "string" }, "Constant": { "$ref": "#/definitions/AWS::QuickSight::Topic.TopicSingularFilterConstant" } }, "type": "object" }, "AWS::QuickSight::Topic.TopicNumericRangeFilter": { "additionalProperties": false, "properties": { "Aggregation": { "type": "string" }, "Constant": { "$ref": "#/definitions/AWS::QuickSight::Topic.TopicRangeFilterConstant" }, "Inclusive": { "type": "boolean" } }, "type": "object" }, "AWS::QuickSight::Topic.TopicRangeFilterConstant": { "additionalProperties": false, "properties": { "ConstantType": { "type": "string" }, "RangeConstant": { "$ref": "#/definitions/AWS::QuickSight::Topic.RangeConstant" } }, "type": "object" }, "AWS::QuickSight::Topic.TopicRelativeDateFilter": { "additionalProperties": false, "properties": { "Constant": { "$ref": "#/definitions/AWS::QuickSight::Topic.TopicSingularFilterConstant" }, "RelativeDateFilterFunction": { "type": "string" }, "TimeGranularity": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::Topic.TopicSingularFilterConstant": { "additionalProperties": false, "properties": { "ConstantType": { "type": "string" }, "SingularConstant": { "type": "string" } }, "type": "object" }, "AWS::QuickSight::VPCConnection": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AvailabilityStatus": { "type": "string" }, "AwsAccountId": { "type": "string" }, "DnsResolvers": { "items": { "type": "string" }, "type": "array" }, "Name": { "type": "string" }, "RoleArn": { "type": "string" }, "SecurityGroupIds": { "items": { "type": "string" }, "type": "array" }, "SubnetIds": { "items": { "type": "string" }, "type": "array" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "VPCConnectionId": { "type": "string" } }, "type": "object" }, "Type": { "enum": [ "AWS::QuickSight::VPCConnection" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::QuickSight::VPCConnection.NetworkInterface": { "additionalProperties": false, "properties": { "AvailabilityZone": { "type": "string" }, "ErrorMessage": { "type": "string" }, "NetworkInterfaceId": { "type": "string" }, "Status": { "type": "string" }, "SubnetId": { "type": "string" } }, "type": "object" }, "AWS::RAM::Permission": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Name": { "type": "string" }, "PolicyTemplate": { "type": "object" }, "ResourceType": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "Name", "PolicyTemplate", "ResourceType" ], "type": "object" }, "Type": { "enum": [ "AWS::RAM::Permission" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::RAM::ResourceShare": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AllowExternalPrincipals": { "type": "boolean" }, "Name": { "type": "string" }, "PermissionArns": { "items": { "type": "string" }, "type": "array" }, "Principals": { "items": { "type": "string" }, "type": "array" }, "ResourceArns": { "items": { "type": "string" }, "type": "array" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "Name" ], "type": "object" }, "Type": { "enum": [ "AWS::RAM::ResourceShare" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::RDS::CustomDBEngineVersion": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "DatabaseInstallationFilesS3BucketName": { "type": "string" }, "DatabaseInstallationFilesS3Prefix": { "type": "string" }, "Description": { "type": "string" }, "Engine": { "type": "string" }, "EngineVersion": { "type": "string" }, "KMSKeyId": { "type": "string" }, "Manifest": { "type": "string" }, "Status": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "DatabaseInstallationFilesS3BucketName", "Engine", "EngineVersion" ], "type": "object" }, "Type": { "enum": [ "AWS::RDS::CustomDBEngineVersion" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::RDS::DBCluster": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AllocatedStorage": { "type": "number" }, "AssociatedRoles": { "items": { "$ref": "#/definitions/AWS::RDS::DBCluster.DBClusterRole" }, "type": "array" }, "AutoMinorVersionUpgrade": { "type": "boolean" }, "AvailabilityZones": { "items": { "type": "string" }, "type": "array" }, "BacktrackWindow": { "type": "number" }, "BackupRetentionPeriod": { "type": "number" }, "CopyTagsToSnapshot": { "type": "boolean" }, "DBClusterIdentifier": { "type": "string" }, "DBClusterInstanceClass": { "type": "string" }, "DBClusterParameterGroupName": { "type": "string" }, "DBInstanceParameterGroupName": { "type": "string" }, "DBSubnetGroupName": { "type": "string" }, "DBSystemId": { "type": "string" }, "DatabaseName": { "type": "string" }, "DeletionProtection": { "type": "boolean" }, "Domain": { "type": "string" }, "DomainIAMRoleName": { "type": "string" }, "EnableCloudwatchLogsExports": { "items": { "type": "string" }, "type": "array" }, "EnableHttpEndpoint": { "type": "boolean" }, "EnableIAMDatabaseAuthentication": { "type": "boolean" }, "Engine": { "type": "string" }, "EngineMode": { "type": "string" }, "EngineVersion": { "type": "string" }, "GlobalClusterIdentifier": { "type": "string" }, "Iops": { "type": "number" }, "KmsKeyId": { "type": "string" }, "ManageMasterUserPassword": { "type": "boolean" }, "MasterUserPassword": { "type": "string" }, "MasterUserSecret": { "$ref": "#/definitions/AWS::RDS::DBCluster.MasterUserSecret" }, "MasterUsername": { "type": "string" }, "MonitoringInterval": { "type": "number" }, "MonitoringRoleArn": { "type": "string" }, "NetworkType": { "type": "string" }, "PerformanceInsightsEnabled": { "type": "boolean" }, "PerformanceInsightsKmsKeyId": { "type": "string" }, "PerformanceInsightsRetentionPeriod": { "type": "number" }, "Port": { "type": "number" }, "PreferredBackupWindow": { "type": "string" }, "PreferredMaintenanceWindow": { "type": "string" }, "PubliclyAccessible": { "type": "boolean" }, "ReplicationSourceIdentifier": { "type": "string" }, "RestoreToTime": { "type": "string" }, "RestoreType": { "type": "string" }, "ScalingConfiguration": { "$ref": "#/definitions/AWS::RDS::DBCluster.ScalingConfiguration" }, "ServerlessV2ScalingConfiguration": { "$ref": "#/definitions/AWS::RDS::DBCluster.ServerlessV2ScalingConfiguration" }, "SnapshotIdentifier": { "type": "string" }, "SourceDBClusterIdentifier": { "type": "string" }, "SourceRegion": { "type": "string" }, "StorageEncrypted": { "type": "boolean" }, "StorageType": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "UseLatestRestorableTime": { "type": "boolean" }, "VpcSecurityGroupIds": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "Type": { "enum": [ "AWS::RDS::DBCluster" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::RDS::DBCluster.DBClusterRole": { "additionalProperties": false, "properties": { "FeatureName": { "type": "string" }, "RoleArn": { "type": "string" } }, "required": [ "RoleArn" ], "type": "object" }, "AWS::RDS::DBCluster.Endpoint": { "additionalProperties": false, "properties": { "Address": { "type": "string" }, "Port": { "type": "string" } }, "type": "object" }, "AWS::RDS::DBCluster.MasterUserSecret": { "additionalProperties": false, "properties": { "KmsKeyId": { "type": "string" }, "SecretArn": { "type": "string" } }, "type": "object" }, "AWS::RDS::DBCluster.ReadEndpoint": { "additionalProperties": false, "properties": { "Address": { "type": "string" } }, "type": "object" }, "AWS::RDS::DBCluster.ScalingConfiguration": { "additionalProperties": false, "properties": { "AutoPause": { "type": "boolean" }, "MaxCapacity": { "type": "number" }, "MinCapacity": { "type": "number" }, "SecondsBeforeTimeout": { "type": "number" }, "SecondsUntilAutoPause": { "type": "number" }, "TimeoutAction": { "type": "string" } }, "type": "object" }, "AWS::RDS::DBCluster.ServerlessV2ScalingConfiguration": { "additionalProperties": false, "properties": { "MaxCapacity": { "type": "number" }, "MinCapacity": { "type": "number" } }, "type": "object" }, "AWS::RDS::DBClusterParameterGroup": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "DBClusterParameterGroupName": { "type": "string" }, "Description": { "type": "string" }, "Family": { "type": "string" }, "Parameters": { "type": "object" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "Description", "Family", "Parameters" ], "type": "object" }, "Type": { "enum": [ "AWS::RDS::DBClusterParameterGroup" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::RDS::DBInstance": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AllocatedStorage": { "type": "string" }, "AllowMajorVersionUpgrade": { "type": "boolean" }, "AssociatedRoles": { "items": { "$ref": "#/definitions/AWS::RDS::DBInstance.DBInstanceRole" }, "type": "array" }, "AutoMinorVersionUpgrade": { "type": "boolean" }, "AvailabilityZone": { "type": "string" }, "BackupRetentionPeriod": { "type": "number" }, "CACertificateIdentifier": { "type": "string" }, "CertificateDetails": { "$ref": "#/definitions/AWS::RDS::DBInstance.CertificateDetails" }, "CertificateRotationRestart": { "type": "boolean" }, "CharacterSetName": { "type": "string" }, "CopyTagsToSnapshot": { "type": "boolean" }, "CustomIAMInstanceProfile": { "type": "string" }, "DBClusterIdentifier": { "type": "string" }, "DBClusterSnapshotIdentifier": { "type": "string" }, "DBInstanceClass": { "type": "string" }, "DBInstanceIdentifier": { "type": "string" }, "DBName": { "type": "string" }, "DBParameterGroupName": { "type": "string" }, "DBSecurityGroups": { "items": { "type": "string" }, "type": "array" }, "DBSnapshotIdentifier": { "type": "string" }, "DBSubnetGroupName": { "type": "string" }, "DeleteAutomatedBackups": { "type": "boolean" }, "DeletionProtection": { "type": "boolean" }, "Domain": { "type": "string" }, "DomainIAMRoleName": { "type": "string" }, "EnableCloudwatchLogsExports": { "items": { "type": "string" }, "type": "array" }, "EnableIAMDatabaseAuthentication": { "type": "boolean" }, "EnablePerformanceInsights": { "type": "boolean" }, "Endpoint": { "$ref": "#/definitions/AWS::RDS::DBInstance.Endpoint" }, "Engine": { "type": "string" }, "EngineVersion": { "type": "string" }, "Iops": { "type": "number" }, "KmsKeyId": { "type": "string" }, "LicenseModel": { "type": "string" }, "ManageMasterUserPassword": { "type": "boolean" }, "MasterUserPassword": { "type": "string" }, "MasterUserSecret": { "$ref": "#/definitions/AWS::RDS::DBInstance.MasterUserSecret" }, "MasterUsername": { "type": "string" }, "MaxAllocatedStorage": { "type": "number" }, "MonitoringInterval": { "type": "number" }, "MonitoringRoleArn": { "type": "string" }, "MultiAZ": { "type": "boolean" }, "NcharCharacterSetName": { "type": "string" }, "NetworkType": { "type": "string" }, "OptionGroupName": { "type": "string" }, "PerformanceInsightsKMSKeyId": { "type": "string" }, "PerformanceInsightsRetentionPeriod": { "type": "number" }, "Port": { "type": "string" }, "PreferredBackupWindow": { "type": "string" }, "PreferredMaintenanceWindow": { "type": "string" }, "ProcessorFeatures": { "items": { "$ref": "#/definitions/AWS::RDS::DBInstance.ProcessorFeature" }, "type": "array" }, "PromotionTier": { "type": "number" }, "PubliclyAccessible": { "type": "boolean" }, "ReplicaMode": { "type": "string" }, "RestoreTime": { "type": "string" }, "SourceDBClusterIdentifier": { "type": "string" }, "SourceDBInstanceAutomatedBackupsArn": { "type": "string" }, "SourceDBInstanceIdentifier": { "type": "string" }, "SourceDbiResourceId": { "type": "string" }, "SourceRegion": { "type": "string" }, "StorageEncrypted": { "type": "boolean" }, "StorageThroughput": { "type": "number" }, "StorageType": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "Timezone": { "type": "string" }, "UseDefaultProcessorFeatures": { "type": "boolean" }, "UseLatestRestorableTime": { "type": "boolean" }, "VPCSecurityGroups": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "Type": { "enum": [ "AWS::RDS::DBInstance" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::RDS::DBInstance.CertificateDetails": { "additionalProperties": false, "properties": { "CAIdentifier": { "type": "string" }, "ValidTill": { "type": "string" } }, "type": "object" }, "AWS::RDS::DBInstance.DBInstanceRole": { "additionalProperties": false, "properties": { "FeatureName": { "type": "string" }, "RoleArn": { "type": "string" } }, "required": [ "FeatureName", "RoleArn" ], "type": "object" }, "AWS::RDS::DBInstance.Endpoint": { "additionalProperties": false, "properties": { "Address": { "type": "string" }, "HostedZoneId": { "type": "string" }, "Port": { "type": "string" } }, "type": "object" }, "AWS::RDS::DBInstance.MasterUserSecret": { "additionalProperties": false, "properties": { "KmsKeyId": { "type": "string" }, "SecretArn": { "type": "string" } }, "type": "object" }, "AWS::RDS::DBInstance.ProcessorFeature": { "additionalProperties": false, "properties": { "Name": { "type": "string" }, "Value": { "type": "string" } }, "type": "object" }, "AWS::RDS::DBParameterGroup": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "DBParameterGroupName": { "type": "string" }, "Description": { "type": "string" }, "Family": { "type": "string" }, "Parameters": { "type": "object" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "Description", "Family" ], "type": "object" }, "Type": { "enum": [ "AWS::RDS::DBParameterGroup" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::RDS::DBProxy": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Auth": { "items": { "$ref": "#/definitions/AWS::RDS::DBProxy.AuthFormat" }, "type": "array" }, "DBProxyName": { "type": "string" }, "DebugLogging": { "type": "boolean" }, "EngineFamily": { "type": "string" }, "IdleClientTimeout": { "type": "number" }, "RequireTLS": { "type": "boolean" }, "RoleArn": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/AWS::RDS::DBProxy.TagFormat" }, "type": "array" }, "VpcSecurityGroupIds": { "items": { "type": "string" }, "type": "array" }, "VpcSubnetIds": { "items": { "type": "string" }, "type": "array" } }, "required": [ "Auth", "DBProxyName", "EngineFamily", "RoleArn", "VpcSubnetIds" ], "type": "object" }, "Type": { "enum": [ "AWS::RDS::DBProxy" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::RDS::DBProxy.AuthFormat": { "additionalProperties": false, "properties": { "AuthScheme": { "type": "string" }, "ClientPasswordAuthType": { "type": "string" }, "Description": { "type": "string" }, "IAMAuth": { "type": "string" }, "SecretArn": { "type": "string" } }, "type": "object" }, "AWS::RDS::DBProxy.TagFormat": { "additionalProperties": false, "properties": { "Key": { "type": "string" }, "Value": { "type": "string" } }, "type": "object" }, "AWS::RDS::DBProxyEndpoint": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "DBProxyEndpointName": { "type": "string" }, "DBProxyName": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/AWS::RDS::DBProxyEndpoint.TagFormat" }, "type": "array" }, "TargetRole": { "type": "string" }, "VpcSecurityGroupIds": { "items": { "type": "string" }, "type": "array" }, "VpcSubnetIds": { "items": { "type": "string" }, "type": "array" } }, "required": [ "DBProxyEndpointName", "DBProxyName", "VpcSubnetIds" ], "type": "object" }, "Type": { "enum": [ "AWS::RDS::DBProxyEndpoint" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::RDS::DBProxyEndpoint.TagFormat": { "additionalProperties": false, "properties": { "Key": { "type": "string" }, "Value": { "type": "string" } }, "type": "object" }, "AWS::RDS::DBProxyTargetGroup": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ConnectionPoolConfigurationInfo": { "$ref": "#/definitions/AWS::RDS::DBProxyTargetGroup.ConnectionPoolConfigurationInfoFormat" }, "DBClusterIdentifiers": { "items": { "type": "string" }, "type": "array" }, "DBInstanceIdentifiers": { "items": { "type": "string" }, "type": "array" }, "DBProxyName": { "type": "string" }, "TargetGroupName": { "type": "string" } }, "required": [ "DBProxyName", "TargetGroupName" ], "type": "object" }, "Type": { "enum": [ "AWS::RDS::DBProxyTargetGroup" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::RDS::DBProxyTargetGroup.ConnectionPoolConfigurationInfoFormat": { "additionalProperties": false, "properties": { "ConnectionBorrowTimeout": { "type": "number" }, "InitQuery": { "type": "string" }, "MaxConnectionsPercent": { "type": "number" }, "MaxIdleConnectionsPercent": { "type": "number" }, "SessionPinningFilters": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::RDS::DBSecurityGroup": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "DBSecurityGroupIngress": { "items": { "$ref": "#/definitions/AWS::RDS::DBSecurityGroup.Ingress" }, "type": "array" }, "EC2VpcId": { "type": "string" }, "GroupDescription": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "DBSecurityGroupIngress", "GroupDescription" ], "type": "object" }, "Type": { "enum": [ "AWS::RDS::DBSecurityGroup" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::RDS::DBSecurityGroup.Ingress": { "additionalProperties": false, "properties": { "CIDRIP": { "type": "string" }, "EC2SecurityGroupId": { "type": "string" }, "EC2SecurityGroupName": { "type": "string" }, "EC2SecurityGroupOwnerId": { "type": "string" } }, "type": "object" }, "AWS::RDS::DBSecurityGroupIngress": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "CIDRIP": { "type": "string" }, "DBSecurityGroupName": { "type": "string" }, "EC2SecurityGroupId": { "type": "string" }, "EC2SecurityGroupName": { "type": "string" }, "EC2SecurityGroupOwnerId": { "type": "string" } }, "required": [ "DBSecurityGroupName" ], "type": "object" }, "Type": { "enum": [ "AWS::RDS::DBSecurityGroupIngress" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::RDS::DBSubnetGroup": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "DBSubnetGroupDescription": { "type": "string" }, "DBSubnetGroupName": { "type": "string" }, "SubnetIds": { "items": { "type": "string" }, "type": "array" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "DBSubnetGroupDescription", "SubnetIds" ], "type": "object" }, "Type": { "enum": [ "AWS::RDS::DBSubnetGroup" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::RDS::EventSubscription": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Enabled": { "type": "boolean" }, "EventCategories": { "items": { "type": "string" }, "type": "array" }, "SnsTopicArn": { "type": "string" }, "SourceIds": { "items": { "type": "string" }, "type": "array" }, "SourceType": { "type": "string" }, "SubscriptionName": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "SnsTopicArn" ], "type": "object" }, "Type": { "enum": [ "AWS::RDS::EventSubscription" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::RDS::GlobalCluster": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "DeletionProtection": { "type": "boolean" }, "Engine": { "type": "string" }, "EngineVersion": { "type": "string" }, "GlobalClusterIdentifier": { "type": "string" }, "SourceDBClusterIdentifier": { "type": "string" }, "StorageEncrypted": { "type": "boolean" } }, "type": "object" }, "Type": { "enum": [ "AWS::RDS::GlobalCluster" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::RDS::OptionGroup": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "EngineName": { "type": "string" }, "MajorEngineVersion": { "type": "string" }, "OptionConfigurations": { "items": { "$ref": "#/definitions/AWS::RDS::OptionGroup.OptionConfiguration" }, "type": "array" }, "OptionGroupDescription": { "type": "string" }, "OptionGroupName": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "EngineName", "MajorEngineVersion", "OptionGroupDescription" ], "type": "object" }, "Type": { "enum": [ "AWS::RDS::OptionGroup" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::RDS::OptionGroup.OptionConfiguration": { "additionalProperties": false, "properties": { "DBSecurityGroupMemberships": { "items": { "type": "string" }, "type": "array" }, "OptionName": { "type": "string" }, "OptionSettings": { "items": { "$ref": "#/definitions/AWS::RDS::OptionGroup.OptionSetting" }, "type": "array" }, "OptionVersion": { "type": "string" }, "Port": { "type": "number" }, "VpcSecurityGroupMemberships": { "items": { "type": "string" }, "type": "array" } }, "required": [ "OptionName" ], "type": "object" }, "AWS::RDS::OptionGroup.OptionSetting": { "additionalProperties": false, "properties": { "Name": { "type": "string" }, "Value": { "type": "string" } }, "type": "object" }, "AWS::RUM::AppMonitor": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AppMonitorConfiguration": { "$ref": "#/definitions/AWS::RUM::AppMonitor.AppMonitorConfiguration" }, "CustomEvents": { "$ref": "#/definitions/AWS::RUM::AppMonitor.CustomEvents" }, "CwLogEnabled": { "type": "boolean" }, "Domain": { "type": "string" }, "Name": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "Domain", "Name" ], "type": "object" }, "Type": { "enum": [ "AWS::RUM::AppMonitor" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::RUM::AppMonitor.AppMonitorConfiguration": { "additionalProperties": false, "properties": { "AllowCookies": { "type": "boolean" }, "EnableXRay": { "type": "boolean" }, "ExcludedPages": { "items": { "type": "string" }, "type": "array" }, "FavoritePages": { "items": { "type": "string" }, "type": "array" }, "GuestRoleArn": { "type": "string" }, "IdentityPoolId": { "type": "string" }, "IncludedPages": { "items": { "type": "string" }, "type": "array" }, "MetricDestinations": { "items": { "$ref": "#/definitions/AWS::RUM::AppMonitor.MetricDestination" }, "type": "array" }, "SessionSampleRate": { "type": "number" }, "Telemetries": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::RUM::AppMonitor.CustomEvents": { "additionalProperties": false, "properties": { "Status": { "type": "string" } }, "type": "object" }, "AWS::RUM::AppMonitor.MetricDefinition": { "additionalProperties": false, "properties": { "DimensionKeys": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" }, "EventPattern": { "type": "string" }, "Name": { "type": "string" }, "Namespace": { "type": "string" }, "UnitLabel": { "type": "string" }, "ValueKey": { "type": "string" } }, "required": [ "Name" ], "type": "object" }, "AWS::RUM::AppMonitor.MetricDestination": { "additionalProperties": false, "properties": { "Destination": { "type": "string" }, "DestinationArn": { "type": "string" }, "IamRoleArn": { "type": "string" }, "MetricDefinitions": { "items": { "$ref": "#/definitions/AWS::RUM::AppMonitor.MetricDefinition" }, "type": "array" } }, "required": [ "Destination" ], "type": "object" }, "AWS::Redshift::Cluster": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AllowVersionUpgrade": { "type": "boolean" }, "AquaConfigurationStatus": { "type": "string" }, "AutomatedSnapshotRetentionPeriod": { "type": "number" }, "AvailabilityZone": { "type": "string" }, "AvailabilityZoneRelocation": { "type": "boolean" }, "AvailabilityZoneRelocationStatus": { "type": "string" }, "Classic": { "type": "boolean" }, "ClusterIdentifier": { "type": "string" }, "ClusterParameterGroupName": { "type": "string" }, "ClusterSecurityGroups": { "items": { "type": "string" }, "type": "array" }, "ClusterSubnetGroupName": { "type": "string" }, "ClusterType": { "type": "string" }, "ClusterVersion": { "type": "string" }, "DBName": { "type": "string" }, "DeferMaintenance": { "type": "boolean" }, "DeferMaintenanceDuration": { "type": "number" }, "DeferMaintenanceEndTime": { "type": "string" }, "DeferMaintenanceStartTime": { "type": "string" }, "DestinationRegion": { "type": "string" }, "ElasticIp": { "type": "string" }, "Encrypted": { "type": "boolean" }, "Endpoint": { "$ref": "#/definitions/AWS::Redshift::Cluster.Endpoint" }, "EnhancedVpcRouting": { "type": "boolean" }, "HsmClientCertificateIdentifier": { "type": "string" }, "HsmConfigurationIdentifier": { "type": "string" }, "IamRoles": { "items": { "type": "string" }, "type": "array" }, "KmsKeyId": { "type": "string" }, "LoggingProperties": { "$ref": "#/definitions/AWS::Redshift::Cluster.LoggingProperties" }, "MaintenanceTrackName": { "type": "string" }, "ManualSnapshotRetentionPeriod": { "type": "number" }, "MasterUserPassword": { "type": "string" }, "MasterUsername": { "type": "string" }, "NodeType": { "type": "string" }, "NumberOfNodes": { "type": "number" }, "OwnerAccount": { "type": "string" }, "Port": { "type": "number" }, "PreferredMaintenanceWindow": { "type": "string" }, "PubliclyAccessible": { "type": "boolean" }, "ResourceAction": { "type": "string" }, "RevisionTarget": { "type": "string" }, "RotateEncryptionKey": { "type": "boolean" }, "SnapshotClusterIdentifier": { "type": "string" }, "SnapshotCopyGrantName": { "type": "string" }, "SnapshotCopyManual": { "type": "boolean" }, "SnapshotCopyRetentionPeriod": { "type": "number" }, "SnapshotIdentifier": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "VpcSecurityGroupIds": { "items": { "type": "string" }, "type": "array" } }, "required": [ "ClusterType", "DBName", "MasterUserPassword", "MasterUsername", "NodeType" ], "type": "object" }, "Type": { "enum": [ "AWS::Redshift::Cluster" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Redshift::Cluster.Endpoint": { "additionalProperties": false, "properties": { "Address": { "type": "string" }, "Port": { "type": "string" } }, "type": "object" }, "AWS::Redshift::Cluster.LoggingProperties": { "additionalProperties": false, "properties": { "BucketName": { "type": "string" }, "S3KeyPrefix": { "type": "string" } }, "required": [ "BucketName" ], "type": "object" }, "AWS::Redshift::ClusterParameterGroup": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "ParameterGroupFamily": { "type": "string" }, "ParameterGroupName": { "type": "string" }, "Parameters": { "items": { "$ref": "#/definitions/AWS::Redshift::ClusterParameterGroup.Parameter" }, "type": "array" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "Description", "ParameterGroupFamily" ], "type": "object" }, "Type": { "enum": [ "AWS::Redshift::ClusterParameterGroup" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Redshift::ClusterParameterGroup.Parameter": { "additionalProperties": false, "properties": { "ParameterName": { "type": "string" }, "ParameterValue": { "type": "string" } }, "required": [ "ParameterName", "ParameterValue" ], "type": "object" }, "AWS::Redshift::ClusterSecurityGroup": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "Description" ], "type": "object" }, "Type": { "enum": [ "AWS::Redshift::ClusterSecurityGroup" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Redshift::ClusterSecurityGroupIngress": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "CIDRIP": { "type": "string" }, "ClusterSecurityGroupName": { "type": "string" }, "EC2SecurityGroupName": { "type": "string" }, "EC2SecurityGroupOwnerId": { "type": "string" } }, "required": [ "ClusterSecurityGroupName" ], "type": "object" }, "Type": { "enum": [ "AWS::Redshift::ClusterSecurityGroupIngress" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Redshift::ClusterSubnetGroup": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "SubnetIds": { "items": { "type": "string" }, "type": "array" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "Description", "SubnetIds" ], "type": "object" }, "Type": { "enum": [ "AWS::Redshift::ClusterSubnetGroup" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Redshift::EndpointAccess": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ClusterIdentifier": { "type": "string" }, "EndpointName": { "type": "string" }, "ResourceOwner": { "type": "string" }, "SubnetGroupName": { "type": "string" }, "VpcSecurityGroupIds": { "items": { "type": "string" }, "type": "array" } }, "required": [ "ClusterIdentifier", "EndpointName", "SubnetGroupName", "VpcSecurityGroupIds" ], "type": "object" }, "Type": { "enum": [ "AWS::Redshift::EndpointAccess" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Redshift::EndpointAccess.NetworkInterface": { "additionalProperties": false, "properties": { "AvailabilityZone": { "type": "string" }, "NetworkInterfaceId": { "type": "string" }, "PrivateIpAddress": { "type": "string" }, "SubnetId": { "type": "string" } }, "type": "object" }, "AWS::Redshift::EndpointAccess.VpcEndpoint": { "additionalProperties": false, "properties": { "NetworkInterfaces": { "items": { "$ref": "#/definitions/AWS::Redshift::EndpointAccess.NetworkInterface" }, "type": "array" }, "VpcEndpointId": { "type": "string" }, "VpcId": { "type": "string" } }, "type": "object" }, "AWS::Redshift::EndpointAccess.VpcSecurityGroup": { "additionalProperties": false, "properties": { "Status": { "type": "string" }, "VpcSecurityGroupId": { "type": "string" } }, "type": "object" }, "AWS::Redshift::EndpointAuthorization": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Account": { "type": "string" }, "ClusterIdentifier": { "type": "string" }, "Force": { "type": "boolean" }, "VpcIds": { "items": { "type": "string" }, "type": "array" } }, "required": [ "Account", "ClusterIdentifier" ], "type": "object" }, "Type": { "enum": [ "AWS::Redshift::EndpointAuthorization" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Redshift::EventSubscription": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Enabled": { "type": "boolean" }, "EventCategories": { "items": { "type": "string" }, "type": "array" }, "Severity": { "type": "string" }, "SnsTopicArn": { "type": "string" }, "SourceIds": { "items": { "type": "string" }, "type": "array" }, "SourceType": { "type": "string" }, "SubscriptionName": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "SubscriptionName" ], "type": "object" }, "Type": { "enum": [ "AWS::Redshift::EventSubscription" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Redshift::ScheduledAction": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Enable": { "type": "boolean" }, "EndTime": { "type": "string" }, "IamRole": { "type": "string" }, "Schedule": { "type": "string" }, "ScheduledActionDescription": { "type": "string" }, "ScheduledActionName": { "type": "string" }, "StartTime": { "type": "string" }, "TargetAction": { "$ref": "#/definitions/AWS::Redshift::ScheduledAction.ScheduledActionType" } }, "required": [ "ScheduledActionName" ], "type": "object" }, "Type": { "enum": [ "AWS::Redshift::ScheduledAction" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Redshift::ScheduledAction.PauseClusterMessage": { "additionalProperties": false, "properties": { "ClusterIdentifier": { "type": "string" } }, "required": [ "ClusterIdentifier" ], "type": "object" }, "AWS::Redshift::ScheduledAction.ResizeClusterMessage": { "additionalProperties": false, "properties": { "Classic": { "type": "boolean" }, "ClusterIdentifier": { "type": "string" }, "ClusterType": { "type": "string" }, "NodeType": { "type": "string" }, "NumberOfNodes": { "type": "number" } }, "required": [ "ClusterIdentifier" ], "type": "object" }, "AWS::Redshift::ScheduledAction.ResumeClusterMessage": { "additionalProperties": false, "properties": { "ClusterIdentifier": { "type": "string" } }, "required": [ "ClusterIdentifier" ], "type": "object" }, "AWS::Redshift::ScheduledAction.ScheduledActionType": { "additionalProperties": false, "properties": { "PauseCluster": { "$ref": "#/definitions/AWS::Redshift::ScheduledAction.PauseClusterMessage" }, "ResizeCluster": { "$ref": "#/definitions/AWS::Redshift::ScheduledAction.ResizeClusterMessage" }, "ResumeCluster": { "$ref": "#/definitions/AWS::Redshift::ScheduledAction.ResumeClusterMessage" } }, "type": "object" }, "AWS::RedshiftServerless::Namespace": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AdminUserPassword": { "type": "string" }, "AdminUsername": { "type": "string" }, "DbName": { "type": "string" }, "DefaultIamRoleArn": { "type": "string" }, "FinalSnapshotName": { "type": "string" }, "FinalSnapshotRetentionPeriod": { "type": "number" }, "IamRoles": { "items": { "type": "string" }, "type": "array" }, "KmsKeyId": { "type": "string" }, "LogExports": { "items": { "type": "string" }, "type": "array" }, "NamespaceName": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "NamespaceName" ], "type": "object" }, "Type": { "enum": [ "AWS::RedshiftServerless::Namespace" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::RedshiftServerless::Namespace.Namespace": { "additionalProperties": false, "properties": { "AdminUsername": { "type": "string" }, "CreationDate": { "type": "string" }, "DbName": { "type": "string" }, "DefaultIamRoleArn": { "type": "string" }, "IamRoles": { "items": { "type": "string" }, "type": "array" }, "KmsKeyId": { "type": "string" }, "LogExports": { "items": { "type": "string" }, "type": "array" }, "NamespaceArn": { "type": "string" }, "NamespaceId": { "type": "string" }, "NamespaceName": { "type": "string" }, "Status": { "type": "string" } }, "type": "object" }, "AWS::RedshiftServerless::Workgroup": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "BaseCapacity": { "type": "number" }, "ConfigParameters": { "items": { "$ref": "#/definitions/AWS::RedshiftServerless::Workgroup.ConfigParameter" }, "type": "array" }, "EnhancedVpcRouting": { "type": "boolean" }, "NamespaceName": { "type": "string" }, "Port": { "type": "number" }, "PubliclyAccessible": { "type": "boolean" }, "SecurityGroupIds": { "items": { "type": "string" }, "type": "array" }, "SubnetIds": { "items": { "type": "string" }, "type": "array" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "WorkgroupName": { "type": "string" } }, "required": [ "WorkgroupName" ], "type": "object" }, "Type": { "enum": [ "AWS::RedshiftServerless::Workgroup" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::RedshiftServerless::Workgroup.ConfigParameter": { "additionalProperties": false, "properties": { "ParameterKey": { "type": "string" }, "ParameterValue": { "type": "string" } }, "type": "object" }, "AWS::RedshiftServerless::Workgroup.Endpoint": { "additionalProperties": false, "properties": { "Address": { "type": "string" }, "Port": { "type": "number" }, "VpcEndpoints": { "items": { "$ref": "#/definitions/AWS::RedshiftServerless::Workgroup.VpcEndpoint" }, "type": "array" } }, "type": "object" }, "AWS::RedshiftServerless::Workgroup.NetworkInterface": { "additionalProperties": false, "properties": { "AvailabilityZone": { "type": "string" }, "NetworkInterfaceId": { "type": "string" }, "PrivateIpAddress": { "type": "string" }, "SubnetId": { "type": "string" } }, "type": "object" }, "AWS::RedshiftServerless::Workgroup.VpcEndpoint": { "additionalProperties": false, "properties": { "NetworkInterfaces": { "items": { "$ref": "#/definitions/AWS::RedshiftServerless::Workgroup.NetworkInterface" }, "type": "array" }, "VpcEndpointId": { "type": "string" }, "VpcId": { "type": "string" } }, "type": "object" }, "AWS::RedshiftServerless::Workgroup.Workgroup": { "additionalProperties": false, "properties": { "BaseCapacity": { "type": "number" }, "ConfigParameters": { "items": { "$ref": "#/definitions/AWS::RedshiftServerless::Workgroup.ConfigParameter" }, "type": "array" }, "CreationDate": { "type": "string" }, "Endpoint": { "$ref": "#/definitions/AWS::RedshiftServerless::Workgroup.Endpoint" }, "EnhancedVpcRouting": { "type": "boolean" }, "NamespaceName": { "type": "string" }, "PubliclyAccessible": { "type": "boolean" }, "SecurityGroupIds": { "items": { "type": "string" }, "type": "array" }, "Status": { "type": "string" }, "SubnetIds": { "items": { "type": "string" }, "type": "array" }, "WorkgroupArn": { "type": "string" }, "WorkgroupId": { "type": "string" }, "WorkgroupName": { "type": "string" } }, "type": "object" }, "AWS::RefactorSpaces::Application": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ApiGatewayProxy": { "$ref": "#/definitions/AWS::RefactorSpaces::Application.ApiGatewayProxyInput" }, "EnvironmentIdentifier": { "type": "string" }, "Name": { "type": "string" }, "ProxyType": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "VpcId": { "type": "string" } }, "required": [ "EnvironmentIdentifier", "Name", "ProxyType", "VpcId" ], "type": "object" }, "Type": { "enum": [ "AWS::RefactorSpaces::Application" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::RefactorSpaces::Application.ApiGatewayProxyInput": { "additionalProperties": false, "properties": { "EndpointType": { "type": "string" }, "StageName": { "type": "string" } }, "type": "object" }, "AWS::RefactorSpaces::Environment": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "Name": { "type": "string" }, "NetworkFabricType": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "Name", "NetworkFabricType" ], "type": "object" }, "Type": { "enum": [ "AWS::RefactorSpaces::Environment" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::RefactorSpaces::Route": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ApplicationIdentifier": { "type": "string" }, "DefaultRoute": { "$ref": "#/definitions/AWS::RefactorSpaces::Route.DefaultRouteInput" }, "EnvironmentIdentifier": { "type": "string" }, "RouteType": { "type": "string" }, "ServiceIdentifier": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "UriPathRoute": { "$ref": "#/definitions/AWS::RefactorSpaces::Route.UriPathRouteInput" } }, "required": [ "ApplicationIdentifier", "EnvironmentIdentifier", "RouteType", "ServiceIdentifier" ], "type": "object" }, "Type": { "enum": [ "AWS::RefactorSpaces::Route" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::RefactorSpaces::Route.DefaultRouteInput": { "additionalProperties": false, "properties": { "ActivationState": { "type": "string" } }, "required": [ "ActivationState" ], "type": "object" }, "AWS::RefactorSpaces::Route.UriPathRouteInput": { "additionalProperties": false, "properties": { "ActivationState": { "type": "string" }, "AppendSourcePath": { "type": "boolean" }, "IncludeChildPaths": { "type": "boolean" }, "Methods": { "items": { "type": "string" }, "type": "array" }, "SourcePath": { "type": "string" } }, "required": [ "ActivationState" ], "type": "object" }, "AWS::RefactorSpaces::Service": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ApplicationIdentifier": { "type": "string" }, "Description": { "type": "string" }, "EndpointType": { "type": "string" }, "EnvironmentIdentifier": { "type": "string" }, "LambdaEndpoint": { "$ref": "#/definitions/AWS::RefactorSpaces::Service.LambdaEndpointInput" }, "Name": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "UrlEndpoint": { "$ref": "#/definitions/AWS::RefactorSpaces::Service.UrlEndpointInput" }, "VpcId": { "type": "string" } }, "required": [ "ApplicationIdentifier", "EndpointType", "EnvironmentIdentifier", "Name" ], "type": "object" }, "Type": { "enum": [ "AWS::RefactorSpaces::Service" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::RefactorSpaces::Service.LambdaEndpointInput": { "additionalProperties": false, "properties": { "Arn": { "type": "string" } }, "required": [ "Arn" ], "type": "object" }, "AWS::RefactorSpaces::Service.UrlEndpointInput": { "additionalProperties": false, "properties": { "HealthUrl": { "type": "string" }, "Url": { "type": "string" } }, "required": [ "Url" ], "type": "object" }, "AWS::Rekognition::Collection": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "CollectionId": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "CollectionId" ], "type": "object" }, "Type": { "enum": [ "AWS::Rekognition::Collection" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Rekognition::Project": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ProjectName": { "type": "string" } }, "required": [ "ProjectName" ], "type": "object" }, "Type": { "enum": [ "AWS::Rekognition::Project" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Rekognition::StreamProcessor": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "BoundingBoxRegionsOfInterest": { "items": { "$ref": "#/definitions/AWS::Rekognition::StreamProcessor.BoundingBox" }, "type": "array" }, "ConnectedHomeSettings": { "$ref": "#/definitions/AWS::Rekognition::StreamProcessor.ConnectedHomeSettings" }, "DataSharingPreference": { "$ref": "#/definitions/AWS::Rekognition::StreamProcessor.DataSharingPreference" }, "FaceSearchSettings": { "$ref": "#/definitions/AWS::Rekognition::StreamProcessor.FaceSearchSettings" }, "KinesisDataStream": { "$ref": "#/definitions/AWS::Rekognition::StreamProcessor.KinesisDataStream" }, "KinesisVideoStream": { "$ref": "#/definitions/AWS::Rekognition::StreamProcessor.KinesisVideoStream" }, "KmsKeyId": { "type": "string" }, "Name": { "type": "string" }, "NotificationChannel": { "$ref": "#/definitions/AWS::Rekognition::StreamProcessor.NotificationChannel" }, "PolygonRegionsOfInterest": { "type": "object" }, "RoleArn": { "type": "string" }, "S3Destination": { "$ref": "#/definitions/AWS::Rekognition::StreamProcessor.S3Destination" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "KinesisVideoStream", "RoleArn" ], "type": "object" }, "Type": { "enum": [ "AWS::Rekognition::StreamProcessor" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Rekognition::StreamProcessor.BoundingBox": { "additionalProperties": false, "properties": { "Height": { "type": "number" }, "Left": { "type": "number" }, "Top": { "type": "number" }, "Width": { "type": "number" } }, "required": [ "Height", "Left", "Top", "Width" ], "type": "object" }, "AWS::Rekognition::StreamProcessor.ConnectedHomeSettings": { "additionalProperties": false, "properties": { "Labels": { "items": { "type": "string" }, "type": "array" }, "MinConfidence": { "type": "number" } }, "required": [ "Labels" ], "type": "object" }, "AWS::Rekognition::StreamProcessor.DataSharingPreference": { "additionalProperties": false, "properties": { "OptIn": { "type": "boolean" } }, "required": [ "OptIn" ], "type": "object" }, "AWS::Rekognition::StreamProcessor.FaceSearchSettings": { "additionalProperties": false, "properties": { "CollectionId": { "type": "string" }, "FaceMatchThreshold": { "type": "number" } }, "required": [ "CollectionId" ], "type": "object" }, "AWS::Rekognition::StreamProcessor.KinesisDataStream": { "additionalProperties": false, "properties": { "Arn": { "type": "string" } }, "required": [ "Arn" ], "type": "object" }, "AWS::Rekognition::StreamProcessor.KinesisVideoStream": { "additionalProperties": false, "properties": { "Arn": { "type": "string" } }, "required": [ "Arn" ], "type": "object" }, "AWS::Rekognition::StreamProcessor.NotificationChannel": { "additionalProperties": false, "properties": { "Arn": { "type": "string" } }, "required": [ "Arn" ], "type": "object" }, "AWS::Rekognition::StreamProcessor.S3Destination": { "additionalProperties": false, "properties": { "BucketName": { "type": "string" }, "ObjectKeyPrefix": { "type": "string" } }, "required": [ "BucketName" ], "type": "object" }, "AWS::ResilienceHub::App": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AppAssessmentSchedule": { "type": "string" }, "AppTemplateBody": { "type": "string" }, "Description": { "type": "string" }, "Name": { "type": "string" }, "ResiliencyPolicyArn": { "type": "string" }, "ResourceMappings": { "items": { "$ref": "#/definitions/AWS::ResilienceHub::App.ResourceMapping" }, "type": "array" }, "Tags": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" } }, "required": [ "AppTemplateBody", "Name", "ResourceMappings" ], "type": "object" }, "Type": { "enum": [ "AWS::ResilienceHub::App" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::ResilienceHub::App.PhysicalResourceId": { "additionalProperties": false, "properties": { "AwsAccountId": { "type": "string" }, "AwsRegion": { "type": "string" }, "Identifier": { "type": "string" }, "Type": { "type": "string" } }, "required": [ "Identifier", "Type" ], "type": "object" }, "AWS::ResilienceHub::App.ResourceMapping": { "additionalProperties": false, "properties": { "EksSourceName": { "type": "string" }, "LogicalStackName": { "type": "string" }, "MappingType": { "type": "string" }, "PhysicalResourceId": { "$ref": "#/definitions/AWS::ResilienceHub::App.PhysicalResourceId" }, "ResourceName": { "type": "string" }, "TerraformSourceName": { "type": "string" } }, "required": [ "MappingType", "PhysicalResourceId" ], "type": "object" }, "AWS::ResilienceHub::ResiliencyPolicy": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "DataLocationConstraint": { "type": "string" }, "Policy": { "additionalProperties": false, "patternProperties": { "^[a-zA-Z0-9]+$": { "$ref": "#/definitions/AWS::ResilienceHub::ResiliencyPolicy.FailurePolicy" } }, "type": "object" }, "PolicyDescription": { "type": "string" }, "PolicyName": { "type": "string" }, "Tags": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" }, "Tier": { "type": "string" } }, "required": [ "Policy", "PolicyName", "Tier" ], "type": "object" }, "Type": { "enum": [ "AWS::ResilienceHub::ResiliencyPolicy" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::ResilienceHub::ResiliencyPolicy.FailurePolicy": { "additionalProperties": false, "properties": { "RpoInSecs": { "type": "number" }, "RtoInSecs": { "type": "number" } }, "required": [ "RpoInSecs", "RtoInSecs" ], "type": "object" }, "AWS::ResourceExplorer2::DefaultViewAssociation": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ViewArn": { "type": "string" } }, "required": [ "ViewArn" ], "type": "object" }, "Type": { "enum": [ "AWS::ResourceExplorer2::DefaultViewAssociation" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::ResourceExplorer2::Index": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Tags": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" }, "Type": { "type": "string" } }, "required": [ "Type" ], "type": "object" }, "Type": { "enum": [ "AWS::ResourceExplorer2::Index" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::ResourceExplorer2::View": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Filters": { "$ref": "#/definitions/AWS::ResourceExplorer2::View.Filters" }, "IncludedProperties": { "items": { "$ref": "#/definitions/AWS::ResourceExplorer2::View.IncludedProperty" }, "type": "array" }, "Tags": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" }, "ViewName": { "type": "string" } }, "required": [ "ViewName" ], "type": "object" }, "Type": { "enum": [ "AWS::ResourceExplorer2::View" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::ResourceExplorer2::View.Filters": { "additionalProperties": false, "properties": { "FilterString": { "type": "string" } }, "required": [ "FilterString" ], "type": "object" }, "AWS::ResourceExplorer2::View.IncludedProperty": { "additionalProperties": false, "properties": { "Name": { "type": "string" } }, "required": [ "Name" ], "type": "object" }, "AWS::ResourceGroups::Group": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Configuration": { "items": { "$ref": "#/definitions/AWS::ResourceGroups::Group.ConfigurationItem" }, "type": "array" }, "Description": { "type": "string" }, "Name": { "type": "string" }, "ResourceQuery": { "$ref": "#/definitions/AWS::ResourceGroups::Group.ResourceQuery" }, "Resources": { "items": { "type": "string" }, "type": "array" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "Name" ], "type": "object" }, "Type": { "enum": [ "AWS::ResourceGroups::Group" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::ResourceGroups::Group.ConfigurationItem": { "additionalProperties": false, "properties": { "Parameters": { "items": { "$ref": "#/definitions/AWS::ResourceGroups::Group.ConfigurationParameter" }, "type": "array" }, "Type": { "type": "string" } }, "type": "object" }, "AWS::ResourceGroups::Group.ConfigurationParameter": { "additionalProperties": false, "properties": { "Name": { "type": "string" }, "Values": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::ResourceGroups::Group.Query": { "additionalProperties": false, "properties": { "ResourceTypeFilters": { "items": { "type": "string" }, "type": "array" }, "StackIdentifier": { "type": "string" }, "TagFilters": { "items": { "$ref": "#/definitions/AWS::ResourceGroups::Group.TagFilter" }, "type": "array" } }, "type": "object" }, "AWS::ResourceGroups::Group.ResourceQuery": { "additionalProperties": false, "properties": { "Query": { "$ref": "#/definitions/AWS::ResourceGroups::Group.Query" }, "Type": { "type": "string" } }, "type": "object" }, "AWS::ResourceGroups::Group.TagFilter": { "additionalProperties": false, "properties": { "Key": { "type": "string" }, "Values": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::RoboMaker::Fleet": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Name": { "type": "string" }, "Tags": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" } }, "type": "object" }, "Type": { "enum": [ "AWS::RoboMaker::Fleet" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::RoboMaker::Robot": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Architecture": { "type": "string" }, "Fleet": { "type": "string" }, "GreengrassGroupId": { "type": "string" }, "Name": { "type": "string" }, "Tags": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" } }, "required": [ "Architecture", "GreengrassGroupId" ], "type": "object" }, "Type": { "enum": [ "AWS::RoboMaker::Robot" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::RoboMaker::RobotApplication": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "CurrentRevisionId": { "type": "string" }, "Environment": { "type": "string" }, "Name": { "type": "string" }, "RobotSoftwareSuite": { "$ref": "#/definitions/AWS::RoboMaker::RobotApplication.RobotSoftwareSuite" }, "Sources": { "items": { "$ref": "#/definitions/AWS::RoboMaker::RobotApplication.SourceConfig" }, "type": "array" }, "Tags": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" } }, "required": [ "RobotSoftwareSuite" ], "type": "object" }, "Type": { "enum": [ "AWS::RoboMaker::RobotApplication" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::RoboMaker::RobotApplication.RobotSoftwareSuite": { "additionalProperties": false, "properties": { "Name": { "type": "string" }, "Version": { "type": "string" } }, "required": [ "Name" ], "type": "object" }, "AWS::RoboMaker::RobotApplication.SourceConfig": { "additionalProperties": false, "properties": { "Architecture": { "type": "string" }, "S3Bucket": { "type": "string" }, "S3Key": { "type": "string" } }, "required": [ "Architecture", "S3Bucket", "S3Key" ], "type": "object" }, "AWS::RoboMaker::RobotApplicationVersion": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Application": { "type": "string" }, "CurrentRevisionId": { "type": "string" } }, "required": [ "Application" ], "type": "object" }, "Type": { "enum": [ "AWS::RoboMaker::RobotApplicationVersion" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::RoboMaker::SimulationApplication": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "CurrentRevisionId": { "type": "string" }, "Environment": { "type": "string" }, "Name": { "type": "string" }, "RenderingEngine": { "$ref": "#/definitions/AWS::RoboMaker::SimulationApplication.RenderingEngine" }, "RobotSoftwareSuite": { "$ref": "#/definitions/AWS::RoboMaker::SimulationApplication.RobotSoftwareSuite" }, "SimulationSoftwareSuite": { "$ref": "#/definitions/AWS::RoboMaker::SimulationApplication.SimulationSoftwareSuite" }, "Sources": { "items": { "$ref": "#/definitions/AWS::RoboMaker::SimulationApplication.SourceConfig" }, "type": "array" }, "Tags": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" } }, "required": [ "RobotSoftwareSuite", "SimulationSoftwareSuite" ], "type": "object" }, "Type": { "enum": [ "AWS::RoboMaker::SimulationApplication" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::RoboMaker::SimulationApplication.RenderingEngine": { "additionalProperties": false, "properties": { "Name": { "type": "string" }, "Version": { "type": "string" } }, "required": [ "Name", "Version" ], "type": "object" }, "AWS::RoboMaker::SimulationApplication.RobotSoftwareSuite": { "additionalProperties": false, "properties": { "Name": { "type": "string" }, "Version": { "type": "string" } }, "required": [ "Name" ], "type": "object" }, "AWS::RoboMaker::SimulationApplication.SimulationSoftwareSuite": { "additionalProperties": false, "properties": { "Name": { "type": "string" }, "Version": { "type": "string" } }, "required": [ "Name" ], "type": "object" }, "AWS::RoboMaker::SimulationApplication.SourceConfig": { "additionalProperties": false, "properties": { "Architecture": { "type": "string" }, "S3Bucket": { "type": "string" }, "S3Key": { "type": "string" } }, "required": [ "Architecture", "S3Bucket", "S3Key" ], "type": "object" }, "AWS::RoboMaker::SimulationApplicationVersion": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Application": { "type": "string" }, "CurrentRevisionId": { "type": "string" } }, "required": [ "Application" ], "type": "object" }, "Type": { "enum": [ "AWS::RoboMaker::SimulationApplicationVersion" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::RolesAnywhere::CRL": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "CrlData": { "type": "string" }, "Enabled": { "type": "boolean" }, "Name": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "TrustAnchorArn": { "type": "string" } }, "required": [ "CrlData", "Name" ], "type": "object" }, "Type": { "enum": [ "AWS::RolesAnywhere::CRL" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::RolesAnywhere::Profile": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "DurationSeconds": { "type": "number" }, "Enabled": { "type": "boolean" }, "ManagedPolicyArns": { "items": { "type": "string" }, "type": "array" }, "Name": { "type": "string" }, "RequireInstanceProperties": { "type": "boolean" }, "RoleArns": { "items": { "type": "string" }, "type": "array" }, "SessionPolicy": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "Name", "RoleArns" ], "type": "object" }, "Type": { "enum": [ "AWS::RolesAnywhere::Profile" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::RolesAnywhere::TrustAnchor": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Enabled": { "type": "boolean" }, "Name": { "type": "string" }, "Source": { "$ref": "#/definitions/AWS::RolesAnywhere::TrustAnchor.Source" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "Name", "Source" ], "type": "object" }, "Type": { "enum": [ "AWS::RolesAnywhere::TrustAnchor" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::RolesAnywhere::TrustAnchor.Source": { "additionalProperties": false, "properties": { "SourceData": { "$ref": "#/definitions/AWS::RolesAnywhere::TrustAnchor.SourceData" }, "SourceType": { "type": "string" } }, "type": "object" }, "AWS::RolesAnywhere::TrustAnchor.SourceData": { "additionalProperties": false, "properties": { "AcmPcaArn": { "type": "string" }, "X509CertificateData": { "type": "string" } }, "type": "object" }, "AWS::Route53::CidrCollection": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Locations": { "items": { "$ref": "#/definitions/AWS::Route53::CidrCollection.Location" }, "type": "array" }, "Name": { "type": "string" } }, "required": [ "Name" ], "type": "object" }, "Type": { "enum": [ "AWS::Route53::CidrCollection" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Route53::CidrCollection.Location": { "additionalProperties": false, "properties": { "CidrList": { "items": { "type": "string" }, "type": "array" }, "LocationName": { "type": "string" } }, "required": [ "CidrList", "LocationName" ], "type": "object" }, "AWS::Route53::DNSSEC": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "HostedZoneId": { "type": "string" } }, "required": [ "HostedZoneId" ], "type": "object" }, "Type": { "enum": [ "AWS::Route53::DNSSEC" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Route53::HealthCheck": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "HealthCheckConfig": { "$ref": "#/definitions/AWS::Route53::HealthCheck.HealthCheckConfig" }, "HealthCheckTags": { "items": { "$ref": "#/definitions/AWS::Route53::HealthCheck.HealthCheckTag" }, "type": "array" } }, "required": [ "HealthCheckConfig" ], "type": "object" }, "Type": { "enum": [ "AWS::Route53::HealthCheck" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Route53::HealthCheck.AlarmIdentifier": { "additionalProperties": false, "properties": { "Name": { "type": "string" }, "Region": { "type": "string" } }, "required": [ "Name", "Region" ], "type": "object" }, "AWS::Route53::HealthCheck.HealthCheckConfig": { "additionalProperties": false, "properties": { "AlarmIdentifier": { "$ref": "#/definitions/AWS::Route53::HealthCheck.AlarmIdentifier" }, "ChildHealthChecks": { "items": { "type": "string" }, "type": "array" }, "EnableSNI": { "type": "boolean" }, "FailureThreshold": { "type": "number" }, "FullyQualifiedDomainName": { "type": "string" }, "HealthThreshold": { "type": "number" }, "IPAddress": { "type": "string" }, "InsufficientDataHealthStatus": { "type": "string" }, "Inverted": { "type": "boolean" }, "MeasureLatency": { "type": "boolean" }, "Port": { "type": "number" }, "Regions": { "items": { "type": "string" }, "type": "array" }, "RequestInterval": { "type": "number" }, "ResourcePath": { "type": "string" }, "RoutingControlArn": { "type": "string" }, "SearchString": { "type": "string" }, "Type": { "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::Route53::HealthCheck.HealthCheckTag": { "additionalProperties": false, "properties": { "Key": { "type": "string" }, "Value": { "type": "string" } }, "required": [ "Key", "Value" ], "type": "object" }, "AWS::Route53::HostedZone": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "HostedZoneConfig": { "$ref": "#/definitions/AWS::Route53::HostedZone.HostedZoneConfig" }, "HostedZoneTags": { "items": { "$ref": "#/definitions/AWS::Route53::HostedZone.HostedZoneTag" }, "type": "array" }, "Name": { "type": "string" }, "QueryLoggingConfig": { "$ref": "#/definitions/AWS::Route53::HostedZone.QueryLoggingConfig" }, "VPCs": { "items": { "$ref": "#/definitions/AWS::Route53::HostedZone.VPC" }, "type": "array" } }, "type": "object" }, "Type": { "enum": [ "AWS::Route53::HostedZone" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::Route53::HostedZone.HostedZoneConfig": { "additionalProperties": false, "properties": { "Comment": { "type": "string" } }, "type": "object" }, "AWS::Route53::HostedZone.HostedZoneTag": { "additionalProperties": false, "properties": { "Key": { "type": "string" }, "Value": { "type": "string" } }, "required": [ "Key", "Value" ], "type": "object" }, "AWS::Route53::HostedZone.QueryLoggingConfig": { "additionalProperties": false, "properties": { "CloudWatchLogsLogGroupArn": { "type": "string" } }, "required": [ "CloudWatchLogsLogGroupArn" ], "type": "object" }, "AWS::Route53::HostedZone.VPC": { "additionalProperties": false, "properties": { "VPCId": { "type": "string" }, "VPCRegion": { "type": "string" } }, "required": [ "VPCId", "VPCRegion" ], "type": "object" }, "AWS::Route53::KeySigningKey": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "HostedZoneId": { "type": "string" }, "KeyManagementServiceArn": { "type": "string" }, "Name": { "type": "string" }, "Status": { "type": "string" } }, "required": [ "HostedZoneId", "KeyManagementServiceArn", "Name", "Status" ], "type": "object" }, "Type": { "enum": [ "AWS::Route53::KeySigningKey" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Route53::RecordSet": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AliasTarget": { "$ref": "#/definitions/AWS::Route53::RecordSet.AliasTarget" }, "CidrRoutingConfig": { "$ref": "#/definitions/AWS::Route53::RecordSet.CidrRoutingConfig" }, "Comment": { "type": "string" }, "Failover": { "type": "string" }, "GeoLocation": { "$ref": "#/definitions/AWS::Route53::RecordSet.GeoLocation" }, "HealthCheckId": { "type": "string" }, "HostedZoneId": { "type": "string" }, "HostedZoneName": { "type": "string" }, "MultiValueAnswer": { "type": "boolean" }, "Name": { "type": "string" }, "Region": { "type": "string" }, "ResourceRecords": { "items": { "type": "string" }, "type": "array" }, "SetIdentifier": { "type": "string" }, "TTL": { "type": "string" }, "Type": { "type": "string" }, "Weight": { "type": "number" } }, "required": [ "Name", "Type" ], "type": "object" }, "Type": { "enum": [ "AWS::Route53::RecordSet" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Route53::RecordSet.AliasTarget": { "additionalProperties": false, "properties": { "DNSName": { "type": "string" }, "EvaluateTargetHealth": { "type": "boolean" }, "HostedZoneId": { "type": "string" } }, "required": [ "DNSName", "HostedZoneId" ], "type": "object" }, "AWS::Route53::RecordSet.CidrRoutingConfig": { "additionalProperties": false, "properties": { "CollectionId": { "type": "string" }, "LocationName": { "type": "string" } }, "required": [ "CollectionId", "LocationName" ], "type": "object" }, "AWS::Route53::RecordSet.GeoLocation": { "additionalProperties": false, "properties": { "ContinentCode": { "type": "string" }, "CountryCode": { "type": "string" }, "SubdivisionCode": { "type": "string" } }, "type": "object" }, "AWS::Route53::RecordSetGroup": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Comment": { "type": "string" }, "HostedZoneId": { "type": "string" }, "HostedZoneName": { "type": "string" }, "RecordSets": { "items": { "$ref": "#/definitions/AWS::Route53::RecordSetGroup.RecordSet" }, "type": "array" } }, "type": "object" }, "Type": { "enum": [ "AWS::Route53::RecordSetGroup" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::Route53::RecordSetGroup.AliasTarget": { "additionalProperties": false, "properties": { "DNSName": { "type": "string" }, "EvaluateTargetHealth": { "type": "boolean" }, "HostedZoneId": { "type": "string" } }, "required": [ "DNSName", "HostedZoneId" ], "type": "object" }, "AWS::Route53::RecordSetGroup.CidrRoutingConfig": { "additionalProperties": false, "properties": { "CollectionId": { "type": "string" }, "LocationName": { "type": "string" } }, "required": [ "CollectionId", "LocationName" ], "type": "object" }, "AWS::Route53::RecordSetGroup.GeoLocation": { "additionalProperties": false, "properties": { "ContinentCode": { "type": "string" }, "CountryCode": { "type": "string" }, "SubdivisionCode": { "type": "string" } }, "type": "object" }, "AWS::Route53::RecordSetGroup.RecordSet": { "additionalProperties": false, "properties": { "AliasTarget": { "$ref": "#/definitions/AWS::Route53::RecordSetGroup.AliasTarget" }, "CidrRoutingConfig": { "$ref": "#/definitions/AWS::Route53::RecordSetGroup.CidrRoutingConfig" }, "Failover": { "type": "string" }, "GeoLocation": { "$ref": "#/definitions/AWS::Route53::RecordSetGroup.GeoLocation" }, "HealthCheckId": { "type": "string" }, "HostedZoneId": { "type": "string" }, "HostedZoneName": { "type": "string" }, "MultiValueAnswer": { "type": "boolean" }, "Name": { "type": "string" }, "Region": { "type": "string" }, "ResourceRecords": { "items": { "type": "string" }, "type": "array" }, "SetIdentifier": { "type": "string" }, "TTL": { "type": "string" }, "Type": { "type": "string" }, "Weight": { "type": "number" } }, "required": [ "Name", "Type" ], "type": "object" }, "AWS::Route53RecoveryControl::Cluster": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Name": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "Name" ], "type": "object" }, "Type": { "enum": [ "AWS::Route53RecoveryControl::Cluster" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Route53RecoveryControl::Cluster.ClusterEndpoint": { "additionalProperties": false, "properties": { "Endpoint": { "type": "string" }, "Region": { "type": "string" } }, "type": "object" }, "AWS::Route53RecoveryControl::ControlPanel": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ClusterArn": { "type": "string" }, "Name": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "Name" ], "type": "object" }, "Type": { "enum": [ "AWS::Route53RecoveryControl::ControlPanel" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Route53RecoveryControl::RoutingControl": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ClusterArn": { "type": "string" }, "ControlPanelArn": { "type": "string" }, "Name": { "type": "string" } }, "required": [ "Name" ], "type": "object" }, "Type": { "enum": [ "AWS::Route53RecoveryControl::RoutingControl" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Route53RecoveryControl::SafetyRule": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AssertionRule": { "$ref": "#/definitions/AWS::Route53RecoveryControl::SafetyRule.AssertionRule" }, "ControlPanelArn": { "type": "string" }, "GatingRule": { "$ref": "#/definitions/AWS::Route53RecoveryControl::SafetyRule.GatingRule" }, "Name": { "type": "string" }, "RuleConfig": { "$ref": "#/definitions/AWS::Route53RecoveryControl::SafetyRule.RuleConfig" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "ControlPanelArn", "Name", "RuleConfig" ], "type": "object" }, "Type": { "enum": [ "AWS::Route53RecoveryControl::SafetyRule" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Route53RecoveryControl::SafetyRule.AssertionRule": { "additionalProperties": false, "properties": { "AssertedControls": { "items": { "type": "string" }, "type": "array" }, "WaitPeriodMs": { "type": "number" } }, "required": [ "AssertedControls", "WaitPeriodMs" ], "type": "object" }, "AWS::Route53RecoveryControl::SafetyRule.GatingRule": { "additionalProperties": false, "properties": { "GatingControls": { "items": { "type": "string" }, "type": "array" }, "TargetControls": { "items": { "type": "string" }, "type": "array" }, "WaitPeriodMs": { "type": "number" } }, "required": [ "GatingControls", "TargetControls", "WaitPeriodMs" ], "type": "object" }, "AWS::Route53RecoveryControl::SafetyRule.RuleConfig": { "additionalProperties": false, "properties": { "Inverted": { "type": "boolean" }, "Threshold": { "type": "number" }, "Type": { "type": "string" } }, "required": [ "Inverted", "Threshold", "Type" ], "type": "object" }, "AWS::Route53RecoveryReadiness::Cell": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "CellName": { "type": "string" }, "Cells": { "items": { "type": "string" }, "type": "array" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "type": "object" }, "Type": { "enum": [ "AWS::Route53RecoveryReadiness::Cell" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::Route53RecoveryReadiness::ReadinessCheck": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ReadinessCheckName": { "type": "string" }, "ResourceSetName": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "type": "object" }, "Type": { "enum": [ "AWS::Route53RecoveryReadiness::ReadinessCheck" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::Route53RecoveryReadiness::RecoveryGroup": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Cells": { "items": { "type": "string" }, "type": "array" }, "RecoveryGroupName": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "type": "object" }, "Type": { "enum": [ "AWS::Route53RecoveryReadiness::RecoveryGroup" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::Route53RecoveryReadiness::ResourceSet": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ResourceSetName": { "type": "string" }, "ResourceSetType": { "type": "string" }, "Resources": { "items": { "$ref": "#/definitions/AWS::Route53RecoveryReadiness::ResourceSet.Resource" }, "type": "array" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "ResourceSetType", "Resources" ], "type": "object" }, "Type": { "enum": [ "AWS::Route53RecoveryReadiness::ResourceSet" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Route53RecoveryReadiness::ResourceSet.DNSTargetResource": { "additionalProperties": false, "properties": { "DomainName": { "type": "string" }, "HostedZoneArn": { "type": "string" }, "RecordSetId": { "type": "string" }, "RecordType": { "type": "string" }, "TargetResource": { "$ref": "#/definitions/AWS::Route53RecoveryReadiness::ResourceSet.TargetResource" } }, "type": "object" }, "AWS::Route53RecoveryReadiness::ResourceSet.NLBResource": { "additionalProperties": false, "properties": { "Arn": { "type": "string" } }, "type": "object" }, "AWS::Route53RecoveryReadiness::ResourceSet.R53ResourceRecord": { "additionalProperties": false, "properties": { "DomainName": { "type": "string" }, "RecordSetId": { "type": "string" } }, "type": "object" }, "AWS::Route53RecoveryReadiness::ResourceSet.Resource": { "additionalProperties": false, "properties": { "ComponentId": { "type": "string" }, "DnsTargetResource": { "$ref": "#/definitions/AWS::Route53RecoveryReadiness::ResourceSet.DNSTargetResource" }, "ReadinessScopes": { "items": { "type": "string" }, "type": "array" }, "ResourceArn": { "type": "string" } }, "type": "object" }, "AWS::Route53RecoveryReadiness::ResourceSet.TargetResource": { "additionalProperties": false, "properties": { "NLBResource": { "$ref": "#/definitions/AWS::Route53RecoveryReadiness::ResourceSet.NLBResource" }, "R53Resource": { "$ref": "#/definitions/AWS::Route53RecoveryReadiness::ResourceSet.R53ResourceRecord" } }, "type": "object" }, "AWS::Route53Resolver::FirewallDomainList": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "DomainFileUrl": { "type": "string" }, "Domains": { "items": { "type": "string" }, "type": "array" }, "Name": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "type": "object" }, "Type": { "enum": [ "AWS::Route53Resolver::FirewallDomainList" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::Route53Resolver::FirewallRuleGroup": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "FirewallRules": { "items": { "$ref": "#/definitions/AWS::Route53Resolver::FirewallRuleGroup.FirewallRule" }, "type": "array" }, "Name": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "type": "object" }, "Type": { "enum": [ "AWS::Route53Resolver::FirewallRuleGroup" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::Route53Resolver::FirewallRuleGroup.FirewallRule": { "additionalProperties": false, "properties": { "Action": { "type": "string" }, "BlockOverrideDnsType": { "type": "string" }, "BlockOverrideDomain": { "type": "string" }, "BlockOverrideTtl": { "type": "number" }, "BlockResponse": { "type": "string" }, "FirewallDomainListId": { "type": "string" }, "Priority": { "type": "number" } }, "required": [ "Action", "FirewallDomainListId", "Priority" ], "type": "object" }, "AWS::Route53Resolver::FirewallRuleGroupAssociation": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "FirewallRuleGroupId": { "type": "string" }, "MutationProtection": { "type": "string" }, "Name": { "type": "string" }, "Priority": { "type": "number" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "VpcId": { "type": "string" } }, "required": [ "FirewallRuleGroupId", "Priority", "VpcId" ], "type": "object" }, "Type": { "enum": [ "AWS::Route53Resolver::FirewallRuleGroupAssociation" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Route53Resolver::OutpostResolver": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "InstanceCount": { "type": "number" }, "Name": { "type": "string" }, "OutpostArn": { "type": "string" }, "PreferredInstanceType": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "Name", "OutpostArn", "PreferredInstanceType" ], "type": "object" }, "Type": { "enum": [ "AWS::Route53Resolver::OutpostResolver" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Route53Resolver::ResolverConfig": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AutodefinedReverseFlag": { "type": "string" }, "ResourceId": { "type": "string" } }, "required": [ "AutodefinedReverseFlag", "ResourceId" ], "type": "object" }, "Type": { "enum": [ "AWS::Route53Resolver::ResolverConfig" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Route53Resolver::ResolverDNSSECConfig": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ResourceId": { "type": "string" } }, "type": "object" }, "Type": { "enum": [ "AWS::Route53Resolver::ResolverDNSSECConfig" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::Route53Resolver::ResolverEndpoint": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Direction": { "type": "string" }, "IpAddresses": { "items": { "$ref": "#/definitions/AWS::Route53Resolver::ResolverEndpoint.IpAddressRequest" }, "type": "array" }, "Name": { "type": "string" }, "OutpostArn": { "type": "string" }, "PreferredInstanceType": { "type": "string" }, "ResolverEndpointType": { "type": "string" }, "SecurityGroupIds": { "items": { "type": "string" }, "type": "array" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "Direction", "IpAddresses", "SecurityGroupIds" ], "type": "object" }, "Type": { "enum": [ "AWS::Route53Resolver::ResolverEndpoint" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Route53Resolver::ResolverEndpoint.IpAddressRequest": { "additionalProperties": false, "properties": { "Ip": { "type": "string" }, "Ipv6": { "type": "string" }, "SubnetId": { "type": "string" } }, "required": [ "SubnetId" ], "type": "object" }, "AWS::Route53Resolver::ResolverQueryLoggingConfig": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "DestinationArn": { "type": "string" }, "Name": { "type": "string" } }, "type": "object" }, "Type": { "enum": [ "AWS::Route53Resolver::ResolverQueryLoggingConfig" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::Route53Resolver::ResolverQueryLoggingConfigAssociation": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ResolverQueryLogConfigId": { "type": "string" }, "ResourceId": { "type": "string" } }, "type": "object" }, "Type": { "enum": [ "AWS::Route53Resolver::ResolverQueryLoggingConfigAssociation" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::Route53Resolver::ResolverRule": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "DomainName": { "type": "string" }, "Name": { "type": "string" }, "ResolverEndpointId": { "type": "string" }, "RuleType": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "TargetIps": { "items": { "$ref": "#/definitions/AWS::Route53Resolver::ResolverRule.TargetAddress" }, "type": "array" } }, "required": [ "DomainName", "RuleType" ], "type": "object" }, "Type": { "enum": [ "AWS::Route53Resolver::ResolverRule" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Route53Resolver::ResolverRule.TargetAddress": { "additionalProperties": false, "properties": { "Ip": { "type": "string" }, "Ipv6": { "type": "string" }, "Port": { "type": "string" } }, "type": "object" }, "AWS::Route53Resolver::ResolverRuleAssociation": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Name": { "type": "string" }, "ResolverRuleId": { "type": "string" }, "VPCId": { "type": "string" } }, "required": [ "ResolverRuleId", "VPCId" ], "type": "object" }, "Type": { "enum": [ "AWS::Route53Resolver::ResolverRuleAssociation" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::S3::AccessPoint": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Bucket": { "type": "string" }, "BucketAccountId": { "type": "string" }, "Name": { "type": "string" }, "Policy": { "type": "object" }, "PublicAccessBlockConfiguration": { "$ref": "#/definitions/AWS::S3::AccessPoint.PublicAccessBlockConfiguration" }, "VpcConfiguration": { "$ref": "#/definitions/AWS::S3::AccessPoint.VpcConfiguration" } }, "required": [ "Bucket" ], "type": "object" }, "Type": { "enum": [ "AWS::S3::AccessPoint" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::S3::AccessPoint.PublicAccessBlockConfiguration": { "additionalProperties": false, "properties": { "BlockPublicAcls": { "type": "boolean" }, "BlockPublicPolicy": { "type": "boolean" }, "IgnorePublicAcls": { "type": "boolean" }, "RestrictPublicBuckets": { "type": "boolean" } }, "type": "object" }, "AWS::S3::AccessPoint.VpcConfiguration": { "additionalProperties": false, "properties": { "VpcId": { "type": "string" } }, "type": "object" }, "AWS::S3::Bucket": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AccelerateConfiguration": { "$ref": "#/definitions/AWS::S3::Bucket.AccelerateConfiguration" }, "AccessControl": { "type": "string" }, "AnalyticsConfigurations": { "items": { "$ref": "#/definitions/AWS::S3::Bucket.AnalyticsConfiguration" }, "type": "array" }, "BucketEncryption": { "$ref": "#/definitions/AWS::S3::Bucket.BucketEncryption" }, "BucketName": { "type": "string" }, "CorsConfiguration": { "$ref": "#/definitions/AWS::S3::Bucket.CorsConfiguration" }, "IntelligentTieringConfigurations": { "items": { "$ref": "#/definitions/AWS::S3::Bucket.IntelligentTieringConfiguration" }, "type": "array" }, "InventoryConfigurations": { "items": { "$ref": "#/definitions/AWS::S3::Bucket.InventoryConfiguration" }, "type": "array" }, "LifecycleConfiguration": { "$ref": "#/definitions/AWS::S3::Bucket.LifecycleConfiguration" }, "LoggingConfiguration": { "$ref": "#/definitions/AWS::S3::Bucket.LoggingConfiguration" }, "MetricsConfigurations": { "items": { "$ref": "#/definitions/AWS::S3::Bucket.MetricsConfiguration" }, "type": "array" }, "NotificationConfiguration": { "$ref": "#/definitions/AWS::S3::Bucket.NotificationConfiguration" }, "ObjectLockConfiguration": { "$ref": "#/definitions/AWS::S3::Bucket.ObjectLockConfiguration" }, "ObjectLockEnabled": { "type": "boolean" }, "OwnershipControls": { "$ref": "#/definitions/AWS::S3::Bucket.OwnershipControls" }, "PublicAccessBlockConfiguration": { "$ref": "#/definitions/AWS::S3::Bucket.PublicAccessBlockConfiguration" }, "ReplicationConfiguration": { "$ref": "#/definitions/AWS::S3::Bucket.ReplicationConfiguration" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "VersioningConfiguration": { "$ref": "#/definitions/AWS::S3::Bucket.VersioningConfiguration" }, "WebsiteConfiguration": { "$ref": "#/definitions/AWS::S3::Bucket.WebsiteConfiguration" } }, "type": "object" }, "Type": { "enum": [ "AWS::S3::Bucket" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::S3::Bucket.AbortIncompleteMultipartUpload": { "additionalProperties": false, "properties": { "DaysAfterInitiation": { "type": "number" } }, "required": [ "DaysAfterInitiation" ], "type": "object" }, "AWS::S3::Bucket.AccelerateConfiguration": { "additionalProperties": false, "properties": { "AccelerationStatus": { "type": "string" } }, "required": [ "AccelerationStatus" ], "type": "object" }, "AWS::S3::Bucket.AccessControlTranslation": { "additionalProperties": false, "properties": { "Owner": { "type": "string" } }, "required": [ "Owner" ], "type": "object" }, "AWS::S3::Bucket.AnalyticsConfiguration": { "additionalProperties": false, "properties": { "Id": { "type": "string" }, "Prefix": { "type": "string" }, "StorageClassAnalysis": { "$ref": "#/definitions/AWS::S3::Bucket.StorageClassAnalysis" }, "TagFilters": { "items": { "$ref": "#/definitions/AWS::S3::Bucket.TagFilter" }, "type": "array" } }, "required": [ "Id", "StorageClassAnalysis" ], "type": "object" }, "AWS::S3::Bucket.BucketEncryption": { "additionalProperties": false, "properties": { "ServerSideEncryptionConfiguration": { "items": { "$ref": "#/definitions/AWS::S3::Bucket.ServerSideEncryptionRule" }, "type": "array" } }, "required": [ "ServerSideEncryptionConfiguration" ], "type": "object" }, "AWS::S3::Bucket.CorsConfiguration": { "additionalProperties": false, "properties": { "CorsRules": { "items": { "$ref": "#/definitions/AWS::S3::Bucket.CorsRule" }, "type": "array" } }, "required": [ "CorsRules" ], "type": "object" }, "AWS::S3::Bucket.CorsRule": { "additionalProperties": false, "properties": { "AllowedHeaders": { "items": { "type": "string" }, "type": "array" }, "AllowedMethods": { "items": { "type": "string" }, "type": "array" }, "AllowedOrigins": { "items": { "type": "string" }, "type": "array" }, "ExposedHeaders": { "items": { "type": "string" }, "type": "array" }, "Id": { "type": "string" }, "MaxAge": { "type": "number" } }, "required": [ "AllowedMethods", "AllowedOrigins" ], "type": "object" }, "AWS::S3::Bucket.DataExport": { "additionalProperties": false, "properties": { "Destination": { "$ref": "#/definitions/AWS::S3::Bucket.Destination" }, "OutputSchemaVersion": { "type": "string" } }, "required": [ "Destination", "OutputSchemaVersion" ], "type": "object" }, "AWS::S3::Bucket.DefaultRetention": { "additionalProperties": false, "properties": { "Days": { "type": "number" }, "Mode": { "type": "string" }, "Years": { "type": "number" } }, "type": "object" }, "AWS::S3::Bucket.DeleteMarkerReplication": { "additionalProperties": false, "properties": { "Status": { "type": "string" } }, "type": "object" }, "AWS::S3::Bucket.Destination": { "additionalProperties": false, "properties": { "BucketAccountId": { "type": "string" }, "BucketArn": { "type": "string" }, "Format": { "type": "string" }, "Prefix": { "type": "string" } }, "required": [ "BucketArn", "Format" ], "type": "object" }, "AWS::S3::Bucket.EncryptionConfiguration": { "additionalProperties": false, "properties": { "ReplicaKmsKeyID": { "type": "string" } }, "required": [ "ReplicaKmsKeyID" ], "type": "object" }, "AWS::S3::Bucket.EventBridgeConfiguration": { "additionalProperties": false, "properties": { "EventBridgeEnabled": { "type": "boolean" } }, "type": "object" }, "AWS::S3::Bucket.FilterRule": { "additionalProperties": false, "properties": { "Name": { "type": "string" }, "Value": { "type": "string" } }, "required": [ "Name", "Value" ], "type": "object" }, "AWS::S3::Bucket.IntelligentTieringConfiguration": { "additionalProperties": false, "properties": { "Id": { "type": "string" }, "Prefix": { "type": "string" }, "Status": { "type": "string" }, "TagFilters": { "items": { "$ref": "#/definitions/AWS::S3::Bucket.TagFilter" }, "type": "array" }, "Tierings": { "items": { "$ref": "#/definitions/AWS::S3::Bucket.Tiering" }, "type": "array" } }, "required": [ "Id", "Status", "Tierings" ], "type": "object" }, "AWS::S3::Bucket.InventoryConfiguration": { "additionalProperties": false, "properties": { "Destination": { "$ref": "#/definitions/AWS::S3::Bucket.Destination" }, "Enabled": { "type": "boolean" }, "Id": { "type": "string" }, "IncludedObjectVersions": { "type": "string" }, "OptionalFields": { "items": { "type": "string" }, "type": "array" }, "Prefix": { "type": "string" }, "ScheduleFrequency": { "type": "string" } }, "required": [ "Destination", "Enabled", "Id", "IncludedObjectVersions", "ScheduleFrequency" ], "type": "object" }, "AWS::S3::Bucket.LambdaConfiguration": { "additionalProperties": false, "properties": { "Event": { "type": "string" }, "Filter": { "$ref": "#/definitions/AWS::S3::Bucket.NotificationFilter" }, "Function": { "type": "string" } }, "required": [ "Event", "Function" ], "type": "object" }, "AWS::S3::Bucket.LifecycleConfiguration": { "additionalProperties": false, "properties": { "Rules": { "items": { "$ref": "#/definitions/AWS::S3::Bucket.Rule" }, "type": "array" } }, "required": [ "Rules" ], "type": "object" }, "AWS::S3::Bucket.LoggingConfiguration": { "additionalProperties": false, "properties": { "DestinationBucketName": { "type": "string" }, "LogFilePrefix": { "type": "string" } }, "type": "object" }, "AWS::S3::Bucket.Metrics": { "additionalProperties": false, "properties": { "EventThreshold": { "$ref": "#/definitions/AWS::S3::Bucket.ReplicationTimeValue" }, "Status": { "type": "string" } }, "required": [ "Status" ], "type": "object" }, "AWS::S3::Bucket.MetricsConfiguration": { "additionalProperties": false, "properties": { "AccessPointArn": { "type": "string" }, "Id": { "type": "string" }, "Prefix": { "type": "string" }, "TagFilters": { "items": { "$ref": "#/definitions/AWS::S3::Bucket.TagFilter" }, "type": "array" } }, "required": [ "Id" ], "type": "object" }, "AWS::S3::Bucket.NoncurrentVersionExpiration": { "additionalProperties": false, "properties": { "NewerNoncurrentVersions": { "type": "number" }, "NoncurrentDays": { "type": "number" } }, "required": [ "NoncurrentDays" ], "type": "object" }, "AWS::S3::Bucket.NoncurrentVersionTransition": { "additionalProperties": false, "properties": { "NewerNoncurrentVersions": { "type": "number" }, "StorageClass": { "type": "string" }, "TransitionInDays": { "type": "number" } }, "required": [ "StorageClass", "TransitionInDays" ], "type": "object" }, "AWS::S3::Bucket.NotificationConfiguration": { "additionalProperties": false, "properties": { "EventBridgeConfiguration": { "$ref": "#/definitions/AWS::S3::Bucket.EventBridgeConfiguration" }, "LambdaConfigurations": { "items": { "$ref": "#/definitions/AWS::S3::Bucket.LambdaConfiguration" }, "type": "array" }, "QueueConfigurations": { "items": { "$ref": "#/definitions/AWS::S3::Bucket.QueueConfiguration" }, "type": "array" }, "TopicConfigurations": { "items": { "$ref": "#/definitions/AWS::S3::Bucket.TopicConfiguration" }, "type": "array" } }, "type": "object" }, "AWS::S3::Bucket.NotificationFilter": { "additionalProperties": false, "properties": { "S3Key": { "$ref": "#/definitions/AWS::S3::Bucket.S3KeyFilter" } }, "required": [ "S3Key" ], "type": "object" }, "AWS::S3::Bucket.ObjectLockConfiguration": { "additionalProperties": false, "properties": { "ObjectLockEnabled": { "type": "string" }, "Rule": { "$ref": "#/definitions/AWS::S3::Bucket.ObjectLockRule" } }, "type": "object" }, "AWS::S3::Bucket.ObjectLockRule": { "additionalProperties": false, "properties": { "DefaultRetention": { "$ref": "#/definitions/AWS::S3::Bucket.DefaultRetention" } }, "type": "object" }, "AWS::S3::Bucket.OwnershipControls": { "additionalProperties": false, "properties": { "Rules": { "items": { "$ref": "#/definitions/AWS::S3::Bucket.OwnershipControlsRule" }, "type": "array" } }, "required": [ "Rules" ], "type": "object" }, "AWS::S3::Bucket.OwnershipControlsRule": { "additionalProperties": false, "properties": { "ObjectOwnership": { "type": "string" } }, "type": "object" }, "AWS::S3::Bucket.PublicAccessBlockConfiguration": { "additionalProperties": false, "properties": { "BlockPublicAcls": { "type": "boolean" }, "BlockPublicPolicy": { "type": "boolean" }, "IgnorePublicAcls": { "type": "boolean" }, "RestrictPublicBuckets": { "type": "boolean" } }, "type": "object" }, "AWS::S3::Bucket.QueueConfiguration": { "additionalProperties": false, "properties": { "Event": { "type": "string" }, "Filter": { "$ref": "#/definitions/AWS::S3::Bucket.NotificationFilter" }, "Queue": { "type": "string" } }, "required": [ "Event", "Queue" ], "type": "object" }, "AWS::S3::Bucket.RedirectAllRequestsTo": { "additionalProperties": false, "properties": { "HostName": { "type": "string" }, "Protocol": { "type": "string" } }, "required": [ "HostName" ], "type": "object" }, "AWS::S3::Bucket.RedirectRule": { "additionalProperties": false, "properties": { "HostName": { "type": "string" }, "HttpRedirectCode": { "type": "string" }, "Protocol": { "type": "string" }, "ReplaceKeyPrefixWith": { "type": "string" }, "ReplaceKeyWith": { "type": "string" } }, "type": "object" }, "AWS::S3::Bucket.ReplicaModifications": { "additionalProperties": false, "properties": { "Status": { "type": "string" } }, "required": [ "Status" ], "type": "object" }, "AWS::S3::Bucket.ReplicationConfiguration": { "additionalProperties": false, "properties": { "Role": { "type": "string" }, "Rules": { "items": { "$ref": "#/definitions/AWS::S3::Bucket.ReplicationRule" }, "type": "array" } }, "required": [ "Role", "Rules" ], "type": "object" }, "AWS::S3::Bucket.ReplicationDestination": { "additionalProperties": false, "properties": { "AccessControlTranslation": { "$ref": "#/definitions/AWS::S3::Bucket.AccessControlTranslation" }, "Account": { "type": "string" }, "Bucket": { "type": "string" }, "EncryptionConfiguration": { "$ref": "#/definitions/AWS::S3::Bucket.EncryptionConfiguration" }, "Metrics": { "$ref": "#/definitions/AWS::S3::Bucket.Metrics" }, "ReplicationTime": { "$ref": "#/definitions/AWS::S3::Bucket.ReplicationTime" }, "StorageClass": { "type": "string" } }, "required": [ "Bucket" ], "type": "object" }, "AWS::S3::Bucket.ReplicationRule": { "additionalProperties": false, "properties": { "DeleteMarkerReplication": { "$ref": "#/definitions/AWS::S3::Bucket.DeleteMarkerReplication" }, "Destination": { "$ref": "#/definitions/AWS::S3::Bucket.ReplicationDestination" }, "Filter": { "$ref": "#/definitions/AWS::S3::Bucket.ReplicationRuleFilter" }, "Id": { "type": "string" }, "Prefix": { "type": "string" }, "Priority": { "type": "number" }, "SourceSelectionCriteria": { "$ref": "#/definitions/AWS::S3::Bucket.SourceSelectionCriteria" }, "Status": { "type": "string" } }, "required": [ "Destination", "Status" ], "type": "object" }, "AWS::S3::Bucket.ReplicationRuleAndOperator": { "additionalProperties": false, "properties": { "Prefix": { "type": "string" }, "TagFilters": { "items": { "$ref": "#/definitions/AWS::S3::Bucket.TagFilter" }, "type": "array" } }, "type": "object" }, "AWS::S3::Bucket.ReplicationRuleFilter": { "additionalProperties": false, "properties": { "And": { "$ref": "#/definitions/AWS::S3::Bucket.ReplicationRuleAndOperator" }, "Prefix": { "type": "string" }, "TagFilter": { "$ref": "#/definitions/AWS::S3::Bucket.TagFilter" } }, "type": "object" }, "AWS::S3::Bucket.ReplicationTime": { "additionalProperties": false, "properties": { "Status": { "type": "string" }, "Time": { "$ref": "#/definitions/AWS::S3::Bucket.ReplicationTimeValue" } }, "required": [ "Status", "Time" ], "type": "object" }, "AWS::S3::Bucket.ReplicationTimeValue": { "additionalProperties": false, "properties": { "Minutes": { "type": "number" } }, "required": [ "Minutes" ], "type": "object" }, "AWS::S3::Bucket.RoutingRule": { "additionalProperties": false, "properties": { "RedirectRule": { "$ref": "#/definitions/AWS::S3::Bucket.RedirectRule" }, "RoutingRuleCondition": { "$ref": "#/definitions/AWS::S3::Bucket.RoutingRuleCondition" } }, "required": [ "RedirectRule" ], "type": "object" }, "AWS::S3::Bucket.RoutingRuleCondition": { "additionalProperties": false, "properties": { "HttpErrorCodeReturnedEquals": { "type": "string" }, "KeyPrefixEquals": { "type": "string" } }, "type": "object" }, "AWS::S3::Bucket.Rule": { "additionalProperties": false, "properties": { "AbortIncompleteMultipartUpload": { "$ref": "#/definitions/AWS::S3::Bucket.AbortIncompleteMultipartUpload" }, "ExpirationDate": { "type": "string" }, "ExpirationInDays": { "type": "number" }, "ExpiredObjectDeleteMarker": { "type": "boolean" }, "Id": { "type": "string" }, "NoncurrentVersionExpiration": { "$ref": "#/definitions/AWS::S3::Bucket.NoncurrentVersionExpiration" }, "NoncurrentVersionExpirationInDays": { "type": "number" }, "NoncurrentVersionTransition": { "$ref": "#/definitions/AWS::S3::Bucket.NoncurrentVersionTransition" }, "NoncurrentVersionTransitions": { "items": { "$ref": "#/definitions/AWS::S3::Bucket.NoncurrentVersionTransition" }, "type": "array" }, "ObjectSizeGreaterThan": { "type": "number" }, "ObjectSizeLessThan": { "type": "number" }, "Prefix": { "type": "string" }, "Status": { "type": "string" }, "TagFilters": { "items": { "$ref": "#/definitions/AWS::S3::Bucket.TagFilter" }, "type": "array" }, "Transition": { "$ref": "#/definitions/AWS::S3::Bucket.Transition" }, "Transitions": { "items": { "$ref": "#/definitions/AWS::S3::Bucket.Transition" }, "type": "array" } }, "required": [ "Status" ], "type": "object" }, "AWS::S3::Bucket.S3KeyFilter": { "additionalProperties": false, "properties": { "Rules": { "items": { "$ref": "#/definitions/AWS::S3::Bucket.FilterRule" }, "type": "array" } }, "required": [ "Rules" ], "type": "object" }, "AWS::S3::Bucket.ServerSideEncryptionByDefault": { "additionalProperties": false, "properties": { "KMSMasterKeyID": { "type": "string" }, "SSEAlgorithm": { "type": "string" } }, "required": [ "SSEAlgorithm" ], "type": "object" }, "AWS::S3::Bucket.ServerSideEncryptionRule": { "additionalProperties": false, "properties": { "BucketKeyEnabled": { "type": "boolean" }, "ServerSideEncryptionByDefault": { "$ref": "#/definitions/AWS::S3::Bucket.ServerSideEncryptionByDefault" } }, "type": "object" }, "AWS::S3::Bucket.SourceSelectionCriteria": { "additionalProperties": false, "properties": { "ReplicaModifications": { "$ref": "#/definitions/AWS::S3::Bucket.ReplicaModifications" }, "SseKmsEncryptedObjects": { "$ref": "#/definitions/AWS::S3::Bucket.SseKmsEncryptedObjects" } }, "type": "object" }, "AWS::S3::Bucket.SseKmsEncryptedObjects": { "additionalProperties": false, "properties": { "Status": { "type": "string" } }, "required": [ "Status" ], "type": "object" }, "AWS::S3::Bucket.StorageClassAnalysis": { "additionalProperties": false, "properties": { "DataExport": { "$ref": "#/definitions/AWS::S3::Bucket.DataExport" } }, "type": "object" }, "AWS::S3::Bucket.TagFilter": { "additionalProperties": false, "properties": { "Key": { "type": "string" }, "Value": { "type": "string" } }, "required": [ "Key", "Value" ], "type": "object" }, "AWS::S3::Bucket.Tiering": { "additionalProperties": false, "properties": { "AccessTier": { "type": "string" }, "Days": { "type": "number" } }, "required": [ "AccessTier", "Days" ], "type": "object" }, "AWS::S3::Bucket.TopicConfiguration": { "additionalProperties": false, "properties": { "Event": { "type": "string" }, "Filter": { "$ref": "#/definitions/AWS::S3::Bucket.NotificationFilter" }, "Topic": { "type": "string" } }, "required": [ "Event", "Topic" ], "type": "object" }, "AWS::S3::Bucket.Transition": { "additionalProperties": false, "properties": { "StorageClass": { "type": "string" }, "TransitionDate": { "type": "string" }, "TransitionInDays": { "type": "number" } }, "required": [ "StorageClass" ], "type": "object" }, "AWS::S3::Bucket.VersioningConfiguration": { "additionalProperties": false, "properties": { "Status": { "type": "string" } }, "required": [ "Status" ], "type": "object" }, "AWS::S3::Bucket.WebsiteConfiguration": { "additionalProperties": false, "properties": { "ErrorDocument": { "type": "string" }, "IndexDocument": { "type": "string" }, "RedirectAllRequestsTo": { "$ref": "#/definitions/AWS::S3::Bucket.RedirectAllRequestsTo" }, "RoutingRules": { "items": { "$ref": "#/definitions/AWS::S3::Bucket.RoutingRule" }, "type": "array" } }, "type": "object" }, "AWS::S3::BucketPolicy": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Bucket": { "type": "string" }, "PolicyDocument": { "type": "object" } }, "required": [ "Bucket", "PolicyDocument" ], "type": "object" }, "Type": { "enum": [ "AWS::S3::BucketPolicy" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::S3::MultiRegionAccessPoint": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Name": { "type": "string" }, "PublicAccessBlockConfiguration": { "$ref": "#/definitions/AWS::S3::MultiRegionAccessPoint.PublicAccessBlockConfiguration" }, "Regions": { "items": { "$ref": "#/definitions/AWS::S3::MultiRegionAccessPoint.Region" }, "type": "array" } }, "required": [ "Regions" ], "type": "object" }, "Type": { "enum": [ "AWS::S3::MultiRegionAccessPoint" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::S3::MultiRegionAccessPoint.PublicAccessBlockConfiguration": { "additionalProperties": false, "properties": { "BlockPublicAcls": { "type": "boolean" }, "BlockPublicPolicy": { "type": "boolean" }, "IgnorePublicAcls": { "type": "boolean" }, "RestrictPublicBuckets": { "type": "boolean" } }, "type": "object" }, "AWS::S3::MultiRegionAccessPoint.Region": { "additionalProperties": false, "properties": { "Bucket": { "type": "string" }, "BucketAccountId": { "type": "string" } }, "required": [ "Bucket" ], "type": "object" }, "AWS::S3::MultiRegionAccessPointPolicy": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "MrapName": { "type": "string" }, "Policy": { "type": "object" } }, "required": [ "MrapName", "Policy" ], "type": "object" }, "Type": { "enum": [ "AWS::S3::MultiRegionAccessPointPolicy" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::S3::MultiRegionAccessPointPolicy.PolicyStatus": { "additionalProperties": false, "properties": { "IsPublic": { "type": "string" } }, "required": [ "IsPublic" ], "type": "object" }, "AWS::S3::StorageLens": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "StorageLensConfiguration": { "$ref": "#/definitions/AWS::S3::StorageLens.StorageLensConfiguration" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "StorageLensConfiguration" ], "type": "object" }, "Type": { "enum": [ "AWS::S3::StorageLens" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::S3::StorageLens.AccountLevel": { "additionalProperties": false, "properties": { "ActivityMetrics": { "$ref": "#/definitions/AWS::S3::StorageLens.ActivityMetrics" }, "AdvancedCostOptimizationMetrics": { "$ref": "#/definitions/AWS::S3::StorageLens.AdvancedCostOptimizationMetrics" }, "AdvancedDataProtectionMetrics": { "$ref": "#/definitions/AWS::S3::StorageLens.AdvancedDataProtectionMetrics" }, "BucketLevel": { "$ref": "#/definitions/AWS::S3::StorageLens.BucketLevel" }, "DetailedStatusCodesMetrics": { "$ref": "#/definitions/AWS::S3::StorageLens.DetailedStatusCodesMetrics" } }, "required": [ "BucketLevel" ], "type": "object" }, "AWS::S3::StorageLens.ActivityMetrics": { "additionalProperties": false, "properties": { "IsEnabled": { "type": "boolean" } }, "type": "object" }, "AWS::S3::StorageLens.AdvancedCostOptimizationMetrics": { "additionalProperties": false, "properties": { "IsEnabled": { "type": "boolean" } }, "type": "object" }, "AWS::S3::StorageLens.AdvancedDataProtectionMetrics": { "additionalProperties": false, "properties": { "IsEnabled": { "type": "boolean" } }, "type": "object" }, "AWS::S3::StorageLens.AwsOrg": { "additionalProperties": false, "properties": { "Arn": { "type": "string" } }, "required": [ "Arn" ], "type": "object" }, "AWS::S3::StorageLens.BucketLevel": { "additionalProperties": false, "properties": { "ActivityMetrics": { "$ref": "#/definitions/AWS::S3::StorageLens.ActivityMetrics" }, "AdvancedCostOptimizationMetrics": { "$ref": "#/definitions/AWS::S3::StorageLens.AdvancedCostOptimizationMetrics" }, "AdvancedDataProtectionMetrics": { "$ref": "#/definitions/AWS::S3::StorageLens.AdvancedDataProtectionMetrics" }, "DetailedStatusCodesMetrics": { "$ref": "#/definitions/AWS::S3::StorageLens.DetailedStatusCodesMetrics" }, "PrefixLevel": { "$ref": "#/definitions/AWS::S3::StorageLens.PrefixLevel" } }, "type": "object" }, "AWS::S3::StorageLens.BucketsAndRegions": { "additionalProperties": false, "properties": { "Buckets": { "items": { "type": "string" }, "type": "array" }, "Regions": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::S3::StorageLens.CloudWatchMetrics": { "additionalProperties": false, "properties": { "IsEnabled": { "type": "boolean" } }, "required": [ "IsEnabled" ], "type": "object" }, "AWS::S3::StorageLens.DataExport": { "additionalProperties": false, "properties": { "CloudWatchMetrics": { "$ref": "#/definitions/AWS::S3::StorageLens.CloudWatchMetrics" }, "S3BucketDestination": { "$ref": "#/definitions/AWS::S3::StorageLens.S3BucketDestination" } }, "type": "object" }, "AWS::S3::StorageLens.DetailedStatusCodesMetrics": { "additionalProperties": false, "properties": { "IsEnabled": { "type": "boolean" } }, "type": "object" }, "AWS::S3::StorageLens.Encryption": { "additionalProperties": false, "properties": { "SSEKMS": { "$ref": "#/definitions/AWS::S3::StorageLens.SSEKMS" }, "SSES3": { "type": "object" } }, "type": "object" }, "AWS::S3::StorageLens.PrefixLevel": { "additionalProperties": false, "properties": { "StorageMetrics": { "$ref": "#/definitions/AWS::S3::StorageLens.PrefixLevelStorageMetrics" } }, "required": [ "StorageMetrics" ], "type": "object" }, "AWS::S3::StorageLens.PrefixLevelStorageMetrics": { "additionalProperties": false, "properties": { "IsEnabled": { "type": "boolean" }, "SelectionCriteria": { "$ref": "#/definitions/AWS::S3::StorageLens.SelectionCriteria" } }, "type": "object" }, "AWS::S3::StorageLens.S3BucketDestination": { "additionalProperties": false, "properties": { "AccountId": { "type": "string" }, "Arn": { "type": "string" }, "Encryption": { "$ref": "#/definitions/AWS::S3::StorageLens.Encryption" }, "Format": { "type": "string" }, "OutputSchemaVersion": { "type": "string" }, "Prefix": { "type": "string" } }, "required": [ "AccountId", "Arn", "Format", "OutputSchemaVersion" ], "type": "object" }, "AWS::S3::StorageLens.SSEKMS": { "additionalProperties": false, "properties": { "KeyId": { "type": "string" } }, "required": [ "KeyId" ], "type": "object" }, "AWS::S3::StorageLens.SelectionCriteria": { "additionalProperties": false, "properties": { "Delimiter": { "type": "string" }, "MaxDepth": { "type": "number" }, "MinStorageBytesPercentage": { "type": "number" } }, "type": "object" }, "AWS::S3::StorageLens.StorageLensConfiguration": { "additionalProperties": false, "properties": { "AccountLevel": { "$ref": "#/definitions/AWS::S3::StorageLens.AccountLevel" }, "AwsOrg": { "$ref": "#/definitions/AWS::S3::StorageLens.AwsOrg" }, "DataExport": { "$ref": "#/definitions/AWS::S3::StorageLens.DataExport" }, "Exclude": { "$ref": "#/definitions/AWS::S3::StorageLens.BucketsAndRegions" }, "Id": { "type": "string" }, "Include": { "$ref": "#/definitions/AWS::S3::StorageLens.BucketsAndRegions" }, "IsEnabled": { "type": "boolean" }, "StorageLensArn": { "type": "string" } }, "required": [ "AccountLevel", "Id", "IsEnabled" ], "type": "object" }, "AWS::S3ObjectLambda::AccessPoint": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Name": { "type": "string" }, "ObjectLambdaConfiguration": { "$ref": "#/definitions/AWS::S3ObjectLambda::AccessPoint.ObjectLambdaConfiguration" } }, "required": [ "ObjectLambdaConfiguration" ], "type": "object" }, "Type": { "enum": [ "AWS::S3ObjectLambda::AccessPoint" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::S3ObjectLambda::AccessPoint.Alias": { "additionalProperties": false, "properties": { "Status": { "type": "string" }, "Value": { "type": "string" } }, "required": [ "Status", "Value" ], "type": "object" }, "AWS::S3ObjectLambda::AccessPoint.AwsLambda": { "additionalProperties": false, "properties": { "FunctionArn": { "type": "string" }, "FunctionPayload": { "type": "string" } }, "required": [ "FunctionArn" ], "type": "object" }, "AWS::S3ObjectLambda::AccessPoint.ContentTransformation": { "additionalProperties": false, "properties": { "AwsLambda": { "$ref": "#/definitions/AWS::S3ObjectLambda::AccessPoint.AwsLambda" } }, "required": [ "AwsLambda" ], "type": "object" }, "AWS::S3ObjectLambda::AccessPoint.ObjectLambdaConfiguration": { "additionalProperties": false, "properties": { "AllowedFeatures": { "items": { "type": "string" }, "type": "array" }, "CloudWatchMetricsEnabled": { "type": "boolean" }, "SupportingAccessPoint": { "type": "string" }, "TransformationConfigurations": { "items": { "$ref": "#/definitions/AWS::S3ObjectLambda::AccessPoint.TransformationConfiguration" }, "type": "array" } }, "required": [ "SupportingAccessPoint", "TransformationConfigurations" ], "type": "object" }, "AWS::S3ObjectLambda::AccessPoint.PolicyStatus": { "additionalProperties": false, "properties": { "IsPublic": { "type": "boolean" } }, "type": "object" }, "AWS::S3ObjectLambda::AccessPoint.PublicAccessBlockConfiguration": { "additionalProperties": false, "properties": { "BlockPublicAcls": { "type": "boolean" }, "BlockPublicPolicy": { "type": "boolean" }, "IgnorePublicAcls": { "type": "boolean" }, "RestrictPublicBuckets": { "type": "boolean" } }, "type": "object" }, "AWS::S3ObjectLambda::AccessPoint.TransformationConfiguration": { "additionalProperties": false, "properties": { "Actions": { "items": { "type": "string" }, "type": "array" }, "ContentTransformation": { "$ref": "#/definitions/AWS::S3ObjectLambda::AccessPoint.ContentTransformation" } }, "required": [ "Actions", "ContentTransformation" ], "type": "object" }, "AWS::S3ObjectLambda::AccessPointPolicy": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ObjectLambdaAccessPoint": { "type": "string" }, "PolicyDocument": { "type": "object" } }, "required": [ "ObjectLambdaAccessPoint", "PolicyDocument" ], "type": "object" }, "Type": { "enum": [ "AWS::S3ObjectLambda::AccessPointPolicy" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::S3Outposts::AccessPoint": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Bucket": { "type": "string" }, "Name": { "type": "string" }, "Policy": { "type": "object" }, "VpcConfiguration": { "$ref": "#/definitions/AWS::S3Outposts::AccessPoint.VpcConfiguration" } }, "required": [ "Bucket", "Name", "VpcConfiguration" ], "type": "object" }, "Type": { "enum": [ "AWS::S3Outposts::AccessPoint" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::S3Outposts::AccessPoint.VpcConfiguration": { "additionalProperties": false, "properties": { "VpcId": { "type": "string" } }, "type": "object" }, "AWS::S3Outposts::Bucket": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "BucketName": { "type": "string" }, "LifecycleConfiguration": { "$ref": "#/definitions/AWS::S3Outposts::Bucket.LifecycleConfiguration" }, "OutpostId": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "BucketName", "OutpostId" ], "type": "object" }, "Type": { "enum": [ "AWS::S3Outposts::Bucket" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::S3Outposts::Bucket.AbortIncompleteMultipartUpload": { "additionalProperties": false, "properties": { "DaysAfterInitiation": { "type": "number" } }, "required": [ "DaysAfterInitiation" ], "type": "object" }, "AWS::S3Outposts::Bucket.Filter": { "additionalProperties": false, "properties": { "AndOperator": { "$ref": "#/definitions/AWS::S3Outposts::Bucket.FilterAndOperator" }, "Prefix": { "type": "string" }, "Tag": { "$ref": "#/definitions/AWS::S3Outposts::Bucket.FilterTag" } }, "type": "object" }, "AWS::S3Outposts::Bucket.FilterAndOperator": { "additionalProperties": false, "properties": { "Prefix": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/AWS::S3Outposts::Bucket.FilterTag" }, "type": "array" } }, "required": [ "Tags" ], "type": "object" }, "AWS::S3Outposts::Bucket.FilterTag": { "additionalProperties": false, "properties": { "Key": { "type": "string" }, "Value": { "type": "string" } }, "required": [ "Key", "Value" ], "type": "object" }, "AWS::S3Outposts::Bucket.LifecycleConfiguration": { "additionalProperties": false, "properties": { "Rules": { "items": { "$ref": "#/definitions/AWS::S3Outposts::Bucket.Rule" }, "type": "array" } }, "required": [ "Rules" ], "type": "object" }, "AWS::S3Outposts::Bucket.Rule": { "additionalProperties": false, "properties": { "AbortIncompleteMultipartUpload": { "$ref": "#/definitions/AWS::S3Outposts::Bucket.AbortIncompleteMultipartUpload" }, "ExpirationDate": { "type": "string" }, "ExpirationInDays": { "type": "number" }, "Filter": { "$ref": "#/definitions/AWS::S3Outposts::Bucket.Filter" }, "Id": { "type": "string" }, "Status": { "type": "string" } }, "required": [ "Status" ], "type": "object" }, "AWS::S3Outposts::BucketPolicy": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Bucket": { "type": "string" }, "PolicyDocument": { "type": "object" } }, "required": [ "Bucket", "PolicyDocument" ], "type": "object" }, "Type": { "enum": [ "AWS::S3Outposts::BucketPolicy" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::S3Outposts::Endpoint": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AccessType": { "type": "string" }, "CustomerOwnedIpv4Pool": { "type": "string" }, "FailedReason": { "$ref": "#/definitions/AWS::S3Outposts::Endpoint.FailedReason" }, "OutpostId": { "type": "string" }, "SecurityGroupId": { "type": "string" }, "SubnetId": { "type": "string" } }, "required": [ "OutpostId", "SecurityGroupId", "SubnetId" ], "type": "object" }, "Type": { "enum": [ "AWS::S3Outposts::Endpoint" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::S3Outposts::Endpoint.FailedReason": { "additionalProperties": false, "properties": { "ErrorCode": { "type": "string" }, "Message": { "type": "string" } }, "type": "object" }, "AWS::S3Outposts::Endpoint.NetworkInterface": { "additionalProperties": false, "properties": { "NetworkInterfaceId": { "type": "string" } }, "required": [ "NetworkInterfaceId" ], "type": "object" }, "AWS::SDB::Domain": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Description": { "type": "string" } }, "type": "object" }, "Type": { "enum": [ "AWS::SDB::Domain" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::SES::ConfigurationSet": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "DeliveryOptions": { "$ref": "#/definitions/AWS::SES::ConfigurationSet.DeliveryOptions" }, "Name": { "type": "string" }, "ReputationOptions": { "$ref": "#/definitions/AWS::SES::ConfigurationSet.ReputationOptions" }, "SendingOptions": { "$ref": "#/definitions/AWS::SES::ConfigurationSet.SendingOptions" }, "SuppressionOptions": { "$ref": "#/definitions/AWS::SES::ConfigurationSet.SuppressionOptions" }, "TrackingOptions": { "$ref": "#/definitions/AWS::SES::ConfigurationSet.TrackingOptions" }, "VdmOptions": { "$ref": "#/definitions/AWS::SES::ConfigurationSet.VdmOptions" } }, "type": "object" }, "Type": { "enum": [ "AWS::SES::ConfigurationSet" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::SES::ConfigurationSet.DashboardOptions": { "additionalProperties": false, "properties": { "EngagementMetrics": { "type": "string" } }, "required": [ "EngagementMetrics" ], "type": "object" }, "AWS::SES::ConfigurationSet.DeliveryOptions": { "additionalProperties": false, "properties": { "SendingPoolName": { "type": "string" }, "TlsPolicy": { "type": "string" } }, "type": "object" }, "AWS::SES::ConfigurationSet.GuardianOptions": { "additionalProperties": false, "properties": { "OptimizedSharedDelivery": { "type": "string" } }, "required": [ "OptimizedSharedDelivery" ], "type": "object" }, "AWS::SES::ConfigurationSet.ReputationOptions": { "additionalProperties": false, "properties": { "ReputationMetricsEnabled": { "type": "boolean" } }, "type": "object" }, "AWS::SES::ConfigurationSet.SendingOptions": { "additionalProperties": false, "properties": { "SendingEnabled": { "type": "boolean" } }, "type": "object" }, "AWS::SES::ConfigurationSet.SuppressionOptions": { "additionalProperties": false, "properties": { "SuppressedReasons": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::SES::ConfigurationSet.TrackingOptions": { "additionalProperties": false, "properties": { "CustomRedirectDomain": { "type": "string" } }, "type": "object" }, "AWS::SES::ConfigurationSet.VdmOptions": { "additionalProperties": false, "properties": { "DashboardOptions": { "$ref": "#/definitions/AWS::SES::ConfigurationSet.DashboardOptions" }, "GuardianOptions": { "$ref": "#/definitions/AWS::SES::ConfigurationSet.GuardianOptions" } }, "type": "object" }, "AWS::SES::ConfigurationSetEventDestination": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ConfigurationSetName": { "type": "string" }, "EventDestination": { "$ref": "#/definitions/AWS::SES::ConfigurationSetEventDestination.EventDestination" } }, "required": [ "ConfigurationSetName", "EventDestination" ], "type": "object" }, "Type": { "enum": [ "AWS::SES::ConfigurationSetEventDestination" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::SES::ConfigurationSetEventDestination.CloudWatchDestination": { "additionalProperties": false, "properties": { "DimensionConfigurations": { "items": { "$ref": "#/definitions/AWS::SES::ConfigurationSetEventDestination.DimensionConfiguration" }, "type": "array" } }, "type": "object" }, "AWS::SES::ConfigurationSetEventDestination.DimensionConfiguration": { "additionalProperties": false, "properties": { "DefaultDimensionValue": { "type": "string" }, "DimensionName": { "type": "string" }, "DimensionValueSource": { "type": "string" } }, "required": [ "DefaultDimensionValue", "DimensionName", "DimensionValueSource" ], "type": "object" }, "AWS::SES::ConfigurationSetEventDestination.EventDestination": { "additionalProperties": false, "properties": { "CloudWatchDestination": { "$ref": "#/definitions/AWS::SES::ConfigurationSetEventDestination.CloudWatchDestination" }, "Enabled": { "type": "boolean" }, "KinesisFirehoseDestination": { "$ref": "#/definitions/AWS::SES::ConfigurationSetEventDestination.KinesisFirehoseDestination" }, "MatchingEventTypes": { "items": { "type": "string" }, "type": "array" }, "Name": { "type": "string" }, "SnsDestination": { "$ref": "#/definitions/AWS::SES::ConfigurationSetEventDestination.SnsDestination" } }, "required": [ "MatchingEventTypes" ], "type": "object" }, "AWS::SES::ConfigurationSetEventDestination.KinesisFirehoseDestination": { "additionalProperties": false, "properties": { "DeliveryStreamARN": { "type": "string" }, "IAMRoleARN": { "type": "string" } }, "required": [ "DeliveryStreamARN", "IAMRoleARN" ], "type": "object" }, "AWS::SES::ConfigurationSetEventDestination.SnsDestination": { "additionalProperties": false, "properties": { "TopicARN": { "type": "string" } }, "required": [ "TopicARN" ], "type": "object" }, "AWS::SES::ContactList": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ContactListName": { "type": "string" }, "Description": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "Topics": { "items": { "$ref": "#/definitions/AWS::SES::ContactList.Topic" }, "type": "array" } }, "type": "object" }, "Type": { "enum": [ "AWS::SES::ContactList" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::SES::ContactList.Topic": { "additionalProperties": false, "properties": { "DefaultSubscriptionStatus": { "type": "string" }, "Description": { "type": "string" }, "DisplayName": { "type": "string" }, "TopicName": { "type": "string" } }, "required": [ "DefaultSubscriptionStatus", "DisplayName", "TopicName" ], "type": "object" }, "AWS::SES::DedicatedIpPool": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "PoolName": { "type": "string" }, "ScalingMode": { "type": "string" } }, "type": "object" }, "Type": { "enum": [ "AWS::SES::DedicatedIpPool" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::SES::EmailIdentity": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ConfigurationSetAttributes": { "$ref": "#/definitions/AWS::SES::EmailIdentity.ConfigurationSetAttributes" }, "DkimAttributes": { "$ref": "#/definitions/AWS::SES::EmailIdentity.DkimAttributes" }, "DkimSigningAttributes": { "$ref": "#/definitions/AWS::SES::EmailIdentity.DkimSigningAttributes" }, "EmailIdentity": { "type": "string" }, "FeedbackAttributes": { "$ref": "#/definitions/AWS::SES::EmailIdentity.FeedbackAttributes" }, "MailFromAttributes": { "$ref": "#/definitions/AWS::SES::EmailIdentity.MailFromAttributes" } }, "required": [ "EmailIdentity" ], "type": "object" }, "Type": { "enum": [ "AWS::SES::EmailIdentity" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::SES::EmailIdentity.ConfigurationSetAttributes": { "additionalProperties": false, "properties": { "ConfigurationSetName": { "type": "string" } }, "type": "object" }, "AWS::SES::EmailIdentity.DkimAttributes": { "additionalProperties": false, "properties": { "SigningEnabled": { "type": "boolean" } }, "type": "object" }, "AWS::SES::EmailIdentity.DkimSigningAttributes": { "additionalProperties": false, "properties": { "DomainSigningPrivateKey": { "type": "string" }, "DomainSigningSelector": { "type": "string" }, "NextSigningKeyLength": { "type": "string" } }, "type": "object" }, "AWS::SES::EmailIdentity.FeedbackAttributes": { "additionalProperties": false, "properties": { "EmailForwardingEnabled": { "type": "boolean" } }, "type": "object" }, "AWS::SES::EmailIdentity.MailFromAttributes": { "additionalProperties": false, "properties": { "BehaviorOnMxFailure": { "type": "string" }, "MailFromDomain": { "type": "string" } }, "type": "object" }, "AWS::SES::ReceiptFilter": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Filter": { "$ref": "#/definitions/AWS::SES::ReceiptFilter.Filter" } }, "required": [ "Filter" ], "type": "object" }, "Type": { "enum": [ "AWS::SES::ReceiptFilter" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::SES::ReceiptFilter.Filter": { "additionalProperties": false, "properties": { "IpFilter": { "$ref": "#/definitions/AWS::SES::ReceiptFilter.IpFilter" }, "Name": { "type": "string" } }, "required": [ "IpFilter" ], "type": "object" }, "AWS::SES::ReceiptFilter.IpFilter": { "additionalProperties": false, "properties": { "Cidr": { "type": "string" }, "Policy": { "type": "string" } }, "required": [ "Cidr", "Policy" ], "type": "object" }, "AWS::SES::ReceiptRule": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "After": { "type": "string" }, "Rule": { "$ref": "#/definitions/AWS::SES::ReceiptRule.Rule" }, "RuleSetName": { "type": "string" } }, "required": [ "Rule", "RuleSetName" ], "type": "object" }, "Type": { "enum": [ "AWS::SES::ReceiptRule" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::SES::ReceiptRule.Action": { "additionalProperties": false, "properties": { "AddHeaderAction": { "$ref": "#/definitions/AWS::SES::ReceiptRule.AddHeaderAction" }, "BounceAction": { "$ref": "#/definitions/AWS::SES::ReceiptRule.BounceAction" }, "LambdaAction": { "$ref": "#/definitions/AWS::SES::ReceiptRule.LambdaAction" }, "S3Action": { "$ref": "#/definitions/AWS::SES::ReceiptRule.S3Action" }, "SNSAction": { "$ref": "#/definitions/AWS::SES::ReceiptRule.SNSAction" }, "StopAction": { "$ref": "#/definitions/AWS::SES::ReceiptRule.StopAction" }, "WorkmailAction": { "$ref": "#/definitions/AWS::SES::ReceiptRule.WorkmailAction" } }, "type": "object" }, "AWS::SES::ReceiptRule.AddHeaderAction": { "additionalProperties": false, "properties": { "HeaderName": { "type": "string" }, "HeaderValue": { "type": "string" } }, "required": [ "HeaderName", "HeaderValue" ], "type": "object" }, "AWS::SES::ReceiptRule.BounceAction": { "additionalProperties": false, "properties": { "Message": { "type": "string" }, "Sender": { "type": "string" }, "SmtpReplyCode": { "type": "string" }, "StatusCode": { "type": "string" }, "TopicArn": { "type": "string" } }, "required": [ "Message", "Sender", "SmtpReplyCode" ], "type": "object" }, "AWS::SES::ReceiptRule.LambdaAction": { "additionalProperties": false, "properties": { "FunctionArn": { "type": "string" }, "InvocationType": { "type": "string" }, "TopicArn": { "type": "string" } }, "required": [ "FunctionArn" ], "type": "object" }, "AWS::SES::ReceiptRule.Rule": { "additionalProperties": false, "properties": { "Actions": { "items": { "$ref": "#/definitions/AWS::SES::ReceiptRule.Action" }, "type": "array" }, "Enabled": { "type": "boolean" }, "Name": { "type": "string" }, "Recipients": { "items": { "type": "string" }, "type": "array" }, "ScanEnabled": { "type": "boolean" }, "TlsPolicy": { "type": "string" } }, "type": "object" }, "AWS::SES::ReceiptRule.S3Action": { "additionalProperties": false, "properties": { "BucketName": { "type": "string" }, "KmsKeyArn": { "type": "string" }, "ObjectKeyPrefix": { "type": "string" }, "TopicArn": { "type": "string" } }, "required": [ "BucketName" ], "type": "object" }, "AWS::SES::ReceiptRule.SNSAction": { "additionalProperties": false, "properties": { "Encoding": { "type": "string" }, "TopicArn": { "type": "string" } }, "type": "object" }, "AWS::SES::ReceiptRule.StopAction": { "additionalProperties": false, "properties": { "Scope": { "type": "string" }, "TopicArn": { "type": "string" } }, "required": [ "Scope" ], "type": "object" }, "AWS::SES::ReceiptRule.WorkmailAction": { "additionalProperties": false, "properties": { "OrganizationArn": { "type": "string" }, "TopicArn": { "type": "string" } }, "required": [ "OrganizationArn" ], "type": "object" }, "AWS::SES::ReceiptRuleSet": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "RuleSetName": { "type": "string" } }, "type": "object" }, "Type": { "enum": [ "AWS::SES::ReceiptRuleSet" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::SES::Template": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Template": { "$ref": "#/definitions/AWS::SES::Template.Template" } }, "type": "object" }, "Type": { "enum": [ "AWS::SES::Template" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::SES::Template.Template": { "additionalProperties": false, "properties": { "HtmlPart": { "type": "string" }, "SubjectPart": { "type": "string" }, "TemplateName": { "type": "string" }, "TextPart": { "type": "string" } }, "required": [ "SubjectPart" ], "type": "object" }, "AWS::SES::VdmAttributes": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "DashboardAttributes": { "$ref": "#/definitions/AWS::SES::VdmAttributes.DashboardAttributes" }, "GuardianAttributes": { "$ref": "#/definitions/AWS::SES::VdmAttributes.GuardianAttributes" } }, "type": "object" }, "Type": { "enum": [ "AWS::SES::VdmAttributes" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::SES::VdmAttributes.DashboardAttributes": { "additionalProperties": false, "properties": { "EngagementMetrics": { "type": "string" } }, "type": "object" }, "AWS::SES::VdmAttributes.GuardianAttributes": { "additionalProperties": false, "properties": { "OptimizedSharedDelivery": { "type": "string" } }, "type": "object" }, "AWS::SNS::Subscription": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "DeliveryPolicy": { "type": "object" }, "Endpoint": { "type": "string" }, "FilterPolicy": { "type": "object" }, "FilterPolicyScope": { "type": "string" }, "Protocol": { "type": "string" }, "RawMessageDelivery": { "type": "boolean" }, "RedrivePolicy": { "type": "object" }, "Region": { "type": "string" }, "SubscriptionRoleArn": { "type": "string" }, "TopicArn": { "type": "string" } }, "required": [ "Protocol", "TopicArn" ], "type": "object" }, "Type": { "enum": [ "AWS::SNS::Subscription" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::SNS::Topic": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ContentBasedDeduplication": { "type": "boolean" }, "DataProtectionPolicy": { "type": "object" }, "DisplayName": { "type": "string" }, "FifoTopic": { "type": "boolean" }, "KmsMasterKeyId": { "type": "string" }, "SignatureVersion": { "type": "string" }, "Subscription": { "items": { "$ref": "#/definitions/AWS::SNS::Topic.Subscription" }, "type": "array" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "TopicName": { "type": "string" }, "TracingConfig": { "type": "string" } }, "type": "object" }, "Type": { "enum": [ "AWS::SNS::Topic" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::SNS::Topic.Subscription": { "additionalProperties": false, "properties": { "Endpoint": { "type": "string" }, "Protocol": { "type": "string" } }, "required": [ "Endpoint", "Protocol" ], "type": "object" }, "AWS::SNS::TopicInlinePolicy": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "PolicyDocument": { "type": "object" }, "TopicArn": { "type": "string" } }, "required": [ "PolicyDocument", "TopicArn" ], "type": "object" }, "Type": { "enum": [ "AWS::SNS::TopicInlinePolicy" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::SNS::TopicPolicy": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "PolicyDocument": { "type": "object" }, "Topics": { "items": { "type": "string" }, "type": "array" } }, "required": [ "PolicyDocument", "Topics" ], "type": "object" }, "Type": { "enum": [ "AWS::SNS::TopicPolicy" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::SQS::Queue": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ContentBasedDeduplication": { "type": "boolean" }, "DeduplicationScope": { "type": "string" }, "DelaySeconds": { "type": "number" }, "FifoQueue": { "type": "boolean" }, "FifoThroughputLimit": { "type": "string" }, "KmsDataKeyReusePeriodSeconds": { "type": "number" }, "KmsMasterKeyId": { "type": "string" }, "MaximumMessageSize": { "type": "number" }, "MessageRetentionPeriod": { "type": "number" }, "QueueName": { "type": "string" }, "ReceiveMessageWaitTimeSeconds": { "type": "number" }, "RedriveAllowPolicy": { "type": "object" }, "RedrivePolicy": { "type": "object" }, "SqsManagedSseEnabled": { "type": "boolean" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "VisibilityTimeout": { "type": "number" } }, "type": "object" }, "Type": { "enum": [ "AWS::SQS::Queue" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::SQS::QueueInlinePolicy": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "PolicyDocument": { "type": "object" }, "Queue": { "type": "string" } }, "required": [ "PolicyDocument", "Queue" ], "type": "object" }, "Type": { "enum": [ "AWS::SQS::QueueInlinePolicy" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::SQS::QueuePolicy": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "PolicyDocument": { "type": "object" }, "Queues": { "items": { "type": "string" }, "type": "array" } }, "required": [ "PolicyDocument", "Queues" ], "type": "object" }, "Type": { "enum": [ "AWS::SQS::QueuePolicy" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::SSM::Association": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ApplyOnlyAtCronInterval": { "type": "boolean" }, "AssociationName": { "type": "string" }, "AutomationTargetParameterName": { "type": "string" }, "CalendarNames": { "items": { "type": "string" }, "type": "array" }, "ComplianceSeverity": { "type": "string" }, "DocumentVersion": { "type": "string" }, "InstanceId": { "type": "string" }, "MaxConcurrency": { "type": "string" }, "MaxErrors": { "type": "string" }, "Name": { "type": "string" }, "OutputLocation": { "$ref": "#/definitions/AWS::SSM::Association.InstanceAssociationOutputLocation" }, "Parameters": { "type": "object" }, "ScheduleExpression": { "type": "string" }, "ScheduleOffset": { "type": "number" }, "SyncCompliance": { "type": "string" }, "Targets": { "items": { "$ref": "#/definitions/AWS::SSM::Association.Target" }, "type": "array" }, "WaitForSuccessTimeoutSeconds": { "type": "number" } }, "required": [ "Name" ], "type": "object" }, "Type": { "enum": [ "AWS::SSM::Association" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::SSM::Association.InstanceAssociationOutputLocation": { "additionalProperties": false, "properties": { "S3Location": { "$ref": "#/definitions/AWS::SSM::Association.S3OutputLocation" } }, "type": "object" }, "AWS::SSM::Association.S3OutputLocation": { "additionalProperties": false, "properties": { "OutputS3BucketName": { "type": "string" }, "OutputS3KeyPrefix": { "type": "string" }, "OutputS3Region": { "type": "string" } }, "type": "object" }, "AWS::SSM::Association.Target": { "additionalProperties": false, "properties": { "Key": { "type": "string" }, "Values": { "items": { "type": "string" }, "type": "array" } }, "required": [ "Key", "Values" ], "type": "object" }, "AWS::SSM::Document": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Attachments": { "items": { "$ref": "#/definitions/AWS::SSM::Document.AttachmentsSource" }, "type": "array" }, "Content": { "type": "object" }, "DocumentFormat": { "type": "string" }, "DocumentType": { "type": "string" }, "Name": { "type": "string" }, "Requires": { "items": { "$ref": "#/definitions/AWS::SSM::Document.DocumentRequires" }, "type": "array" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "TargetType": { "type": "string" }, "UpdateMethod": { "type": "string" }, "VersionName": { "type": "string" } }, "required": [ "Content" ], "type": "object" }, "Type": { "enum": [ "AWS::SSM::Document" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::SSM::Document.AttachmentsSource": { "additionalProperties": false, "properties": { "Key": { "type": "string" }, "Name": { "type": "string" }, "Values": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::SSM::Document.DocumentRequires": { "additionalProperties": false, "properties": { "Name": { "type": "string" }, "Version": { "type": "string" } }, "type": "object" }, "AWS::SSM::MaintenanceWindow": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AllowUnassociatedTargets": { "type": "boolean" }, "Cutoff": { "type": "number" }, "Description": { "type": "string" }, "Duration": { "type": "number" }, "EndDate": { "type": "string" }, "Name": { "type": "string" }, "Schedule": { "type": "string" }, "ScheduleOffset": { "type": "number" }, "ScheduleTimezone": { "type": "string" }, "StartDate": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "AllowUnassociatedTargets", "Cutoff", "Duration", "Name", "Schedule" ], "type": "object" }, "Type": { "enum": [ "AWS::SSM::MaintenanceWindow" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::SSM::MaintenanceWindowTarget": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "Name": { "type": "string" }, "OwnerInformation": { "type": "string" }, "ResourceType": { "type": "string" }, "Targets": { "items": { "$ref": "#/definitions/AWS::SSM::MaintenanceWindowTarget.Targets" }, "type": "array" }, "WindowId": { "type": "string" } }, "required": [ "ResourceType", "Targets", "WindowId" ], "type": "object" }, "Type": { "enum": [ "AWS::SSM::MaintenanceWindowTarget" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::SSM::MaintenanceWindowTarget.Targets": { "additionalProperties": false, "properties": { "Key": { "type": "string" }, "Values": { "items": { "type": "string" }, "type": "array" } }, "required": [ "Key", "Values" ], "type": "object" }, "AWS::SSM::MaintenanceWindowTask": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "CutoffBehavior": { "type": "string" }, "Description": { "type": "string" }, "LoggingInfo": { "$ref": "#/definitions/AWS::SSM::MaintenanceWindowTask.LoggingInfo" }, "MaxConcurrency": { "type": "string" }, "MaxErrors": { "type": "string" }, "Name": { "type": "string" }, "Priority": { "type": "number" }, "ServiceRoleArn": { "type": "string" }, "Targets": { "items": { "$ref": "#/definitions/AWS::SSM::MaintenanceWindowTask.Target" }, "type": "array" }, "TaskArn": { "type": "string" }, "TaskInvocationParameters": { "$ref": "#/definitions/AWS::SSM::MaintenanceWindowTask.TaskInvocationParameters" }, "TaskParameters": { "type": "object" }, "TaskType": { "type": "string" }, "WindowId": { "type": "string" } }, "required": [ "Priority", "TaskArn", "TaskType", "WindowId" ], "type": "object" }, "Type": { "enum": [ "AWS::SSM::MaintenanceWindowTask" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::SSM::MaintenanceWindowTask.CloudWatchOutputConfig": { "additionalProperties": false, "properties": { "CloudWatchLogGroupName": { "type": "string" }, "CloudWatchOutputEnabled": { "type": "boolean" } }, "type": "object" }, "AWS::SSM::MaintenanceWindowTask.LoggingInfo": { "additionalProperties": false, "properties": { "Region": { "type": "string" }, "S3Bucket": { "type": "string" }, "S3Prefix": { "type": "string" } }, "required": [ "Region", "S3Bucket" ], "type": "object" }, "AWS::SSM::MaintenanceWindowTask.MaintenanceWindowAutomationParameters": { "additionalProperties": false, "properties": { "DocumentVersion": { "type": "string" }, "Parameters": { "type": "object" } }, "type": "object" }, "AWS::SSM::MaintenanceWindowTask.MaintenanceWindowLambdaParameters": { "additionalProperties": false, "properties": { "ClientContext": { "type": "string" }, "Payload": { "type": "string" }, "Qualifier": { "type": "string" } }, "type": "object" }, "AWS::SSM::MaintenanceWindowTask.MaintenanceWindowRunCommandParameters": { "additionalProperties": false, "properties": { "CloudWatchOutputConfig": { "$ref": "#/definitions/AWS::SSM::MaintenanceWindowTask.CloudWatchOutputConfig" }, "Comment": { "type": "string" }, "DocumentHash": { "type": "string" }, "DocumentHashType": { "type": "string" }, "DocumentVersion": { "type": "string" }, "NotificationConfig": { "$ref": "#/definitions/AWS::SSM::MaintenanceWindowTask.NotificationConfig" }, "OutputS3BucketName": { "type": "string" }, "OutputS3KeyPrefix": { "type": "string" }, "Parameters": { "type": "object" }, "ServiceRoleArn": { "type": "string" }, "TimeoutSeconds": { "type": "number" } }, "type": "object" }, "AWS::SSM::MaintenanceWindowTask.MaintenanceWindowStepFunctionsParameters": { "additionalProperties": false, "properties": { "Input": { "type": "string" }, "Name": { "type": "string" } }, "type": "object" }, "AWS::SSM::MaintenanceWindowTask.NotificationConfig": { "additionalProperties": false, "properties": { "NotificationArn": { "type": "string" }, "NotificationEvents": { "items": { "type": "string" }, "type": "array" }, "NotificationType": { "type": "string" } }, "required": [ "NotificationArn" ], "type": "object" }, "AWS::SSM::MaintenanceWindowTask.Target": { "additionalProperties": false, "properties": { "Key": { "type": "string" }, "Values": { "items": { "type": "string" }, "type": "array" } }, "required": [ "Key", "Values" ], "type": "object" }, "AWS::SSM::MaintenanceWindowTask.TaskInvocationParameters": { "additionalProperties": false, "properties": { "MaintenanceWindowAutomationParameters": { "$ref": "#/definitions/AWS::SSM::MaintenanceWindowTask.MaintenanceWindowAutomationParameters" }, "MaintenanceWindowLambdaParameters": { "$ref": "#/definitions/AWS::SSM::MaintenanceWindowTask.MaintenanceWindowLambdaParameters" }, "MaintenanceWindowRunCommandParameters": { "$ref": "#/definitions/AWS::SSM::MaintenanceWindowTask.MaintenanceWindowRunCommandParameters" }, "MaintenanceWindowStepFunctionsParameters": { "$ref": "#/definitions/AWS::SSM::MaintenanceWindowTask.MaintenanceWindowStepFunctionsParameters" } }, "type": "object" }, "AWS::SSM::Parameter": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AllowedPattern": { "type": "string" }, "DataType": { "type": "string" }, "Description": { "type": "string" }, "Name": { "type": "string" }, "Policies": { "type": "string" }, "Tags": { "type": "object" }, "Tier": { "type": "string" }, "Type": { "type": "string" }, "Value": { "type": "string" } }, "required": [ "Type", "Value" ], "type": "object" }, "Type": { "enum": [ "AWS::SSM::Parameter" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::SSM::PatchBaseline": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ApprovalRules": { "$ref": "#/definitions/AWS::SSM::PatchBaseline.RuleGroup" }, "ApprovedPatches": { "items": { "type": "string" }, "type": "array" }, "ApprovedPatchesComplianceLevel": { "type": "string" }, "ApprovedPatchesEnableNonSecurity": { "type": "boolean" }, "Description": { "type": "string" }, "GlobalFilters": { "$ref": "#/definitions/AWS::SSM::PatchBaseline.PatchFilterGroup" }, "Name": { "type": "string" }, "OperatingSystem": { "type": "string" }, "PatchGroups": { "items": { "type": "string" }, "type": "array" }, "RejectedPatches": { "items": { "type": "string" }, "type": "array" }, "RejectedPatchesAction": { "type": "string" }, "Sources": { "items": { "$ref": "#/definitions/AWS::SSM::PatchBaseline.PatchSource" }, "type": "array" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "Name" ], "type": "object" }, "Type": { "enum": [ "AWS::SSM::PatchBaseline" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::SSM::PatchBaseline.PatchFilter": { "additionalProperties": false, "properties": { "Key": { "type": "string" }, "Values": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::SSM::PatchBaseline.PatchFilterGroup": { "additionalProperties": false, "properties": { "PatchFilters": { "items": { "$ref": "#/definitions/AWS::SSM::PatchBaseline.PatchFilter" }, "type": "array" } }, "type": "object" }, "AWS::SSM::PatchBaseline.PatchSource": { "additionalProperties": false, "properties": { "Configuration": { "type": "string" }, "Name": { "type": "string" }, "Products": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::SSM::PatchBaseline.PatchStringDate": { "additionalProperties": false, "properties": {}, "type": "object" }, "AWS::SSM::PatchBaseline.Rule": { "additionalProperties": false, "properties": { "ApproveAfterDays": { "type": "number" }, "ApproveUntilDate": { "$ref": "#/definitions/AWS::SSM::PatchBaseline.PatchStringDate" }, "ComplianceLevel": { "type": "string" }, "EnableNonSecurity": { "type": "boolean" }, "PatchFilterGroup": { "$ref": "#/definitions/AWS::SSM::PatchBaseline.PatchFilterGroup" } }, "type": "object" }, "AWS::SSM::PatchBaseline.RuleGroup": { "additionalProperties": false, "properties": { "PatchRules": { "items": { "$ref": "#/definitions/AWS::SSM::PatchBaseline.Rule" }, "type": "array" } }, "type": "object" }, "AWS::SSM::ResourceDataSync": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "BucketName": { "type": "string" }, "BucketPrefix": { "type": "string" }, "BucketRegion": { "type": "string" }, "KMSKeyArn": { "type": "string" }, "S3Destination": { "$ref": "#/definitions/AWS::SSM::ResourceDataSync.S3Destination" }, "SyncFormat": { "type": "string" }, "SyncName": { "type": "string" }, "SyncSource": { "$ref": "#/definitions/AWS::SSM::ResourceDataSync.SyncSource" }, "SyncType": { "type": "string" } }, "required": [ "SyncName" ], "type": "object" }, "Type": { "enum": [ "AWS::SSM::ResourceDataSync" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::SSM::ResourceDataSync.AwsOrganizationsSource": { "additionalProperties": false, "properties": { "OrganizationSourceType": { "type": "string" }, "OrganizationalUnits": { "items": { "type": "string" }, "type": "array" } }, "required": [ "OrganizationSourceType" ], "type": "object" }, "AWS::SSM::ResourceDataSync.S3Destination": { "additionalProperties": false, "properties": { "BucketName": { "type": "string" }, "BucketPrefix": { "type": "string" }, "BucketRegion": { "type": "string" }, "KMSKeyArn": { "type": "string" }, "SyncFormat": { "type": "string" } }, "required": [ "BucketName", "BucketRegion", "SyncFormat" ], "type": "object" }, "AWS::SSM::ResourceDataSync.SyncSource": { "additionalProperties": false, "properties": { "AwsOrganizationsSource": { "$ref": "#/definitions/AWS::SSM::ResourceDataSync.AwsOrganizationsSource" }, "IncludeFutureRegions": { "type": "boolean" }, "SourceRegions": { "items": { "type": "string" }, "type": "array" }, "SourceType": { "type": "string" } }, "required": [ "SourceRegions", "SourceType" ], "type": "object" }, "AWS::SSM::ResourcePolicy": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Policy": { "type": "object" }, "ResourceArn": { "type": "string" } }, "required": [ "Policy", "ResourceArn" ], "type": "object" }, "Type": { "enum": [ "AWS::SSM::ResourcePolicy" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::SSMContacts::Contact": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Alias": { "type": "string" }, "DisplayName": { "type": "string" }, "Plan": { "items": { "$ref": "#/definitions/AWS::SSMContacts::Contact.Stage" }, "type": "array" }, "Type": { "type": "string" } }, "required": [ "Alias", "DisplayName", "Type" ], "type": "object" }, "Type": { "enum": [ "AWS::SSMContacts::Contact" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::SSMContacts::Contact.ChannelTargetInfo": { "additionalProperties": false, "properties": { "ChannelId": { "type": "string" }, "RetryIntervalInMinutes": { "type": "number" } }, "required": [ "ChannelId", "RetryIntervalInMinutes" ], "type": "object" }, "AWS::SSMContacts::Contact.ContactTargetInfo": { "additionalProperties": false, "properties": { "ContactId": { "type": "string" }, "IsEssential": { "type": "boolean" } }, "required": [ "ContactId", "IsEssential" ], "type": "object" }, "AWS::SSMContacts::Contact.Stage": { "additionalProperties": false, "properties": { "DurationInMinutes": { "type": "number" }, "RotationIds": { "items": { "type": "string" }, "type": "array" }, "Targets": { "items": { "$ref": "#/definitions/AWS::SSMContacts::Contact.Targets" }, "type": "array" } }, "type": "object" }, "AWS::SSMContacts::Contact.Targets": { "additionalProperties": false, "properties": { "ChannelTargetInfo": { "$ref": "#/definitions/AWS::SSMContacts::Contact.ChannelTargetInfo" }, "ContactTargetInfo": { "$ref": "#/definitions/AWS::SSMContacts::Contact.ContactTargetInfo" } }, "type": "object" }, "AWS::SSMContacts::ContactChannel": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ChannelAddress": { "type": "string" }, "ChannelName": { "type": "string" }, "ChannelType": { "type": "string" }, "ContactId": { "type": "string" }, "DeferActivation": { "type": "boolean" } }, "required": [ "ChannelAddress", "ChannelName", "ChannelType", "ContactId" ], "type": "object" }, "Type": { "enum": [ "AWS::SSMContacts::ContactChannel" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::SSMContacts::Plan": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ContactId": { "type": "string" }, "RotationIds": { "items": { "type": "string" }, "type": "array" }, "Stages": { "items": { "$ref": "#/definitions/AWS::SSMContacts::Plan.Stage" }, "type": "array" } }, "required": [ "ContactId" ], "type": "object" }, "Type": { "enum": [ "AWS::SSMContacts::Plan" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::SSMContacts::Plan.ChannelTargetInfo": { "additionalProperties": false, "properties": { "ChannelId": { "type": "string" }, "RetryIntervalInMinutes": { "type": "number" } }, "required": [ "ChannelId", "RetryIntervalInMinutes" ], "type": "object" }, "AWS::SSMContacts::Plan.ContactTargetInfo": { "additionalProperties": false, "properties": { "ContactId": { "type": "string" }, "IsEssential": { "type": "boolean" } }, "required": [ "ContactId", "IsEssential" ], "type": "object" }, "AWS::SSMContacts::Plan.Stage": { "additionalProperties": false, "properties": { "DurationInMinutes": { "type": "number" }, "Targets": { "items": { "$ref": "#/definitions/AWS::SSMContacts::Plan.Targets" }, "type": "array" } }, "required": [ "DurationInMinutes" ], "type": "object" }, "AWS::SSMContacts::Plan.Targets": { "additionalProperties": false, "properties": { "ChannelTargetInfo": { "$ref": "#/definitions/AWS::SSMContacts::Plan.ChannelTargetInfo" }, "ContactTargetInfo": { "$ref": "#/definitions/AWS::SSMContacts::Plan.ContactTargetInfo" } }, "type": "object" }, "AWS::SSMContacts::Rotation": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ContactIds": { "items": { "type": "string" }, "type": "array" }, "Name": { "type": "string" }, "Recurrence": { "$ref": "#/definitions/AWS::SSMContacts::Rotation.RecurrenceSettings" }, "StartTime": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "TimeZoneId": { "type": "string" } }, "required": [ "ContactIds", "Name", "Recurrence", "StartTime", "TimeZoneId" ], "type": "object" }, "Type": { "enum": [ "AWS::SSMContacts::Rotation" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::SSMContacts::Rotation.CoverageTime": { "additionalProperties": false, "properties": { "EndTime": { "type": "string" }, "StartTime": { "type": "string" } }, "required": [ "EndTime", "StartTime" ], "type": "object" }, "AWS::SSMContacts::Rotation.MonthlySetting": { "additionalProperties": false, "properties": { "DayOfMonth": { "type": "number" }, "HandOffTime": { "type": "string" } }, "required": [ "DayOfMonth", "HandOffTime" ], "type": "object" }, "AWS::SSMContacts::Rotation.RecurrenceSettings": { "additionalProperties": false, "properties": { "DailySettings": { "items": { "type": "string" }, "type": "array" }, "MonthlySettings": { "items": { "$ref": "#/definitions/AWS::SSMContacts::Rotation.MonthlySetting" }, "type": "array" }, "NumberOfOnCalls": { "type": "number" }, "RecurrenceMultiplier": { "type": "number" }, "ShiftCoverages": { "items": { "$ref": "#/definitions/AWS::SSMContacts::Rotation.ShiftCoverage" }, "type": "array" }, "WeeklySettings": { "items": { "$ref": "#/definitions/AWS::SSMContacts::Rotation.WeeklySetting" }, "type": "array" } }, "required": [ "NumberOfOnCalls", "RecurrenceMultiplier" ], "type": "object" }, "AWS::SSMContacts::Rotation.ShiftCoverage": { "additionalProperties": false, "properties": { "CoverageTimes": { "items": { "$ref": "#/definitions/AWS::SSMContacts::Rotation.CoverageTime" }, "type": "array" }, "DayOfWeek": { "type": "string" } }, "required": [ "CoverageTimes", "DayOfWeek" ], "type": "object" }, "AWS::SSMContacts::Rotation.WeeklySetting": { "additionalProperties": false, "properties": { "DayOfWeek": { "type": "string" }, "HandOffTime": { "type": "string" } }, "required": [ "DayOfWeek", "HandOffTime" ], "type": "object" }, "AWS::SSMIncidents::ReplicationSet": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "DeletionProtected": { "type": "boolean" }, "Regions": { "items": { "$ref": "#/definitions/AWS::SSMIncidents::ReplicationSet.ReplicationRegion" }, "type": "array" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "Regions" ], "type": "object" }, "Type": { "enum": [ "AWS::SSMIncidents::ReplicationSet" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::SSMIncidents::ReplicationSet.RegionConfiguration": { "additionalProperties": false, "properties": { "SseKmsKeyId": { "type": "string" } }, "required": [ "SseKmsKeyId" ], "type": "object" }, "AWS::SSMIncidents::ReplicationSet.ReplicationRegion": { "additionalProperties": false, "properties": { "RegionConfiguration": { "$ref": "#/definitions/AWS::SSMIncidents::ReplicationSet.RegionConfiguration" }, "RegionName": { "type": "string" } }, "type": "object" }, "AWS::SSMIncidents::ResponsePlan": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Actions": { "items": { "$ref": "#/definitions/AWS::SSMIncidents::ResponsePlan.Action" }, "type": "array" }, "ChatChannel": { "$ref": "#/definitions/AWS::SSMIncidents::ResponsePlan.ChatChannel" }, "DisplayName": { "type": "string" }, "Engagements": { "items": { "type": "string" }, "type": "array" }, "IncidentTemplate": { "$ref": "#/definitions/AWS::SSMIncidents::ResponsePlan.IncidentTemplate" }, "Integrations": { "items": { "$ref": "#/definitions/AWS::SSMIncidents::ResponsePlan.Integration" }, "type": "array" }, "Name": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "IncidentTemplate", "Name" ], "type": "object" }, "Type": { "enum": [ "AWS::SSMIncidents::ResponsePlan" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::SSMIncidents::ResponsePlan.Action": { "additionalProperties": false, "properties": { "SsmAutomation": { "$ref": "#/definitions/AWS::SSMIncidents::ResponsePlan.SsmAutomation" } }, "type": "object" }, "AWS::SSMIncidents::ResponsePlan.ChatChannel": { "additionalProperties": false, "properties": { "ChatbotSns": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::SSMIncidents::ResponsePlan.DynamicSsmParameter": { "additionalProperties": false, "properties": { "Key": { "type": "string" }, "Value": { "$ref": "#/definitions/AWS::SSMIncidents::ResponsePlan.DynamicSsmParameterValue" } }, "required": [ "Key", "Value" ], "type": "object" }, "AWS::SSMIncidents::ResponsePlan.DynamicSsmParameterValue": { "additionalProperties": false, "properties": { "Variable": { "type": "string" } }, "type": "object" }, "AWS::SSMIncidents::ResponsePlan.IncidentTemplate": { "additionalProperties": false, "properties": { "DedupeString": { "type": "string" }, "Impact": { "type": "number" }, "IncidentTags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "NotificationTargets": { "items": { "$ref": "#/definitions/AWS::SSMIncidents::ResponsePlan.NotificationTargetItem" }, "type": "array" }, "Summary": { "type": "string" }, "Title": { "type": "string" } }, "required": [ "Impact", "Title" ], "type": "object" }, "AWS::SSMIncidents::ResponsePlan.Integration": { "additionalProperties": false, "properties": { "PagerDutyConfiguration": { "$ref": "#/definitions/AWS::SSMIncidents::ResponsePlan.PagerDutyConfiguration" } }, "required": [ "PagerDutyConfiguration" ], "type": "object" }, "AWS::SSMIncidents::ResponsePlan.NotificationTargetItem": { "additionalProperties": false, "properties": { "SnsTopicArn": { "type": "string" } }, "type": "object" }, "AWS::SSMIncidents::ResponsePlan.PagerDutyConfiguration": { "additionalProperties": false, "properties": { "Name": { "type": "string" }, "PagerDutyIncidentConfiguration": { "$ref": "#/definitions/AWS::SSMIncidents::ResponsePlan.PagerDutyIncidentConfiguration" }, "SecretId": { "type": "string" } }, "required": [ "Name", "PagerDutyIncidentConfiguration", "SecretId" ], "type": "object" }, "AWS::SSMIncidents::ResponsePlan.PagerDutyIncidentConfiguration": { "additionalProperties": false, "properties": { "ServiceId": { "type": "string" } }, "required": [ "ServiceId" ], "type": "object" }, "AWS::SSMIncidents::ResponsePlan.SsmAutomation": { "additionalProperties": false, "properties": { "DocumentName": { "type": "string" }, "DocumentVersion": { "type": "string" }, "DynamicParameters": { "items": { "$ref": "#/definitions/AWS::SSMIncidents::ResponsePlan.DynamicSsmParameter" }, "type": "array" }, "Parameters": { "items": { "$ref": "#/definitions/AWS::SSMIncidents::ResponsePlan.SsmParameter" }, "type": "array" }, "RoleArn": { "type": "string" }, "TargetAccount": { "type": "string" } }, "required": [ "DocumentName", "RoleArn" ], "type": "object" }, "AWS::SSMIncidents::ResponsePlan.SsmParameter": { "additionalProperties": false, "properties": { "Key": { "type": "string" }, "Values": { "items": { "type": "string" }, "type": "array" } }, "required": [ "Key", "Values" ], "type": "object" }, "AWS::SSO::Assignment": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "InstanceArn": { "type": "string" }, "PermissionSetArn": { "type": "string" }, "PrincipalId": { "type": "string" }, "PrincipalType": { "type": "string" }, "TargetId": { "type": "string" }, "TargetType": { "type": "string" } }, "required": [ "InstanceArn", "PermissionSetArn", "PrincipalId", "PrincipalType", "TargetId", "TargetType" ], "type": "object" }, "Type": { "enum": [ "AWS::SSO::Assignment" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::SSO::InstanceAccessControlAttributeConfiguration": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AccessControlAttributes": { "items": { "$ref": "#/definitions/AWS::SSO::InstanceAccessControlAttributeConfiguration.AccessControlAttribute" }, "type": "array" }, "InstanceArn": { "type": "string" } }, "required": [ "InstanceArn" ], "type": "object" }, "Type": { "enum": [ "AWS::SSO::InstanceAccessControlAttributeConfiguration" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::SSO::InstanceAccessControlAttributeConfiguration.AccessControlAttribute": { "additionalProperties": false, "properties": { "Key": { "type": "string" }, "Value": { "$ref": "#/definitions/AWS::SSO::InstanceAccessControlAttributeConfiguration.AccessControlAttributeValue" } }, "required": [ "Key", "Value" ], "type": "object" }, "AWS::SSO::InstanceAccessControlAttributeConfiguration.AccessControlAttributeValue": { "additionalProperties": false, "properties": { "Source": { "items": { "type": "string" }, "type": "array" } }, "required": [ "Source" ], "type": "object" }, "AWS::SSO::PermissionSet": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "CustomerManagedPolicyReferences": { "items": { "$ref": "#/definitions/AWS::SSO::PermissionSet.CustomerManagedPolicyReference" }, "type": "array" }, "Description": { "type": "string" }, "InlinePolicy": { "type": "object" }, "InstanceArn": { "type": "string" }, "ManagedPolicies": { "items": { "type": "string" }, "type": "array" }, "Name": { "type": "string" }, "PermissionsBoundary": { "$ref": "#/definitions/AWS::SSO::PermissionSet.PermissionsBoundary" }, "RelayStateType": { "type": "string" }, "SessionDuration": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "InstanceArn", "Name" ], "type": "object" }, "Type": { "enum": [ "AWS::SSO::PermissionSet" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::SSO::PermissionSet.CustomerManagedPolicyReference": { "additionalProperties": false, "properties": { "Name": { "type": "string" }, "Path": { "type": "string" } }, "required": [ "Name" ], "type": "object" }, "AWS::SSO::PermissionSet.PermissionsBoundary": { "additionalProperties": false, "properties": { "CustomerManagedPolicyReference": { "$ref": "#/definitions/AWS::SSO::PermissionSet.CustomerManagedPolicyReference" }, "ManagedPolicyArn": { "type": "string" } }, "type": "object" }, "AWS::SageMaker::App": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AppName": { "type": "string" }, "AppType": { "type": "string" }, "DomainId": { "type": "string" }, "ResourceSpec": { "$ref": "#/definitions/AWS::SageMaker::App.ResourceSpec" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "UserProfileName": { "type": "string" } }, "required": [ "AppName", "AppType", "DomainId", "UserProfileName" ], "type": "object" }, "Type": { "enum": [ "AWS::SageMaker::App" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::SageMaker::App.ResourceSpec": { "additionalProperties": false, "properties": { "InstanceType": { "type": "string" }, "SageMakerImageArn": { "type": "string" }, "SageMakerImageVersionArn": { "type": "string" } }, "type": "object" }, "AWS::SageMaker::AppImageConfig": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AppImageConfigName": { "type": "string" }, "KernelGatewayImageConfig": { "$ref": "#/definitions/AWS::SageMaker::AppImageConfig.KernelGatewayImageConfig" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "AppImageConfigName" ], "type": "object" }, "Type": { "enum": [ "AWS::SageMaker::AppImageConfig" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::SageMaker::AppImageConfig.FileSystemConfig": { "additionalProperties": false, "properties": { "DefaultGid": { "type": "number" }, "DefaultUid": { "type": "number" }, "MountPath": { "type": "string" } }, "type": "object" }, "AWS::SageMaker::AppImageConfig.KernelGatewayImageConfig": { "additionalProperties": false, "properties": { "FileSystemConfig": { "$ref": "#/definitions/AWS::SageMaker::AppImageConfig.FileSystemConfig" }, "KernelSpecs": { "items": { "$ref": "#/definitions/AWS::SageMaker::AppImageConfig.KernelSpec" }, "type": "array" } }, "required": [ "KernelSpecs" ], "type": "object" }, "AWS::SageMaker::AppImageConfig.KernelSpec": { "additionalProperties": false, "properties": { "DisplayName": { "type": "string" }, "Name": { "type": "string" } }, "required": [ "Name" ], "type": "object" }, "AWS::SageMaker::CodeRepository": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "CodeRepositoryName": { "type": "string" }, "GitConfig": { "$ref": "#/definitions/AWS::SageMaker::CodeRepository.GitConfig" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "GitConfig" ], "type": "object" }, "Type": { "enum": [ "AWS::SageMaker::CodeRepository" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::SageMaker::CodeRepository.GitConfig": { "additionalProperties": false, "properties": { "Branch": { "type": "string" }, "RepositoryUrl": { "type": "string" }, "SecretArn": { "type": "string" } }, "required": [ "RepositoryUrl" ], "type": "object" }, "AWS::SageMaker::DataQualityJobDefinition": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "DataQualityAppSpecification": { "$ref": "#/definitions/AWS::SageMaker::DataQualityJobDefinition.DataQualityAppSpecification" }, "DataQualityBaselineConfig": { "$ref": "#/definitions/AWS::SageMaker::DataQualityJobDefinition.DataQualityBaselineConfig" }, "DataQualityJobInput": { "$ref": "#/definitions/AWS::SageMaker::DataQualityJobDefinition.DataQualityJobInput" }, "DataQualityJobOutputConfig": { "$ref": "#/definitions/AWS::SageMaker::DataQualityJobDefinition.MonitoringOutputConfig" }, "EndpointName": { "type": "string" }, "JobDefinitionName": { "type": "string" }, "JobResources": { "$ref": "#/definitions/AWS::SageMaker::DataQualityJobDefinition.MonitoringResources" }, "NetworkConfig": { "$ref": "#/definitions/AWS::SageMaker::DataQualityJobDefinition.NetworkConfig" }, "RoleArn": { "type": "string" }, "StoppingCondition": { "$ref": "#/definitions/AWS::SageMaker::DataQualityJobDefinition.StoppingCondition" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "DataQualityAppSpecification", "DataQualityJobInput", "DataQualityJobOutputConfig", "JobResources", "RoleArn" ], "type": "object" }, "Type": { "enum": [ "AWS::SageMaker::DataQualityJobDefinition" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::SageMaker::DataQualityJobDefinition.BatchTransformInput": { "additionalProperties": false, "properties": { "DataCapturedDestinationS3Uri": { "type": "string" }, "DatasetFormat": { "$ref": "#/definitions/AWS::SageMaker::DataQualityJobDefinition.DatasetFormat" }, "LocalPath": { "type": "string" }, "S3DataDistributionType": { "type": "string" }, "S3InputMode": { "type": "string" } }, "required": [ "DataCapturedDestinationS3Uri", "DatasetFormat", "LocalPath" ], "type": "object" }, "AWS::SageMaker::DataQualityJobDefinition.ClusterConfig": { "additionalProperties": false, "properties": { "InstanceCount": { "type": "number" }, "InstanceType": { "type": "string" }, "VolumeKmsKeyId": { "type": "string" }, "VolumeSizeInGB": { "type": "number" } }, "required": [ "InstanceCount", "InstanceType", "VolumeSizeInGB" ], "type": "object" }, "AWS::SageMaker::DataQualityJobDefinition.ConstraintsResource": { "additionalProperties": false, "properties": { "S3Uri": { "type": "string" } }, "type": "object" }, "AWS::SageMaker::DataQualityJobDefinition.Csv": { "additionalProperties": false, "properties": { "Header": { "type": "boolean" } }, "type": "object" }, "AWS::SageMaker::DataQualityJobDefinition.DataQualityAppSpecification": { "additionalProperties": false, "properties": { "ContainerArguments": { "items": { "type": "string" }, "type": "array" }, "ContainerEntrypoint": { "items": { "type": "string" }, "type": "array" }, "Environment": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" }, "ImageUri": { "type": "string" }, "PostAnalyticsProcessorSourceUri": { "type": "string" }, "RecordPreprocessorSourceUri": { "type": "string" } }, "required": [ "ImageUri" ], "type": "object" }, "AWS::SageMaker::DataQualityJobDefinition.DataQualityBaselineConfig": { "additionalProperties": false, "properties": { "BaseliningJobName": { "type": "string" }, "ConstraintsResource": { "$ref": "#/definitions/AWS::SageMaker::DataQualityJobDefinition.ConstraintsResource" }, "StatisticsResource": { "$ref": "#/definitions/AWS::SageMaker::DataQualityJobDefinition.StatisticsResource" } }, "type": "object" }, "AWS::SageMaker::DataQualityJobDefinition.DataQualityJobInput": { "additionalProperties": false, "properties": { "BatchTransformInput": { "$ref": "#/definitions/AWS::SageMaker::DataQualityJobDefinition.BatchTransformInput" }, "EndpointInput": { "$ref": "#/definitions/AWS::SageMaker::DataQualityJobDefinition.EndpointInput" } }, "type": "object" }, "AWS::SageMaker::DataQualityJobDefinition.DatasetFormat": { "additionalProperties": false, "properties": { "Csv": { "$ref": "#/definitions/AWS::SageMaker::DataQualityJobDefinition.Csv" }, "Json": { "$ref": "#/definitions/AWS::SageMaker::DataQualityJobDefinition.Json" }, "Parquet": { "type": "boolean" } }, "type": "object" }, "AWS::SageMaker::DataQualityJobDefinition.EndpointInput": { "additionalProperties": false, "properties": { "EndpointName": { "type": "string" }, "LocalPath": { "type": "string" }, "S3DataDistributionType": { "type": "string" }, "S3InputMode": { "type": "string" } }, "required": [ "EndpointName", "LocalPath" ], "type": "object" }, "AWS::SageMaker::DataQualityJobDefinition.Json": { "additionalProperties": false, "properties": { "Line": { "type": "boolean" } }, "type": "object" }, "AWS::SageMaker::DataQualityJobDefinition.MonitoringOutput": { "additionalProperties": false, "properties": { "S3Output": { "$ref": "#/definitions/AWS::SageMaker::DataQualityJobDefinition.S3Output" } }, "required": [ "S3Output" ], "type": "object" }, "AWS::SageMaker::DataQualityJobDefinition.MonitoringOutputConfig": { "additionalProperties": false, "properties": { "KmsKeyId": { "type": "string" }, "MonitoringOutputs": { "items": { "$ref": "#/definitions/AWS::SageMaker::DataQualityJobDefinition.MonitoringOutput" }, "type": "array" } }, "required": [ "MonitoringOutputs" ], "type": "object" }, "AWS::SageMaker::DataQualityJobDefinition.MonitoringResources": { "additionalProperties": false, "properties": { "ClusterConfig": { "$ref": "#/definitions/AWS::SageMaker::DataQualityJobDefinition.ClusterConfig" } }, "required": [ "ClusterConfig" ], "type": "object" }, "AWS::SageMaker::DataQualityJobDefinition.NetworkConfig": { "additionalProperties": false, "properties": { "EnableInterContainerTrafficEncryption": { "type": "boolean" }, "EnableNetworkIsolation": { "type": "boolean" }, "VpcConfig": { "$ref": "#/definitions/AWS::SageMaker::DataQualityJobDefinition.VpcConfig" } }, "type": "object" }, "AWS::SageMaker::DataQualityJobDefinition.S3Output": { "additionalProperties": false, "properties": { "LocalPath": { "type": "string" }, "S3UploadMode": { "type": "string" }, "S3Uri": { "type": "string" } }, "required": [ "LocalPath", "S3Uri" ], "type": "object" }, "AWS::SageMaker::DataQualityJobDefinition.StatisticsResource": { "additionalProperties": false, "properties": { "S3Uri": { "type": "string" } }, "type": "object" }, "AWS::SageMaker::DataQualityJobDefinition.StoppingCondition": { "additionalProperties": false, "properties": { "MaxRuntimeInSeconds": { "type": "number" } }, "required": [ "MaxRuntimeInSeconds" ], "type": "object" }, "AWS::SageMaker::DataQualityJobDefinition.VpcConfig": { "additionalProperties": false, "properties": { "SecurityGroupIds": { "items": { "type": "string" }, "type": "array" }, "Subnets": { "items": { "type": "string" }, "type": "array" } }, "required": [ "SecurityGroupIds", "Subnets" ], "type": "object" }, "AWS::SageMaker::Device": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Device": { "$ref": "#/definitions/AWS::SageMaker::Device.Device" }, "DeviceFleetName": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "DeviceFleetName" ], "type": "object" }, "Type": { "enum": [ "AWS::SageMaker::Device" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::SageMaker::Device.Device": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "DeviceName": { "type": "string" }, "IotThingName": { "type": "string" } }, "required": [ "DeviceName" ], "type": "object" }, "AWS::SageMaker::DeviceFleet": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "DeviceFleetName": { "type": "string" }, "OutputConfig": { "$ref": "#/definitions/AWS::SageMaker::DeviceFleet.EdgeOutputConfig" }, "RoleArn": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "DeviceFleetName", "OutputConfig", "RoleArn" ], "type": "object" }, "Type": { "enum": [ "AWS::SageMaker::DeviceFleet" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::SageMaker::DeviceFleet.EdgeOutputConfig": { "additionalProperties": false, "properties": { "KmsKeyId": { "type": "string" }, "S3OutputLocation": { "type": "string" } }, "required": [ "S3OutputLocation" ], "type": "object" }, "AWS::SageMaker::Domain": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AppNetworkAccessType": { "type": "string" }, "AppSecurityGroupManagement": { "type": "string" }, "AuthMode": { "type": "string" }, "DefaultSpaceSettings": { "$ref": "#/definitions/AWS::SageMaker::Domain.DefaultSpaceSettings" }, "DefaultUserSettings": { "$ref": "#/definitions/AWS::SageMaker::Domain.UserSettings" }, "DomainName": { "type": "string" }, "DomainSettings": { "$ref": "#/definitions/AWS::SageMaker::Domain.DomainSettings" }, "KmsKeyId": { "type": "string" }, "SubnetIds": { "items": { "type": "string" }, "type": "array" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "VpcId": { "type": "string" } }, "required": [ "AuthMode", "DefaultUserSettings", "DomainName", "SubnetIds", "VpcId" ], "type": "object" }, "Type": { "enum": [ "AWS::SageMaker::Domain" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::SageMaker::Domain.CustomImage": { "additionalProperties": false, "properties": { "AppImageConfigName": { "type": "string" }, "ImageName": { "type": "string" }, "ImageVersionNumber": { "type": "number" } }, "required": [ "AppImageConfigName", "ImageName" ], "type": "object" }, "AWS::SageMaker::Domain.DefaultSpaceSettings": { "additionalProperties": false, "properties": { "ExecutionRole": { "type": "string" }, "JupyterServerAppSettings": { "$ref": "#/definitions/AWS::SageMaker::Domain.JupyterServerAppSettings" }, "KernelGatewayAppSettings": { "$ref": "#/definitions/AWS::SageMaker::Domain.KernelGatewayAppSettings" }, "SecurityGroups": { "items": { "type": "string" }, "type": "array" } }, "required": [ "ExecutionRole" ], "type": "object" }, "AWS::SageMaker::Domain.DomainSettings": { "additionalProperties": false, "properties": { "RStudioServerProDomainSettings": { "$ref": "#/definitions/AWS::SageMaker::Domain.RStudioServerProDomainSettings" }, "SecurityGroupIds": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::SageMaker::Domain.JupyterServerAppSettings": { "additionalProperties": false, "properties": { "DefaultResourceSpec": { "$ref": "#/definitions/AWS::SageMaker::Domain.ResourceSpec" } }, "type": "object" }, "AWS::SageMaker::Domain.KernelGatewayAppSettings": { "additionalProperties": false, "properties": { "CustomImages": { "items": { "$ref": "#/definitions/AWS::SageMaker::Domain.CustomImage" }, "type": "array" }, "DefaultResourceSpec": { "$ref": "#/definitions/AWS::SageMaker::Domain.ResourceSpec" } }, "type": "object" }, "AWS::SageMaker::Domain.RSessionAppSettings": { "additionalProperties": false, "properties": { "CustomImages": { "items": { "$ref": "#/definitions/AWS::SageMaker::Domain.CustomImage" }, "type": "array" }, "DefaultResourceSpec": { "$ref": "#/definitions/AWS::SageMaker::Domain.ResourceSpec" } }, "type": "object" }, "AWS::SageMaker::Domain.RStudioServerProAppSettings": { "additionalProperties": false, "properties": { "AccessStatus": { "type": "string" }, "UserGroup": { "type": "string" } }, "type": "object" }, "AWS::SageMaker::Domain.RStudioServerProDomainSettings": { "additionalProperties": false, "properties": { "DefaultResourceSpec": { "$ref": "#/definitions/AWS::SageMaker::Domain.ResourceSpec" }, "DomainExecutionRoleArn": { "type": "string" }, "RStudioConnectUrl": { "type": "string" }, "RStudioPackageManagerUrl": { "type": "string" } }, "required": [ "DomainExecutionRoleArn" ], "type": "object" }, "AWS::SageMaker::Domain.ResourceSpec": { "additionalProperties": false, "properties": { "InstanceType": { "type": "string" }, "LifecycleConfigArn": { "type": "string" }, "SageMakerImageArn": { "type": "string" }, "SageMakerImageVersionArn": { "type": "string" } }, "type": "object" }, "AWS::SageMaker::Domain.SharingSettings": { "additionalProperties": false, "properties": { "NotebookOutputOption": { "type": "string" }, "S3KmsKeyId": { "type": "string" }, "S3OutputPath": { "type": "string" } }, "type": "object" }, "AWS::SageMaker::Domain.UserSettings": { "additionalProperties": false, "properties": { "ExecutionRole": { "type": "string" }, "JupyterServerAppSettings": { "$ref": "#/definitions/AWS::SageMaker::Domain.JupyterServerAppSettings" }, "KernelGatewayAppSettings": { "$ref": "#/definitions/AWS::SageMaker::Domain.KernelGatewayAppSettings" }, "RSessionAppSettings": { "$ref": "#/definitions/AWS::SageMaker::Domain.RSessionAppSettings" }, "RStudioServerProAppSettings": { "$ref": "#/definitions/AWS::SageMaker::Domain.RStudioServerProAppSettings" }, "SecurityGroups": { "items": { "type": "string" }, "type": "array" }, "SharingSettings": { "$ref": "#/definitions/AWS::SageMaker::Domain.SharingSettings" } }, "required": [ "ExecutionRole" ], "type": "object" }, "AWS::SageMaker::Endpoint": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "DeploymentConfig": { "$ref": "#/definitions/AWS::SageMaker::Endpoint.DeploymentConfig" }, "EndpointConfigName": { "type": "string" }, "EndpointName": { "type": "string" }, "ExcludeRetainedVariantProperties": { "items": { "$ref": "#/definitions/AWS::SageMaker::Endpoint.VariantProperty" }, "type": "array" }, "RetainAllVariantProperties": { "type": "boolean" }, "RetainDeploymentConfig": { "type": "boolean" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "EndpointConfigName" ], "type": "object" }, "Type": { "enum": [ "AWS::SageMaker::Endpoint" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::SageMaker::Endpoint.Alarm": { "additionalProperties": false, "properties": { "AlarmName": { "type": "string" } }, "required": [ "AlarmName" ], "type": "object" }, "AWS::SageMaker::Endpoint.AutoRollbackConfig": { "additionalProperties": false, "properties": { "Alarms": { "items": { "$ref": "#/definitions/AWS::SageMaker::Endpoint.Alarm" }, "type": "array" } }, "required": [ "Alarms" ], "type": "object" }, "AWS::SageMaker::Endpoint.BlueGreenUpdatePolicy": { "additionalProperties": false, "properties": { "MaximumExecutionTimeoutInSeconds": { "type": "number" }, "TerminationWaitInSeconds": { "type": "number" }, "TrafficRoutingConfiguration": { "$ref": "#/definitions/AWS::SageMaker::Endpoint.TrafficRoutingConfig" } }, "required": [ "TrafficRoutingConfiguration" ], "type": "object" }, "AWS::SageMaker::Endpoint.CapacitySize": { "additionalProperties": false, "properties": { "Type": { "type": "string" }, "Value": { "type": "number" } }, "required": [ "Type", "Value" ], "type": "object" }, "AWS::SageMaker::Endpoint.DeploymentConfig": { "additionalProperties": false, "properties": { "AutoRollbackConfiguration": { "$ref": "#/definitions/AWS::SageMaker::Endpoint.AutoRollbackConfig" }, "BlueGreenUpdatePolicy": { "$ref": "#/definitions/AWS::SageMaker::Endpoint.BlueGreenUpdatePolicy" }, "RollingUpdatePolicy": { "$ref": "#/definitions/AWS::SageMaker::Endpoint.RollingUpdatePolicy" } }, "type": "object" }, "AWS::SageMaker::Endpoint.RollingUpdatePolicy": { "additionalProperties": false, "properties": { "MaximumBatchSize": { "$ref": "#/definitions/AWS::SageMaker::Endpoint.CapacitySize" }, "MaximumExecutionTimeoutInSeconds": { "type": "number" }, "RollbackMaximumBatchSize": { "$ref": "#/definitions/AWS::SageMaker::Endpoint.CapacitySize" }, "WaitIntervalInSeconds": { "type": "number" } }, "required": [ "MaximumBatchSize", "WaitIntervalInSeconds" ], "type": "object" }, "AWS::SageMaker::Endpoint.TrafficRoutingConfig": { "additionalProperties": false, "properties": { "CanarySize": { "$ref": "#/definitions/AWS::SageMaker::Endpoint.CapacitySize" }, "LinearStepSize": { "$ref": "#/definitions/AWS::SageMaker::Endpoint.CapacitySize" }, "Type": { "type": "string" }, "WaitIntervalInSeconds": { "type": "number" } }, "required": [ "Type" ], "type": "object" }, "AWS::SageMaker::Endpoint.VariantProperty": { "additionalProperties": false, "properties": { "VariantPropertyType": { "type": "string" } }, "type": "object" }, "AWS::SageMaker::EndpointConfig": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AsyncInferenceConfig": { "$ref": "#/definitions/AWS::SageMaker::EndpointConfig.AsyncInferenceConfig" }, "DataCaptureConfig": { "$ref": "#/definitions/AWS::SageMaker::EndpointConfig.DataCaptureConfig" }, "EndpointConfigName": { "type": "string" }, "ExplainerConfig": { "$ref": "#/definitions/AWS::SageMaker::EndpointConfig.ExplainerConfig" }, "KmsKeyId": { "type": "string" }, "ProductionVariants": { "items": { "$ref": "#/definitions/AWS::SageMaker::EndpointConfig.ProductionVariant" }, "type": "array" }, "ShadowProductionVariants": { "items": { "$ref": "#/definitions/AWS::SageMaker::EndpointConfig.ProductionVariant" }, "type": "array" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "ProductionVariants" ], "type": "object" }, "Type": { "enum": [ "AWS::SageMaker::EndpointConfig" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::SageMaker::EndpointConfig.AsyncInferenceClientConfig": { "additionalProperties": false, "properties": { "MaxConcurrentInvocationsPerInstance": { "type": "number" } }, "type": "object" }, "AWS::SageMaker::EndpointConfig.AsyncInferenceConfig": { "additionalProperties": false, "properties": { "ClientConfig": { "$ref": "#/definitions/AWS::SageMaker::EndpointConfig.AsyncInferenceClientConfig" }, "OutputConfig": { "$ref": "#/definitions/AWS::SageMaker::EndpointConfig.AsyncInferenceOutputConfig" } }, "required": [ "OutputConfig" ], "type": "object" }, "AWS::SageMaker::EndpointConfig.AsyncInferenceNotificationConfig": { "additionalProperties": false, "properties": { "ErrorTopic": { "type": "string" }, "IncludeInferenceResponseIn": { "items": { "type": "string" }, "type": "array" }, "SuccessTopic": { "type": "string" } }, "type": "object" }, "AWS::SageMaker::EndpointConfig.AsyncInferenceOutputConfig": { "additionalProperties": false, "properties": { "KmsKeyId": { "type": "string" }, "NotificationConfig": { "$ref": "#/definitions/AWS::SageMaker::EndpointConfig.AsyncInferenceNotificationConfig" }, "S3FailurePath": { "type": "string" }, "S3OutputPath": { "type": "string" } }, "type": "object" }, "AWS::SageMaker::EndpointConfig.CaptureContentTypeHeader": { "additionalProperties": false, "properties": { "CsvContentTypes": { "items": { "type": "string" }, "type": "array" }, "JsonContentTypes": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::SageMaker::EndpointConfig.CaptureOption": { "additionalProperties": false, "properties": { "CaptureMode": { "type": "string" } }, "required": [ "CaptureMode" ], "type": "object" }, "AWS::SageMaker::EndpointConfig.ClarifyExplainerConfig": { "additionalProperties": false, "properties": { "EnableExplanations": { "type": "string" }, "InferenceConfig": { "$ref": "#/definitions/AWS::SageMaker::EndpointConfig.ClarifyInferenceConfig" }, "ShapConfig": { "$ref": "#/definitions/AWS::SageMaker::EndpointConfig.ClarifyShapConfig" } }, "required": [ "ShapConfig" ], "type": "object" }, "AWS::SageMaker::EndpointConfig.ClarifyFeatureType": { "additionalProperties": false, "properties": {}, "type": "object" }, "AWS::SageMaker::EndpointConfig.ClarifyHeader": { "additionalProperties": false, "properties": {}, "type": "object" }, "AWS::SageMaker::EndpointConfig.ClarifyInferenceConfig": { "additionalProperties": false, "properties": { "ContentTemplate": { "type": "string" }, "FeatureHeaders": { "items": { "$ref": "#/definitions/AWS::SageMaker::EndpointConfig.ClarifyHeader" }, "type": "array" }, "FeatureTypes": { "items": { "$ref": "#/definitions/AWS::SageMaker::EndpointConfig.ClarifyFeatureType" }, "type": "array" }, "FeaturesAttribute": { "type": "string" }, "LabelAttribute": { "type": "string" }, "LabelHeaders": { "items": { "$ref": "#/definitions/AWS::SageMaker::EndpointConfig.ClarifyHeader" }, "type": "array" }, "LabelIndex": { "type": "number" }, "MaxPayloadInMB": { "type": "number" }, "MaxRecordCount": { "type": "number" }, "ProbabilityAttribute": { "type": "string" }, "ProbabilityIndex": { "type": "number" } }, "type": "object" }, "AWS::SageMaker::EndpointConfig.ClarifyShapBaselineConfig": { "additionalProperties": false, "properties": { "MimeType": { "type": "string" }, "ShapBaseline": { "type": "string" }, "ShapBaselineUri": { "type": "string" } }, "type": "object" }, "AWS::SageMaker::EndpointConfig.ClarifyShapConfig": { "additionalProperties": false, "properties": { "NumberOfSamples": { "type": "number" }, "Seed": { "type": "number" }, "ShapBaselineConfig": { "$ref": "#/definitions/AWS::SageMaker::EndpointConfig.ClarifyShapBaselineConfig" }, "TextConfig": { "$ref": "#/definitions/AWS::SageMaker::EndpointConfig.ClarifyTextConfig" }, "UseLogit": { "type": "boolean" } }, "required": [ "ShapBaselineConfig" ], "type": "object" }, "AWS::SageMaker::EndpointConfig.ClarifyTextConfig": { "additionalProperties": false, "properties": { "Granularity": { "type": "string" }, "Language": { "type": "string" } }, "required": [ "Granularity", "Language" ], "type": "object" }, "AWS::SageMaker::EndpointConfig.DataCaptureConfig": { "additionalProperties": false, "properties": { "CaptureContentTypeHeader": { "$ref": "#/definitions/AWS::SageMaker::EndpointConfig.CaptureContentTypeHeader" }, "CaptureOptions": { "items": { "$ref": "#/definitions/AWS::SageMaker::EndpointConfig.CaptureOption" }, "type": "array" }, "DestinationS3Uri": { "type": "string" }, "EnableCapture": { "type": "boolean" }, "InitialSamplingPercentage": { "type": "number" }, "KmsKeyId": { "type": "string" } }, "required": [ "CaptureOptions", "DestinationS3Uri", "InitialSamplingPercentage" ], "type": "object" }, "AWS::SageMaker::EndpointConfig.ExplainerConfig": { "additionalProperties": false, "properties": { "ClarifyExplainerConfig": { "$ref": "#/definitions/AWS::SageMaker::EndpointConfig.ClarifyExplainerConfig" } }, "type": "object" }, "AWS::SageMaker::EndpointConfig.ProductionVariant": { "additionalProperties": false, "properties": { "AcceleratorType": { "type": "string" }, "ContainerStartupHealthCheckTimeoutInSeconds": { "type": "number" }, "EnableSSMAccess": { "type": "boolean" }, "InitialInstanceCount": { "type": "number" }, "InitialVariantWeight": { "type": "number" }, "InstanceType": { "type": "string" }, "ModelDataDownloadTimeoutInSeconds": { "type": "number" }, "ModelName": { "type": "string" }, "ServerlessConfig": { "$ref": "#/definitions/AWS::SageMaker::EndpointConfig.ServerlessConfig" }, "VariantName": { "type": "string" }, "VolumeSizeInGB": { "type": "number" } }, "required": [ "InitialVariantWeight", "ModelName", "VariantName" ], "type": "object" }, "AWS::SageMaker::EndpointConfig.ServerlessConfig": { "additionalProperties": false, "properties": { "MaxConcurrency": { "type": "number" }, "MemorySizeInMB": { "type": "number" }, "ProvisionedConcurrency": { "type": "number" } }, "required": [ "MaxConcurrency", "MemorySizeInMB" ], "type": "object" }, "AWS::SageMaker::FeatureGroup": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "EventTimeFeatureName": { "type": "string" }, "FeatureDefinitions": { "items": { "$ref": "#/definitions/AWS::SageMaker::FeatureGroup.FeatureDefinition" }, "type": "array" }, "FeatureGroupName": { "type": "string" }, "OfflineStoreConfig": { "$ref": "#/definitions/AWS::SageMaker::FeatureGroup.OfflineStoreConfig" }, "OnlineStoreConfig": { "$ref": "#/definitions/AWS::SageMaker::FeatureGroup.OnlineStoreConfig" }, "RecordIdentifierFeatureName": { "type": "string" }, "RoleArn": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "EventTimeFeatureName", "FeatureDefinitions", "FeatureGroupName", "RecordIdentifierFeatureName" ], "type": "object" }, "Type": { "enum": [ "AWS::SageMaker::FeatureGroup" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::SageMaker::FeatureGroup.DataCatalogConfig": { "additionalProperties": false, "properties": { "Catalog": { "type": "string" }, "Database": { "type": "string" }, "TableName": { "type": "string" } }, "required": [ "Catalog", "Database", "TableName" ], "type": "object" }, "AWS::SageMaker::FeatureGroup.FeatureDefinition": { "additionalProperties": false, "properties": { "FeatureName": { "type": "string" }, "FeatureType": { "type": "string" } }, "required": [ "FeatureName", "FeatureType" ], "type": "object" }, "AWS::SageMaker::FeatureGroup.OfflineStoreConfig": { "additionalProperties": false, "properties": { "DataCatalogConfig": { "$ref": "#/definitions/AWS::SageMaker::FeatureGroup.DataCatalogConfig" }, "DisableGlueTableCreation": { "type": "boolean" }, "S3StorageConfig": { "$ref": "#/definitions/AWS::SageMaker::FeatureGroup.S3StorageConfig" }, "TableFormat": { "type": "string" } }, "required": [ "S3StorageConfig" ], "type": "object" }, "AWS::SageMaker::FeatureGroup.OnlineStoreConfig": { "additionalProperties": false, "properties": { "EnableOnlineStore": { "type": "boolean" }, "SecurityConfig": { "$ref": "#/definitions/AWS::SageMaker::FeatureGroup.OnlineStoreSecurityConfig" } }, "type": "object" }, "AWS::SageMaker::FeatureGroup.OnlineStoreSecurityConfig": { "additionalProperties": false, "properties": { "KmsKeyId": { "type": "string" } }, "type": "object" }, "AWS::SageMaker::FeatureGroup.S3StorageConfig": { "additionalProperties": false, "properties": { "KmsKeyId": { "type": "string" }, "S3Uri": { "type": "string" } }, "required": [ "S3Uri" ], "type": "object" }, "AWS::SageMaker::Image": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ImageDescription": { "type": "string" }, "ImageDisplayName": { "type": "string" }, "ImageName": { "type": "string" }, "ImageRoleArn": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "ImageName", "ImageRoleArn" ], "type": "object" }, "Type": { "enum": [ "AWS::SageMaker::Image" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::SageMaker::ImageVersion": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Alias": { "type": "string" }, "Aliases": { "items": { "type": "string" }, "type": "array" }, "BaseImage": { "type": "string" }, "Horovod": { "type": "boolean" }, "ImageName": { "type": "string" }, "JobType": { "type": "string" }, "MLFramework": { "type": "string" }, "Processor": { "type": "string" }, "ProgrammingLang": { "type": "string" }, "ReleaseNotes": { "type": "string" }, "VendorGuidance": { "type": "string" } }, "required": [ "BaseImage", "ImageName" ], "type": "object" }, "Type": { "enum": [ "AWS::SageMaker::ImageVersion" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::SageMaker::InferenceExperiment": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "DataStorageConfig": { "$ref": "#/definitions/AWS::SageMaker::InferenceExperiment.DataStorageConfig" }, "Description": { "type": "string" }, "DesiredState": { "type": "string" }, "EndpointName": { "type": "string" }, "KmsKey": { "type": "string" }, "ModelVariants": { "items": { "$ref": "#/definitions/AWS::SageMaker::InferenceExperiment.ModelVariantConfig" }, "type": "array" }, "Name": { "type": "string" }, "RoleArn": { "type": "string" }, "Schedule": { "$ref": "#/definitions/AWS::SageMaker::InferenceExperiment.InferenceExperimentSchedule" }, "ShadowModeConfig": { "$ref": "#/definitions/AWS::SageMaker::InferenceExperiment.ShadowModeConfig" }, "StatusReason": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "Type": { "type": "string" } }, "required": [ "EndpointName", "ModelVariants", "Name", "RoleArn", "Type" ], "type": "object" }, "Type": { "enum": [ "AWS::SageMaker::InferenceExperiment" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::SageMaker::InferenceExperiment.CaptureContentTypeHeader": { "additionalProperties": false, "properties": { "CsvContentTypes": { "items": { "type": "string" }, "type": "array" }, "JsonContentTypes": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::SageMaker::InferenceExperiment.DataStorageConfig": { "additionalProperties": false, "properties": { "ContentType": { "$ref": "#/definitions/AWS::SageMaker::InferenceExperiment.CaptureContentTypeHeader" }, "Destination": { "type": "string" }, "KmsKey": { "type": "string" } }, "required": [ "Destination" ], "type": "object" }, "AWS::SageMaker::InferenceExperiment.EndpointMetadata": { "additionalProperties": false, "properties": { "EndpointConfigName": { "type": "string" }, "EndpointName": { "type": "string" }, "EndpointStatus": { "type": "string" } }, "required": [ "EndpointName" ], "type": "object" }, "AWS::SageMaker::InferenceExperiment.InferenceExperimentSchedule": { "additionalProperties": false, "properties": { "EndTime": { "type": "string" }, "StartTime": { "type": "string" } }, "type": "object" }, "AWS::SageMaker::InferenceExperiment.ModelInfrastructureConfig": { "additionalProperties": false, "properties": { "InfrastructureType": { "type": "string" }, "RealTimeInferenceConfig": { "$ref": "#/definitions/AWS::SageMaker::InferenceExperiment.RealTimeInferenceConfig" } }, "required": [ "InfrastructureType", "RealTimeInferenceConfig" ], "type": "object" }, "AWS::SageMaker::InferenceExperiment.ModelVariantConfig": { "additionalProperties": false, "properties": { "InfrastructureConfig": { "$ref": "#/definitions/AWS::SageMaker::InferenceExperiment.ModelInfrastructureConfig" }, "ModelName": { "type": "string" }, "VariantName": { "type": "string" } }, "required": [ "InfrastructureConfig", "ModelName", "VariantName" ], "type": "object" }, "AWS::SageMaker::InferenceExperiment.RealTimeInferenceConfig": { "additionalProperties": false, "properties": { "InstanceCount": { "type": "number" }, "InstanceType": { "type": "string" } }, "required": [ "InstanceCount", "InstanceType" ], "type": "object" }, "AWS::SageMaker::InferenceExperiment.ShadowModeConfig": { "additionalProperties": false, "properties": { "ShadowModelVariants": { "items": { "$ref": "#/definitions/AWS::SageMaker::InferenceExperiment.ShadowModelVariantConfig" }, "type": "array" }, "SourceModelVariantName": { "type": "string" } }, "required": [ "ShadowModelVariants", "SourceModelVariantName" ], "type": "object" }, "AWS::SageMaker::InferenceExperiment.ShadowModelVariantConfig": { "additionalProperties": false, "properties": { "SamplingPercentage": { "type": "number" }, "ShadowModelVariantName": { "type": "string" } }, "required": [ "SamplingPercentage", "ShadowModelVariantName" ], "type": "object" }, "AWS::SageMaker::Model": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Containers": { "items": { "$ref": "#/definitions/AWS::SageMaker::Model.ContainerDefinition" }, "type": "array" }, "EnableNetworkIsolation": { "type": "boolean" }, "ExecutionRoleArn": { "type": "string" }, "InferenceExecutionConfig": { "$ref": "#/definitions/AWS::SageMaker::Model.InferenceExecutionConfig" }, "ModelName": { "type": "string" }, "PrimaryContainer": { "$ref": "#/definitions/AWS::SageMaker::Model.ContainerDefinition" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "VpcConfig": { "$ref": "#/definitions/AWS::SageMaker::Model.VpcConfig" } }, "required": [ "ExecutionRoleArn" ], "type": "object" }, "Type": { "enum": [ "AWS::SageMaker::Model" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::SageMaker::Model.ContainerDefinition": { "additionalProperties": false, "properties": { "ContainerHostname": { "type": "string" }, "Environment": { "type": "object" }, "Image": { "type": "string" }, "ImageConfig": { "$ref": "#/definitions/AWS::SageMaker::Model.ImageConfig" }, "InferenceSpecificationName": { "type": "string" }, "Mode": { "type": "string" }, "ModelDataUrl": { "type": "string" }, "ModelPackageName": { "type": "string" }, "MultiModelConfig": { "$ref": "#/definitions/AWS::SageMaker::Model.MultiModelConfig" } }, "type": "object" }, "AWS::SageMaker::Model.ImageConfig": { "additionalProperties": false, "properties": { "RepositoryAccessMode": { "type": "string" }, "RepositoryAuthConfig": { "$ref": "#/definitions/AWS::SageMaker::Model.RepositoryAuthConfig" } }, "required": [ "RepositoryAccessMode" ], "type": "object" }, "AWS::SageMaker::Model.InferenceExecutionConfig": { "additionalProperties": false, "properties": { "Mode": { "type": "string" } }, "required": [ "Mode" ], "type": "object" }, "AWS::SageMaker::Model.MultiModelConfig": { "additionalProperties": false, "properties": { "ModelCacheSetting": { "type": "string" } }, "type": "object" }, "AWS::SageMaker::Model.RepositoryAuthConfig": { "additionalProperties": false, "properties": { "RepositoryCredentialsProviderArn": { "type": "string" } }, "required": [ "RepositoryCredentialsProviderArn" ], "type": "object" }, "AWS::SageMaker::Model.VpcConfig": { "additionalProperties": false, "properties": { "SecurityGroupIds": { "items": { "type": "string" }, "type": "array" }, "Subnets": { "items": { "type": "string" }, "type": "array" } }, "required": [ "SecurityGroupIds", "Subnets" ], "type": "object" }, "AWS::SageMaker::ModelBiasJobDefinition": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "EndpointName": { "type": "string" }, "JobDefinitionName": { "type": "string" }, "JobResources": { "$ref": "#/definitions/AWS::SageMaker::ModelBiasJobDefinition.MonitoringResources" }, "ModelBiasAppSpecification": { "$ref": "#/definitions/AWS::SageMaker::ModelBiasJobDefinition.ModelBiasAppSpecification" }, "ModelBiasBaselineConfig": { "$ref": "#/definitions/AWS::SageMaker::ModelBiasJobDefinition.ModelBiasBaselineConfig" }, "ModelBiasJobInput": { "$ref": "#/definitions/AWS::SageMaker::ModelBiasJobDefinition.ModelBiasJobInput" }, "ModelBiasJobOutputConfig": { "$ref": "#/definitions/AWS::SageMaker::ModelBiasJobDefinition.MonitoringOutputConfig" }, "NetworkConfig": { "$ref": "#/definitions/AWS::SageMaker::ModelBiasJobDefinition.NetworkConfig" }, "RoleArn": { "type": "string" }, "StoppingCondition": { "$ref": "#/definitions/AWS::SageMaker::ModelBiasJobDefinition.StoppingCondition" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "JobResources", "ModelBiasAppSpecification", "ModelBiasJobInput", "ModelBiasJobOutputConfig", "RoleArn" ], "type": "object" }, "Type": { "enum": [ "AWS::SageMaker::ModelBiasJobDefinition" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::SageMaker::ModelBiasJobDefinition.BatchTransformInput": { "additionalProperties": false, "properties": { "DataCapturedDestinationS3Uri": { "type": "string" }, "DatasetFormat": { "$ref": "#/definitions/AWS::SageMaker::ModelBiasJobDefinition.DatasetFormat" }, "EndTimeOffset": { "type": "string" }, "FeaturesAttribute": { "type": "string" }, "InferenceAttribute": { "type": "string" }, "LocalPath": { "type": "string" }, "ProbabilityAttribute": { "type": "string" }, "ProbabilityThresholdAttribute": { "type": "number" }, "S3DataDistributionType": { "type": "string" }, "S3InputMode": { "type": "string" }, "StartTimeOffset": { "type": "string" } }, "required": [ "DataCapturedDestinationS3Uri", "DatasetFormat", "LocalPath" ], "type": "object" }, "AWS::SageMaker::ModelBiasJobDefinition.ClusterConfig": { "additionalProperties": false, "properties": { "InstanceCount": { "type": "number" }, "InstanceType": { "type": "string" }, "VolumeKmsKeyId": { "type": "string" }, "VolumeSizeInGB": { "type": "number" } }, "required": [ "InstanceCount", "InstanceType", "VolumeSizeInGB" ], "type": "object" }, "AWS::SageMaker::ModelBiasJobDefinition.ConstraintsResource": { "additionalProperties": false, "properties": { "S3Uri": { "type": "string" } }, "type": "object" }, "AWS::SageMaker::ModelBiasJobDefinition.Csv": { "additionalProperties": false, "properties": { "Header": { "type": "boolean" } }, "type": "object" }, "AWS::SageMaker::ModelBiasJobDefinition.DatasetFormat": { "additionalProperties": false, "properties": { "Csv": { "$ref": "#/definitions/AWS::SageMaker::ModelBiasJobDefinition.Csv" }, "Json": { "$ref": "#/definitions/AWS::SageMaker::ModelBiasJobDefinition.Json" }, "Parquet": { "type": "boolean" } }, "type": "object" }, "AWS::SageMaker::ModelBiasJobDefinition.EndpointInput": { "additionalProperties": false, "properties": { "EndTimeOffset": { "type": "string" }, "EndpointName": { "type": "string" }, "FeaturesAttribute": { "type": "string" }, "InferenceAttribute": { "type": "string" }, "LocalPath": { "type": "string" }, "ProbabilityAttribute": { "type": "string" }, "ProbabilityThresholdAttribute": { "type": "number" }, "S3DataDistributionType": { "type": "string" }, "S3InputMode": { "type": "string" }, "StartTimeOffset": { "type": "string" } }, "required": [ "EndpointName", "LocalPath" ], "type": "object" }, "AWS::SageMaker::ModelBiasJobDefinition.Json": { "additionalProperties": false, "properties": { "Line": { "type": "boolean" } }, "type": "object" }, "AWS::SageMaker::ModelBiasJobDefinition.ModelBiasAppSpecification": { "additionalProperties": false, "properties": { "ConfigUri": { "type": "string" }, "Environment": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" }, "ImageUri": { "type": "string" } }, "required": [ "ConfigUri", "ImageUri" ], "type": "object" }, "AWS::SageMaker::ModelBiasJobDefinition.ModelBiasBaselineConfig": { "additionalProperties": false, "properties": { "BaseliningJobName": { "type": "string" }, "ConstraintsResource": { "$ref": "#/definitions/AWS::SageMaker::ModelBiasJobDefinition.ConstraintsResource" } }, "type": "object" }, "AWS::SageMaker::ModelBiasJobDefinition.ModelBiasJobInput": { "additionalProperties": false, "properties": { "BatchTransformInput": { "$ref": "#/definitions/AWS::SageMaker::ModelBiasJobDefinition.BatchTransformInput" }, "EndpointInput": { "$ref": "#/definitions/AWS::SageMaker::ModelBiasJobDefinition.EndpointInput" }, "GroundTruthS3Input": { "$ref": "#/definitions/AWS::SageMaker::ModelBiasJobDefinition.MonitoringGroundTruthS3Input" } }, "required": [ "GroundTruthS3Input" ], "type": "object" }, "AWS::SageMaker::ModelBiasJobDefinition.MonitoringGroundTruthS3Input": { "additionalProperties": false, "properties": { "S3Uri": { "type": "string" } }, "required": [ "S3Uri" ], "type": "object" }, "AWS::SageMaker::ModelBiasJobDefinition.MonitoringOutput": { "additionalProperties": false, "properties": { "S3Output": { "$ref": "#/definitions/AWS::SageMaker::ModelBiasJobDefinition.S3Output" } }, "required": [ "S3Output" ], "type": "object" }, "AWS::SageMaker::ModelBiasJobDefinition.MonitoringOutputConfig": { "additionalProperties": false, "properties": { "KmsKeyId": { "type": "string" }, "MonitoringOutputs": { "items": { "$ref": "#/definitions/AWS::SageMaker::ModelBiasJobDefinition.MonitoringOutput" }, "type": "array" } }, "required": [ "MonitoringOutputs" ], "type": "object" }, "AWS::SageMaker::ModelBiasJobDefinition.MonitoringResources": { "additionalProperties": false, "properties": { "ClusterConfig": { "$ref": "#/definitions/AWS::SageMaker::ModelBiasJobDefinition.ClusterConfig" } }, "required": [ "ClusterConfig" ], "type": "object" }, "AWS::SageMaker::ModelBiasJobDefinition.NetworkConfig": { "additionalProperties": false, "properties": { "EnableInterContainerTrafficEncryption": { "type": "boolean" }, "EnableNetworkIsolation": { "type": "boolean" }, "VpcConfig": { "$ref": "#/definitions/AWS::SageMaker::ModelBiasJobDefinition.VpcConfig" } }, "type": "object" }, "AWS::SageMaker::ModelBiasJobDefinition.S3Output": { "additionalProperties": false, "properties": { "LocalPath": { "type": "string" }, "S3UploadMode": { "type": "string" }, "S3Uri": { "type": "string" } }, "required": [ "LocalPath", "S3Uri" ], "type": "object" }, "AWS::SageMaker::ModelBiasJobDefinition.StoppingCondition": { "additionalProperties": false, "properties": { "MaxRuntimeInSeconds": { "type": "number" } }, "required": [ "MaxRuntimeInSeconds" ], "type": "object" }, "AWS::SageMaker::ModelBiasJobDefinition.VpcConfig": { "additionalProperties": false, "properties": { "SecurityGroupIds": { "items": { "type": "string" }, "type": "array" }, "Subnets": { "items": { "type": "string" }, "type": "array" } }, "required": [ "SecurityGroupIds", "Subnets" ], "type": "object" }, "AWS::SageMaker::ModelCard": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Content": { "$ref": "#/definitions/AWS::SageMaker::ModelCard.Content" }, "CreatedBy": { "$ref": "#/definitions/AWS::SageMaker::ModelCard.UserContext" }, "LastModifiedBy": { "$ref": "#/definitions/AWS::SageMaker::ModelCard.UserContext" }, "ModelCardName": { "type": "string" }, "ModelCardStatus": { "type": "string" }, "SecurityConfig": { "$ref": "#/definitions/AWS::SageMaker::ModelCard.SecurityConfig" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "Content", "ModelCardName", "ModelCardStatus" ], "type": "object" }, "Type": { "enum": [ "AWS::SageMaker::ModelCard" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::SageMaker::ModelCard.AdditionalInformation": { "additionalProperties": false, "properties": { "CaveatsAndRecommendations": { "type": "string" }, "CustomDetails": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" }, "EthicalConsiderations": { "type": "string" } }, "type": "object" }, "AWS::SageMaker::ModelCard.BusinessDetails": { "additionalProperties": false, "properties": { "BusinessProblem": { "type": "string" }, "BusinessStakeholders": { "type": "string" }, "LineOfBusiness": { "type": "string" } }, "type": "object" }, "AWS::SageMaker::ModelCard.Container": { "additionalProperties": false, "properties": { "Image": { "type": "string" }, "ModelDataUrl": { "type": "string" }, "NearestModelName": { "type": "string" } }, "required": [ "Image" ], "type": "object" }, "AWS::SageMaker::ModelCard.Content": { "additionalProperties": false, "properties": { "AdditionalInformation": { "$ref": "#/definitions/AWS::SageMaker::ModelCard.AdditionalInformation" }, "BusinessDetails": { "$ref": "#/definitions/AWS::SageMaker::ModelCard.BusinessDetails" }, "EvaluationDetails": { "items": { "$ref": "#/definitions/AWS::SageMaker::ModelCard.EvaluationDetail" }, "type": "array" }, "IntendedUses": { "$ref": "#/definitions/AWS::SageMaker::ModelCard.IntendedUses" }, "ModelOverview": { "$ref": "#/definitions/AWS::SageMaker::ModelCard.ModelOverview" }, "ModelPackageDetails": { "$ref": "#/definitions/AWS::SageMaker::ModelCard.ModelPackageDetails" }, "TrainingDetails": { "$ref": "#/definitions/AWS::SageMaker::ModelCard.TrainingDetails" } }, "type": "object" }, "AWS::SageMaker::ModelCard.EvaluationDetail": { "additionalProperties": false, "properties": { "Datasets": { "items": { "type": "string" }, "type": "array" }, "EvaluationJobArn": { "type": "string" }, "EvaluationObservation": { "type": "string" }, "Metadata": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" }, "MetricGroups": { "items": { "$ref": "#/definitions/AWS::SageMaker::ModelCard.MetricGroup" }, "type": "array" }, "Name": { "type": "string" } }, "required": [ "Name" ], "type": "object" }, "AWS::SageMaker::ModelCard.Function": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "Facet": { "type": "string" }, "Function": { "type": "string" } }, "type": "object" }, "AWS::SageMaker::ModelCard.InferenceEnvironment": { "additionalProperties": false, "properties": { "ContainerImage": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::SageMaker::ModelCard.InferenceSpecification": { "additionalProperties": false, "properties": { "Containers": { "items": { "$ref": "#/definitions/AWS::SageMaker::ModelCard.Container" }, "type": "array" } }, "required": [ "Containers" ], "type": "object" }, "AWS::SageMaker::ModelCard.IntendedUses": { "additionalProperties": false, "properties": { "ExplanationsForRiskRating": { "type": "string" }, "FactorsAffectingModelEfficiency": { "type": "string" }, "IntendedUses": { "type": "string" }, "PurposeOfModel": { "type": "string" }, "RiskRating": { "type": "string" } }, "type": "object" }, "AWS::SageMaker::ModelCard.MetricDataItems": { "additionalProperties": false, "properties": { "Name": { "type": "string" }, "Notes": { "type": "string" }, "Type": { "type": "string" }, "Value": { "type": "object" }, "XAxisName": { "items": { "type": "string" }, "type": "array" }, "YAxisName": { "items": { "type": "string" }, "type": "array" } }, "required": [ "Name", "Type", "Value" ], "type": "object" }, "AWS::SageMaker::ModelCard.MetricGroup": { "additionalProperties": false, "properties": { "MetricData": { "items": { "$ref": "#/definitions/AWS::SageMaker::ModelCard.MetricDataItems" }, "type": "array" }, "Name": { "type": "string" } }, "required": [ "MetricData", "Name" ], "type": "object" }, "AWS::SageMaker::ModelCard.ModelOverview": { "additionalProperties": false, "properties": { "AlgorithmType": { "type": "string" }, "InferenceEnvironment": { "$ref": "#/definitions/AWS::SageMaker::ModelCard.InferenceEnvironment" }, "ModelArtifact": { "items": { "type": "string" }, "type": "array" }, "ModelCreator": { "type": "string" }, "ModelDescription": { "type": "string" }, "ModelId": { "type": "string" }, "ModelName": { "type": "string" }, "ModelOwner": { "type": "string" }, "ModelVersion": { "type": "number" }, "ProblemType": { "type": "string" } }, "type": "object" }, "AWS::SageMaker::ModelCard.ModelPackageCreator": { "additionalProperties": false, "properties": { "UserProfileName": { "type": "string" } }, "type": "object" }, "AWS::SageMaker::ModelCard.ModelPackageDetails": { "additionalProperties": false, "properties": { "ApprovalDescription": { "type": "string" }, "CreatedBy": { "$ref": "#/definitions/AWS::SageMaker::ModelCard.ModelPackageCreator" }, "Domain": { "type": "string" }, "InferenceSpecification": { "$ref": "#/definitions/AWS::SageMaker::ModelCard.InferenceSpecification" }, "ModelApprovalStatus": { "type": "string" }, "ModelPackageArn": { "type": "string" }, "ModelPackageDescription": { "type": "string" }, "ModelPackageGroupName": { "type": "string" }, "ModelPackageName": { "type": "string" }, "ModelPackageStatus": { "type": "string" }, "ModelPackageVersion": { "type": "number" }, "SourceAlgorithms": { "items": { "$ref": "#/definitions/AWS::SageMaker::ModelCard.SourceAlgorithm" }, "type": "array" }, "Task": { "type": "string" } }, "type": "object" }, "AWS::SageMaker::ModelCard.ObjectiveFunction": { "additionalProperties": false, "properties": { "Function": { "$ref": "#/definitions/AWS::SageMaker::ModelCard.Function" }, "Notes": { "type": "string" } }, "type": "object" }, "AWS::SageMaker::ModelCard.SecurityConfig": { "additionalProperties": false, "properties": { "KmsKeyId": { "type": "string" } }, "type": "object" }, "AWS::SageMaker::ModelCard.SourceAlgorithm": { "additionalProperties": false, "properties": { "AlgorithmName": { "type": "string" }, "ModelDataUrl": { "type": "string" } }, "required": [ "AlgorithmName" ], "type": "object" }, "AWS::SageMaker::ModelCard.TrainingDetails": { "additionalProperties": false, "properties": { "ObjectiveFunction": { "$ref": "#/definitions/AWS::SageMaker::ModelCard.ObjectiveFunction" }, "TrainingJobDetails": { "$ref": "#/definitions/AWS::SageMaker::ModelCard.TrainingJobDetails" }, "TrainingObservations": { "type": "string" } }, "type": "object" }, "AWS::SageMaker::ModelCard.TrainingEnvironment": { "additionalProperties": false, "properties": { "ContainerImage": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::SageMaker::ModelCard.TrainingHyperParameter": { "additionalProperties": false, "properties": { "Name": { "type": "string" }, "Value": { "type": "string" } }, "required": [ "Name", "Value" ], "type": "object" }, "AWS::SageMaker::ModelCard.TrainingJobDetails": { "additionalProperties": false, "properties": { "HyperParameters": { "items": { "$ref": "#/definitions/AWS::SageMaker::ModelCard.TrainingHyperParameter" }, "type": "array" }, "TrainingArn": { "type": "string" }, "TrainingDatasets": { "items": { "type": "string" }, "type": "array" }, "TrainingEnvironment": { "$ref": "#/definitions/AWS::SageMaker::ModelCard.TrainingEnvironment" }, "TrainingMetrics": { "items": { "$ref": "#/definitions/AWS::SageMaker::ModelCard.TrainingMetric" }, "type": "array" }, "UserProvidedHyperParameters": { "items": { "$ref": "#/definitions/AWS::SageMaker::ModelCard.TrainingHyperParameter" }, "type": "array" }, "UserProvidedTrainingMetrics": { "items": { "$ref": "#/definitions/AWS::SageMaker::ModelCard.TrainingMetric" }, "type": "array" } }, "type": "object" }, "AWS::SageMaker::ModelCard.TrainingMetric": { "additionalProperties": false, "properties": { "Name": { "type": "string" }, "Notes": { "type": "string" }, "Value": { "type": "number" } }, "required": [ "Name", "Value" ], "type": "object" }, "AWS::SageMaker::ModelCard.UserContext": { "additionalProperties": false, "properties": { "DomainId": { "type": "string" }, "UserProfileArn": { "type": "string" }, "UserProfileName": { "type": "string" } }, "type": "object" }, "AWS::SageMaker::ModelExplainabilityJobDefinition": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "EndpointName": { "type": "string" }, "JobDefinitionName": { "type": "string" }, "JobResources": { "$ref": "#/definitions/AWS::SageMaker::ModelExplainabilityJobDefinition.MonitoringResources" }, "ModelExplainabilityAppSpecification": { "$ref": "#/definitions/AWS::SageMaker::ModelExplainabilityJobDefinition.ModelExplainabilityAppSpecification" }, "ModelExplainabilityBaselineConfig": { "$ref": "#/definitions/AWS::SageMaker::ModelExplainabilityJobDefinition.ModelExplainabilityBaselineConfig" }, "ModelExplainabilityJobInput": { "$ref": "#/definitions/AWS::SageMaker::ModelExplainabilityJobDefinition.ModelExplainabilityJobInput" }, "ModelExplainabilityJobOutputConfig": { "$ref": "#/definitions/AWS::SageMaker::ModelExplainabilityJobDefinition.MonitoringOutputConfig" }, "NetworkConfig": { "$ref": "#/definitions/AWS::SageMaker::ModelExplainabilityJobDefinition.NetworkConfig" }, "RoleArn": { "type": "string" }, "StoppingCondition": { "$ref": "#/definitions/AWS::SageMaker::ModelExplainabilityJobDefinition.StoppingCondition" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "JobResources", "ModelExplainabilityAppSpecification", "ModelExplainabilityJobInput", "ModelExplainabilityJobOutputConfig", "RoleArn" ], "type": "object" }, "Type": { "enum": [ "AWS::SageMaker::ModelExplainabilityJobDefinition" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::SageMaker::ModelExplainabilityJobDefinition.BatchTransformInput": { "additionalProperties": false, "properties": { "DataCapturedDestinationS3Uri": { "type": "string" }, "DatasetFormat": { "$ref": "#/definitions/AWS::SageMaker::ModelExplainabilityJobDefinition.DatasetFormat" }, "FeaturesAttribute": { "type": "string" }, "InferenceAttribute": { "type": "string" }, "LocalPath": { "type": "string" }, "ProbabilityAttribute": { "type": "string" }, "S3DataDistributionType": { "type": "string" }, "S3InputMode": { "type": "string" } }, "required": [ "DataCapturedDestinationS3Uri", "DatasetFormat", "LocalPath" ], "type": "object" }, "AWS::SageMaker::ModelExplainabilityJobDefinition.ClusterConfig": { "additionalProperties": false, "properties": { "InstanceCount": { "type": "number" }, "InstanceType": { "type": "string" }, "VolumeKmsKeyId": { "type": "string" }, "VolumeSizeInGB": { "type": "number" } }, "required": [ "InstanceCount", "InstanceType", "VolumeSizeInGB" ], "type": "object" }, "AWS::SageMaker::ModelExplainabilityJobDefinition.ConstraintsResource": { "additionalProperties": false, "properties": { "S3Uri": { "type": "string" } }, "type": "object" }, "AWS::SageMaker::ModelExplainabilityJobDefinition.Csv": { "additionalProperties": false, "properties": { "Header": { "type": "boolean" } }, "type": "object" }, "AWS::SageMaker::ModelExplainabilityJobDefinition.DatasetFormat": { "additionalProperties": false, "properties": { "Csv": { "$ref": "#/definitions/AWS::SageMaker::ModelExplainabilityJobDefinition.Csv" }, "Json": { "$ref": "#/definitions/AWS::SageMaker::ModelExplainabilityJobDefinition.Json" }, "Parquet": { "type": "boolean" } }, "type": "object" }, "AWS::SageMaker::ModelExplainabilityJobDefinition.EndpointInput": { "additionalProperties": false, "properties": { "EndpointName": { "type": "string" }, "FeaturesAttribute": { "type": "string" }, "InferenceAttribute": { "type": "string" }, "LocalPath": { "type": "string" }, "ProbabilityAttribute": { "type": "string" }, "S3DataDistributionType": { "type": "string" }, "S3InputMode": { "type": "string" } }, "required": [ "EndpointName", "LocalPath" ], "type": "object" }, "AWS::SageMaker::ModelExplainabilityJobDefinition.Json": { "additionalProperties": false, "properties": { "Line": { "type": "boolean" } }, "type": "object" }, "AWS::SageMaker::ModelExplainabilityJobDefinition.ModelExplainabilityAppSpecification": { "additionalProperties": false, "properties": { "ConfigUri": { "type": "string" }, "Environment": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" }, "ImageUri": { "type": "string" } }, "required": [ "ConfigUri", "ImageUri" ], "type": "object" }, "AWS::SageMaker::ModelExplainabilityJobDefinition.ModelExplainabilityBaselineConfig": { "additionalProperties": false, "properties": { "BaseliningJobName": { "type": "string" }, "ConstraintsResource": { "$ref": "#/definitions/AWS::SageMaker::ModelExplainabilityJobDefinition.ConstraintsResource" } }, "type": "object" }, "AWS::SageMaker::ModelExplainabilityJobDefinition.ModelExplainabilityJobInput": { "additionalProperties": false, "properties": { "BatchTransformInput": { "$ref": "#/definitions/AWS::SageMaker::ModelExplainabilityJobDefinition.BatchTransformInput" }, "EndpointInput": { "$ref": "#/definitions/AWS::SageMaker::ModelExplainabilityJobDefinition.EndpointInput" } }, "type": "object" }, "AWS::SageMaker::ModelExplainabilityJobDefinition.MonitoringOutput": { "additionalProperties": false, "properties": { "S3Output": { "$ref": "#/definitions/AWS::SageMaker::ModelExplainabilityJobDefinition.S3Output" } }, "required": [ "S3Output" ], "type": "object" }, "AWS::SageMaker::ModelExplainabilityJobDefinition.MonitoringOutputConfig": { "additionalProperties": false, "properties": { "KmsKeyId": { "type": "string" }, "MonitoringOutputs": { "items": { "$ref": "#/definitions/AWS::SageMaker::ModelExplainabilityJobDefinition.MonitoringOutput" }, "type": "array" } }, "required": [ "MonitoringOutputs" ], "type": "object" }, "AWS::SageMaker::ModelExplainabilityJobDefinition.MonitoringResources": { "additionalProperties": false, "properties": { "ClusterConfig": { "$ref": "#/definitions/AWS::SageMaker::ModelExplainabilityJobDefinition.ClusterConfig" } }, "required": [ "ClusterConfig" ], "type": "object" }, "AWS::SageMaker::ModelExplainabilityJobDefinition.NetworkConfig": { "additionalProperties": false, "properties": { "EnableInterContainerTrafficEncryption": { "type": "boolean" }, "EnableNetworkIsolation": { "type": "boolean" }, "VpcConfig": { "$ref": "#/definitions/AWS::SageMaker::ModelExplainabilityJobDefinition.VpcConfig" } }, "type": "object" }, "AWS::SageMaker::ModelExplainabilityJobDefinition.S3Output": { "additionalProperties": false, "properties": { "LocalPath": { "type": "string" }, "S3UploadMode": { "type": "string" }, "S3Uri": { "type": "string" } }, "required": [ "LocalPath", "S3Uri" ], "type": "object" }, "AWS::SageMaker::ModelExplainabilityJobDefinition.StoppingCondition": { "additionalProperties": false, "properties": { "MaxRuntimeInSeconds": { "type": "number" } }, "required": [ "MaxRuntimeInSeconds" ], "type": "object" }, "AWS::SageMaker::ModelExplainabilityJobDefinition.VpcConfig": { "additionalProperties": false, "properties": { "SecurityGroupIds": { "items": { "type": "string" }, "type": "array" }, "Subnets": { "items": { "type": "string" }, "type": "array" } }, "required": [ "SecurityGroupIds", "Subnets" ], "type": "object" }, "AWS::SageMaker::ModelPackage": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AdditionalInferenceSpecifications": { "items": { "$ref": "#/definitions/AWS::SageMaker::ModelPackage.AdditionalInferenceSpecificationDefinition" }, "type": "array" }, "AdditionalInferenceSpecificationsToAdd": { "items": { "$ref": "#/definitions/AWS::SageMaker::ModelPackage.AdditionalInferenceSpecificationDefinition" }, "type": "array" }, "ApprovalDescription": { "type": "string" }, "CertifyForMarketplace": { "type": "boolean" }, "ClientToken": { "type": "string" }, "CustomerMetadataProperties": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" }, "Domain": { "type": "string" }, "DriftCheckBaselines": { "$ref": "#/definitions/AWS::SageMaker::ModelPackage.DriftCheckBaselines" }, "InferenceSpecification": { "$ref": "#/definitions/AWS::SageMaker::ModelPackage.InferenceSpecification" }, "LastModifiedTime": { "type": "string" }, "MetadataProperties": { "$ref": "#/definitions/AWS::SageMaker::ModelPackage.MetadataProperties" }, "ModelApprovalStatus": { "type": "string" }, "ModelMetrics": { "$ref": "#/definitions/AWS::SageMaker::ModelPackage.ModelMetrics" }, "ModelPackageDescription": { "type": "string" }, "ModelPackageGroupName": { "type": "string" }, "ModelPackageName": { "type": "string" }, "ModelPackageStatusDetails": { "$ref": "#/definitions/AWS::SageMaker::ModelPackage.ModelPackageStatusDetails" }, "ModelPackageVersion": { "type": "number" }, "SamplePayloadUrl": { "type": "string" }, "SourceAlgorithmSpecification": { "$ref": "#/definitions/AWS::SageMaker::ModelPackage.SourceAlgorithmSpecification" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "Task": { "type": "string" }, "ValidationSpecification": { "$ref": "#/definitions/AWS::SageMaker::ModelPackage.ValidationSpecification" } }, "type": "object" }, "Type": { "enum": [ "AWS::SageMaker::ModelPackage" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::SageMaker::ModelPackage.AdditionalInferenceSpecificationDefinition": { "additionalProperties": false, "properties": { "Containers": { "items": { "$ref": "#/definitions/AWS::SageMaker::ModelPackage.ModelPackageContainerDefinition" }, "type": "array" }, "Description": { "type": "string" }, "Name": { "type": "string" }, "SupportedContentTypes": { "items": { "type": "string" }, "type": "array" }, "SupportedRealtimeInferenceInstanceTypes": { "items": { "type": "string" }, "type": "array" }, "SupportedResponseMIMETypes": { "items": { "type": "string" }, "type": "array" }, "SupportedTransformInstanceTypes": { "items": { "type": "string" }, "type": "array" } }, "required": [ "Containers", "Name" ], "type": "object" }, "AWS::SageMaker::ModelPackage.Bias": { "additionalProperties": false, "properties": { "PostTrainingReport": { "$ref": "#/definitions/AWS::SageMaker::ModelPackage.MetricsSource" }, "PreTrainingReport": { "$ref": "#/definitions/AWS::SageMaker::ModelPackage.MetricsSource" }, "Report": { "$ref": "#/definitions/AWS::SageMaker::ModelPackage.MetricsSource" } }, "type": "object" }, "AWS::SageMaker::ModelPackage.DataSource": { "additionalProperties": false, "properties": { "S3DataSource": { "$ref": "#/definitions/AWS::SageMaker::ModelPackage.S3DataSource" } }, "required": [ "S3DataSource" ], "type": "object" }, "AWS::SageMaker::ModelPackage.DriftCheckBaselines": { "additionalProperties": false, "properties": { "Bias": { "$ref": "#/definitions/AWS::SageMaker::ModelPackage.DriftCheckBias" }, "Explainability": { "$ref": "#/definitions/AWS::SageMaker::ModelPackage.DriftCheckExplainability" }, "ModelDataQuality": { "$ref": "#/definitions/AWS::SageMaker::ModelPackage.DriftCheckModelDataQuality" }, "ModelQuality": { "$ref": "#/definitions/AWS::SageMaker::ModelPackage.DriftCheckModelQuality" } }, "type": "object" }, "AWS::SageMaker::ModelPackage.DriftCheckBias": { "additionalProperties": false, "properties": { "ConfigFile": { "$ref": "#/definitions/AWS::SageMaker::ModelPackage.FileSource" }, "PostTrainingConstraints": { "$ref": "#/definitions/AWS::SageMaker::ModelPackage.MetricsSource" }, "PreTrainingConstraints": { "$ref": "#/definitions/AWS::SageMaker::ModelPackage.MetricsSource" } }, "type": "object" }, "AWS::SageMaker::ModelPackage.DriftCheckExplainability": { "additionalProperties": false, "properties": { "ConfigFile": { "$ref": "#/definitions/AWS::SageMaker::ModelPackage.FileSource" }, "Constraints": { "$ref": "#/definitions/AWS::SageMaker::ModelPackage.MetricsSource" } }, "type": "object" }, "AWS::SageMaker::ModelPackage.DriftCheckModelDataQuality": { "additionalProperties": false, "properties": { "Constraints": { "$ref": "#/definitions/AWS::SageMaker::ModelPackage.MetricsSource" }, "Statistics": { "$ref": "#/definitions/AWS::SageMaker::ModelPackage.MetricsSource" } }, "type": "object" }, "AWS::SageMaker::ModelPackage.DriftCheckModelQuality": { "additionalProperties": false, "properties": { "Constraints": { "$ref": "#/definitions/AWS::SageMaker::ModelPackage.MetricsSource" }, "Statistics": { "$ref": "#/definitions/AWS::SageMaker::ModelPackage.MetricsSource" } }, "type": "object" }, "AWS::SageMaker::ModelPackage.Explainability": { "additionalProperties": false, "properties": { "Report": { "$ref": "#/definitions/AWS::SageMaker::ModelPackage.MetricsSource" } }, "type": "object" }, "AWS::SageMaker::ModelPackage.FileSource": { "additionalProperties": false, "properties": { "ContentDigest": { "type": "string" }, "ContentType": { "type": "string" }, "S3Uri": { "type": "string" } }, "required": [ "S3Uri" ], "type": "object" }, "AWS::SageMaker::ModelPackage.InferenceSpecification": { "additionalProperties": false, "properties": { "Containers": { "items": { "$ref": "#/definitions/AWS::SageMaker::ModelPackage.ModelPackageContainerDefinition" }, "type": "array" }, "SupportedContentTypes": { "items": { "type": "string" }, "type": "array" }, "SupportedRealtimeInferenceInstanceTypes": { "items": { "type": "string" }, "type": "array" }, "SupportedResponseMIMETypes": { "items": { "type": "string" }, "type": "array" }, "SupportedTransformInstanceTypes": { "items": { "type": "string" }, "type": "array" } }, "required": [ "Containers", "SupportedContentTypes", "SupportedResponseMIMETypes" ], "type": "object" }, "AWS::SageMaker::ModelPackage.MetadataProperties": { "additionalProperties": false, "properties": { "CommitId": { "type": "string" }, "GeneratedBy": { "type": "string" }, "ProjectId": { "type": "string" }, "Repository": { "type": "string" } }, "type": "object" }, "AWS::SageMaker::ModelPackage.MetricsSource": { "additionalProperties": false, "properties": { "ContentDigest": { "type": "string" }, "ContentType": { "type": "string" }, "S3Uri": { "type": "string" } }, "required": [ "ContentType", "S3Uri" ], "type": "object" }, "AWS::SageMaker::ModelPackage.ModelDataQuality": { "additionalProperties": false, "properties": { "Constraints": { "$ref": "#/definitions/AWS::SageMaker::ModelPackage.MetricsSource" }, "Statistics": { "$ref": "#/definitions/AWS::SageMaker::ModelPackage.MetricsSource" } }, "type": "object" }, "AWS::SageMaker::ModelPackage.ModelInput": { "additionalProperties": false, "properties": { "DataInputConfig": { "type": "string" } }, "required": [ "DataInputConfig" ], "type": "object" }, "AWS::SageMaker::ModelPackage.ModelMetrics": { "additionalProperties": false, "properties": { "Bias": { "$ref": "#/definitions/AWS::SageMaker::ModelPackage.Bias" }, "Explainability": { "$ref": "#/definitions/AWS::SageMaker::ModelPackage.Explainability" }, "ModelDataQuality": { "$ref": "#/definitions/AWS::SageMaker::ModelPackage.ModelDataQuality" }, "ModelQuality": { "$ref": "#/definitions/AWS::SageMaker::ModelPackage.ModelQuality" } }, "type": "object" }, "AWS::SageMaker::ModelPackage.ModelPackageContainerDefinition": { "additionalProperties": false, "properties": { "ContainerHostname": { "type": "string" }, "Environment": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" }, "Framework": { "type": "string" }, "FrameworkVersion": { "type": "string" }, "Image": { "type": "string" }, "ImageDigest": { "type": "string" }, "ModelDataUrl": { "type": "string" }, "ModelInput": { "$ref": "#/definitions/AWS::SageMaker::ModelPackage.ModelInput" }, "NearestModelName": { "type": "string" } }, "required": [ "Image" ], "type": "object" }, "AWS::SageMaker::ModelPackage.ModelPackageStatusDetails": { "additionalProperties": false, "properties": { "ValidationStatuses": { "items": { "$ref": "#/definitions/AWS::SageMaker::ModelPackage.ModelPackageStatusItem" }, "type": "array" } }, "type": "object" }, "AWS::SageMaker::ModelPackage.ModelPackageStatusItem": { "additionalProperties": false, "properties": { "FailureReason": { "type": "string" }, "Name": { "type": "string" }, "Status": { "type": "string" } }, "required": [ "Name", "Status" ], "type": "object" }, "AWS::SageMaker::ModelPackage.ModelQuality": { "additionalProperties": false, "properties": { "Constraints": { "$ref": "#/definitions/AWS::SageMaker::ModelPackage.MetricsSource" }, "Statistics": { "$ref": "#/definitions/AWS::SageMaker::ModelPackage.MetricsSource" } }, "type": "object" }, "AWS::SageMaker::ModelPackage.S3DataSource": { "additionalProperties": false, "properties": { "S3DataType": { "type": "string" }, "S3Uri": { "type": "string" } }, "required": [ "S3DataType", "S3Uri" ], "type": "object" }, "AWS::SageMaker::ModelPackage.SourceAlgorithm": { "additionalProperties": false, "properties": { "AlgorithmName": { "type": "string" }, "ModelDataUrl": { "type": "string" } }, "required": [ "AlgorithmName" ], "type": "object" }, "AWS::SageMaker::ModelPackage.SourceAlgorithmSpecification": { "additionalProperties": false, "properties": { "SourceAlgorithms": { "items": { "$ref": "#/definitions/AWS::SageMaker::ModelPackage.SourceAlgorithm" }, "type": "array" } }, "required": [ "SourceAlgorithms" ], "type": "object" }, "AWS::SageMaker::ModelPackage.TransformInput": { "additionalProperties": false, "properties": { "CompressionType": { "type": "string" }, "ContentType": { "type": "string" }, "DataSource": { "$ref": "#/definitions/AWS::SageMaker::ModelPackage.DataSource" }, "SplitType": { "type": "string" } }, "required": [ "DataSource" ], "type": "object" }, "AWS::SageMaker::ModelPackage.TransformJobDefinition": { "additionalProperties": false, "properties": { "BatchStrategy": { "type": "string" }, "Environment": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" }, "MaxConcurrentTransforms": { "type": "number" }, "MaxPayloadInMB": { "type": "number" }, "TransformInput": { "$ref": "#/definitions/AWS::SageMaker::ModelPackage.TransformInput" }, "TransformOutput": { "$ref": "#/definitions/AWS::SageMaker::ModelPackage.TransformOutput" }, "TransformResources": { "$ref": "#/definitions/AWS::SageMaker::ModelPackage.TransformResources" } }, "required": [ "TransformInput", "TransformOutput", "TransformResources" ], "type": "object" }, "AWS::SageMaker::ModelPackage.TransformOutput": { "additionalProperties": false, "properties": { "Accept": { "type": "string" }, "AssembleWith": { "type": "string" }, "KmsKeyId": { "type": "string" }, "S3OutputPath": { "type": "string" } }, "required": [ "S3OutputPath" ], "type": "object" }, "AWS::SageMaker::ModelPackage.TransformResources": { "additionalProperties": false, "properties": { "InstanceCount": { "type": "number" }, "InstanceType": { "type": "string" }, "VolumeKmsKeyId": { "type": "string" } }, "required": [ "InstanceCount", "InstanceType" ], "type": "object" }, "AWS::SageMaker::ModelPackage.ValidationProfile": { "additionalProperties": false, "properties": { "ProfileName": { "type": "string" }, "TransformJobDefinition": { "$ref": "#/definitions/AWS::SageMaker::ModelPackage.TransformJobDefinition" } }, "required": [ "ProfileName", "TransformJobDefinition" ], "type": "object" }, "AWS::SageMaker::ModelPackage.ValidationSpecification": { "additionalProperties": false, "properties": { "ValidationProfiles": { "items": { "$ref": "#/definitions/AWS::SageMaker::ModelPackage.ValidationProfile" }, "type": "array" }, "ValidationRole": { "type": "string" } }, "required": [ "ValidationProfiles", "ValidationRole" ], "type": "object" }, "AWS::SageMaker::ModelPackageGroup": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ModelPackageGroupDescription": { "type": "string" }, "ModelPackageGroupName": { "type": "string" }, "ModelPackageGroupPolicy": { "type": "object" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "ModelPackageGroupName" ], "type": "object" }, "Type": { "enum": [ "AWS::SageMaker::ModelPackageGroup" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::SageMaker::ModelQualityJobDefinition": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "EndpointName": { "type": "string" }, "JobDefinitionName": { "type": "string" }, "JobResources": { "$ref": "#/definitions/AWS::SageMaker::ModelQualityJobDefinition.MonitoringResources" }, "ModelQualityAppSpecification": { "$ref": "#/definitions/AWS::SageMaker::ModelQualityJobDefinition.ModelQualityAppSpecification" }, "ModelQualityBaselineConfig": { "$ref": "#/definitions/AWS::SageMaker::ModelQualityJobDefinition.ModelQualityBaselineConfig" }, "ModelQualityJobInput": { "$ref": "#/definitions/AWS::SageMaker::ModelQualityJobDefinition.ModelQualityJobInput" }, "ModelQualityJobOutputConfig": { "$ref": "#/definitions/AWS::SageMaker::ModelQualityJobDefinition.MonitoringOutputConfig" }, "NetworkConfig": { "$ref": "#/definitions/AWS::SageMaker::ModelQualityJobDefinition.NetworkConfig" }, "RoleArn": { "type": "string" }, "StoppingCondition": { "$ref": "#/definitions/AWS::SageMaker::ModelQualityJobDefinition.StoppingCondition" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "JobResources", "ModelQualityAppSpecification", "ModelQualityJobInput", "ModelQualityJobOutputConfig", "RoleArn" ], "type": "object" }, "Type": { "enum": [ "AWS::SageMaker::ModelQualityJobDefinition" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::SageMaker::ModelQualityJobDefinition.BatchTransformInput": { "additionalProperties": false, "properties": { "DataCapturedDestinationS3Uri": { "type": "string" }, "DatasetFormat": { "$ref": "#/definitions/AWS::SageMaker::ModelQualityJobDefinition.DatasetFormat" }, "EndTimeOffset": { "type": "string" }, "InferenceAttribute": { "type": "string" }, "LocalPath": { "type": "string" }, "ProbabilityAttribute": { "type": "string" }, "ProbabilityThresholdAttribute": { "type": "number" }, "S3DataDistributionType": { "type": "string" }, "S3InputMode": { "type": "string" }, "StartTimeOffset": { "type": "string" } }, "required": [ "DataCapturedDestinationS3Uri", "DatasetFormat", "LocalPath" ], "type": "object" }, "AWS::SageMaker::ModelQualityJobDefinition.ClusterConfig": { "additionalProperties": false, "properties": { "InstanceCount": { "type": "number" }, "InstanceType": { "type": "string" }, "VolumeKmsKeyId": { "type": "string" }, "VolumeSizeInGB": { "type": "number" } }, "required": [ "InstanceCount", "InstanceType", "VolumeSizeInGB" ], "type": "object" }, "AWS::SageMaker::ModelQualityJobDefinition.ConstraintsResource": { "additionalProperties": false, "properties": { "S3Uri": { "type": "string" } }, "type": "object" }, "AWS::SageMaker::ModelQualityJobDefinition.Csv": { "additionalProperties": false, "properties": { "Header": { "type": "boolean" } }, "type": "object" }, "AWS::SageMaker::ModelQualityJobDefinition.DatasetFormat": { "additionalProperties": false, "properties": { "Csv": { "$ref": "#/definitions/AWS::SageMaker::ModelQualityJobDefinition.Csv" }, "Json": { "$ref": "#/definitions/AWS::SageMaker::ModelQualityJobDefinition.Json" }, "Parquet": { "type": "boolean" } }, "type": "object" }, "AWS::SageMaker::ModelQualityJobDefinition.EndpointInput": { "additionalProperties": false, "properties": { "EndTimeOffset": { "type": "string" }, "EndpointName": { "type": "string" }, "InferenceAttribute": { "type": "string" }, "LocalPath": { "type": "string" }, "ProbabilityAttribute": { "type": "string" }, "ProbabilityThresholdAttribute": { "type": "number" }, "S3DataDistributionType": { "type": "string" }, "S3InputMode": { "type": "string" }, "StartTimeOffset": { "type": "string" } }, "required": [ "EndpointName", "LocalPath" ], "type": "object" }, "AWS::SageMaker::ModelQualityJobDefinition.Json": { "additionalProperties": false, "properties": { "Line": { "type": "boolean" } }, "type": "object" }, "AWS::SageMaker::ModelQualityJobDefinition.ModelQualityAppSpecification": { "additionalProperties": false, "properties": { "ContainerArguments": { "items": { "type": "string" }, "type": "array" }, "ContainerEntrypoint": { "items": { "type": "string" }, "type": "array" }, "Environment": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" }, "ImageUri": { "type": "string" }, "PostAnalyticsProcessorSourceUri": { "type": "string" }, "ProblemType": { "type": "string" }, "RecordPreprocessorSourceUri": { "type": "string" } }, "required": [ "ImageUri", "ProblemType" ], "type": "object" }, "AWS::SageMaker::ModelQualityJobDefinition.ModelQualityBaselineConfig": { "additionalProperties": false, "properties": { "BaseliningJobName": { "type": "string" }, "ConstraintsResource": { "$ref": "#/definitions/AWS::SageMaker::ModelQualityJobDefinition.ConstraintsResource" } }, "type": "object" }, "AWS::SageMaker::ModelQualityJobDefinition.ModelQualityJobInput": { "additionalProperties": false, "properties": { "BatchTransformInput": { "$ref": "#/definitions/AWS::SageMaker::ModelQualityJobDefinition.BatchTransformInput" }, "EndpointInput": { "$ref": "#/definitions/AWS::SageMaker::ModelQualityJobDefinition.EndpointInput" }, "GroundTruthS3Input": { "$ref": "#/definitions/AWS::SageMaker::ModelQualityJobDefinition.MonitoringGroundTruthS3Input" } }, "required": [ "GroundTruthS3Input" ], "type": "object" }, "AWS::SageMaker::ModelQualityJobDefinition.MonitoringGroundTruthS3Input": { "additionalProperties": false, "properties": { "S3Uri": { "type": "string" } }, "required": [ "S3Uri" ], "type": "object" }, "AWS::SageMaker::ModelQualityJobDefinition.MonitoringOutput": { "additionalProperties": false, "properties": { "S3Output": { "$ref": "#/definitions/AWS::SageMaker::ModelQualityJobDefinition.S3Output" } }, "required": [ "S3Output" ], "type": "object" }, "AWS::SageMaker::ModelQualityJobDefinition.MonitoringOutputConfig": { "additionalProperties": false, "properties": { "KmsKeyId": { "type": "string" }, "MonitoringOutputs": { "items": { "$ref": "#/definitions/AWS::SageMaker::ModelQualityJobDefinition.MonitoringOutput" }, "type": "array" } }, "required": [ "MonitoringOutputs" ], "type": "object" }, "AWS::SageMaker::ModelQualityJobDefinition.MonitoringResources": { "additionalProperties": false, "properties": { "ClusterConfig": { "$ref": "#/definitions/AWS::SageMaker::ModelQualityJobDefinition.ClusterConfig" } }, "required": [ "ClusterConfig" ], "type": "object" }, "AWS::SageMaker::ModelQualityJobDefinition.NetworkConfig": { "additionalProperties": false, "properties": { "EnableInterContainerTrafficEncryption": { "type": "boolean" }, "EnableNetworkIsolation": { "type": "boolean" }, "VpcConfig": { "$ref": "#/definitions/AWS::SageMaker::ModelQualityJobDefinition.VpcConfig" } }, "type": "object" }, "AWS::SageMaker::ModelQualityJobDefinition.S3Output": { "additionalProperties": false, "properties": { "LocalPath": { "type": "string" }, "S3UploadMode": { "type": "string" }, "S3Uri": { "type": "string" } }, "required": [ "LocalPath", "S3Uri" ], "type": "object" }, "AWS::SageMaker::ModelQualityJobDefinition.StoppingCondition": { "additionalProperties": false, "properties": { "MaxRuntimeInSeconds": { "type": "number" } }, "required": [ "MaxRuntimeInSeconds" ], "type": "object" }, "AWS::SageMaker::ModelQualityJobDefinition.VpcConfig": { "additionalProperties": false, "properties": { "SecurityGroupIds": { "items": { "type": "string" }, "type": "array" }, "Subnets": { "items": { "type": "string" }, "type": "array" } }, "required": [ "SecurityGroupIds", "Subnets" ], "type": "object" }, "AWS::SageMaker::MonitoringSchedule": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "EndpointName": { "type": "string" }, "FailureReason": { "type": "string" }, "LastMonitoringExecutionSummary": { "$ref": "#/definitions/AWS::SageMaker::MonitoringSchedule.MonitoringExecutionSummary" }, "MonitoringScheduleConfig": { "$ref": "#/definitions/AWS::SageMaker::MonitoringSchedule.MonitoringScheduleConfig" }, "MonitoringScheduleName": { "type": "string" }, "MonitoringScheduleStatus": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "MonitoringScheduleConfig", "MonitoringScheduleName" ], "type": "object" }, "Type": { "enum": [ "AWS::SageMaker::MonitoringSchedule" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::SageMaker::MonitoringSchedule.BaselineConfig": { "additionalProperties": false, "properties": { "ConstraintsResource": { "$ref": "#/definitions/AWS::SageMaker::MonitoringSchedule.ConstraintsResource" }, "StatisticsResource": { "$ref": "#/definitions/AWS::SageMaker::MonitoringSchedule.StatisticsResource" } }, "type": "object" }, "AWS::SageMaker::MonitoringSchedule.BatchTransformInput": { "additionalProperties": false, "properties": { "DataCapturedDestinationS3Uri": { "type": "string" }, "DatasetFormat": { "$ref": "#/definitions/AWS::SageMaker::MonitoringSchedule.DatasetFormat" }, "LocalPath": { "type": "string" }, "S3DataDistributionType": { "type": "string" }, "S3InputMode": { "type": "string" } }, "required": [ "DataCapturedDestinationS3Uri", "DatasetFormat", "LocalPath" ], "type": "object" }, "AWS::SageMaker::MonitoringSchedule.ClusterConfig": { "additionalProperties": false, "properties": { "InstanceCount": { "type": "number" }, "InstanceType": { "type": "string" }, "VolumeKmsKeyId": { "type": "string" }, "VolumeSizeInGB": { "type": "number" } }, "required": [ "InstanceCount", "InstanceType", "VolumeSizeInGB" ], "type": "object" }, "AWS::SageMaker::MonitoringSchedule.ConstraintsResource": { "additionalProperties": false, "properties": { "S3Uri": { "type": "string" } }, "type": "object" }, "AWS::SageMaker::MonitoringSchedule.Csv": { "additionalProperties": false, "properties": { "Header": { "type": "boolean" } }, "type": "object" }, "AWS::SageMaker::MonitoringSchedule.DatasetFormat": { "additionalProperties": false, "properties": { "Csv": { "$ref": "#/definitions/AWS::SageMaker::MonitoringSchedule.Csv" }, "Json": { "$ref": "#/definitions/AWS::SageMaker::MonitoringSchedule.Json" }, "Parquet": { "type": "boolean" } }, "type": "object" }, "AWS::SageMaker::MonitoringSchedule.EndpointInput": { "additionalProperties": false, "properties": { "EndpointName": { "type": "string" }, "LocalPath": { "type": "string" }, "S3DataDistributionType": { "type": "string" }, "S3InputMode": { "type": "string" } }, "required": [ "EndpointName", "LocalPath" ], "type": "object" }, "AWS::SageMaker::MonitoringSchedule.Json": { "additionalProperties": false, "properties": { "Line": { "type": "boolean" } }, "type": "object" }, "AWS::SageMaker::MonitoringSchedule.MonitoringAppSpecification": { "additionalProperties": false, "properties": { "ContainerArguments": { "items": { "type": "string" }, "type": "array" }, "ContainerEntrypoint": { "items": { "type": "string" }, "type": "array" }, "ImageUri": { "type": "string" }, "PostAnalyticsProcessorSourceUri": { "type": "string" }, "RecordPreprocessorSourceUri": { "type": "string" } }, "required": [ "ImageUri" ], "type": "object" }, "AWS::SageMaker::MonitoringSchedule.MonitoringExecutionSummary": { "additionalProperties": false, "properties": { "CreationTime": { "type": "string" }, "EndpointName": { "type": "string" }, "FailureReason": { "type": "string" }, "LastModifiedTime": { "type": "string" }, "MonitoringExecutionStatus": { "type": "string" }, "MonitoringScheduleName": { "type": "string" }, "ProcessingJobArn": { "type": "string" }, "ScheduledTime": { "type": "string" } }, "required": [ "CreationTime", "LastModifiedTime", "MonitoringExecutionStatus", "MonitoringScheduleName", "ScheduledTime" ], "type": "object" }, "AWS::SageMaker::MonitoringSchedule.MonitoringInput": { "additionalProperties": false, "properties": { "BatchTransformInput": { "$ref": "#/definitions/AWS::SageMaker::MonitoringSchedule.BatchTransformInput" }, "EndpointInput": { "$ref": "#/definitions/AWS::SageMaker::MonitoringSchedule.EndpointInput" } }, "type": "object" }, "AWS::SageMaker::MonitoringSchedule.MonitoringJobDefinition": { "additionalProperties": false, "properties": { "BaselineConfig": { "$ref": "#/definitions/AWS::SageMaker::MonitoringSchedule.BaselineConfig" }, "Environment": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" }, "MonitoringAppSpecification": { "$ref": "#/definitions/AWS::SageMaker::MonitoringSchedule.MonitoringAppSpecification" }, "MonitoringInputs": { "items": { "$ref": "#/definitions/AWS::SageMaker::MonitoringSchedule.MonitoringInput" }, "type": "array" }, "MonitoringOutputConfig": { "$ref": "#/definitions/AWS::SageMaker::MonitoringSchedule.MonitoringOutputConfig" }, "MonitoringResources": { "$ref": "#/definitions/AWS::SageMaker::MonitoringSchedule.MonitoringResources" }, "NetworkConfig": { "$ref": "#/definitions/AWS::SageMaker::MonitoringSchedule.NetworkConfig" }, "RoleArn": { "type": "string" }, "StoppingCondition": { "$ref": "#/definitions/AWS::SageMaker::MonitoringSchedule.StoppingCondition" } }, "required": [ "MonitoringAppSpecification", "MonitoringInputs", "MonitoringOutputConfig", "MonitoringResources", "RoleArn" ], "type": "object" }, "AWS::SageMaker::MonitoringSchedule.MonitoringOutput": { "additionalProperties": false, "properties": { "S3Output": { "$ref": "#/definitions/AWS::SageMaker::MonitoringSchedule.S3Output" } }, "required": [ "S3Output" ], "type": "object" }, "AWS::SageMaker::MonitoringSchedule.MonitoringOutputConfig": { "additionalProperties": false, "properties": { "KmsKeyId": { "type": "string" }, "MonitoringOutputs": { "items": { "$ref": "#/definitions/AWS::SageMaker::MonitoringSchedule.MonitoringOutput" }, "type": "array" } }, "required": [ "MonitoringOutputs" ], "type": "object" }, "AWS::SageMaker::MonitoringSchedule.MonitoringResources": { "additionalProperties": false, "properties": { "ClusterConfig": { "$ref": "#/definitions/AWS::SageMaker::MonitoringSchedule.ClusterConfig" } }, "required": [ "ClusterConfig" ], "type": "object" }, "AWS::SageMaker::MonitoringSchedule.MonitoringScheduleConfig": { "additionalProperties": false, "properties": { "MonitoringJobDefinition": { "$ref": "#/definitions/AWS::SageMaker::MonitoringSchedule.MonitoringJobDefinition" }, "MonitoringJobDefinitionName": { "type": "string" }, "MonitoringType": { "type": "string" }, "ScheduleConfig": { "$ref": "#/definitions/AWS::SageMaker::MonitoringSchedule.ScheduleConfig" } }, "type": "object" }, "AWS::SageMaker::MonitoringSchedule.NetworkConfig": { "additionalProperties": false, "properties": { "EnableInterContainerTrafficEncryption": { "type": "boolean" }, "EnableNetworkIsolation": { "type": "boolean" }, "VpcConfig": { "$ref": "#/definitions/AWS::SageMaker::MonitoringSchedule.VpcConfig" } }, "type": "object" }, "AWS::SageMaker::MonitoringSchedule.S3Output": { "additionalProperties": false, "properties": { "LocalPath": { "type": "string" }, "S3UploadMode": { "type": "string" }, "S3Uri": { "type": "string" } }, "required": [ "LocalPath", "S3Uri" ], "type": "object" }, "AWS::SageMaker::MonitoringSchedule.ScheduleConfig": { "additionalProperties": false, "properties": { "ScheduleExpression": { "type": "string" } }, "required": [ "ScheduleExpression" ], "type": "object" }, "AWS::SageMaker::MonitoringSchedule.StatisticsResource": { "additionalProperties": false, "properties": { "S3Uri": { "type": "string" } }, "type": "object" }, "AWS::SageMaker::MonitoringSchedule.StoppingCondition": { "additionalProperties": false, "properties": { "MaxRuntimeInSeconds": { "type": "number" } }, "required": [ "MaxRuntimeInSeconds" ], "type": "object" }, "AWS::SageMaker::MonitoringSchedule.VpcConfig": { "additionalProperties": false, "properties": { "SecurityGroupIds": { "items": { "type": "string" }, "type": "array" }, "Subnets": { "items": { "type": "string" }, "type": "array" } }, "required": [ "SecurityGroupIds", "Subnets" ], "type": "object" }, "AWS::SageMaker::NotebookInstance": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AcceleratorTypes": { "items": { "type": "string" }, "type": "array" }, "AdditionalCodeRepositories": { "items": { "type": "string" }, "type": "array" }, "DefaultCodeRepository": { "type": "string" }, "DirectInternetAccess": { "type": "string" }, "InstanceMetadataServiceConfiguration": { "$ref": "#/definitions/AWS::SageMaker::NotebookInstance.InstanceMetadataServiceConfiguration" }, "InstanceType": { "type": "string" }, "KmsKeyId": { "type": "string" }, "LifecycleConfigName": { "type": "string" }, "NotebookInstanceName": { "type": "string" }, "PlatformIdentifier": { "type": "string" }, "RoleArn": { "type": "string" }, "RootAccess": { "type": "string" }, "SecurityGroupIds": { "items": { "type": "string" }, "type": "array" }, "SubnetId": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "VolumeSizeInGB": { "type": "number" } }, "required": [ "InstanceType", "RoleArn" ], "type": "object" }, "Type": { "enum": [ "AWS::SageMaker::NotebookInstance" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::SageMaker::NotebookInstance.InstanceMetadataServiceConfiguration": { "additionalProperties": false, "properties": { "MinimumInstanceMetadataServiceVersion": { "type": "string" } }, "required": [ "MinimumInstanceMetadataServiceVersion" ], "type": "object" }, "AWS::SageMaker::NotebookInstanceLifecycleConfig": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "NotebookInstanceLifecycleConfigName": { "type": "string" }, "OnCreate": { "items": { "$ref": "#/definitions/AWS::SageMaker::NotebookInstanceLifecycleConfig.NotebookInstanceLifecycleHook" }, "type": "array" }, "OnStart": { "items": { "$ref": "#/definitions/AWS::SageMaker::NotebookInstanceLifecycleConfig.NotebookInstanceLifecycleHook" }, "type": "array" } }, "type": "object" }, "Type": { "enum": [ "AWS::SageMaker::NotebookInstanceLifecycleConfig" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::SageMaker::NotebookInstanceLifecycleConfig.NotebookInstanceLifecycleHook": { "additionalProperties": false, "properties": { "Content": { "type": "string" } }, "type": "object" }, "AWS::SageMaker::Pipeline": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ParallelismConfiguration": { "$ref": "#/definitions/AWS::SageMaker::Pipeline.ParallelismConfiguration" }, "PipelineDefinition": { "$ref": "#/definitions/AWS::SageMaker::Pipeline.PipelineDefinition" }, "PipelineDescription": { "type": "string" }, "PipelineDisplayName": { "type": "string" }, "PipelineName": { "type": "string" }, "RoleArn": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "PipelineDefinition", "PipelineName", "RoleArn" ], "type": "object" }, "Type": { "enum": [ "AWS::SageMaker::Pipeline" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::SageMaker::Pipeline.ParallelismConfiguration": { "additionalProperties": false, "properties": { "MaxParallelExecutionSteps": { "type": "number" } }, "required": [ "MaxParallelExecutionSteps" ], "type": "object" }, "AWS::SageMaker::Pipeline.PipelineDefinition": { "additionalProperties": false, "properties": { "PipelineDefinitionBody": { "type": "string" }, "PipelineDefinitionS3Location": { "$ref": "#/definitions/AWS::SageMaker::Pipeline.S3Location" } }, "type": "object" }, "AWS::SageMaker::Pipeline.S3Location": { "additionalProperties": false, "properties": { "Bucket": { "type": "string" }, "ETag": { "type": "string" }, "Key": { "type": "string" }, "Version": { "type": "string" } }, "required": [ "Bucket", "Key" ], "type": "object" }, "AWS::SageMaker::Project": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ProjectDescription": { "type": "string" }, "ProjectName": { "type": "string" }, "ServiceCatalogProvisionedProductDetails": { "$ref": "#/definitions/AWS::SageMaker::Project.ServiceCatalogProvisionedProductDetails" }, "ServiceCatalogProvisioningDetails": { "$ref": "#/definitions/AWS::SageMaker::Project.ServiceCatalogProvisioningDetails" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "ProjectName", "ServiceCatalogProvisioningDetails" ], "type": "object" }, "Type": { "enum": [ "AWS::SageMaker::Project" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::SageMaker::Project.ProvisioningParameter": { "additionalProperties": false, "properties": { "Key": { "type": "string" }, "Value": { "type": "string" } }, "required": [ "Key", "Value" ], "type": "object" }, "AWS::SageMaker::Project.ServiceCatalogProvisionedProductDetails": { "additionalProperties": false, "properties": { "ProvisionedProductId": { "type": "string" }, "ProvisionedProductStatusMessage": { "type": "string" } }, "type": "object" }, "AWS::SageMaker::Project.ServiceCatalogProvisioningDetails": { "additionalProperties": false, "properties": { "PathId": { "type": "string" }, "ProductId": { "type": "string" }, "ProvisioningArtifactId": { "type": "string" }, "ProvisioningParameters": { "items": { "$ref": "#/definitions/AWS::SageMaker::Project.ProvisioningParameter" }, "type": "array" } }, "required": [ "ProductId" ], "type": "object" }, "AWS::SageMaker::Space": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "DomainId": { "type": "string" }, "SpaceName": { "type": "string" }, "SpaceSettings": { "$ref": "#/definitions/AWS::SageMaker::Space.SpaceSettings" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "DomainId", "SpaceName" ], "type": "object" }, "Type": { "enum": [ "AWS::SageMaker::Space" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::SageMaker::Space.CustomImage": { "additionalProperties": false, "properties": { "AppImageConfigName": { "type": "string" }, "ImageName": { "type": "string" }, "ImageVersionNumber": { "type": "number" } }, "required": [ "AppImageConfigName", "ImageName" ], "type": "object" }, "AWS::SageMaker::Space.JupyterServerAppSettings": { "additionalProperties": false, "properties": { "DefaultResourceSpec": { "$ref": "#/definitions/AWS::SageMaker::Space.ResourceSpec" } }, "type": "object" }, "AWS::SageMaker::Space.KernelGatewayAppSettings": { "additionalProperties": false, "properties": { "CustomImages": { "items": { "$ref": "#/definitions/AWS::SageMaker::Space.CustomImage" }, "type": "array" }, "DefaultResourceSpec": { "$ref": "#/definitions/AWS::SageMaker::Space.ResourceSpec" } }, "type": "object" }, "AWS::SageMaker::Space.ResourceSpec": { "additionalProperties": false, "properties": { "InstanceType": { "type": "string" }, "SageMakerImageArn": { "type": "string" }, "SageMakerImageVersionArn": { "type": "string" } }, "type": "object" }, "AWS::SageMaker::Space.SpaceSettings": { "additionalProperties": false, "properties": { "JupyterServerAppSettings": { "$ref": "#/definitions/AWS::SageMaker::Space.JupyterServerAppSettings" }, "KernelGatewayAppSettings": { "$ref": "#/definitions/AWS::SageMaker::Space.KernelGatewayAppSettings" } }, "type": "object" }, "AWS::SageMaker::UserProfile": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "DomainId": { "type": "string" }, "SingleSignOnUserIdentifier": { "type": "string" }, "SingleSignOnUserValue": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "UserProfileName": { "type": "string" }, "UserSettings": { "$ref": "#/definitions/AWS::SageMaker::UserProfile.UserSettings" } }, "required": [ "DomainId", "UserProfileName" ], "type": "object" }, "Type": { "enum": [ "AWS::SageMaker::UserProfile" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::SageMaker::UserProfile.CustomImage": { "additionalProperties": false, "properties": { "AppImageConfigName": { "type": "string" }, "ImageName": { "type": "string" }, "ImageVersionNumber": { "type": "number" } }, "required": [ "AppImageConfigName", "ImageName" ], "type": "object" }, "AWS::SageMaker::UserProfile.JupyterServerAppSettings": { "additionalProperties": false, "properties": { "DefaultResourceSpec": { "$ref": "#/definitions/AWS::SageMaker::UserProfile.ResourceSpec" } }, "type": "object" }, "AWS::SageMaker::UserProfile.KernelGatewayAppSettings": { "additionalProperties": false, "properties": { "CustomImages": { "items": { "$ref": "#/definitions/AWS::SageMaker::UserProfile.CustomImage" }, "type": "array" }, "DefaultResourceSpec": { "$ref": "#/definitions/AWS::SageMaker::UserProfile.ResourceSpec" } }, "type": "object" }, "AWS::SageMaker::UserProfile.RStudioServerProAppSettings": { "additionalProperties": false, "properties": { "AccessStatus": { "type": "string" }, "UserGroup": { "type": "string" } }, "type": "object" }, "AWS::SageMaker::UserProfile.ResourceSpec": { "additionalProperties": false, "properties": { "InstanceType": { "type": "string" }, "SageMakerImageArn": { "type": "string" }, "SageMakerImageVersionArn": { "type": "string" } }, "type": "object" }, "AWS::SageMaker::UserProfile.SharingSettings": { "additionalProperties": false, "properties": { "NotebookOutputOption": { "type": "string" }, "S3KmsKeyId": { "type": "string" }, "S3OutputPath": { "type": "string" } }, "type": "object" }, "AWS::SageMaker::UserProfile.UserSettings": { "additionalProperties": false, "properties": { "ExecutionRole": { "type": "string" }, "JupyterServerAppSettings": { "$ref": "#/definitions/AWS::SageMaker::UserProfile.JupyterServerAppSettings" }, "KernelGatewayAppSettings": { "$ref": "#/definitions/AWS::SageMaker::UserProfile.KernelGatewayAppSettings" }, "RStudioServerProAppSettings": { "$ref": "#/definitions/AWS::SageMaker::UserProfile.RStudioServerProAppSettings" }, "SecurityGroups": { "items": { "type": "string" }, "type": "array" }, "SharingSettings": { "$ref": "#/definitions/AWS::SageMaker::UserProfile.SharingSettings" } }, "type": "object" }, "AWS::SageMaker::Workteam": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "MemberDefinitions": { "items": { "$ref": "#/definitions/AWS::SageMaker::Workteam.MemberDefinition" }, "type": "array" }, "NotificationConfiguration": { "$ref": "#/definitions/AWS::SageMaker::Workteam.NotificationConfiguration" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "WorkforceName": { "type": "string" }, "WorkteamName": { "type": "string" } }, "type": "object" }, "Type": { "enum": [ "AWS::SageMaker::Workteam" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::SageMaker::Workteam.CognitoMemberDefinition": { "additionalProperties": false, "properties": { "CognitoClientId": { "type": "string" }, "CognitoUserGroup": { "type": "string" }, "CognitoUserPool": { "type": "string" } }, "required": [ "CognitoClientId", "CognitoUserGroup", "CognitoUserPool" ], "type": "object" }, "AWS::SageMaker::Workteam.MemberDefinition": { "additionalProperties": false, "properties": { "CognitoMemberDefinition": { "$ref": "#/definitions/AWS::SageMaker::Workteam.CognitoMemberDefinition" }, "OidcMemberDefinition": { "$ref": "#/definitions/AWS::SageMaker::Workteam.OidcMemberDefinition" } }, "type": "object" }, "AWS::SageMaker::Workteam.NotificationConfiguration": { "additionalProperties": false, "properties": { "NotificationTopicArn": { "type": "string" } }, "required": [ "NotificationTopicArn" ], "type": "object" }, "AWS::SageMaker::Workteam.OidcMemberDefinition": { "additionalProperties": false, "properties": { "OidcGroups": { "items": { "type": "string" }, "type": "array" } }, "required": [ "OidcGroups" ], "type": "object" }, "AWS::Scheduler::Schedule": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "EndDate": { "type": "string" }, "FlexibleTimeWindow": { "$ref": "#/definitions/AWS::Scheduler::Schedule.FlexibleTimeWindow" }, "GroupName": { "type": "string" }, "KmsKeyArn": { "type": "string" }, "Name": { "type": "string" }, "ScheduleExpression": { "type": "string" }, "ScheduleExpressionTimezone": { "type": "string" }, "StartDate": { "type": "string" }, "State": { "type": "string" }, "Target": { "$ref": "#/definitions/AWS::Scheduler::Schedule.Target" } }, "required": [ "FlexibleTimeWindow", "ScheduleExpression", "Target" ], "type": "object" }, "Type": { "enum": [ "AWS::Scheduler::Schedule" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Scheduler::Schedule.AwsVpcConfiguration": { "additionalProperties": false, "properties": { "AssignPublicIp": { "type": "string" }, "SecurityGroups": { "items": { "type": "string" }, "type": "array" }, "Subnets": { "items": { "type": "string" }, "type": "array" } }, "required": [ "Subnets" ], "type": "object" }, "AWS::Scheduler::Schedule.CapacityProviderStrategyItem": { "additionalProperties": false, "properties": { "Base": { "type": "number" }, "CapacityProvider": { "type": "string" }, "Weight": { "type": "number" } }, "required": [ "CapacityProvider" ], "type": "object" }, "AWS::Scheduler::Schedule.DeadLetterConfig": { "additionalProperties": false, "properties": { "Arn": { "type": "string" } }, "type": "object" }, "AWS::Scheduler::Schedule.EcsParameters": { "additionalProperties": false, "properties": { "CapacityProviderStrategy": { "items": { "$ref": "#/definitions/AWS::Scheduler::Schedule.CapacityProviderStrategyItem" }, "type": "array" }, "EnableECSManagedTags": { "type": "boolean" }, "EnableExecuteCommand": { "type": "boolean" }, "Group": { "type": "string" }, "LaunchType": { "type": "string" }, "NetworkConfiguration": { "$ref": "#/definitions/AWS::Scheduler::Schedule.NetworkConfiguration" }, "PlacementConstraints": { "items": { "$ref": "#/definitions/AWS::Scheduler::Schedule.PlacementConstraint" }, "type": "array" }, "PlacementStrategy": { "items": { "$ref": "#/definitions/AWS::Scheduler::Schedule.PlacementStrategy" }, "type": "array" }, "PlatformVersion": { "type": "string" }, "PropagateTags": { "type": "string" }, "ReferenceId": { "type": "string" }, "Tags": { "type": "object" }, "TaskCount": { "type": "number" }, "TaskDefinitionArn": { "type": "string" } }, "required": [ "TaskDefinitionArn" ], "type": "object" }, "AWS::Scheduler::Schedule.EventBridgeParameters": { "additionalProperties": false, "properties": { "DetailType": { "type": "string" }, "Source": { "type": "string" } }, "required": [ "DetailType", "Source" ], "type": "object" }, "AWS::Scheduler::Schedule.FlexibleTimeWindow": { "additionalProperties": false, "properties": { "MaximumWindowInMinutes": { "type": "number" }, "Mode": { "type": "string" } }, "required": [ "Mode" ], "type": "object" }, "AWS::Scheduler::Schedule.KinesisParameters": { "additionalProperties": false, "properties": { "PartitionKey": { "type": "string" } }, "required": [ "PartitionKey" ], "type": "object" }, "AWS::Scheduler::Schedule.NetworkConfiguration": { "additionalProperties": false, "properties": { "AwsvpcConfiguration": { "$ref": "#/definitions/AWS::Scheduler::Schedule.AwsVpcConfiguration" } }, "type": "object" }, "AWS::Scheduler::Schedule.PlacementConstraint": { "additionalProperties": false, "properties": { "Expression": { "type": "string" }, "Type": { "type": "string" } }, "type": "object" }, "AWS::Scheduler::Schedule.PlacementStrategy": { "additionalProperties": false, "properties": { "Field": { "type": "string" }, "Type": { "type": "string" } }, "type": "object" }, "AWS::Scheduler::Schedule.RetryPolicy": { "additionalProperties": false, "properties": { "MaximumEventAgeInSeconds": { "type": "number" }, "MaximumRetryAttempts": { "type": "number" } }, "type": "object" }, "AWS::Scheduler::Schedule.SageMakerPipelineParameter": { "additionalProperties": false, "properties": { "Name": { "type": "string" }, "Value": { "type": "string" } }, "required": [ "Name", "Value" ], "type": "object" }, "AWS::Scheduler::Schedule.SageMakerPipelineParameters": { "additionalProperties": false, "properties": { "PipelineParameterList": { "items": { "$ref": "#/definitions/AWS::Scheduler::Schedule.SageMakerPipelineParameter" }, "type": "array" } }, "type": "object" }, "AWS::Scheduler::Schedule.SqsParameters": { "additionalProperties": false, "properties": { "MessageGroupId": { "type": "string" } }, "type": "object" }, "AWS::Scheduler::Schedule.Target": { "additionalProperties": false, "properties": { "Arn": { "type": "string" }, "DeadLetterConfig": { "$ref": "#/definitions/AWS::Scheduler::Schedule.DeadLetterConfig" }, "EcsParameters": { "$ref": "#/definitions/AWS::Scheduler::Schedule.EcsParameters" }, "EventBridgeParameters": { "$ref": "#/definitions/AWS::Scheduler::Schedule.EventBridgeParameters" }, "Input": { "type": "string" }, "KinesisParameters": { "$ref": "#/definitions/AWS::Scheduler::Schedule.KinesisParameters" }, "RetryPolicy": { "$ref": "#/definitions/AWS::Scheduler::Schedule.RetryPolicy" }, "RoleArn": { "type": "string" }, "SageMakerPipelineParameters": { "$ref": "#/definitions/AWS::Scheduler::Schedule.SageMakerPipelineParameters" }, "SqsParameters": { "$ref": "#/definitions/AWS::Scheduler::Schedule.SqsParameters" } }, "required": [ "Arn", "RoleArn" ], "type": "object" }, "AWS::Scheduler::ScheduleGroup": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Name": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "type": "object" }, "Type": { "enum": [ "AWS::Scheduler::ScheduleGroup" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::SecretsManager::ResourcePolicy": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "BlockPublicPolicy": { "type": "boolean" }, "ResourcePolicy": { "type": "object" }, "SecretId": { "type": "string" } }, "required": [ "ResourcePolicy", "SecretId" ], "type": "object" }, "Type": { "enum": [ "AWS::SecretsManager::ResourcePolicy" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::SecretsManager::RotationSchedule": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "HostedRotationLambda": { "$ref": "#/definitions/AWS::SecretsManager::RotationSchedule.HostedRotationLambda" }, "RotateImmediatelyOnUpdate": { "type": "boolean" }, "RotationLambdaARN": { "type": "string" }, "RotationRules": { "$ref": "#/definitions/AWS::SecretsManager::RotationSchedule.RotationRules" }, "SecretId": { "type": "string" } }, "required": [ "SecretId" ], "type": "object" }, "Type": { "enum": [ "AWS::SecretsManager::RotationSchedule" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::SecretsManager::RotationSchedule.HostedRotationLambda": { "additionalProperties": false, "properties": { "ExcludeCharacters": { "type": "string" }, "KmsKeyArn": { "type": "string" }, "MasterSecretArn": { "type": "string" }, "MasterSecretKmsKeyArn": { "type": "string" }, "RotationLambdaName": { "type": "string" }, "RotationType": { "type": "string" }, "Runtime": { "type": "string" }, "SuperuserSecretArn": { "type": "string" }, "SuperuserSecretKmsKeyArn": { "type": "string" }, "VpcSecurityGroupIds": { "type": "string" }, "VpcSubnetIds": { "type": "string" } }, "required": [ "RotationType" ], "type": "object" }, "AWS::SecretsManager::RotationSchedule.RotationRules": { "additionalProperties": false, "properties": { "AutomaticallyAfterDays": { "type": "number" }, "Duration": { "type": "string" }, "ScheduleExpression": { "type": "string" } }, "type": "object" }, "AWS::SecretsManager::Secret": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "GenerateSecretString": { "$ref": "#/definitions/AWS::SecretsManager::Secret.GenerateSecretString" }, "KmsKeyId": { "type": "string" }, "Name": { "type": "string" }, "ReplicaRegions": { "items": { "$ref": "#/definitions/AWS::SecretsManager::Secret.ReplicaRegion" }, "type": "array" }, "SecretString": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "type": "object" }, "Type": { "enum": [ "AWS::SecretsManager::Secret" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::SecretsManager::Secret.GenerateSecretString": { "additionalProperties": false, "properties": { "ExcludeCharacters": { "type": "string" }, "ExcludeLowercase": { "type": "boolean" }, "ExcludeNumbers": { "type": "boolean" }, "ExcludePunctuation": { "type": "boolean" }, "ExcludeUppercase": { "type": "boolean" }, "GenerateStringKey": { "type": "string" }, "IncludeSpace": { "type": "boolean" }, "PasswordLength": { "type": "number" }, "RequireEachIncludedType": { "type": "boolean" }, "SecretStringTemplate": { "type": "string" } }, "type": "object" }, "AWS::SecretsManager::Secret.ReplicaRegion": { "additionalProperties": false, "properties": { "KmsKeyId": { "type": "string" }, "Region": { "type": "string" } }, "required": [ "Region" ], "type": "object" }, "AWS::SecretsManager::SecretTargetAttachment": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "SecretId": { "type": "string" }, "TargetId": { "type": "string" }, "TargetType": { "type": "string" } }, "required": [ "SecretId", "TargetId", "TargetType" ], "type": "object" }, "Type": { "enum": [ "AWS::SecretsManager::SecretTargetAttachment" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::SecurityHub::AutomationRule": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Actions": { "items": { "$ref": "#/definitions/AWS::SecurityHub::AutomationRule.AutomationRulesAction" }, "type": "array" }, "Criteria": { "$ref": "#/definitions/AWS::SecurityHub::AutomationRule.AutomationRulesFindingFilters" }, "Description": { "type": "string" }, "IsTerminal": { "type": "boolean" }, "RuleName": { "type": "string" }, "RuleOrder": { "type": "number" }, "RuleStatus": { "type": "string" }, "Tags": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" } }, "type": "object" }, "Type": { "enum": [ "AWS::SecurityHub::AutomationRule" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::SecurityHub::AutomationRule.AutomationRulesAction": { "additionalProperties": false, "properties": { "FindingFieldsUpdate": { "$ref": "#/definitions/AWS::SecurityHub::AutomationRule.AutomationRulesFindingFieldsUpdate" }, "Type": { "type": "string" } }, "required": [ "FindingFieldsUpdate", "Type" ], "type": "object" }, "AWS::SecurityHub::AutomationRule.AutomationRulesFindingFieldsUpdate": { "additionalProperties": false, "properties": { "Confidence": { "type": "number" }, "Criticality": { "type": "number" }, "Note": { "$ref": "#/definitions/AWS::SecurityHub::AutomationRule.NoteUpdate" }, "RelatedFindings": { "items": { "$ref": "#/definitions/AWS::SecurityHub::AutomationRule.RelatedFinding" }, "type": "array" }, "Severity": { "$ref": "#/definitions/AWS::SecurityHub::AutomationRule.SeverityUpdate" }, "Types": { "items": { "type": "string" }, "type": "array" }, "UserDefinedFields": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" }, "VerificationState": { "type": "string" }, "Workflow": { "$ref": "#/definitions/AWS::SecurityHub::AutomationRule.WorkflowUpdate" } }, "type": "object" }, "AWS::SecurityHub::AutomationRule.AutomationRulesFindingFilters": { "additionalProperties": false, "properties": { "AwsAccountId": { "items": { "$ref": "#/definitions/AWS::SecurityHub::AutomationRule.StringFilter" }, "type": "array" }, "CompanyName": { "items": { "$ref": "#/definitions/AWS::SecurityHub::AutomationRule.StringFilter" }, "type": "array" }, "ComplianceAssociatedStandardsId": { "items": { "$ref": "#/definitions/AWS::SecurityHub::AutomationRule.StringFilter" }, "type": "array" }, "ComplianceSecurityControlId": { "items": { "$ref": "#/definitions/AWS::SecurityHub::AutomationRule.StringFilter" }, "type": "array" }, "ComplianceStatus": { "items": { "$ref": "#/definitions/AWS::SecurityHub::AutomationRule.StringFilter" }, "type": "array" }, "Confidence": { "items": { "$ref": "#/definitions/AWS::SecurityHub::AutomationRule.NumberFilter" }, "type": "array" }, "CreatedAt": { "items": { "$ref": "#/definitions/AWS::SecurityHub::AutomationRule.DateFilter" }, "type": "array" }, "Criticality": { "items": { "$ref": "#/definitions/AWS::SecurityHub::AutomationRule.NumberFilter" }, "type": "array" }, "Description": { "items": { "$ref": "#/definitions/AWS::SecurityHub::AutomationRule.StringFilter" }, "type": "array" }, "FirstObservedAt": { "items": { "$ref": "#/definitions/AWS::SecurityHub::AutomationRule.DateFilter" }, "type": "array" }, "GeneratorId": { "items": { "$ref": "#/definitions/AWS::SecurityHub::AutomationRule.StringFilter" }, "type": "array" }, "Id": { "items": { "$ref": "#/definitions/AWS::SecurityHub::AutomationRule.StringFilter" }, "type": "array" }, "LastObservedAt": { "items": { "$ref": "#/definitions/AWS::SecurityHub::AutomationRule.DateFilter" }, "type": "array" }, "NoteText": { "items": { "$ref": "#/definitions/AWS::SecurityHub::AutomationRule.StringFilter" }, "type": "array" }, "NoteUpdatedAt": { "items": { "$ref": "#/definitions/AWS::SecurityHub::AutomationRule.DateFilter" }, "type": "array" }, "NoteUpdatedBy": { "items": { "$ref": "#/definitions/AWS::SecurityHub::AutomationRule.StringFilter" }, "type": "array" }, "ProductArn": { "items": { "$ref": "#/definitions/AWS::SecurityHub::AutomationRule.StringFilter" }, "type": "array" }, "ProductName": { "items": { "$ref": "#/definitions/AWS::SecurityHub::AutomationRule.StringFilter" }, "type": "array" }, "RecordState": { "items": { "$ref": "#/definitions/AWS::SecurityHub::AutomationRule.StringFilter" }, "type": "array" }, "RelatedFindingsId": { "items": { "$ref": "#/definitions/AWS::SecurityHub::AutomationRule.StringFilter" }, "type": "array" }, "RelatedFindingsProductArn": { "items": { "$ref": "#/definitions/AWS::SecurityHub::AutomationRule.StringFilter" }, "type": "array" }, "ResourceDetailsOther": { "items": { "$ref": "#/definitions/AWS::SecurityHub::AutomationRule.MapFilter" }, "type": "array" }, "ResourceId": { "items": { "$ref": "#/definitions/AWS::SecurityHub::AutomationRule.StringFilter" }, "type": "array" }, "ResourcePartition": { "items": { "$ref": "#/definitions/AWS::SecurityHub::AutomationRule.StringFilter" }, "type": "array" }, "ResourceRegion": { "items": { "$ref": "#/definitions/AWS::SecurityHub::AutomationRule.StringFilter" }, "type": "array" }, "ResourceTags": { "items": { "$ref": "#/definitions/AWS::SecurityHub::AutomationRule.MapFilter" }, "type": "array" }, "ResourceType": { "items": { "$ref": "#/definitions/AWS::SecurityHub::AutomationRule.StringFilter" }, "type": "array" }, "SeverityLabel": { "items": { "$ref": "#/definitions/AWS::SecurityHub::AutomationRule.StringFilter" }, "type": "array" }, "SourceUrl": { "items": { "$ref": "#/definitions/AWS::SecurityHub::AutomationRule.StringFilter" }, "type": "array" }, "Title": { "items": { "$ref": "#/definitions/AWS::SecurityHub::AutomationRule.StringFilter" }, "type": "array" }, "Type": { "items": { "$ref": "#/definitions/AWS::SecurityHub::AutomationRule.StringFilter" }, "type": "array" }, "UpdatedAt": { "items": { "$ref": "#/definitions/AWS::SecurityHub::AutomationRule.DateFilter" }, "type": "array" }, "UserDefinedFields": { "items": { "$ref": "#/definitions/AWS::SecurityHub::AutomationRule.MapFilter" }, "type": "array" }, "VerificationState": { "items": { "$ref": "#/definitions/AWS::SecurityHub::AutomationRule.StringFilter" }, "type": "array" }, "WorkflowStatus": { "items": { "$ref": "#/definitions/AWS::SecurityHub::AutomationRule.StringFilter" }, "type": "array" } }, "type": "object" }, "AWS::SecurityHub::AutomationRule.DateFilter": { "additionalProperties": false, "properties": { "DateRange": { "$ref": "#/definitions/AWS::SecurityHub::AutomationRule.DateRange" }, "End": { "type": "string" }, "Start": { "type": "string" } }, "type": "object" }, "AWS::SecurityHub::AutomationRule.DateRange": { "additionalProperties": false, "properties": { "Unit": { "type": "string" }, "Value": { "type": "number" } }, "required": [ "Unit", "Value" ], "type": "object" }, "AWS::SecurityHub::AutomationRule.MapFilter": { "additionalProperties": false, "properties": { "Comparison": { "type": "string" }, "Key": { "type": "string" }, "Value": { "type": "string" } }, "required": [ "Comparison", "Key", "Value" ], "type": "object" }, "AWS::SecurityHub::AutomationRule.NoteUpdate": { "additionalProperties": false, "properties": { "Text": { "type": "string" }, "UpdatedBy": { "type": "object" } }, "required": [ "Text", "UpdatedBy" ], "type": "object" }, "AWS::SecurityHub::AutomationRule.NumberFilter": { "additionalProperties": false, "properties": { "Eq": { "type": "number" }, "Gte": { "type": "number" }, "Lte": { "type": "number" } }, "type": "object" }, "AWS::SecurityHub::AutomationRule.RelatedFinding": { "additionalProperties": false, "properties": { "Id": { "type": "object" }, "ProductArn": { "type": "string" } }, "required": [ "Id", "ProductArn" ], "type": "object" }, "AWS::SecurityHub::AutomationRule.SeverityUpdate": { "additionalProperties": false, "properties": { "Label": { "type": "string" }, "Normalized": { "type": "number" }, "Product": { "type": "number" } }, "type": "object" }, "AWS::SecurityHub::AutomationRule.StringFilter": { "additionalProperties": false, "properties": { "Comparison": { "type": "string" }, "Value": { "type": "string" } }, "required": [ "Comparison", "Value" ], "type": "object" }, "AWS::SecurityHub::AutomationRule.WorkflowUpdate": { "additionalProperties": false, "properties": { "Status": { "type": "string" } }, "required": [ "Status" ], "type": "object" }, "AWS::SecurityHub::Hub": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AutoEnableControls": { "type": "boolean" }, "ControlFindingGenerator": { "type": "string" }, "EnableDefaultStandards": { "type": "boolean" }, "Tags": { "type": "object" } }, "type": "object" }, "Type": { "enum": [ "AWS::SecurityHub::Hub" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::SecurityHub::Standard": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "DisabledStandardsControls": { "items": { "$ref": "#/definitions/AWS::SecurityHub::Standard.StandardsControl" }, "type": "array" }, "StandardsArn": { "type": "string" } }, "required": [ "StandardsArn" ], "type": "object" }, "Type": { "enum": [ "AWS::SecurityHub::Standard" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::SecurityHub::Standard.StandardsControl": { "additionalProperties": false, "properties": { "Reason": { "type": "string" }, "StandardsControlArn": { "type": "string" } }, "required": [ "StandardsControlArn" ], "type": "object" }, "AWS::ServiceCatalog::AcceptedPortfolioShare": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AcceptLanguage": { "type": "string" }, "PortfolioId": { "type": "string" } }, "required": [ "PortfolioId" ], "type": "object" }, "Type": { "enum": [ "AWS::ServiceCatalog::AcceptedPortfolioShare" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::ServiceCatalog::CloudFormationProduct": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AcceptLanguage": { "type": "string" }, "Description": { "type": "string" }, "Distributor": { "type": "string" }, "Name": { "type": "string" }, "Owner": { "type": "string" }, "ProductType": { "type": "string" }, "ProvisioningArtifactParameters": { "items": { "$ref": "#/definitions/AWS::ServiceCatalog::CloudFormationProduct.ProvisioningArtifactProperties" }, "type": "array" }, "ReplaceProvisioningArtifacts": { "type": "boolean" }, "SourceConnection": { "$ref": "#/definitions/AWS::ServiceCatalog::CloudFormationProduct.SourceConnection" }, "SupportDescription": { "type": "string" }, "SupportEmail": { "type": "string" }, "SupportUrl": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "Name", "Owner" ], "type": "object" }, "Type": { "enum": [ "AWS::ServiceCatalog::CloudFormationProduct" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::ServiceCatalog::CloudFormationProduct.CodeStarParameters": { "additionalProperties": false, "properties": { "ArtifactPath": { "type": "string" }, "Branch": { "type": "string" }, "ConnectionArn": { "type": "string" }, "Repository": { "type": "string" } }, "required": [ "ArtifactPath", "Branch", "ConnectionArn", "Repository" ], "type": "object" }, "AWS::ServiceCatalog::CloudFormationProduct.ConnectionParameters": { "additionalProperties": false, "properties": { "CodeStar": { "$ref": "#/definitions/AWS::ServiceCatalog::CloudFormationProduct.CodeStarParameters" } }, "type": "object" }, "AWS::ServiceCatalog::CloudFormationProduct.ProvisioningArtifactProperties": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "DisableTemplateValidation": { "type": "boolean" }, "Info": { "type": "object" }, "Name": { "type": "string" }, "Type": { "type": "string" } }, "required": [ "Info" ], "type": "object" }, "AWS::ServiceCatalog::CloudFormationProduct.SourceConnection": { "additionalProperties": false, "properties": { "ConnectionParameters": { "$ref": "#/definitions/AWS::ServiceCatalog::CloudFormationProduct.ConnectionParameters" }, "Type": { "type": "string" } }, "required": [ "ConnectionParameters", "Type" ], "type": "object" }, "AWS::ServiceCatalog::CloudFormationProvisionedProduct": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AcceptLanguage": { "type": "string" }, "NotificationArns": { "items": { "type": "string" }, "type": "array" }, "PathId": { "type": "string" }, "PathName": { "type": "string" }, "ProductId": { "type": "string" }, "ProductName": { "type": "string" }, "ProvisionedProductName": { "type": "string" }, "ProvisioningArtifactId": { "type": "string" }, "ProvisioningArtifactName": { "type": "string" }, "ProvisioningParameters": { "items": { "$ref": "#/definitions/AWS::ServiceCatalog::CloudFormationProvisionedProduct.ProvisioningParameter" }, "type": "array" }, "ProvisioningPreferences": { "$ref": "#/definitions/AWS::ServiceCatalog::CloudFormationProvisionedProduct.ProvisioningPreferences" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "type": "object" }, "Type": { "enum": [ "AWS::ServiceCatalog::CloudFormationProvisionedProduct" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::ServiceCatalog::CloudFormationProvisionedProduct.ProvisioningParameter": { "additionalProperties": false, "properties": { "Key": { "type": "string" }, "Value": { "type": "string" } }, "required": [ "Key", "Value" ], "type": "object" }, "AWS::ServiceCatalog::CloudFormationProvisionedProduct.ProvisioningPreferences": { "additionalProperties": false, "properties": { "StackSetAccounts": { "items": { "type": "string" }, "type": "array" }, "StackSetFailureToleranceCount": { "type": "number" }, "StackSetFailureTolerancePercentage": { "type": "number" }, "StackSetMaxConcurrencyCount": { "type": "number" }, "StackSetMaxConcurrencyPercentage": { "type": "number" }, "StackSetOperationType": { "type": "string" }, "StackSetRegions": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::ServiceCatalog::LaunchNotificationConstraint": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AcceptLanguage": { "type": "string" }, "Description": { "type": "string" }, "NotificationArns": { "items": { "type": "string" }, "type": "array" }, "PortfolioId": { "type": "string" }, "ProductId": { "type": "string" } }, "required": [ "NotificationArns", "PortfolioId", "ProductId" ], "type": "object" }, "Type": { "enum": [ "AWS::ServiceCatalog::LaunchNotificationConstraint" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::ServiceCatalog::LaunchRoleConstraint": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AcceptLanguage": { "type": "string" }, "Description": { "type": "string" }, "LocalRoleName": { "type": "string" }, "PortfolioId": { "type": "string" }, "ProductId": { "type": "string" }, "RoleArn": { "type": "string" } }, "required": [ "PortfolioId", "ProductId" ], "type": "object" }, "Type": { "enum": [ "AWS::ServiceCatalog::LaunchRoleConstraint" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::ServiceCatalog::LaunchTemplateConstraint": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AcceptLanguage": { "type": "string" }, "Description": { "type": "string" }, "PortfolioId": { "type": "string" }, "ProductId": { "type": "string" }, "Rules": { "type": "string" } }, "required": [ "PortfolioId", "ProductId", "Rules" ], "type": "object" }, "Type": { "enum": [ "AWS::ServiceCatalog::LaunchTemplateConstraint" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::ServiceCatalog::Portfolio": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AcceptLanguage": { "type": "string" }, "Description": { "type": "string" }, "DisplayName": { "type": "string" }, "ProviderName": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "DisplayName", "ProviderName" ], "type": "object" }, "Type": { "enum": [ "AWS::ServiceCatalog::Portfolio" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::ServiceCatalog::PortfolioPrincipalAssociation": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AcceptLanguage": { "type": "string" }, "PortfolioId": { "type": "string" }, "PrincipalARN": { "type": "string" }, "PrincipalType": { "type": "string" } }, "required": [ "PortfolioId", "PrincipalARN", "PrincipalType" ], "type": "object" }, "Type": { "enum": [ "AWS::ServiceCatalog::PortfolioPrincipalAssociation" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::ServiceCatalog::PortfolioProductAssociation": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AcceptLanguage": { "type": "string" }, "PortfolioId": { "type": "string" }, "ProductId": { "type": "string" }, "SourcePortfolioId": { "type": "string" } }, "required": [ "PortfolioId", "ProductId" ], "type": "object" }, "Type": { "enum": [ "AWS::ServiceCatalog::PortfolioProductAssociation" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::ServiceCatalog::PortfolioShare": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AcceptLanguage": { "type": "string" }, "AccountId": { "type": "string" }, "PortfolioId": { "type": "string" }, "ShareTagOptions": { "type": "boolean" } }, "required": [ "AccountId", "PortfolioId" ], "type": "object" }, "Type": { "enum": [ "AWS::ServiceCatalog::PortfolioShare" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::ServiceCatalog::ResourceUpdateConstraint": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AcceptLanguage": { "type": "string" }, "Description": { "type": "string" }, "PortfolioId": { "type": "string" }, "ProductId": { "type": "string" }, "TagUpdateOnProvisionedProduct": { "type": "string" } }, "required": [ "PortfolioId", "ProductId", "TagUpdateOnProvisionedProduct" ], "type": "object" }, "Type": { "enum": [ "AWS::ServiceCatalog::ResourceUpdateConstraint" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::ServiceCatalog::ServiceAction": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AcceptLanguage": { "type": "string" }, "Definition": { "items": { "$ref": "#/definitions/AWS::ServiceCatalog::ServiceAction.DefinitionParameter" }, "type": "array" }, "DefinitionType": { "type": "string" }, "Description": { "type": "string" }, "Name": { "type": "string" } }, "required": [ "Definition", "DefinitionType", "Name" ], "type": "object" }, "Type": { "enum": [ "AWS::ServiceCatalog::ServiceAction" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::ServiceCatalog::ServiceAction.DefinitionParameter": { "additionalProperties": false, "properties": { "Key": { "type": "string" }, "Value": { "type": "string" } }, "required": [ "Key", "Value" ], "type": "object" }, "AWS::ServiceCatalog::ServiceActionAssociation": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ProductId": { "type": "string" }, "ProvisioningArtifactId": { "type": "string" }, "ServiceActionId": { "type": "string" } }, "required": [ "ProductId", "ProvisioningArtifactId", "ServiceActionId" ], "type": "object" }, "Type": { "enum": [ "AWS::ServiceCatalog::ServiceActionAssociation" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::ServiceCatalog::StackSetConstraint": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AcceptLanguage": { "type": "string" }, "AccountList": { "items": { "type": "string" }, "type": "array" }, "AdminRole": { "type": "string" }, "Description": { "type": "string" }, "ExecutionRole": { "type": "string" }, "PortfolioId": { "type": "string" }, "ProductId": { "type": "string" }, "RegionList": { "items": { "type": "string" }, "type": "array" }, "StackInstanceControl": { "type": "string" } }, "required": [ "AccountList", "AdminRole", "Description", "ExecutionRole", "PortfolioId", "ProductId", "RegionList", "StackInstanceControl" ], "type": "object" }, "Type": { "enum": [ "AWS::ServiceCatalog::StackSetConstraint" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::ServiceCatalog::TagOption": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Active": { "type": "boolean" }, "Key": { "type": "string" }, "Value": { "type": "string" } }, "required": [ "Key", "Value" ], "type": "object" }, "Type": { "enum": [ "AWS::ServiceCatalog::TagOption" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::ServiceCatalog::TagOptionAssociation": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ResourceId": { "type": "string" }, "TagOptionId": { "type": "string" } }, "required": [ "ResourceId", "TagOptionId" ], "type": "object" }, "Type": { "enum": [ "AWS::ServiceCatalog::TagOptionAssociation" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::ServiceCatalogAppRegistry::Application": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "Name": { "type": "string" }, "Tags": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" } }, "required": [ "Name" ], "type": "object" }, "Type": { "enum": [ "AWS::ServiceCatalogAppRegistry::Application" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::ServiceCatalogAppRegistry::AttributeGroup": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Attributes": { "type": "object" }, "Description": { "type": "string" }, "Name": { "type": "string" }, "Tags": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" } }, "required": [ "Attributes", "Name" ], "type": "object" }, "Type": { "enum": [ "AWS::ServiceCatalogAppRegistry::AttributeGroup" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::ServiceCatalogAppRegistry::AttributeGroupAssociation": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Application": { "type": "string" }, "AttributeGroup": { "type": "string" } }, "required": [ "Application", "AttributeGroup" ], "type": "object" }, "Type": { "enum": [ "AWS::ServiceCatalogAppRegistry::AttributeGroupAssociation" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::ServiceCatalogAppRegistry::ResourceAssociation": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Application": { "type": "string" }, "Resource": { "type": "string" }, "ResourceType": { "type": "string" } }, "required": [ "Application", "Resource", "ResourceType" ], "type": "object" }, "Type": { "enum": [ "AWS::ServiceCatalogAppRegistry::ResourceAssociation" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::ServiceDiscovery::HttpNamespace": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "Name": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "Name" ], "type": "object" }, "Type": { "enum": [ "AWS::ServiceDiscovery::HttpNamespace" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::ServiceDiscovery::Instance": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "InstanceAttributes": { "type": "object" }, "InstanceId": { "type": "string" }, "ServiceId": { "type": "string" } }, "required": [ "InstanceAttributes", "ServiceId" ], "type": "object" }, "Type": { "enum": [ "AWS::ServiceDiscovery::Instance" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::ServiceDiscovery::PrivateDnsNamespace": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "Name": { "type": "string" }, "Properties": { "$ref": "#/definitions/AWS::ServiceDiscovery::PrivateDnsNamespace.Properties" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "Vpc": { "type": "string" } }, "required": [ "Name", "Vpc" ], "type": "object" }, "Type": { "enum": [ "AWS::ServiceDiscovery::PrivateDnsNamespace" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::ServiceDiscovery::PrivateDnsNamespace.PrivateDnsPropertiesMutable": { "additionalProperties": false, "properties": { "SOA": { "$ref": "#/definitions/AWS::ServiceDiscovery::PrivateDnsNamespace.SOA" } }, "type": "object" }, "AWS::ServiceDiscovery::PrivateDnsNamespace.Properties": { "additionalProperties": false, "properties": { "DnsProperties": { "$ref": "#/definitions/AWS::ServiceDiscovery::PrivateDnsNamespace.PrivateDnsPropertiesMutable" } }, "type": "object" }, "AWS::ServiceDiscovery::PrivateDnsNamespace.SOA": { "additionalProperties": false, "properties": { "TTL": { "type": "number" } }, "type": "object" }, "AWS::ServiceDiscovery::PublicDnsNamespace": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "Name": { "type": "string" }, "Properties": { "$ref": "#/definitions/AWS::ServiceDiscovery::PublicDnsNamespace.Properties" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "Name" ], "type": "object" }, "Type": { "enum": [ "AWS::ServiceDiscovery::PublicDnsNamespace" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::ServiceDiscovery::PublicDnsNamespace.Properties": { "additionalProperties": false, "properties": { "DnsProperties": { "$ref": "#/definitions/AWS::ServiceDiscovery::PublicDnsNamespace.PublicDnsPropertiesMutable" } }, "type": "object" }, "AWS::ServiceDiscovery::PublicDnsNamespace.PublicDnsPropertiesMutable": { "additionalProperties": false, "properties": { "SOA": { "$ref": "#/definitions/AWS::ServiceDiscovery::PublicDnsNamespace.SOA" } }, "type": "object" }, "AWS::ServiceDiscovery::PublicDnsNamespace.SOA": { "additionalProperties": false, "properties": { "TTL": { "type": "number" } }, "type": "object" }, "AWS::ServiceDiscovery::Service": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "DnsConfig": { "$ref": "#/definitions/AWS::ServiceDiscovery::Service.DnsConfig" }, "HealthCheckConfig": { "$ref": "#/definitions/AWS::ServiceDiscovery::Service.HealthCheckConfig" }, "HealthCheckCustomConfig": { "$ref": "#/definitions/AWS::ServiceDiscovery::Service.HealthCheckCustomConfig" }, "Name": { "type": "string" }, "NamespaceId": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "Type": { "type": "string" } }, "type": "object" }, "Type": { "enum": [ "AWS::ServiceDiscovery::Service" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::ServiceDiscovery::Service.DnsConfig": { "additionalProperties": false, "properties": { "DnsRecords": { "items": { "$ref": "#/definitions/AWS::ServiceDiscovery::Service.DnsRecord" }, "type": "array" }, "NamespaceId": { "type": "string" }, "RoutingPolicy": { "type": "string" } }, "required": [ "DnsRecords" ], "type": "object" }, "AWS::ServiceDiscovery::Service.DnsRecord": { "additionalProperties": false, "properties": { "TTL": { "type": "number" }, "Type": { "type": "string" } }, "required": [ "TTL", "Type" ], "type": "object" }, "AWS::ServiceDiscovery::Service.HealthCheckConfig": { "additionalProperties": false, "properties": { "FailureThreshold": { "type": "number" }, "ResourcePath": { "type": "string" }, "Type": { "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::ServiceDiscovery::Service.HealthCheckCustomConfig": { "additionalProperties": false, "properties": { "FailureThreshold": { "type": "number" } }, "type": "object" }, "AWS::Shield::DRTAccess": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "LogBucketList": { "items": { "type": "string" }, "type": "array" }, "RoleArn": { "type": "string" } }, "required": [ "RoleArn" ], "type": "object" }, "Type": { "enum": [ "AWS::Shield::DRTAccess" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Shield::ProactiveEngagement": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "EmergencyContactList": { "items": { "$ref": "#/definitions/AWS::Shield::ProactiveEngagement.EmergencyContact" }, "type": "array" }, "ProactiveEngagementStatus": { "type": "string" } }, "required": [ "EmergencyContactList", "ProactiveEngagementStatus" ], "type": "object" }, "Type": { "enum": [ "AWS::Shield::ProactiveEngagement" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Shield::ProactiveEngagement.EmergencyContact": { "additionalProperties": false, "properties": { "ContactNotes": { "type": "string" }, "EmailAddress": { "type": "string" }, "PhoneNumber": { "type": "string" } }, "required": [ "EmailAddress" ], "type": "object" }, "AWS::Shield::Protection": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ApplicationLayerAutomaticResponseConfiguration": { "$ref": "#/definitions/AWS::Shield::Protection.ApplicationLayerAutomaticResponseConfiguration" }, "HealthCheckArns": { "items": { "type": "string" }, "type": "array" }, "Name": { "type": "string" }, "ResourceArn": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "Name", "ResourceArn" ], "type": "object" }, "Type": { "enum": [ "AWS::Shield::Protection" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Shield::Protection.Action": { "additionalProperties": false, "properties": { "Block": { "type": "object" }, "Count": { "type": "object" } }, "type": "object" }, "AWS::Shield::Protection.ApplicationLayerAutomaticResponseConfiguration": { "additionalProperties": false, "properties": { "Action": { "$ref": "#/definitions/AWS::Shield::Protection.Action" }, "Status": { "type": "string" } }, "required": [ "Action", "Status" ], "type": "object" }, "AWS::Shield::ProtectionGroup": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Aggregation": { "type": "string" }, "Members": { "items": { "type": "string" }, "type": "array" }, "Pattern": { "type": "string" }, "ProtectionGroupId": { "type": "string" }, "ResourceType": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "Aggregation", "Pattern", "ProtectionGroupId" ], "type": "object" }, "Type": { "enum": [ "AWS::Shield::ProtectionGroup" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Signer::ProfilePermission": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Action": { "type": "string" }, "Principal": { "type": "string" }, "ProfileName": { "type": "string" }, "ProfileVersion": { "type": "string" }, "StatementId": { "type": "string" } }, "required": [ "Action", "Principal", "ProfileName", "StatementId" ], "type": "object" }, "Type": { "enum": [ "AWS::Signer::ProfilePermission" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Signer::SigningProfile": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "PlatformId": { "type": "string" }, "SignatureValidityPeriod": { "$ref": "#/definitions/AWS::Signer::SigningProfile.SignatureValidityPeriod" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "PlatformId" ], "type": "object" }, "Type": { "enum": [ "AWS::Signer::SigningProfile" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Signer::SigningProfile.SignatureValidityPeriod": { "additionalProperties": false, "properties": { "Type": { "type": "string" }, "Value": { "type": "number" } }, "type": "object" }, "AWS::SimSpaceWeaver::Simulation": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "MaximumDuration": { "type": "string" }, "Name": { "type": "string" }, "RoleArn": { "type": "string" }, "SchemaS3Location": { "$ref": "#/definitions/AWS::SimSpaceWeaver::Simulation.S3Location" }, "SnapshotS3Location": { "$ref": "#/definitions/AWS::SimSpaceWeaver::Simulation.S3Location" } }, "required": [ "Name", "RoleArn" ], "type": "object" }, "Type": { "enum": [ "AWS::SimSpaceWeaver::Simulation" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::SimSpaceWeaver::Simulation.S3Location": { "additionalProperties": false, "properties": { "BucketName": { "type": "string" }, "ObjectKey": { "type": "string" } }, "required": [ "BucketName", "ObjectKey" ], "type": "object" }, "AWS::StepFunctions::Activity": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Name": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/AWS::StepFunctions::Activity.TagsEntry" }, "type": "array" } }, "required": [ "Name" ], "type": "object" }, "Type": { "enum": [ "AWS::StepFunctions::Activity" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::StepFunctions::Activity.TagsEntry": { "additionalProperties": false, "properties": { "Key": { "type": "string" }, "Value": { "type": "string" } }, "required": [ "Key", "Value" ], "type": "object" }, "AWS::StepFunctions::StateMachine": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Definition": { "type": "object" }, "DefinitionS3Location": { "$ref": "#/definitions/AWS::StepFunctions::StateMachine.S3Location" }, "DefinitionString": { "type": "string" }, "DefinitionSubstitutions": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "object" } }, "type": "object" }, "LoggingConfiguration": { "$ref": "#/definitions/AWS::StepFunctions::StateMachine.LoggingConfiguration" }, "RoleArn": { "type": "string" }, "StateMachineName": { "type": "string" }, "StateMachineType": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/AWS::StepFunctions::StateMachine.TagsEntry" }, "type": "array" }, "TracingConfiguration": { "$ref": "#/definitions/AWS::StepFunctions::StateMachine.TracingConfiguration" } }, "required": [ "RoleArn" ], "type": "object" }, "Type": { "enum": [ "AWS::StepFunctions::StateMachine" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::StepFunctions::StateMachine.CloudWatchLogsLogGroup": { "additionalProperties": false, "properties": { "LogGroupArn": { "type": "string" } }, "type": "object" }, "AWS::StepFunctions::StateMachine.LogDestination": { "additionalProperties": false, "properties": { "CloudWatchLogsLogGroup": { "$ref": "#/definitions/AWS::StepFunctions::StateMachine.CloudWatchLogsLogGroup" } }, "type": "object" }, "AWS::StepFunctions::StateMachine.LoggingConfiguration": { "additionalProperties": false, "properties": { "Destinations": { "items": { "$ref": "#/definitions/AWS::StepFunctions::StateMachine.LogDestination" }, "type": "array" }, "IncludeExecutionData": { "type": "boolean" }, "Level": { "type": "string" } }, "type": "object" }, "AWS::StepFunctions::StateMachine.S3Location": { "additionalProperties": false, "properties": { "Bucket": { "type": "string" }, "Key": { "type": "string" }, "Version": { "type": "string" } }, "required": [ "Bucket", "Key" ], "type": "object" }, "AWS::StepFunctions::StateMachine.TagsEntry": { "additionalProperties": false, "properties": { "Key": { "type": "string" }, "Value": { "type": "string" } }, "required": [ "Key", "Value" ], "type": "object" }, "AWS::StepFunctions::StateMachine.TracingConfiguration": { "additionalProperties": false, "properties": { "Enabled": { "type": "boolean" } }, "type": "object" }, "AWS::StepFunctions::StateMachineAlias": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "DeploymentPreference": { "$ref": "#/definitions/AWS::StepFunctions::StateMachineAlias.DeploymentPreference" }, "Description": { "type": "string" }, "Name": { "type": "string" }, "RoutingConfiguration": { "items": { "$ref": "#/definitions/AWS::StepFunctions::StateMachineAlias.RoutingConfigurationVersion" }, "type": "array" } }, "type": "object" }, "Type": { "enum": [ "AWS::StepFunctions::StateMachineAlias" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::StepFunctions::StateMachineAlias.DeploymentPreference": { "additionalProperties": false, "properties": { "Alarms": { "items": { "type": "string" }, "type": "array" }, "Interval": { "type": "number" }, "Percentage": { "type": "number" }, "StateMachineVersionArn": { "type": "string" }, "Type": { "type": "string" } }, "required": [ "StateMachineVersionArn", "Type" ], "type": "object" }, "AWS::StepFunctions::StateMachineAlias.RoutingConfigurationVersion": { "additionalProperties": false, "properties": { "StateMachineVersionArn": { "type": "string" }, "Weight": { "type": "number" } }, "required": [ "StateMachineVersionArn", "Weight" ], "type": "object" }, "AWS::StepFunctions::StateMachineVersion": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "StateMachineArn": { "type": "string" }, "StateMachineRevisionId": { "type": "string" } }, "required": [ "StateMachineArn" ], "type": "object" }, "Type": { "enum": [ "AWS::StepFunctions::StateMachineVersion" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::SupportApp::AccountAlias": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AccountAlias": { "type": "string" } }, "required": [ "AccountAlias" ], "type": "object" }, "Type": { "enum": [ "AWS::SupportApp::AccountAlias" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::SupportApp::SlackChannelConfiguration": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ChannelId": { "type": "string" }, "ChannelName": { "type": "string" }, "ChannelRoleArn": { "type": "string" }, "NotifyOnAddCorrespondenceToCase": { "type": "boolean" }, "NotifyOnCaseSeverity": { "type": "string" }, "NotifyOnCreateOrReopenCase": { "type": "boolean" }, "NotifyOnResolveCase": { "type": "boolean" }, "TeamId": { "type": "string" } }, "required": [ "ChannelId", "ChannelRoleArn", "NotifyOnCaseSeverity", "TeamId" ], "type": "object" }, "Type": { "enum": [ "AWS::SupportApp::SlackChannelConfiguration" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::SupportApp::SlackWorkspaceConfiguration": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "TeamId": { "type": "string" }, "VersionId": { "type": "string" } }, "required": [ "TeamId" ], "type": "object" }, "Type": { "enum": [ "AWS::SupportApp::SlackWorkspaceConfiguration" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Synthetics::Canary": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ArtifactConfig": { "$ref": "#/definitions/AWS::Synthetics::Canary.ArtifactConfig" }, "ArtifactS3Location": { "type": "string" }, "Code": { "$ref": "#/definitions/AWS::Synthetics::Canary.Code" }, "ExecutionRoleArn": { "type": "string" }, "FailureRetentionPeriod": { "type": "number" }, "Name": { "type": "string" }, "RunConfig": { "$ref": "#/definitions/AWS::Synthetics::Canary.RunConfig" }, "RuntimeVersion": { "type": "string" }, "Schedule": { "$ref": "#/definitions/AWS::Synthetics::Canary.Schedule" }, "StartCanaryAfterCreation": { "type": "boolean" }, "SuccessRetentionPeriod": { "type": "number" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "VPCConfig": { "$ref": "#/definitions/AWS::Synthetics::Canary.VPCConfig" }, "VisualReference": { "$ref": "#/definitions/AWS::Synthetics::Canary.VisualReference" } }, "required": [ "ArtifactS3Location", "Code", "ExecutionRoleArn", "Name", "RuntimeVersion", "Schedule" ], "type": "object" }, "Type": { "enum": [ "AWS::Synthetics::Canary" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Synthetics::Canary.ArtifactConfig": { "additionalProperties": false, "properties": { "S3Encryption": { "$ref": "#/definitions/AWS::Synthetics::Canary.S3Encryption" } }, "type": "object" }, "AWS::Synthetics::Canary.BaseScreenshot": { "additionalProperties": false, "properties": { "IgnoreCoordinates": { "items": { "type": "string" }, "type": "array" }, "ScreenshotName": { "type": "string" } }, "required": [ "ScreenshotName" ], "type": "object" }, "AWS::Synthetics::Canary.Code": { "additionalProperties": false, "properties": { "Handler": { "type": "string" }, "S3Bucket": { "type": "string" }, "S3Key": { "type": "string" }, "S3ObjectVersion": { "type": "string" }, "Script": { "type": "string" }, "SourceLocationArn": { "type": "string" } }, "required": [ "Handler" ], "type": "object" }, "AWS::Synthetics::Canary.RunConfig": { "additionalProperties": false, "properties": { "ActiveTracing": { "type": "boolean" }, "EnvironmentVariables": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" }, "MemoryInMB": { "type": "number" }, "TimeoutInSeconds": { "type": "number" } }, "type": "object" }, "AWS::Synthetics::Canary.S3Encryption": { "additionalProperties": false, "properties": { "EncryptionMode": { "type": "string" }, "KmsKeyArn": { "type": "string" } }, "type": "object" }, "AWS::Synthetics::Canary.Schedule": { "additionalProperties": false, "properties": { "DurationInSeconds": { "type": "string" }, "Expression": { "type": "string" } }, "required": [ "Expression" ], "type": "object" }, "AWS::Synthetics::Canary.VPCConfig": { "additionalProperties": false, "properties": { "SecurityGroupIds": { "items": { "type": "string" }, "type": "array" }, "SubnetIds": { "items": { "type": "string" }, "type": "array" }, "VpcId": { "type": "string" } }, "required": [ "SecurityGroupIds", "SubnetIds" ], "type": "object" }, "AWS::Synthetics::Canary.VisualReference": { "additionalProperties": false, "properties": { "BaseCanaryRunId": { "type": "string" }, "BaseScreenshots": { "items": { "$ref": "#/definitions/AWS::Synthetics::Canary.BaseScreenshot" }, "type": "array" } }, "required": [ "BaseCanaryRunId" ], "type": "object" }, "AWS::Synthetics::Group": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Name": { "type": "string" }, "ResourceArns": { "items": { "type": "string" }, "type": "array" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "Name" ], "type": "object" }, "Type": { "enum": [ "AWS::Synthetics::Group" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::SystemsManagerSAP::Application": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ApplicationId": { "type": "string" }, "ApplicationType": { "type": "string" }, "Credentials": { "items": { "$ref": "#/definitions/AWS::SystemsManagerSAP::Application.Credential" }, "type": "array" }, "Instances": { "items": { "type": "string" }, "type": "array" }, "SapInstanceNumber": { "type": "string" }, "Sid": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "ApplicationId", "ApplicationType" ], "type": "object" }, "Type": { "enum": [ "AWS::SystemsManagerSAP::Application" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::SystemsManagerSAP::Application.Credential": { "additionalProperties": false, "properties": { "CredentialType": { "type": "string" }, "DatabaseName": { "type": "string" }, "SecretId": { "type": "string" } }, "type": "object" }, "AWS::Timestream::Database": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "DatabaseName": { "type": "string" }, "KmsKeyId": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "type": "object" }, "Type": { "enum": [ "AWS::Timestream::Database" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::Timestream::ScheduledQuery": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ClientToken": { "type": "string" }, "ErrorReportConfiguration": { "$ref": "#/definitions/AWS::Timestream::ScheduledQuery.ErrorReportConfiguration" }, "KmsKeyId": { "type": "string" }, "NotificationConfiguration": { "$ref": "#/definitions/AWS::Timestream::ScheduledQuery.NotificationConfiguration" }, "QueryString": { "type": "string" }, "ScheduleConfiguration": { "$ref": "#/definitions/AWS::Timestream::ScheduledQuery.ScheduleConfiguration" }, "ScheduledQueryExecutionRoleArn": { "type": "string" }, "ScheduledQueryName": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "TargetConfiguration": { "$ref": "#/definitions/AWS::Timestream::ScheduledQuery.TargetConfiguration" } }, "required": [ "ErrorReportConfiguration", "NotificationConfiguration", "QueryString", "ScheduleConfiguration", "ScheduledQueryExecutionRoleArn" ], "type": "object" }, "Type": { "enum": [ "AWS::Timestream::ScheduledQuery" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Timestream::ScheduledQuery.DimensionMapping": { "additionalProperties": false, "properties": { "DimensionValueType": { "type": "string" }, "Name": { "type": "string" } }, "required": [ "DimensionValueType", "Name" ], "type": "object" }, "AWS::Timestream::ScheduledQuery.ErrorReportConfiguration": { "additionalProperties": false, "properties": { "S3Configuration": { "$ref": "#/definitions/AWS::Timestream::ScheduledQuery.S3Configuration" } }, "required": [ "S3Configuration" ], "type": "object" }, "AWS::Timestream::ScheduledQuery.MixedMeasureMapping": { "additionalProperties": false, "properties": { "MeasureName": { "type": "string" }, "MeasureValueType": { "type": "string" }, "MultiMeasureAttributeMappings": { "items": { "$ref": "#/definitions/AWS::Timestream::ScheduledQuery.MultiMeasureAttributeMapping" }, "type": "array" }, "SourceColumn": { "type": "string" }, "TargetMeasureName": { "type": "string" } }, "required": [ "MeasureValueType" ], "type": "object" }, "AWS::Timestream::ScheduledQuery.MultiMeasureAttributeMapping": { "additionalProperties": false, "properties": { "MeasureValueType": { "type": "string" }, "SourceColumn": { "type": "string" }, "TargetMultiMeasureAttributeName": { "type": "string" } }, "required": [ "MeasureValueType", "SourceColumn" ], "type": "object" }, "AWS::Timestream::ScheduledQuery.MultiMeasureMappings": { "additionalProperties": false, "properties": { "MultiMeasureAttributeMappings": { "items": { "$ref": "#/definitions/AWS::Timestream::ScheduledQuery.MultiMeasureAttributeMapping" }, "type": "array" }, "TargetMultiMeasureName": { "type": "string" } }, "required": [ "MultiMeasureAttributeMappings" ], "type": "object" }, "AWS::Timestream::ScheduledQuery.NotificationConfiguration": { "additionalProperties": false, "properties": { "SnsConfiguration": { "$ref": "#/definitions/AWS::Timestream::ScheduledQuery.SnsConfiguration" } }, "required": [ "SnsConfiguration" ], "type": "object" }, "AWS::Timestream::ScheduledQuery.S3Configuration": { "additionalProperties": false, "properties": { "BucketName": { "type": "string" }, "EncryptionOption": { "type": "string" }, "ObjectKeyPrefix": { "type": "string" } }, "required": [ "BucketName" ], "type": "object" }, "AWS::Timestream::ScheduledQuery.ScheduleConfiguration": { "additionalProperties": false, "properties": { "ScheduleExpression": { "type": "string" } }, "required": [ "ScheduleExpression" ], "type": "object" }, "AWS::Timestream::ScheduledQuery.SnsConfiguration": { "additionalProperties": false, "properties": { "TopicArn": { "type": "string" } }, "required": [ "TopicArn" ], "type": "object" }, "AWS::Timestream::ScheduledQuery.TargetConfiguration": { "additionalProperties": false, "properties": { "TimestreamConfiguration": { "$ref": "#/definitions/AWS::Timestream::ScheduledQuery.TimestreamConfiguration" } }, "required": [ "TimestreamConfiguration" ], "type": "object" }, "AWS::Timestream::ScheduledQuery.TimestreamConfiguration": { "additionalProperties": false, "properties": { "DatabaseName": { "type": "string" }, "DimensionMappings": { "items": { "$ref": "#/definitions/AWS::Timestream::ScheduledQuery.DimensionMapping" }, "type": "array" }, "MeasureNameColumn": { "type": "string" }, "MixedMeasureMappings": { "items": { "$ref": "#/definitions/AWS::Timestream::ScheduledQuery.MixedMeasureMapping" }, "type": "array" }, "MultiMeasureMappings": { "$ref": "#/definitions/AWS::Timestream::ScheduledQuery.MultiMeasureMappings" }, "TableName": { "type": "string" }, "TimeColumn": { "type": "string" } }, "required": [ "DatabaseName", "DimensionMappings", "TableName", "TimeColumn" ], "type": "object" }, "AWS::Timestream::Table": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "DatabaseName": { "type": "string" }, "MagneticStoreWriteProperties": { "$ref": "#/definitions/AWS::Timestream::Table.MagneticStoreWriteProperties" }, "RetentionProperties": { "$ref": "#/definitions/AWS::Timestream::Table.RetentionProperties" }, "Schema": { "$ref": "#/definitions/AWS::Timestream::Table.Schema" }, "TableName": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "DatabaseName" ], "type": "object" }, "Type": { "enum": [ "AWS::Timestream::Table" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Timestream::Table.MagneticStoreRejectedDataLocation": { "additionalProperties": false, "properties": { "S3Configuration": { "$ref": "#/definitions/AWS::Timestream::Table.S3Configuration" } }, "type": "object" }, "AWS::Timestream::Table.MagneticStoreWriteProperties": { "additionalProperties": false, "properties": { "EnableMagneticStoreWrites": { "type": "boolean" }, "MagneticStoreRejectedDataLocation": { "$ref": "#/definitions/AWS::Timestream::Table.MagneticStoreRejectedDataLocation" } }, "required": [ "EnableMagneticStoreWrites" ], "type": "object" }, "AWS::Timestream::Table.PartitionKey": { "additionalProperties": false, "properties": { "EnforcementInRecord": { "type": "string" }, "Name": { "type": "string" }, "Type": { "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::Timestream::Table.RetentionProperties": { "additionalProperties": false, "properties": { "MagneticStoreRetentionPeriodInDays": { "type": "string" }, "MemoryStoreRetentionPeriodInHours": { "type": "string" } }, "type": "object" }, "AWS::Timestream::Table.S3Configuration": { "additionalProperties": false, "properties": { "BucketName": { "type": "string" }, "EncryptionOption": { "type": "string" }, "KmsKeyId": { "type": "string" }, "ObjectKeyPrefix": { "type": "string" } }, "required": [ "BucketName", "EncryptionOption" ], "type": "object" }, "AWS::Timestream::Table.Schema": { "additionalProperties": false, "properties": { "CompositePartitionKey": { "items": { "$ref": "#/definitions/AWS::Timestream::Table.PartitionKey" }, "type": "array" } }, "type": "object" }, "AWS::Transfer::Agreement": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AccessRole": { "type": "string" }, "BaseDirectory": { "type": "string" }, "Description": { "type": "string" }, "LocalProfileId": { "type": "string" }, "PartnerProfileId": { "type": "string" }, "ServerId": { "type": "string" }, "Status": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "AccessRole", "BaseDirectory", "LocalProfileId", "PartnerProfileId", "ServerId" ], "type": "object" }, "Type": { "enum": [ "AWS::Transfer::Agreement" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Transfer::Certificate": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ActiveDate": { "type": "string" }, "Certificate": { "type": "string" }, "CertificateChain": { "type": "string" }, "Description": { "type": "string" }, "InactiveDate": { "type": "string" }, "PrivateKey": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "Usage": { "type": "string" } }, "required": [ "Certificate", "Usage" ], "type": "object" }, "Type": { "enum": [ "AWS::Transfer::Certificate" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Transfer::Connector": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AccessRole": { "type": "string" }, "As2Config": { "$ref": "#/definitions/AWS::Transfer::Connector.As2Config" }, "LoggingRole": { "type": "string" }, "SftpConfig": { "$ref": "#/definitions/AWS::Transfer::Connector.SftpConfig" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "Url": { "type": "string" } }, "required": [ "AccessRole", "Url" ], "type": "object" }, "Type": { "enum": [ "AWS::Transfer::Connector" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Transfer::Connector.As2Config": { "additionalProperties": false, "properties": { "BasicAuthSecretId": { "type": "string" }, "Compression": { "type": "string" }, "EncryptionAlgorithm": { "type": "string" }, "LocalProfileId": { "type": "string" }, "MdnResponse": { "type": "string" }, "MdnSigningAlgorithm": { "type": "string" }, "MessageSubject": { "type": "string" }, "PartnerProfileId": { "type": "string" }, "SigningAlgorithm": { "type": "string" } }, "type": "object" }, "AWS::Transfer::Connector.SftpConfig": { "additionalProperties": false, "properties": { "TrustedHostKeys": { "items": { "type": "string" }, "type": "array" }, "UserSecretId": { "type": "string" } }, "type": "object" }, "AWS::Transfer::Profile": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "As2Id": { "type": "string" }, "CertificateIds": { "items": { "type": "string" }, "type": "array" }, "ProfileType": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "As2Id", "ProfileType" ], "type": "object" }, "Type": { "enum": [ "AWS::Transfer::Profile" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Transfer::Server": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Certificate": { "type": "string" }, "Domain": { "type": "string" }, "EndpointDetails": { "$ref": "#/definitions/AWS::Transfer::Server.EndpointDetails" }, "EndpointType": { "type": "string" }, "IdentityProviderDetails": { "$ref": "#/definitions/AWS::Transfer::Server.IdentityProviderDetails" }, "IdentityProviderType": { "type": "string" }, "LoggingRole": { "type": "string" }, "PostAuthenticationLoginBanner": { "type": "string" }, "PreAuthenticationLoginBanner": { "type": "string" }, "ProtocolDetails": { "$ref": "#/definitions/AWS::Transfer::Server.ProtocolDetails" }, "Protocols": { "items": { "$ref": "#/definitions/AWS::Transfer::Server.Protocol" }, "type": "array" }, "SecurityPolicyName": { "type": "string" }, "StructuredLogDestinations": { "items": { "$ref": "#/definitions/AWS::Transfer::Server.StructuredLogDestination" }, "type": "array" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "WorkflowDetails": { "$ref": "#/definitions/AWS::Transfer::Server.WorkflowDetails" } }, "type": "object" }, "Type": { "enum": [ "AWS::Transfer::Server" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::Transfer::Server.As2Transport": { "additionalProperties": false, "properties": {}, "type": "object" }, "AWS::Transfer::Server.EndpointDetails": { "additionalProperties": false, "properties": { "AddressAllocationIds": { "items": { "type": "string" }, "type": "array" }, "SecurityGroupIds": { "items": { "type": "string" }, "type": "array" }, "SubnetIds": { "items": { "type": "string" }, "type": "array" }, "VpcEndpointId": { "type": "string" }, "VpcId": { "type": "string" } }, "type": "object" }, "AWS::Transfer::Server.IdentityProviderDetails": { "additionalProperties": false, "properties": { "DirectoryId": { "type": "string" }, "Function": { "type": "string" }, "InvocationRole": { "type": "string" }, "SftpAuthenticationMethods": { "type": "string" }, "Url": { "type": "string" } }, "type": "object" }, "AWS::Transfer::Server.Protocol": { "additionalProperties": false, "properties": {}, "type": "object" }, "AWS::Transfer::Server.ProtocolDetails": { "additionalProperties": false, "properties": { "As2Transports": { "items": { "$ref": "#/definitions/AWS::Transfer::Server.As2Transport" }, "type": "array" }, "PassiveIp": { "type": "string" }, "SetStatOption": { "type": "string" }, "TlsSessionResumptionMode": { "type": "string" } }, "type": "object" }, "AWS::Transfer::Server.StructuredLogDestination": { "additionalProperties": false, "properties": {}, "type": "object" }, "AWS::Transfer::Server.WorkflowDetail": { "additionalProperties": false, "properties": { "ExecutionRole": { "type": "string" }, "WorkflowId": { "type": "string" } }, "required": [ "ExecutionRole", "WorkflowId" ], "type": "object" }, "AWS::Transfer::Server.WorkflowDetails": { "additionalProperties": false, "properties": { "OnPartialUpload": { "items": { "$ref": "#/definitions/AWS::Transfer::Server.WorkflowDetail" }, "type": "array" }, "OnUpload": { "items": { "$ref": "#/definitions/AWS::Transfer::Server.WorkflowDetail" }, "type": "array" } }, "type": "object" }, "AWS::Transfer::User": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "HomeDirectory": { "type": "string" }, "HomeDirectoryMappings": { "items": { "$ref": "#/definitions/AWS::Transfer::User.HomeDirectoryMapEntry" }, "type": "array" }, "HomeDirectoryType": { "type": "string" }, "Policy": { "type": "string" }, "PosixProfile": { "$ref": "#/definitions/AWS::Transfer::User.PosixProfile" }, "Role": { "type": "string" }, "ServerId": { "type": "string" }, "SshPublicKeys": { "items": { "$ref": "#/definitions/AWS::Transfer::User.SshPublicKey" }, "type": "array" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "UserName": { "type": "string" } }, "required": [ "Role", "ServerId", "UserName" ], "type": "object" }, "Type": { "enum": [ "AWS::Transfer::User" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Transfer::User.HomeDirectoryMapEntry": { "additionalProperties": false, "properties": { "Entry": { "type": "string" }, "Target": { "type": "string" } }, "required": [ "Entry", "Target" ], "type": "object" }, "AWS::Transfer::User.PosixProfile": { "additionalProperties": false, "properties": { "Gid": { "type": "number" }, "SecondaryGids": { "items": { "type": "number" }, "type": "array" }, "Uid": { "type": "number" } }, "required": [ "Gid", "Uid" ], "type": "object" }, "AWS::Transfer::User.SshPublicKey": { "additionalProperties": false, "properties": {}, "type": "object" }, "AWS::Transfer::Workflow": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "OnExceptionSteps": { "items": { "$ref": "#/definitions/AWS::Transfer::Workflow.WorkflowStep" }, "type": "array" }, "Steps": { "items": { "$ref": "#/definitions/AWS::Transfer::Workflow.WorkflowStep" }, "type": "array" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "Steps" ], "type": "object" }, "Type": { "enum": [ "AWS::Transfer::Workflow" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Transfer::Workflow.CopyStepDetails": { "additionalProperties": false, "properties": { "DestinationFileLocation": { "$ref": "#/definitions/AWS::Transfer::Workflow.S3FileLocation" }, "Name": { "type": "string" }, "OverwriteExisting": { "type": "string" }, "SourceFileLocation": { "type": "string" } }, "type": "object" }, "AWS::Transfer::Workflow.CustomStepDetails": { "additionalProperties": false, "properties": { "Name": { "type": "string" }, "SourceFileLocation": { "type": "string" }, "Target": { "type": "string" }, "TimeoutSeconds": { "type": "number" } }, "type": "object" }, "AWS::Transfer::Workflow.DecryptStepDetails": { "additionalProperties": false, "properties": { "DestinationFileLocation": { "$ref": "#/definitions/AWS::Transfer::Workflow.InputFileLocation" }, "Name": { "type": "string" }, "OverwriteExisting": { "type": "string" }, "SourceFileLocation": { "type": "string" }, "Type": { "type": "string" } }, "type": "object" }, "AWS::Transfer::Workflow.DeleteStepDetails": { "additionalProperties": false, "properties": { "Name": { "type": "string" }, "SourceFileLocation": { "type": "string" } }, "type": "object" }, "AWS::Transfer::Workflow.EfsInputFileLocation": { "additionalProperties": false, "properties": { "FileSystemId": { "type": "string" }, "Path": { "type": "string" } }, "type": "object" }, "AWS::Transfer::Workflow.InputFileLocation": { "additionalProperties": false, "properties": { "EfsFileLocation": { "$ref": "#/definitions/AWS::Transfer::Workflow.EfsInputFileLocation" }, "S3FileLocation": { "$ref": "#/definitions/AWS::Transfer::Workflow.S3InputFileLocation" } }, "type": "object" }, "AWS::Transfer::Workflow.S3FileLocation": { "additionalProperties": false, "properties": { "S3FileLocation": { "$ref": "#/definitions/AWS::Transfer::Workflow.S3InputFileLocation" } }, "type": "object" }, "AWS::Transfer::Workflow.S3InputFileLocation": { "additionalProperties": false, "properties": { "Bucket": { "type": "string" }, "Key": { "type": "string" } }, "type": "object" }, "AWS::Transfer::Workflow.S3Tag": { "additionalProperties": false, "properties": { "Key": { "type": "string" }, "Value": { "type": "string" } }, "required": [ "Key", "Value" ], "type": "object" }, "AWS::Transfer::Workflow.TagStepDetails": { "additionalProperties": false, "properties": { "Name": { "type": "string" }, "SourceFileLocation": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/AWS::Transfer::Workflow.S3Tag" }, "type": "array" } }, "type": "object" }, "AWS::Transfer::Workflow.WorkflowStep": { "additionalProperties": false, "properties": { "CopyStepDetails": { "$ref": "#/definitions/AWS::Transfer::Workflow.CopyStepDetails" }, "CustomStepDetails": { "$ref": "#/definitions/AWS::Transfer::Workflow.CustomStepDetails" }, "DecryptStepDetails": { "$ref": "#/definitions/AWS::Transfer::Workflow.DecryptStepDetails" }, "DeleteStepDetails": { "$ref": "#/definitions/AWS::Transfer::Workflow.DeleteStepDetails" }, "TagStepDetails": { "$ref": "#/definitions/AWS::Transfer::Workflow.TagStepDetails" }, "Type": { "type": "string" } }, "type": "object" }, "AWS::VerifiedPermissions::IdentitySource": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Configuration": { "$ref": "#/definitions/AWS::VerifiedPermissions::IdentitySource.IdentitySourceConfiguration" }, "PolicyStoreId": { "type": "string" }, "PrincipalEntityType": { "type": "string" } }, "required": [ "Configuration" ], "type": "object" }, "Type": { "enum": [ "AWS::VerifiedPermissions::IdentitySource" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::VerifiedPermissions::IdentitySource.CognitoUserPoolConfiguration": { "additionalProperties": false, "properties": { "ClientIds": { "items": { "type": "string" }, "type": "array" }, "UserPoolArn": { "type": "string" } }, "required": [ "UserPoolArn" ], "type": "object" }, "AWS::VerifiedPermissions::IdentitySource.IdentitySourceConfiguration": { "additionalProperties": false, "properties": { "CognitoUserPoolConfiguration": { "$ref": "#/definitions/AWS::VerifiedPermissions::IdentitySource.CognitoUserPoolConfiguration" } }, "required": [ "CognitoUserPoolConfiguration" ], "type": "object" }, "AWS::VerifiedPermissions::IdentitySource.IdentitySourceDetails": { "additionalProperties": false, "properties": { "ClientIds": { "items": { "type": "string" }, "type": "array" }, "DiscoveryUrl": { "type": "string" }, "OpenIdIssuer": { "type": "string" }, "UserPoolArn": { "type": "string" } }, "type": "object" }, "AWS::VerifiedPermissions::Policy": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Definition": { "$ref": "#/definitions/AWS::VerifiedPermissions::Policy.PolicyDefinition" }, "PolicyStoreId": { "type": "string" } }, "required": [ "Definition" ], "type": "object" }, "Type": { "enum": [ "AWS::VerifiedPermissions::Policy" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::VerifiedPermissions::Policy.EntityIdentifier": { "additionalProperties": false, "properties": { "EntityId": { "type": "string" }, "EntityType": { "type": "string" } }, "required": [ "EntityId", "EntityType" ], "type": "object" }, "AWS::VerifiedPermissions::Policy.PolicyDefinition": { "additionalProperties": false, "properties": { "Static": { "$ref": "#/definitions/AWS::VerifiedPermissions::Policy.StaticPolicyDefinition" }, "TemplateLinked": { "$ref": "#/definitions/AWS::VerifiedPermissions::Policy.TemplateLinkedPolicyDefinition" } }, "type": "object" }, "AWS::VerifiedPermissions::Policy.StaticPolicyDefinition": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "Statement": { "type": "string" } }, "required": [ "Statement" ], "type": "object" }, "AWS::VerifiedPermissions::Policy.TemplateLinkedPolicyDefinition": { "additionalProperties": false, "properties": { "PolicyTemplateId": { "type": "string" }, "Principal": { "$ref": "#/definitions/AWS::VerifiedPermissions::Policy.EntityIdentifier" }, "Resource": { "$ref": "#/definitions/AWS::VerifiedPermissions::Policy.EntityIdentifier" } }, "required": [ "PolicyTemplateId" ], "type": "object" }, "AWS::VerifiedPermissions::PolicyStore": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Schema": { "$ref": "#/definitions/AWS::VerifiedPermissions::PolicyStore.SchemaDefinition" }, "ValidationSettings": { "$ref": "#/definitions/AWS::VerifiedPermissions::PolicyStore.ValidationSettings" } }, "required": [ "ValidationSettings" ], "type": "object" }, "Type": { "enum": [ "AWS::VerifiedPermissions::PolicyStore" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::VerifiedPermissions::PolicyStore.SchemaDefinition": { "additionalProperties": false, "properties": { "CedarJson": { "type": "string" } }, "type": "object" }, "AWS::VerifiedPermissions::PolicyStore.ValidationSettings": { "additionalProperties": false, "properties": { "Mode": { "type": "string" } }, "required": [ "Mode" ], "type": "object" }, "AWS::VerifiedPermissions::PolicyTemplate": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "PolicyStoreId": { "type": "string" }, "Statement": { "type": "string" } }, "required": [ "Statement" ], "type": "object" }, "Type": { "enum": [ "AWS::VerifiedPermissions::PolicyTemplate" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::VoiceID::Domain": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "Name": { "type": "string" }, "ServerSideEncryptionConfiguration": { "$ref": "#/definitions/AWS::VoiceID::Domain.ServerSideEncryptionConfiguration" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "Name", "ServerSideEncryptionConfiguration" ], "type": "object" }, "Type": { "enum": [ "AWS::VoiceID::Domain" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::VoiceID::Domain.ServerSideEncryptionConfiguration": { "additionalProperties": false, "properties": { "KmsKeyId": { "type": "string" } }, "required": [ "KmsKeyId" ], "type": "object" }, "AWS::VpcLattice::AccessLogSubscription": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "DestinationArn": { "type": "string" }, "ResourceIdentifier": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "DestinationArn" ], "type": "object" }, "Type": { "enum": [ "AWS::VpcLattice::AccessLogSubscription" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::VpcLattice::AuthPolicy": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Policy": { "type": "object" }, "ResourceIdentifier": { "type": "string" } }, "required": [ "Policy", "ResourceIdentifier" ], "type": "object" }, "Type": { "enum": [ "AWS::VpcLattice::AuthPolicy" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::VpcLattice::Listener": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "DefaultAction": { "$ref": "#/definitions/AWS::VpcLattice::Listener.DefaultAction" }, "Name": { "type": "string" }, "Port": { "type": "number" }, "Protocol": { "type": "string" }, "ServiceIdentifier": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "DefaultAction", "Protocol" ], "type": "object" }, "Type": { "enum": [ "AWS::VpcLattice::Listener" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::VpcLattice::Listener.DefaultAction": { "additionalProperties": false, "properties": { "FixedResponse": { "$ref": "#/definitions/AWS::VpcLattice::Listener.FixedResponse" }, "Forward": { "$ref": "#/definitions/AWS::VpcLattice::Listener.Forward" } }, "type": "object" }, "AWS::VpcLattice::Listener.FixedResponse": { "additionalProperties": false, "properties": { "StatusCode": { "type": "number" } }, "required": [ "StatusCode" ], "type": "object" }, "AWS::VpcLattice::Listener.Forward": { "additionalProperties": false, "properties": { "TargetGroups": { "items": { "$ref": "#/definitions/AWS::VpcLattice::Listener.WeightedTargetGroup" }, "type": "array" } }, "required": [ "TargetGroups" ], "type": "object" }, "AWS::VpcLattice::Listener.WeightedTargetGroup": { "additionalProperties": false, "properties": { "TargetGroupIdentifier": { "type": "string" }, "Weight": { "type": "number" } }, "required": [ "TargetGroupIdentifier" ], "type": "object" }, "AWS::VpcLattice::ResourcePolicy": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Policy": { "type": "object" }, "ResourceArn": { "type": "string" } }, "required": [ "Policy", "ResourceArn" ], "type": "object" }, "Type": { "enum": [ "AWS::VpcLattice::ResourcePolicy" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::VpcLattice::Rule": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Action": { "$ref": "#/definitions/AWS::VpcLattice::Rule.Action" }, "ListenerIdentifier": { "type": "string" }, "Match": { "$ref": "#/definitions/AWS::VpcLattice::Rule.Match" }, "Name": { "type": "string" }, "Priority": { "type": "number" }, "ServiceIdentifier": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "Action", "Match", "Priority" ], "type": "object" }, "Type": { "enum": [ "AWS::VpcLattice::Rule" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::VpcLattice::Rule.Action": { "additionalProperties": false, "properties": { "FixedResponse": { "$ref": "#/definitions/AWS::VpcLattice::Rule.FixedResponse" }, "Forward": { "$ref": "#/definitions/AWS::VpcLattice::Rule.Forward" } }, "type": "object" }, "AWS::VpcLattice::Rule.FixedResponse": { "additionalProperties": false, "properties": { "StatusCode": { "type": "number" } }, "required": [ "StatusCode" ], "type": "object" }, "AWS::VpcLattice::Rule.Forward": { "additionalProperties": false, "properties": { "TargetGroups": { "items": { "$ref": "#/definitions/AWS::VpcLattice::Rule.WeightedTargetGroup" }, "type": "array" } }, "required": [ "TargetGroups" ], "type": "object" }, "AWS::VpcLattice::Rule.HeaderMatch": { "additionalProperties": false, "properties": { "CaseSensitive": { "type": "boolean" }, "Match": { "$ref": "#/definitions/AWS::VpcLattice::Rule.HeaderMatchType" }, "Name": { "type": "string" } }, "required": [ "Match", "Name" ], "type": "object" }, "AWS::VpcLattice::Rule.HeaderMatchType": { "additionalProperties": false, "properties": { "Contains": { "type": "string" }, "Exact": { "type": "string" }, "Prefix": { "type": "string" } }, "type": "object" }, "AWS::VpcLattice::Rule.HttpMatch": { "additionalProperties": false, "properties": { "HeaderMatches": { "items": { "$ref": "#/definitions/AWS::VpcLattice::Rule.HeaderMatch" }, "type": "array" }, "Method": { "type": "string" }, "PathMatch": { "$ref": "#/definitions/AWS::VpcLattice::Rule.PathMatch" } }, "type": "object" }, "AWS::VpcLattice::Rule.Match": { "additionalProperties": false, "properties": { "HttpMatch": { "$ref": "#/definitions/AWS::VpcLattice::Rule.HttpMatch" } }, "required": [ "HttpMatch" ], "type": "object" }, "AWS::VpcLattice::Rule.PathMatch": { "additionalProperties": false, "properties": { "CaseSensitive": { "type": "boolean" }, "Match": { "$ref": "#/definitions/AWS::VpcLattice::Rule.PathMatchType" } }, "required": [ "Match" ], "type": "object" }, "AWS::VpcLattice::Rule.PathMatchType": { "additionalProperties": false, "properties": { "Exact": { "type": "string" }, "Prefix": { "type": "string" } }, "type": "object" }, "AWS::VpcLattice::Rule.WeightedTargetGroup": { "additionalProperties": false, "properties": { "TargetGroupIdentifier": { "type": "string" }, "Weight": { "type": "number" } }, "required": [ "TargetGroupIdentifier" ], "type": "object" }, "AWS::VpcLattice::Service": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AuthType": { "type": "string" }, "CertificateArn": { "type": "string" }, "CustomDomainName": { "type": "string" }, "DnsEntry": { "$ref": "#/definitions/AWS::VpcLattice::Service.DnsEntry" }, "Name": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "type": "object" }, "Type": { "enum": [ "AWS::VpcLattice::Service" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::VpcLattice::Service.DnsEntry": { "additionalProperties": false, "properties": { "DomainName": { "type": "string" }, "HostedZoneId": { "type": "string" } }, "type": "object" }, "AWS::VpcLattice::ServiceNetwork": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AuthType": { "type": "string" }, "Name": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "type": "object" }, "Type": { "enum": [ "AWS::VpcLattice::ServiceNetwork" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::VpcLattice::ServiceNetworkServiceAssociation": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "DnsEntry": { "$ref": "#/definitions/AWS::VpcLattice::ServiceNetworkServiceAssociation.DnsEntry" }, "ServiceIdentifier": { "type": "string" }, "ServiceNetworkIdentifier": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "type": "object" }, "Type": { "enum": [ "AWS::VpcLattice::ServiceNetworkServiceAssociation" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::VpcLattice::ServiceNetworkServiceAssociation.DnsEntry": { "additionalProperties": false, "properties": { "DomainName": { "type": "string" }, "HostedZoneId": { "type": "string" } }, "type": "object" }, "AWS::VpcLattice::ServiceNetworkVpcAssociation": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "SecurityGroupIds": { "items": { "type": "string" }, "type": "array" }, "ServiceNetworkIdentifier": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "VpcIdentifier": { "type": "string" } }, "type": "object" }, "Type": { "enum": [ "AWS::VpcLattice::ServiceNetworkVpcAssociation" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::VpcLattice::TargetGroup": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Config": { "$ref": "#/definitions/AWS::VpcLattice::TargetGroup.TargetGroupConfig" }, "Name": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "Targets": { "items": { "$ref": "#/definitions/AWS::VpcLattice::TargetGroup.Target" }, "type": "array" }, "Type": { "type": "string" } }, "required": [ "Type" ], "type": "object" }, "Type": { "enum": [ "AWS::VpcLattice::TargetGroup" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::VpcLattice::TargetGroup.HealthCheckConfig": { "additionalProperties": false, "properties": { "Enabled": { "type": "boolean" }, "HealthCheckIntervalSeconds": { "type": "number" }, "HealthCheckTimeoutSeconds": { "type": "number" }, "HealthyThresholdCount": { "type": "number" }, "Matcher": { "$ref": "#/definitions/AWS::VpcLattice::TargetGroup.Matcher" }, "Path": { "type": "string" }, "Port": { "type": "number" }, "Protocol": { "type": "string" }, "ProtocolVersion": { "type": "string" }, "UnhealthyThresholdCount": { "type": "number" } }, "type": "object" }, "AWS::VpcLattice::TargetGroup.Matcher": { "additionalProperties": false, "properties": { "HttpCode": { "type": "string" } }, "required": [ "HttpCode" ], "type": "object" }, "AWS::VpcLattice::TargetGroup.Target": { "additionalProperties": false, "properties": { "Id": { "type": "string" }, "Port": { "type": "number" } }, "required": [ "Id" ], "type": "object" }, "AWS::VpcLattice::TargetGroup.TargetGroupConfig": { "additionalProperties": false, "properties": { "HealthCheck": { "$ref": "#/definitions/AWS::VpcLattice::TargetGroup.HealthCheckConfig" }, "IpAddressType": { "type": "string" }, "Port": { "type": "number" }, "Protocol": { "type": "string" }, "ProtocolVersion": { "type": "string" }, "VpcIdentifier": { "type": "string" } }, "required": [ "Port", "Protocol", "VpcIdentifier" ], "type": "object" }, "AWS::WAF::ByteMatchSet": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ByteMatchTuples": { "items": { "$ref": "#/definitions/AWS::WAF::ByteMatchSet.ByteMatchTuple" }, "type": "array" }, "Name": { "type": "string" } }, "required": [ "Name" ], "type": "object" }, "Type": { "enum": [ "AWS::WAF::ByteMatchSet" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::WAF::ByteMatchSet.ByteMatchTuple": { "additionalProperties": false, "properties": { "FieldToMatch": { "$ref": "#/definitions/AWS::WAF::ByteMatchSet.FieldToMatch" }, "PositionalConstraint": { "type": "string" }, "TargetString": { "type": "string" }, "TargetStringBase64": { "type": "string" }, "TextTransformation": { "type": "string" } }, "required": [ "FieldToMatch", "PositionalConstraint", "TextTransformation" ], "type": "object" }, "AWS::WAF::ByteMatchSet.FieldToMatch": { "additionalProperties": false, "properties": { "Data": { "type": "string" }, "Type": { "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::WAF::IPSet": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "IPSetDescriptors": { "items": { "$ref": "#/definitions/AWS::WAF::IPSet.IPSetDescriptor" }, "type": "array" }, "Name": { "type": "string" } }, "required": [ "Name" ], "type": "object" }, "Type": { "enum": [ "AWS::WAF::IPSet" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::WAF::IPSet.IPSetDescriptor": { "additionalProperties": false, "properties": { "Type": { "type": "string" }, "Value": { "type": "string" } }, "required": [ "Type", "Value" ], "type": "object" }, "AWS::WAF::Rule": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "MetricName": { "type": "string" }, "Name": { "type": "string" }, "Predicates": { "items": { "$ref": "#/definitions/AWS::WAF::Rule.Predicate" }, "type": "array" } }, "required": [ "MetricName", "Name" ], "type": "object" }, "Type": { "enum": [ "AWS::WAF::Rule" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::WAF::Rule.Predicate": { "additionalProperties": false, "properties": { "DataId": { "type": "string" }, "Negated": { "type": "boolean" }, "Type": { "type": "string" } }, "required": [ "DataId", "Negated", "Type" ], "type": "object" }, "AWS::WAF::SizeConstraintSet": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Name": { "type": "string" }, "SizeConstraints": { "items": { "$ref": "#/definitions/AWS::WAF::SizeConstraintSet.SizeConstraint" }, "type": "array" } }, "required": [ "Name", "SizeConstraints" ], "type": "object" }, "Type": { "enum": [ "AWS::WAF::SizeConstraintSet" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::WAF::SizeConstraintSet.FieldToMatch": { "additionalProperties": false, "properties": { "Data": { "type": "string" }, "Type": { "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::WAF::SizeConstraintSet.SizeConstraint": { "additionalProperties": false, "properties": { "ComparisonOperator": { "type": "string" }, "FieldToMatch": { "$ref": "#/definitions/AWS::WAF::SizeConstraintSet.FieldToMatch" }, "Size": { "type": "number" }, "TextTransformation": { "type": "string" } }, "required": [ "ComparisonOperator", "FieldToMatch", "Size", "TextTransformation" ], "type": "object" }, "AWS::WAF::SqlInjectionMatchSet": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Name": { "type": "string" }, "SqlInjectionMatchTuples": { "items": { "$ref": "#/definitions/AWS::WAF::SqlInjectionMatchSet.SqlInjectionMatchTuple" }, "type": "array" } }, "required": [ "Name" ], "type": "object" }, "Type": { "enum": [ "AWS::WAF::SqlInjectionMatchSet" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::WAF::SqlInjectionMatchSet.FieldToMatch": { "additionalProperties": false, "properties": { "Data": { "type": "string" }, "Type": { "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::WAF::SqlInjectionMatchSet.SqlInjectionMatchTuple": { "additionalProperties": false, "properties": { "FieldToMatch": { "$ref": "#/definitions/AWS::WAF::SqlInjectionMatchSet.FieldToMatch" }, "TextTransformation": { "type": "string" } }, "required": [ "FieldToMatch", "TextTransformation" ], "type": "object" }, "AWS::WAF::WebACL": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "DefaultAction": { "$ref": "#/definitions/AWS::WAF::WebACL.WafAction" }, "MetricName": { "type": "string" }, "Name": { "type": "string" }, "Rules": { "items": { "$ref": "#/definitions/AWS::WAF::WebACL.ActivatedRule" }, "type": "array" } }, "required": [ "DefaultAction", "MetricName", "Name" ], "type": "object" }, "Type": { "enum": [ "AWS::WAF::WebACL" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::WAF::WebACL.ActivatedRule": { "additionalProperties": false, "properties": { "Action": { "$ref": "#/definitions/AWS::WAF::WebACL.WafAction" }, "Priority": { "type": "number" }, "RuleId": { "type": "string" } }, "required": [ "Priority", "RuleId" ], "type": "object" }, "AWS::WAF::WebACL.WafAction": { "additionalProperties": false, "properties": { "Type": { "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::WAF::XssMatchSet": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Name": { "type": "string" }, "XssMatchTuples": { "items": { "$ref": "#/definitions/AWS::WAF::XssMatchSet.XssMatchTuple" }, "type": "array" } }, "required": [ "Name", "XssMatchTuples" ], "type": "object" }, "Type": { "enum": [ "AWS::WAF::XssMatchSet" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::WAF::XssMatchSet.FieldToMatch": { "additionalProperties": false, "properties": { "Data": { "type": "string" }, "Type": { "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::WAF::XssMatchSet.XssMatchTuple": { "additionalProperties": false, "properties": { "FieldToMatch": { "$ref": "#/definitions/AWS::WAF::XssMatchSet.FieldToMatch" }, "TextTransformation": { "type": "string" } }, "required": [ "FieldToMatch", "TextTransformation" ], "type": "object" }, "AWS::WAFRegional::ByteMatchSet": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ByteMatchTuples": { "items": { "$ref": "#/definitions/AWS::WAFRegional::ByteMatchSet.ByteMatchTuple" }, "type": "array" }, "Name": { "type": "string" } }, "required": [ "Name" ], "type": "object" }, "Type": { "enum": [ "AWS::WAFRegional::ByteMatchSet" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::WAFRegional::ByteMatchSet.ByteMatchTuple": { "additionalProperties": false, "properties": { "FieldToMatch": { "$ref": "#/definitions/AWS::WAFRegional::ByteMatchSet.FieldToMatch" }, "PositionalConstraint": { "type": "string" }, "TargetString": { "type": "string" }, "TargetStringBase64": { "type": "string" }, "TextTransformation": { "type": "string" } }, "required": [ "FieldToMatch", "PositionalConstraint", "TextTransformation" ], "type": "object" }, "AWS::WAFRegional::ByteMatchSet.FieldToMatch": { "additionalProperties": false, "properties": { "Data": { "type": "string" }, "Type": { "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::WAFRegional::GeoMatchSet": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "GeoMatchConstraints": { "items": { "$ref": "#/definitions/AWS::WAFRegional::GeoMatchSet.GeoMatchConstraint" }, "type": "array" }, "Name": { "type": "string" } }, "required": [ "Name" ], "type": "object" }, "Type": { "enum": [ "AWS::WAFRegional::GeoMatchSet" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::WAFRegional::GeoMatchSet.GeoMatchConstraint": { "additionalProperties": false, "properties": { "Type": { "type": "string" }, "Value": { "type": "string" } }, "required": [ "Type", "Value" ], "type": "object" }, "AWS::WAFRegional::IPSet": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "IPSetDescriptors": { "items": { "$ref": "#/definitions/AWS::WAFRegional::IPSet.IPSetDescriptor" }, "type": "array" }, "Name": { "type": "string" } }, "required": [ "Name" ], "type": "object" }, "Type": { "enum": [ "AWS::WAFRegional::IPSet" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::WAFRegional::IPSet.IPSetDescriptor": { "additionalProperties": false, "properties": { "Type": { "type": "string" }, "Value": { "type": "string" } }, "required": [ "Type", "Value" ], "type": "object" }, "AWS::WAFRegional::RateBasedRule": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "MatchPredicates": { "items": { "$ref": "#/definitions/AWS::WAFRegional::RateBasedRule.Predicate" }, "type": "array" }, "MetricName": { "type": "string" }, "Name": { "type": "string" }, "RateKey": { "type": "string" }, "RateLimit": { "type": "number" } }, "required": [ "MetricName", "Name", "RateKey", "RateLimit" ], "type": "object" }, "Type": { "enum": [ "AWS::WAFRegional::RateBasedRule" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::WAFRegional::RateBasedRule.Predicate": { "additionalProperties": false, "properties": { "DataId": { "type": "string" }, "Negated": { "type": "boolean" }, "Type": { "type": "string" } }, "required": [ "DataId", "Negated", "Type" ], "type": "object" }, "AWS::WAFRegional::RegexPatternSet": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Name": { "type": "string" }, "RegexPatternStrings": { "items": { "type": "string" }, "type": "array" } }, "required": [ "Name", "RegexPatternStrings" ], "type": "object" }, "Type": { "enum": [ "AWS::WAFRegional::RegexPatternSet" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::WAFRegional::Rule": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "MetricName": { "type": "string" }, "Name": { "type": "string" }, "Predicates": { "items": { "$ref": "#/definitions/AWS::WAFRegional::Rule.Predicate" }, "type": "array" } }, "required": [ "MetricName", "Name" ], "type": "object" }, "Type": { "enum": [ "AWS::WAFRegional::Rule" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::WAFRegional::Rule.Predicate": { "additionalProperties": false, "properties": { "DataId": { "type": "string" }, "Negated": { "type": "boolean" }, "Type": { "type": "string" } }, "required": [ "DataId", "Negated", "Type" ], "type": "object" }, "AWS::WAFRegional::SizeConstraintSet": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Name": { "type": "string" }, "SizeConstraints": { "items": { "$ref": "#/definitions/AWS::WAFRegional::SizeConstraintSet.SizeConstraint" }, "type": "array" } }, "required": [ "Name" ], "type": "object" }, "Type": { "enum": [ "AWS::WAFRegional::SizeConstraintSet" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::WAFRegional::SizeConstraintSet.FieldToMatch": { "additionalProperties": false, "properties": { "Data": { "type": "string" }, "Type": { "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::WAFRegional::SizeConstraintSet.SizeConstraint": { "additionalProperties": false, "properties": { "ComparisonOperator": { "type": "string" }, "FieldToMatch": { "$ref": "#/definitions/AWS::WAFRegional::SizeConstraintSet.FieldToMatch" }, "Size": { "type": "number" }, "TextTransformation": { "type": "string" } }, "required": [ "ComparisonOperator", "FieldToMatch", "Size", "TextTransformation" ], "type": "object" }, "AWS::WAFRegional::SqlInjectionMatchSet": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Name": { "type": "string" }, "SqlInjectionMatchTuples": { "items": { "$ref": "#/definitions/AWS::WAFRegional::SqlInjectionMatchSet.SqlInjectionMatchTuple" }, "type": "array" } }, "required": [ "Name" ], "type": "object" }, "Type": { "enum": [ "AWS::WAFRegional::SqlInjectionMatchSet" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::WAFRegional::SqlInjectionMatchSet.FieldToMatch": { "additionalProperties": false, "properties": { "Data": { "type": "string" }, "Type": { "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::WAFRegional::SqlInjectionMatchSet.SqlInjectionMatchTuple": { "additionalProperties": false, "properties": { "FieldToMatch": { "$ref": "#/definitions/AWS::WAFRegional::SqlInjectionMatchSet.FieldToMatch" }, "TextTransformation": { "type": "string" } }, "required": [ "FieldToMatch", "TextTransformation" ], "type": "object" }, "AWS::WAFRegional::WebACL": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "DefaultAction": { "$ref": "#/definitions/AWS::WAFRegional::WebACL.Action" }, "MetricName": { "type": "string" }, "Name": { "type": "string" }, "Rules": { "items": { "$ref": "#/definitions/AWS::WAFRegional::WebACL.Rule" }, "type": "array" } }, "required": [ "DefaultAction", "MetricName", "Name" ], "type": "object" }, "Type": { "enum": [ "AWS::WAFRegional::WebACL" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::WAFRegional::WebACL.Action": { "additionalProperties": false, "properties": { "Type": { "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::WAFRegional::WebACL.Rule": { "additionalProperties": false, "properties": { "Action": { "$ref": "#/definitions/AWS::WAFRegional::WebACL.Action" }, "Priority": { "type": "number" }, "RuleId": { "type": "string" } }, "required": [ "Action", "Priority", "RuleId" ], "type": "object" }, "AWS::WAFRegional::WebACLAssociation": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ResourceArn": { "type": "string" }, "WebACLId": { "type": "string" } }, "required": [ "ResourceArn", "WebACLId" ], "type": "object" }, "Type": { "enum": [ "AWS::WAFRegional::WebACLAssociation" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::WAFRegional::XssMatchSet": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Name": { "type": "string" }, "XssMatchTuples": { "items": { "$ref": "#/definitions/AWS::WAFRegional::XssMatchSet.XssMatchTuple" }, "type": "array" } }, "required": [ "Name" ], "type": "object" }, "Type": { "enum": [ "AWS::WAFRegional::XssMatchSet" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::WAFRegional::XssMatchSet.FieldToMatch": { "additionalProperties": false, "properties": { "Data": { "type": "string" }, "Type": { "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::WAFRegional::XssMatchSet.XssMatchTuple": { "additionalProperties": false, "properties": { "FieldToMatch": { "$ref": "#/definitions/AWS::WAFRegional::XssMatchSet.FieldToMatch" }, "TextTransformation": { "type": "string" } }, "required": [ "FieldToMatch", "TextTransformation" ], "type": "object" }, "AWS::WAFv2::IPSet": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Addresses": { "items": { "type": "string" }, "type": "array" }, "Description": { "type": "string" }, "IPAddressVersion": { "type": "string" }, "Name": { "type": "string" }, "Scope": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "Addresses", "IPAddressVersion", "Scope" ], "type": "object" }, "Type": { "enum": [ "AWS::WAFv2::IPSet" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::WAFv2::LoggingConfiguration": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "LogDestinationConfigs": { "items": { "type": "string" }, "type": "array" }, "LoggingFilter": { "$ref": "#/definitions/AWS::WAFv2::LoggingConfiguration.LoggingFilter" }, "RedactedFields": { "items": { "$ref": "#/definitions/AWS::WAFv2::LoggingConfiguration.FieldToMatch" }, "type": "array" }, "ResourceArn": { "type": "string" } }, "required": [ "LogDestinationConfigs", "ResourceArn" ], "type": "object" }, "Type": { "enum": [ "AWS::WAFv2::LoggingConfiguration" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::WAFv2::LoggingConfiguration.ActionCondition": { "additionalProperties": false, "properties": { "Action": { "type": "string" } }, "required": [ "Action" ], "type": "object" }, "AWS::WAFv2::LoggingConfiguration.Condition": { "additionalProperties": false, "properties": { "ActionCondition": { "$ref": "#/definitions/AWS::WAFv2::LoggingConfiguration.ActionCondition" }, "LabelNameCondition": { "$ref": "#/definitions/AWS::WAFv2::LoggingConfiguration.LabelNameCondition" } }, "type": "object" }, "AWS::WAFv2::LoggingConfiguration.FieldToMatch": { "additionalProperties": false, "properties": { "JsonBody": { "$ref": "#/definitions/AWS::WAFv2::LoggingConfiguration.JsonBody" }, "Method": { "type": "object" }, "QueryString": { "type": "object" }, "SingleHeader": { "$ref": "#/definitions/AWS::WAFv2::LoggingConfiguration.SingleHeader" }, "UriPath": { "type": "object" } }, "type": "object" }, "AWS::WAFv2::LoggingConfiguration.Filter": { "additionalProperties": false, "properties": { "Behavior": { "type": "string" }, "Conditions": { "items": { "$ref": "#/definitions/AWS::WAFv2::LoggingConfiguration.Condition" }, "type": "array" }, "Requirement": { "type": "string" } }, "required": [ "Behavior", "Conditions", "Requirement" ], "type": "object" }, "AWS::WAFv2::LoggingConfiguration.JsonBody": { "additionalProperties": false, "properties": { "InvalidFallbackBehavior": { "type": "string" }, "MatchPattern": { "$ref": "#/definitions/AWS::WAFv2::LoggingConfiguration.MatchPattern" }, "MatchScope": { "type": "string" } }, "required": [ "MatchPattern", "MatchScope" ], "type": "object" }, "AWS::WAFv2::LoggingConfiguration.LabelNameCondition": { "additionalProperties": false, "properties": { "LabelName": { "type": "string" } }, "required": [ "LabelName" ], "type": "object" }, "AWS::WAFv2::LoggingConfiguration.LoggingFilter": { "additionalProperties": false, "properties": { "DefaultBehavior": { "type": "string" }, "Filters": { "items": { "$ref": "#/definitions/AWS::WAFv2::LoggingConfiguration.Filter" }, "type": "array" } }, "required": [ "DefaultBehavior", "Filters" ], "type": "object" }, "AWS::WAFv2::LoggingConfiguration.MatchPattern": { "additionalProperties": false, "properties": { "All": { "type": "object" }, "IncludedPaths": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::WAFv2::LoggingConfiguration.SingleHeader": { "additionalProperties": false, "properties": { "Name": { "type": "string" } }, "required": [ "Name" ], "type": "object" }, "AWS::WAFv2::RegexPatternSet": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "Name": { "type": "string" }, "RegularExpressionList": { "items": { "type": "string" }, "type": "array" }, "Scope": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "RegularExpressionList", "Scope" ], "type": "object" }, "Type": { "enum": [ "AWS::WAFv2::RegexPatternSet" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::WAFv2::RuleGroup": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AvailableLabels": { "items": { "$ref": "#/definitions/AWS::WAFv2::RuleGroup.LabelSummary" }, "type": "array" }, "Capacity": { "type": "number" }, "ConsumedLabels": { "items": { "$ref": "#/definitions/AWS::WAFv2::RuleGroup.LabelSummary" }, "type": "array" }, "CustomResponseBodies": { "additionalProperties": false, "patternProperties": { "^[a-zA-Z0-9]+$": { "$ref": "#/definitions/AWS::WAFv2::RuleGroup.CustomResponseBody" } }, "type": "object" }, "Description": { "type": "string" }, "Name": { "type": "string" }, "Rules": { "items": { "$ref": "#/definitions/AWS::WAFv2::RuleGroup.Rule" }, "type": "array" }, "Scope": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "VisibilityConfig": { "$ref": "#/definitions/AWS::WAFv2::RuleGroup.VisibilityConfig" } }, "required": [ "Capacity", "Scope", "VisibilityConfig" ], "type": "object" }, "Type": { "enum": [ "AWS::WAFv2::RuleGroup" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::WAFv2::RuleGroup.AllowAction": { "additionalProperties": false, "properties": { "CustomRequestHandling": { "$ref": "#/definitions/AWS::WAFv2::RuleGroup.CustomRequestHandling" } }, "type": "object" }, "AWS::WAFv2::RuleGroup.AndStatement": { "additionalProperties": false, "properties": { "Statements": { "items": { "$ref": "#/definitions/AWS::WAFv2::RuleGroup.Statement" }, "type": "array" } }, "required": [ "Statements" ], "type": "object" }, "AWS::WAFv2::RuleGroup.BlockAction": { "additionalProperties": false, "properties": { "CustomResponse": { "$ref": "#/definitions/AWS::WAFv2::RuleGroup.CustomResponse" } }, "type": "object" }, "AWS::WAFv2::RuleGroup.Body": { "additionalProperties": false, "properties": { "OversizeHandling": { "type": "string" } }, "type": "object" }, "AWS::WAFv2::RuleGroup.ByteMatchStatement": { "additionalProperties": false, "properties": { "FieldToMatch": { "$ref": "#/definitions/AWS::WAFv2::RuleGroup.FieldToMatch" }, "PositionalConstraint": { "type": "string" }, "SearchString": { "type": "string" }, "SearchStringBase64": { "type": "string" }, "TextTransformations": { "items": { "$ref": "#/definitions/AWS::WAFv2::RuleGroup.TextTransformation" }, "type": "array" } }, "required": [ "FieldToMatch", "PositionalConstraint", "TextTransformations" ], "type": "object" }, "AWS::WAFv2::RuleGroup.CaptchaAction": { "additionalProperties": false, "properties": { "CustomRequestHandling": { "$ref": "#/definitions/AWS::WAFv2::RuleGroup.CustomRequestHandling" } }, "type": "object" }, "AWS::WAFv2::RuleGroup.CaptchaConfig": { "additionalProperties": false, "properties": { "ImmunityTimeProperty": { "$ref": "#/definitions/AWS::WAFv2::RuleGroup.ImmunityTimeProperty" } }, "type": "object" }, "AWS::WAFv2::RuleGroup.ChallengeAction": { "additionalProperties": false, "properties": { "CustomRequestHandling": { "$ref": "#/definitions/AWS::WAFv2::RuleGroup.CustomRequestHandling" } }, "type": "object" }, "AWS::WAFv2::RuleGroup.ChallengeConfig": { "additionalProperties": false, "properties": { "ImmunityTimeProperty": { "$ref": "#/definitions/AWS::WAFv2::RuleGroup.ImmunityTimeProperty" } }, "type": "object" }, "AWS::WAFv2::RuleGroup.CookieMatchPattern": { "additionalProperties": false, "properties": { "All": { "type": "object" }, "ExcludedCookies": { "items": { "type": "string" }, "type": "array" }, "IncludedCookies": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::WAFv2::RuleGroup.Cookies": { "additionalProperties": false, "properties": { "MatchPattern": { "$ref": "#/definitions/AWS::WAFv2::RuleGroup.CookieMatchPattern" }, "MatchScope": { "type": "string" }, "OversizeHandling": { "type": "string" } }, "required": [ "MatchPattern", "MatchScope", "OversizeHandling" ], "type": "object" }, "AWS::WAFv2::RuleGroup.CountAction": { "additionalProperties": false, "properties": { "CustomRequestHandling": { "$ref": "#/definitions/AWS::WAFv2::RuleGroup.CustomRequestHandling" } }, "type": "object" }, "AWS::WAFv2::RuleGroup.CustomHTTPHeader": { "additionalProperties": false, "properties": { "Name": { "type": "string" }, "Value": { "type": "string" } }, "required": [ "Name", "Value" ], "type": "object" }, "AWS::WAFv2::RuleGroup.CustomRequestHandling": { "additionalProperties": false, "properties": { "InsertHeaders": { "items": { "$ref": "#/definitions/AWS::WAFv2::RuleGroup.CustomHTTPHeader" }, "type": "array" } }, "required": [ "InsertHeaders" ], "type": "object" }, "AWS::WAFv2::RuleGroup.CustomResponse": { "additionalProperties": false, "properties": { "CustomResponseBodyKey": { "type": "string" }, "ResponseCode": { "type": "number" }, "ResponseHeaders": { "items": { "$ref": "#/definitions/AWS::WAFv2::RuleGroup.CustomHTTPHeader" }, "type": "array" } }, "required": [ "ResponseCode" ], "type": "object" }, "AWS::WAFv2::RuleGroup.CustomResponseBody": { "additionalProperties": false, "properties": { "Content": { "type": "string" }, "ContentType": { "type": "string" } }, "required": [ "Content", "ContentType" ], "type": "object" }, "AWS::WAFv2::RuleGroup.FieldToMatch": { "additionalProperties": false, "properties": { "AllQueryArguments": { "type": "object" }, "Body": { "$ref": "#/definitions/AWS::WAFv2::RuleGroup.Body" }, "Cookies": { "$ref": "#/definitions/AWS::WAFv2::RuleGroup.Cookies" }, "Headers": { "$ref": "#/definitions/AWS::WAFv2::RuleGroup.Headers" }, "JsonBody": { "$ref": "#/definitions/AWS::WAFv2::RuleGroup.JsonBody" }, "Method": { "type": "object" }, "QueryString": { "type": "object" }, "SingleHeader": { "$ref": "#/definitions/AWS::WAFv2::RuleGroup.SingleHeader" }, "SingleQueryArgument": { "$ref": "#/definitions/AWS::WAFv2::RuleGroup.SingleQueryArgument" }, "UriPath": { "type": "object" } }, "type": "object" }, "AWS::WAFv2::RuleGroup.ForwardedIPConfiguration": { "additionalProperties": false, "properties": { "FallbackBehavior": { "type": "string" }, "HeaderName": { "type": "string" } }, "required": [ "FallbackBehavior", "HeaderName" ], "type": "object" }, "AWS::WAFv2::RuleGroup.GeoMatchStatement": { "additionalProperties": false, "properties": { "CountryCodes": { "items": { "type": "string" }, "type": "array" }, "ForwardedIPConfig": { "$ref": "#/definitions/AWS::WAFv2::RuleGroup.ForwardedIPConfiguration" } }, "type": "object" }, "AWS::WAFv2::RuleGroup.HeaderMatchPattern": { "additionalProperties": false, "properties": { "All": { "type": "object" }, "ExcludedHeaders": { "items": { "type": "string" }, "type": "array" }, "IncludedHeaders": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::WAFv2::RuleGroup.Headers": { "additionalProperties": false, "properties": { "MatchPattern": { "$ref": "#/definitions/AWS::WAFv2::RuleGroup.HeaderMatchPattern" }, "MatchScope": { "type": "string" }, "OversizeHandling": { "type": "string" } }, "required": [ "MatchPattern", "MatchScope", "OversizeHandling" ], "type": "object" }, "AWS::WAFv2::RuleGroup.IPSetForwardedIPConfiguration": { "additionalProperties": false, "properties": { "FallbackBehavior": { "type": "string" }, "HeaderName": { "type": "string" }, "Position": { "type": "string" } }, "required": [ "FallbackBehavior", "HeaderName", "Position" ], "type": "object" }, "AWS::WAFv2::RuleGroup.IPSetReferenceStatement": { "additionalProperties": false, "properties": { "Arn": { "type": "string" }, "IPSetForwardedIPConfig": { "$ref": "#/definitions/AWS::WAFv2::RuleGroup.IPSetForwardedIPConfiguration" } }, "required": [ "Arn" ], "type": "object" }, "AWS::WAFv2::RuleGroup.ImmunityTimeProperty": { "additionalProperties": false, "properties": { "ImmunityTime": { "type": "number" } }, "required": [ "ImmunityTime" ], "type": "object" }, "AWS::WAFv2::RuleGroup.JsonBody": { "additionalProperties": false, "properties": { "InvalidFallbackBehavior": { "type": "string" }, "MatchPattern": { "$ref": "#/definitions/AWS::WAFv2::RuleGroup.JsonMatchPattern" }, "MatchScope": { "type": "string" }, "OversizeHandling": { "type": "string" } }, "required": [ "MatchPattern", "MatchScope" ], "type": "object" }, "AWS::WAFv2::RuleGroup.JsonMatchPattern": { "additionalProperties": false, "properties": { "All": { "type": "object" }, "IncludedPaths": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::WAFv2::RuleGroup.Label": { "additionalProperties": false, "properties": { "Name": { "type": "string" } }, "required": [ "Name" ], "type": "object" }, "AWS::WAFv2::RuleGroup.LabelMatchStatement": { "additionalProperties": false, "properties": { "Key": { "type": "string" }, "Scope": { "type": "string" } }, "required": [ "Key", "Scope" ], "type": "object" }, "AWS::WAFv2::RuleGroup.LabelSummary": { "additionalProperties": false, "properties": { "Name": { "type": "string" } }, "type": "object" }, "AWS::WAFv2::RuleGroup.NotStatement": { "additionalProperties": false, "properties": { "Statement": { "$ref": "#/definitions/AWS::WAFv2::RuleGroup.Statement" } }, "required": [ "Statement" ], "type": "object" }, "AWS::WAFv2::RuleGroup.OrStatement": { "additionalProperties": false, "properties": { "Statements": { "items": { "$ref": "#/definitions/AWS::WAFv2::RuleGroup.Statement" }, "type": "array" } }, "required": [ "Statements" ], "type": "object" }, "AWS::WAFv2::RuleGroup.RateBasedStatement": { "additionalProperties": false, "properties": { "AggregateKeyType": { "type": "string" }, "CustomKeys": { "items": { "$ref": "#/definitions/AWS::WAFv2::RuleGroup.RateBasedStatementCustomKey" }, "type": "array" }, "ForwardedIPConfig": { "$ref": "#/definitions/AWS::WAFv2::RuleGroup.ForwardedIPConfiguration" }, "Limit": { "type": "number" }, "ScopeDownStatement": { "$ref": "#/definitions/AWS::WAFv2::RuleGroup.Statement" } }, "required": [ "AggregateKeyType", "Limit" ], "type": "object" }, "AWS::WAFv2::RuleGroup.RateBasedStatementCustomKey": { "additionalProperties": false, "properties": { "Cookie": { "$ref": "#/definitions/AWS::WAFv2::RuleGroup.RateLimitCookie" }, "ForwardedIP": { "type": "object" }, "HTTPMethod": { "type": "object" }, "Header": { "$ref": "#/definitions/AWS::WAFv2::RuleGroup.RateLimitHeader" }, "IP": { "type": "object" }, "LabelNamespace": { "$ref": "#/definitions/AWS::WAFv2::RuleGroup.RateLimitLabelNamespace" }, "QueryArgument": { "$ref": "#/definitions/AWS::WAFv2::RuleGroup.RateLimitQueryArgument" }, "QueryString": { "$ref": "#/definitions/AWS::WAFv2::RuleGroup.RateLimitQueryString" }, "UriPath": { "$ref": "#/definitions/AWS::WAFv2::RuleGroup.RateLimitUriPath" } }, "type": "object" }, "AWS::WAFv2::RuleGroup.RateLimitCookie": { "additionalProperties": false, "properties": { "Name": { "type": "string" }, "TextTransformations": { "items": { "$ref": "#/definitions/AWS::WAFv2::RuleGroup.TextTransformation" }, "type": "array" } }, "required": [ "Name", "TextTransformations" ], "type": "object" }, "AWS::WAFv2::RuleGroup.RateLimitHeader": { "additionalProperties": false, "properties": { "Name": { "type": "string" }, "TextTransformations": { "items": { "$ref": "#/definitions/AWS::WAFv2::RuleGroup.TextTransformation" }, "type": "array" } }, "required": [ "Name", "TextTransformations" ], "type": "object" }, "AWS::WAFv2::RuleGroup.RateLimitLabelNamespace": { "additionalProperties": false, "properties": { "Namespace": { "type": "string" } }, "required": [ "Namespace" ], "type": "object" }, "AWS::WAFv2::RuleGroup.RateLimitQueryArgument": { "additionalProperties": false, "properties": { "Name": { "type": "string" }, "TextTransformations": { "items": { "$ref": "#/definitions/AWS::WAFv2::RuleGroup.TextTransformation" }, "type": "array" } }, "required": [ "Name", "TextTransformations" ], "type": "object" }, "AWS::WAFv2::RuleGroup.RateLimitQueryString": { "additionalProperties": false, "properties": { "TextTransformations": { "items": { "$ref": "#/definitions/AWS::WAFv2::RuleGroup.TextTransformation" }, "type": "array" } }, "required": [ "TextTransformations" ], "type": "object" }, "AWS::WAFv2::RuleGroup.RateLimitUriPath": { "additionalProperties": false, "properties": { "TextTransformations": { "items": { "$ref": "#/definitions/AWS::WAFv2::RuleGroup.TextTransformation" }, "type": "array" } }, "required": [ "TextTransformations" ], "type": "object" }, "AWS::WAFv2::RuleGroup.RegexMatchStatement": { "additionalProperties": false, "properties": { "FieldToMatch": { "$ref": "#/definitions/AWS::WAFv2::RuleGroup.FieldToMatch" }, "RegexString": { "type": "string" }, "TextTransformations": { "items": { "$ref": "#/definitions/AWS::WAFv2::RuleGroup.TextTransformation" }, "type": "array" } }, "required": [ "FieldToMatch", "RegexString", "TextTransformations" ], "type": "object" }, "AWS::WAFv2::RuleGroup.RegexPatternSetReferenceStatement": { "additionalProperties": false, "properties": { "Arn": { "type": "string" }, "FieldToMatch": { "$ref": "#/definitions/AWS::WAFv2::RuleGroup.FieldToMatch" }, "TextTransformations": { "items": { "$ref": "#/definitions/AWS::WAFv2::RuleGroup.TextTransformation" }, "type": "array" } }, "required": [ "Arn", "FieldToMatch", "TextTransformations" ], "type": "object" }, "AWS::WAFv2::RuleGroup.Rule": { "additionalProperties": false, "properties": { "Action": { "$ref": "#/definitions/AWS::WAFv2::RuleGroup.RuleAction" }, "CaptchaConfig": { "$ref": "#/definitions/AWS::WAFv2::RuleGroup.CaptchaConfig" }, "ChallengeConfig": { "$ref": "#/definitions/AWS::WAFv2::RuleGroup.ChallengeConfig" }, "Name": { "type": "string" }, "Priority": { "type": "number" }, "RuleLabels": { "items": { "$ref": "#/definitions/AWS::WAFv2::RuleGroup.Label" }, "type": "array" }, "Statement": { "$ref": "#/definitions/AWS::WAFv2::RuleGroup.Statement" }, "VisibilityConfig": { "$ref": "#/definitions/AWS::WAFv2::RuleGroup.VisibilityConfig" } }, "required": [ "Name", "Priority", "Statement", "VisibilityConfig" ], "type": "object" }, "AWS::WAFv2::RuleGroup.RuleAction": { "additionalProperties": false, "properties": { "Allow": { "$ref": "#/definitions/AWS::WAFv2::RuleGroup.AllowAction" }, "Block": { "$ref": "#/definitions/AWS::WAFv2::RuleGroup.BlockAction" }, "Captcha": { "$ref": "#/definitions/AWS::WAFv2::RuleGroup.CaptchaAction" }, "Challenge": { "$ref": "#/definitions/AWS::WAFv2::RuleGroup.ChallengeAction" }, "Count": { "$ref": "#/definitions/AWS::WAFv2::RuleGroup.CountAction" } }, "type": "object" }, "AWS::WAFv2::RuleGroup.SingleHeader": { "additionalProperties": false, "properties": { "Name": { "type": "string" } }, "required": [ "Name" ], "type": "object" }, "AWS::WAFv2::RuleGroup.SingleQueryArgument": { "additionalProperties": false, "properties": { "Name": { "type": "string" } }, "required": [ "Name" ], "type": "object" }, "AWS::WAFv2::RuleGroup.SizeConstraintStatement": { "additionalProperties": false, "properties": { "ComparisonOperator": { "type": "string" }, "FieldToMatch": { "$ref": "#/definitions/AWS::WAFv2::RuleGroup.FieldToMatch" }, "Size": { "type": "number" }, "TextTransformations": { "items": { "$ref": "#/definitions/AWS::WAFv2::RuleGroup.TextTransformation" }, "type": "array" } }, "required": [ "ComparisonOperator", "FieldToMatch", "Size", "TextTransformations" ], "type": "object" }, "AWS::WAFv2::RuleGroup.SqliMatchStatement": { "additionalProperties": false, "properties": { "FieldToMatch": { "$ref": "#/definitions/AWS::WAFv2::RuleGroup.FieldToMatch" }, "SensitivityLevel": { "type": "string" }, "TextTransformations": { "items": { "$ref": "#/definitions/AWS::WAFv2::RuleGroup.TextTransformation" }, "type": "array" } }, "required": [ "FieldToMatch", "TextTransformations" ], "type": "object" }, "AWS::WAFv2::RuleGroup.Statement": { "additionalProperties": false, "properties": { "AndStatement": { "$ref": "#/definitions/AWS::WAFv2::RuleGroup.AndStatement" }, "ByteMatchStatement": { "$ref": "#/definitions/AWS::WAFv2::RuleGroup.ByteMatchStatement" }, "GeoMatchStatement": { "$ref": "#/definitions/AWS::WAFv2::RuleGroup.GeoMatchStatement" }, "IPSetReferenceStatement": { "$ref": "#/definitions/AWS::WAFv2::RuleGroup.IPSetReferenceStatement" }, "LabelMatchStatement": { "$ref": "#/definitions/AWS::WAFv2::RuleGroup.LabelMatchStatement" }, "NotStatement": { "$ref": "#/definitions/AWS::WAFv2::RuleGroup.NotStatement" }, "OrStatement": { "$ref": "#/definitions/AWS::WAFv2::RuleGroup.OrStatement" }, "RateBasedStatement": { "$ref": "#/definitions/AWS::WAFv2::RuleGroup.RateBasedStatement" }, "RegexMatchStatement": { "$ref": "#/definitions/AWS::WAFv2::RuleGroup.RegexMatchStatement" }, "RegexPatternSetReferenceStatement": { "$ref": "#/definitions/AWS::WAFv2::RuleGroup.RegexPatternSetReferenceStatement" }, "SizeConstraintStatement": { "$ref": "#/definitions/AWS::WAFv2::RuleGroup.SizeConstraintStatement" }, "SqliMatchStatement": { "$ref": "#/definitions/AWS::WAFv2::RuleGroup.SqliMatchStatement" }, "XssMatchStatement": { "$ref": "#/definitions/AWS::WAFv2::RuleGroup.XssMatchStatement" } }, "type": "object" }, "AWS::WAFv2::RuleGroup.TextTransformation": { "additionalProperties": false, "properties": { "Priority": { "type": "number" }, "Type": { "type": "string" } }, "required": [ "Priority", "Type" ], "type": "object" }, "AWS::WAFv2::RuleGroup.VisibilityConfig": { "additionalProperties": false, "properties": { "CloudWatchMetricsEnabled": { "type": "boolean" }, "MetricName": { "type": "string" }, "SampledRequestsEnabled": { "type": "boolean" } }, "required": [ "CloudWatchMetricsEnabled", "MetricName", "SampledRequestsEnabled" ], "type": "object" }, "AWS::WAFv2::RuleGroup.XssMatchStatement": { "additionalProperties": false, "properties": { "FieldToMatch": { "$ref": "#/definitions/AWS::WAFv2::RuleGroup.FieldToMatch" }, "TextTransformations": { "items": { "$ref": "#/definitions/AWS::WAFv2::RuleGroup.TextTransformation" }, "type": "array" } }, "required": [ "FieldToMatch", "TextTransformations" ], "type": "object" }, "AWS::WAFv2::WebACL": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AssociationConfig": { "$ref": "#/definitions/AWS::WAFv2::WebACL.AssociationConfig" }, "CaptchaConfig": { "$ref": "#/definitions/AWS::WAFv2::WebACL.CaptchaConfig" }, "ChallengeConfig": { "$ref": "#/definitions/AWS::WAFv2::WebACL.ChallengeConfig" }, "CustomResponseBodies": { "additionalProperties": false, "patternProperties": { "^[a-zA-Z0-9]+$": { "$ref": "#/definitions/AWS::WAFv2::WebACL.CustomResponseBody" } }, "type": "object" }, "DefaultAction": { "$ref": "#/definitions/AWS::WAFv2::WebACL.DefaultAction" }, "Description": { "type": "string" }, "Name": { "type": "string" }, "Rules": { "items": { "$ref": "#/definitions/AWS::WAFv2::WebACL.Rule" }, "type": "array" }, "Scope": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "TokenDomains": { "items": { "type": "string" }, "type": "array" }, "VisibilityConfig": { "$ref": "#/definitions/AWS::WAFv2::WebACL.VisibilityConfig" } }, "required": [ "DefaultAction", "Scope", "VisibilityConfig" ], "type": "object" }, "Type": { "enum": [ "AWS::WAFv2::WebACL" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::WAFv2::WebACL.AWSManagedRulesACFPRuleSet": { "additionalProperties": false, "properties": { "CreationPath": { "type": "string" }, "EnableRegexInPath": { "type": "boolean" }, "RegistrationPagePath": { "type": "string" }, "RequestInspection": { "$ref": "#/definitions/AWS::WAFv2::WebACL.RequestInspectionACFP" }, "ResponseInspection": { "$ref": "#/definitions/AWS::WAFv2::WebACL.ResponseInspection" } }, "required": [ "CreationPath", "RegistrationPagePath", "RequestInspection" ], "type": "object" }, "AWS::WAFv2::WebACL.AWSManagedRulesATPRuleSet": { "additionalProperties": false, "properties": { "EnableRegexInPath": { "type": "boolean" }, "LoginPath": { "type": "string" }, "RequestInspection": { "$ref": "#/definitions/AWS::WAFv2::WebACL.RequestInspection" }, "ResponseInspection": { "$ref": "#/definitions/AWS::WAFv2::WebACL.ResponseInspection" } }, "required": [ "LoginPath" ], "type": "object" }, "AWS::WAFv2::WebACL.AWSManagedRulesBotControlRuleSet": { "additionalProperties": false, "properties": { "InspectionLevel": { "type": "string" } }, "required": [ "InspectionLevel" ], "type": "object" }, "AWS::WAFv2::WebACL.AllowAction": { "additionalProperties": false, "properties": { "CustomRequestHandling": { "$ref": "#/definitions/AWS::WAFv2::WebACL.CustomRequestHandling" } }, "type": "object" }, "AWS::WAFv2::WebACL.AndStatement": { "additionalProperties": false, "properties": { "Statements": { "items": { "$ref": "#/definitions/AWS::WAFv2::WebACL.Statement" }, "type": "array" } }, "required": [ "Statements" ], "type": "object" }, "AWS::WAFv2::WebACL.AssociationConfig": { "additionalProperties": false, "properties": { "RequestBody": { "additionalProperties": false, "patternProperties": { "^[a-zA-Z0-9]+$": { "$ref": "#/definitions/AWS::WAFv2::WebACL.RequestBodyAssociatedResourceTypeConfig" } }, "type": "object" } }, "type": "object" }, "AWS::WAFv2::WebACL.BlockAction": { "additionalProperties": false, "properties": { "CustomResponse": { "$ref": "#/definitions/AWS::WAFv2::WebACL.CustomResponse" } }, "type": "object" }, "AWS::WAFv2::WebACL.Body": { "additionalProperties": false, "properties": { "OversizeHandling": { "type": "string" } }, "type": "object" }, "AWS::WAFv2::WebACL.ByteMatchStatement": { "additionalProperties": false, "properties": { "FieldToMatch": { "$ref": "#/definitions/AWS::WAFv2::WebACL.FieldToMatch" }, "PositionalConstraint": { "type": "string" }, "SearchString": { "type": "string" }, "SearchStringBase64": { "type": "string" }, "TextTransformations": { "items": { "$ref": "#/definitions/AWS::WAFv2::WebACL.TextTransformation" }, "type": "array" } }, "required": [ "FieldToMatch", "PositionalConstraint", "TextTransformations" ], "type": "object" }, "AWS::WAFv2::WebACL.CaptchaAction": { "additionalProperties": false, "properties": { "CustomRequestHandling": { "$ref": "#/definitions/AWS::WAFv2::WebACL.CustomRequestHandling" } }, "type": "object" }, "AWS::WAFv2::WebACL.CaptchaConfig": { "additionalProperties": false, "properties": { "ImmunityTimeProperty": { "$ref": "#/definitions/AWS::WAFv2::WebACL.ImmunityTimeProperty" } }, "type": "object" }, "AWS::WAFv2::WebACL.ChallengeAction": { "additionalProperties": false, "properties": { "CustomRequestHandling": { "$ref": "#/definitions/AWS::WAFv2::WebACL.CustomRequestHandling" } }, "type": "object" }, "AWS::WAFv2::WebACL.ChallengeConfig": { "additionalProperties": false, "properties": { "ImmunityTimeProperty": { "$ref": "#/definitions/AWS::WAFv2::WebACL.ImmunityTimeProperty" } }, "type": "object" }, "AWS::WAFv2::WebACL.CookieMatchPattern": { "additionalProperties": false, "properties": { "All": { "type": "object" }, "ExcludedCookies": { "items": { "type": "string" }, "type": "array" }, "IncludedCookies": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::WAFv2::WebACL.Cookies": { "additionalProperties": false, "properties": { "MatchPattern": { "$ref": "#/definitions/AWS::WAFv2::WebACL.CookieMatchPattern" }, "MatchScope": { "type": "string" }, "OversizeHandling": { "type": "string" } }, "required": [ "MatchPattern", "MatchScope", "OversizeHandling" ], "type": "object" }, "AWS::WAFv2::WebACL.CountAction": { "additionalProperties": false, "properties": { "CustomRequestHandling": { "$ref": "#/definitions/AWS::WAFv2::WebACL.CustomRequestHandling" } }, "type": "object" }, "AWS::WAFv2::WebACL.CustomHTTPHeader": { "additionalProperties": false, "properties": { "Name": { "type": "string" }, "Value": { "type": "string" } }, "required": [ "Name", "Value" ], "type": "object" }, "AWS::WAFv2::WebACL.CustomRequestHandling": { "additionalProperties": false, "properties": { "InsertHeaders": { "items": { "$ref": "#/definitions/AWS::WAFv2::WebACL.CustomHTTPHeader" }, "type": "array" } }, "required": [ "InsertHeaders" ], "type": "object" }, "AWS::WAFv2::WebACL.CustomResponse": { "additionalProperties": false, "properties": { "CustomResponseBodyKey": { "type": "string" }, "ResponseCode": { "type": "number" }, "ResponseHeaders": { "items": { "$ref": "#/definitions/AWS::WAFv2::WebACL.CustomHTTPHeader" }, "type": "array" } }, "required": [ "ResponseCode" ], "type": "object" }, "AWS::WAFv2::WebACL.CustomResponseBody": { "additionalProperties": false, "properties": { "Content": { "type": "string" }, "ContentType": { "type": "string" } }, "required": [ "Content", "ContentType" ], "type": "object" }, "AWS::WAFv2::WebACL.DefaultAction": { "additionalProperties": false, "properties": { "Allow": { "$ref": "#/definitions/AWS::WAFv2::WebACL.AllowAction" }, "Block": { "$ref": "#/definitions/AWS::WAFv2::WebACL.BlockAction" } }, "type": "object" }, "AWS::WAFv2::WebACL.ExcludedRule": { "additionalProperties": false, "properties": { "Name": { "type": "string" } }, "required": [ "Name" ], "type": "object" }, "AWS::WAFv2::WebACL.FieldIdentifier": { "additionalProperties": false, "properties": { "Identifier": { "type": "string" } }, "required": [ "Identifier" ], "type": "object" }, "AWS::WAFv2::WebACL.FieldToMatch": { "additionalProperties": false, "properties": { "AllQueryArguments": { "type": "object" }, "Body": { "$ref": "#/definitions/AWS::WAFv2::WebACL.Body" }, "Cookies": { "$ref": "#/definitions/AWS::WAFv2::WebACL.Cookies" }, "Headers": { "$ref": "#/definitions/AWS::WAFv2::WebACL.Headers" }, "JsonBody": { "$ref": "#/definitions/AWS::WAFv2::WebACL.JsonBody" }, "Method": { "type": "object" }, "QueryString": { "type": "object" }, "SingleHeader": { "$ref": "#/definitions/AWS::WAFv2::WebACL.SingleHeader" }, "SingleQueryArgument": { "$ref": "#/definitions/AWS::WAFv2::WebACL.SingleQueryArgument" }, "UriPath": { "type": "object" } }, "type": "object" }, "AWS::WAFv2::WebACL.ForwardedIPConfiguration": { "additionalProperties": false, "properties": { "FallbackBehavior": { "type": "string" }, "HeaderName": { "type": "string" } }, "required": [ "FallbackBehavior", "HeaderName" ], "type": "object" }, "AWS::WAFv2::WebACL.GeoMatchStatement": { "additionalProperties": false, "properties": { "CountryCodes": { "items": { "type": "string" }, "type": "array" }, "ForwardedIPConfig": { "$ref": "#/definitions/AWS::WAFv2::WebACL.ForwardedIPConfiguration" } }, "type": "object" }, "AWS::WAFv2::WebACL.HeaderMatchPattern": { "additionalProperties": false, "properties": { "All": { "type": "object" }, "ExcludedHeaders": { "items": { "type": "string" }, "type": "array" }, "IncludedHeaders": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::WAFv2::WebACL.Headers": { "additionalProperties": false, "properties": { "MatchPattern": { "$ref": "#/definitions/AWS::WAFv2::WebACL.HeaderMatchPattern" }, "MatchScope": { "type": "string" }, "OversizeHandling": { "type": "string" } }, "required": [ "MatchPattern", "MatchScope", "OversizeHandling" ], "type": "object" }, "AWS::WAFv2::WebACL.IPSetForwardedIPConfiguration": { "additionalProperties": false, "properties": { "FallbackBehavior": { "type": "string" }, "HeaderName": { "type": "string" }, "Position": { "type": "string" } }, "required": [ "FallbackBehavior", "HeaderName", "Position" ], "type": "object" }, "AWS::WAFv2::WebACL.IPSetReferenceStatement": { "additionalProperties": false, "properties": { "Arn": { "type": "string" }, "IPSetForwardedIPConfig": { "$ref": "#/definitions/AWS::WAFv2::WebACL.IPSetForwardedIPConfiguration" } }, "required": [ "Arn" ], "type": "object" }, "AWS::WAFv2::WebACL.ImmunityTimeProperty": { "additionalProperties": false, "properties": { "ImmunityTime": { "type": "number" } }, "required": [ "ImmunityTime" ], "type": "object" }, "AWS::WAFv2::WebACL.JsonBody": { "additionalProperties": false, "properties": { "InvalidFallbackBehavior": { "type": "string" }, "MatchPattern": { "$ref": "#/definitions/AWS::WAFv2::WebACL.JsonMatchPattern" }, "MatchScope": { "type": "string" }, "OversizeHandling": { "type": "string" } }, "required": [ "MatchPattern", "MatchScope" ], "type": "object" }, "AWS::WAFv2::WebACL.JsonMatchPattern": { "additionalProperties": false, "properties": { "All": { "type": "object" }, "IncludedPaths": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "AWS::WAFv2::WebACL.Label": { "additionalProperties": false, "properties": { "Name": { "type": "string" } }, "required": [ "Name" ], "type": "object" }, "AWS::WAFv2::WebACL.LabelMatchStatement": { "additionalProperties": false, "properties": { "Key": { "type": "string" }, "Scope": { "type": "string" } }, "required": [ "Key", "Scope" ], "type": "object" }, "AWS::WAFv2::WebACL.ManagedRuleGroupConfig": { "additionalProperties": false, "properties": { "AWSManagedRulesACFPRuleSet": { "$ref": "#/definitions/AWS::WAFv2::WebACL.AWSManagedRulesACFPRuleSet" }, "AWSManagedRulesATPRuleSet": { "$ref": "#/definitions/AWS::WAFv2::WebACL.AWSManagedRulesATPRuleSet" }, "AWSManagedRulesBotControlRuleSet": { "$ref": "#/definitions/AWS::WAFv2::WebACL.AWSManagedRulesBotControlRuleSet" }, "LoginPath": { "type": "string" }, "PasswordField": { "$ref": "#/definitions/AWS::WAFv2::WebACL.FieldIdentifier" }, "PayloadType": { "type": "string" }, "UsernameField": { "$ref": "#/definitions/AWS::WAFv2::WebACL.FieldIdentifier" } }, "type": "object" }, "AWS::WAFv2::WebACL.ManagedRuleGroupStatement": { "additionalProperties": false, "properties": { "ExcludedRules": { "items": { "$ref": "#/definitions/AWS::WAFv2::WebACL.ExcludedRule" }, "type": "array" }, "ManagedRuleGroupConfigs": { "items": { "$ref": "#/definitions/AWS::WAFv2::WebACL.ManagedRuleGroupConfig" }, "type": "array" }, "Name": { "type": "string" }, "RuleActionOverrides": { "items": { "$ref": "#/definitions/AWS::WAFv2::WebACL.RuleActionOverride" }, "type": "array" }, "ScopeDownStatement": { "$ref": "#/definitions/AWS::WAFv2::WebACL.Statement" }, "VendorName": { "type": "string" }, "Version": { "type": "string" } }, "required": [ "Name", "VendorName" ], "type": "object" }, "AWS::WAFv2::WebACL.NotStatement": { "additionalProperties": false, "properties": { "Statement": { "$ref": "#/definitions/AWS::WAFv2::WebACL.Statement" } }, "required": [ "Statement" ], "type": "object" }, "AWS::WAFv2::WebACL.OrStatement": { "additionalProperties": false, "properties": { "Statements": { "items": { "$ref": "#/definitions/AWS::WAFv2::WebACL.Statement" }, "type": "array" } }, "required": [ "Statements" ], "type": "object" }, "AWS::WAFv2::WebACL.OverrideAction": { "additionalProperties": false, "properties": { "Count": { "type": "object" }, "None": { "type": "object" } }, "type": "object" }, "AWS::WAFv2::WebACL.RateBasedStatement": { "additionalProperties": false, "properties": { "AggregateKeyType": { "type": "string" }, "CustomKeys": { "items": { "$ref": "#/definitions/AWS::WAFv2::WebACL.RateBasedStatementCustomKey" }, "type": "array" }, "ForwardedIPConfig": { "$ref": "#/definitions/AWS::WAFv2::WebACL.ForwardedIPConfiguration" }, "Limit": { "type": "number" }, "ScopeDownStatement": { "$ref": "#/definitions/AWS::WAFv2::WebACL.Statement" } }, "required": [ "AggregateKeyType", "Limit" ], "type": "object" }, "AWS::WAFv2::WebACL.RateBasedStatementCustomKey": { "additionalProperties": false, "properties": { "Cookie": { "$ref": "#/definitions/AWS::WAFv2::WebACL.RateLimitCookie" }, "ForwardedIP": { "type": "object" }, "HTTPMethod": { "type": "object" }, "Header": { "$ref": "#/definitions/AWS::WAFv2::WebACL.RateLimitHeader" }, "IP": { "type": "object" }, "LabelNamespace": { "$ref": "#/definitions/AWS::WAFv2::WebACL.RateLimitLabelNamespace" }, "QueryArgument": { "$ref": "#/definitions/AWS::WAFv2::WebACL.RateLimitQueryArgument" }, "QueryString": { "$ref": "#/definitions/AWS::WAFv2::WebACL.RateLimitQueryString" }, "UriPath": { "$ref": "#/definitions/AWS::WAFv2::WebACL.RateLimitUriPath" } }, "type": "object" }, "AWS::WAFv2::WebACL.RateLimitCookie": { "additionalProperties": false, "properties": { "Name": { "type": "string" }, "TextTransformations": { "items": { "$ref": "#/definitions/AWS::WAFv2::WebACL.TextTransformation" }, "type": "array" } }, "required": [ "Name", "TextTransformations" ], "type": "object" }, "AWS::WAFv2::WebACL.RateLimitHeader": { "additionalProperties": false, "properties": { "Name": { "type": "string" }, "TextTransformations": { "items": { "$ref": "#/definitions/AWS::WAFv2::WebACL.TextTransformation" }, "type": "array" } }, "required": [ "Name", "TextTransformations" ], "type": "object" }, "AWS::WAFv2::WebACL.RateLimitLabelNamespace": { "additionalProperties": false, "properties": { "Namespace": { "type": "string" } }, "required": [ "Namespace" ], "type": "object" }, "AWS::WAFv2::WebACL.RateLimitQueryArgument": { "additionalProperties": false, "properties": { "Name": { "type": "string" }, "TextTransformations": { "items": { "$ref": "#/definitions/AWS::WAFv2::WebACL.TextTransformation" }, "type": "array" } }, "required": [ "Name", "TextTransformations" ], "type": "object" }, "AWS::WAFv2::WebACL.RateLimitQueryString": { "additionalProperties": false, "properties": { "TextTransformations": { "items": { "$ref": "#/definitions/AWS::WAFv2::WebACL.TextTransformation" }, "type": "array" } }, "required": [ "TextTransformations" ], "type": "object" }, "AWS::WAFv2::WebACL.RateLimitUriPath": { "additionalProperties": false, "properties": { "TextTransformations": { "items": { "$ref": "#/definitions/AWS::WAFv2::WebACL.TextTransformation" }, "type": "array" } }, "required": [ "TextTransformations" ], "type": "object" }, "AWS::WAFv2::WebACL.RegexMatchStatement": { "additionalProperties": false, "properties": { "FieldToMatch": { "$ref": "#/definitions/AWS::WAFv2::WebACL.FieldToMatch" }, "RegexString": { "type": "string" }, "TextTransformations": { "items": { "$ref": "#/definitions/AWS::WAFv2::WebACL.TextTransformation" }, "type": "array" } }, "required": [ "FieldToMatch", "RegexString", "TextTransformations" ], "type": "object" }, "AWS::WAFv2::WebACL.RegexPatternSetReferenceStatement": { "additionalProperties": false, "properties": { "Arn": { "type": "string" }, "FieldToMatch": { "$ref": "#/definitions/AWS::WAFv2::WebACL.FieldToMatch" }, "TextTransformations": { "items": { "$ref": "#/definitions/AWS::WAFv2::WebACL.TextTransformation" }, "type": "array" } }, "required": [ "Arn", "FieldToMatch", "TextTransformations" ], "type": "object" }, "AWS::WAFv2::WebACL.RequestBodyAssociatedResourceTypeConfig": { "additionalProperties": false, "properties": { "DefaultSizeInspectionLimit": { "type": "string" } }, "required": [ "DefaultSizeInspectionLimit" ], "type": "object" }, "AWS::WAFv2::WebACL.RequestInspection": { "additionalProperties": false, "properties": { "PasswordField": { "$ref": "#/definitions/AWS::WAFv2::WebACL.FieldIdentifier" }, "PayloadType": { "type": "string" }, "UsernameField": { "$ref": "#/definitions/AWS::WAFv2::WebACL.FieldIdentifier" } }, "required": [ "PasswordField", "PayloadType", "UsernameField" ], "type": "object" }, "AWS::WAFv2::WebACL.RequestInspectionACFP": { "additionalProperties": false, "properties": { "AddressFields": { "items": { "$ref": "#/definitions/AWS::WAFv2::WebACL.FieldIdentifier" }, "type": "array" }, "EmailField": { "$ref": "#/definitions/AWS::WAFv2::WebACL.FieldIdentifier" }, "PasswordField": { "$ref": "#/definitions/AWS::WAFv2::WebACL.FieldIdentifier" }, "PayloadType": { "type": "string" }, "PhoneNumberFields": { "items": { "$ref": "#/definitions/AWS::WAFv2::WebACL.FieldIdentifier" }, "type": "array" }, "UsernameField": { "$ref": "#/definitions/AWS::WAFv2::WebACL.FieldIdentifier" } }, "required": [ "PayloadType" ], "type": "object" }, "AWS::WAFv2::WebACL.ResponseInspection": { "additionalProperties": false, "properties": { "BodyContains": { "$ref": "#/definitions/AWS::WAFv2::WebACL.ResponseInspectionBodyContains" }, "Header": { "$ref": "#/definitions/AWS::WAFv2::WebACL.ResponseInspectionHeader" }, "Json": { "$ref": "#/definitions/AWS::WAFv2::WebACL.ResponseInspectionJson" }, "StatusCode": { "$ref": "#/definitions/AWS::WAFv2::WebACL.ResponseInspectionStatusCode" } }, "type": "object" }, "AWS::WAFv2::WebACL.ResponseInspectionBodyContains": { "additionalProperties": false, "properties": { "FailureStrings": { "items": { "type": "string" }, "type": "array" }, "SuccessStrings": { "items": { "type": "string" }, "type": "array" } }, "required": [ "FailureStrings", "SuccessStrings" ], "type": "object" }, "AWS::WAFv2::WebACL.ResponseInspectionHeader": { "additionalProperties": false, "properties": { "FailureValues": { "items": { "type": "string" }, "type": "array" }, "Name": { "type": "string" }, "SuccessValues": { "items": { "type": "string" }, "type": "array" } }, "required": [ "FailureValues", "Name", "SuccessValues" ], "type": "object" }, "AWS::WAFv2::WebACL.ResponseInspectionJson": { "additionalProperties": false, "properties": { "FailureValues": { "items": { "type": "string" }, "type": "array" }, "Identifier": { "type": "string" }, "SuccessValues": { "items": { "type": "string" }, "type": "array" } }, "required": [ "FailureValues", "Identifier", "SuccessValues" ], "type": "object" }, "AWS::WAFv2::WebACL.ResponseInspectionStatusCode": { "additionalProperties": false, "properties": { "FailureCodes": { "items": { "type": "number" }, "type": "array" }, "SuccessCodes": { "items": { "type": "number" }, "type": "array" } }, "required": [ "FailureCodes", "SuccessCodes" ], "type": "object" }, "AWS::WAFv2::WebACL.Rule": { "additionalProperties": false, "properties": { "Action": { "$ref": "#/definitions/AWS::WAFv2::WebACL.RuleAction" }, "CaptchaConfig": { "$ref": "#/definitions/AWS::WAFv2::WebACL.CaptchaConfig" }, "ChallengeConfig": { "$ref": "#/definitions/AWS::WAFv2::WebACL.ChallengeConfig" }, "Name": { "type": "string" }, "OverrideAction": { "$ref": "#/definitions/AWS::WAFv2::WebACL.OverrideAction" }, "Priority": { "type": "number" }, "RuleLabels": { "items": { "$ref": "#/definitions/AWS::WAFv2::WebACL.Label" }, "type": "array" }, "Statement": { "$ref": "#/definitions/AWS::WAFv2::WebACL.Statement" }, "VisibilityConfig": { "$ref": "#/definitions/AWS::WAFv2::WebACL.VisibilityConfig" } }, "required": [ "Name", "Priority", "Statement", "VisibilityConfig" ], "type": "object" }, "AWS::WAFv2::WebACL.RuleAction": { "additionalProperties": false, "properties": { "Allow": { "$ref": "#/definitions/AWS::WAFv2::WebACL.AllowAction" }, "Block": { "$ref": "#/definitions/AWS::WAFv2::WebACL.BlockAction" }, "Captcha": { "$ref": "#/definitions/AWS::WAFv2::WebACL.CaptchaAction" }, "Challenge": { "$ref": "#/definitions/AWS::WAFv2::WebACL.ChallengeAction" }, "Count": { "$ref": "#/definitions/AWS::WAFv2::WebACL.CountAction" } }, "type": "object" }, "AWS::WAFv2::WebACL.RuleActionOverride": { "additionalProperties": false, "properties": { "ActionToUse": { "$ref": "#/definitions/AWS::WAFv2::WebACL.RuleAction" }, "Name": { "type": "string" } }, "required": [ "ActionToUse", "Name" ], "type": "object" }, "AWS::WAFv2::WebACL.RuleGroupReferenceStatement": { "additionalProperties": false, "properties": { "Arn": { "type": "string" }, "ExcludedRules": { "items": { "$ref": "#/definitions/AWS::WAFv2::WebACL.ExcludedRule" }, "type": "array" }, "RuleActionOverrides": { "items": { "$ref": "#/definitions/AWS::WAFv2::WebACL.RuleActionOverride" }, "type": "array" } }, "required": [ "Arn" ], "type": "object" }, "AWS::WAFv2::WebACL.SingleHeader": { "additionalProperties": false, "properties": { "Name": { "type": "string" } }, "required": [ "Name" ], "type": "object" }, "AWS::WAFv2::WebACL.SingleQueryArgument": { "additionalProperties": false, "properties": { "Name": { "type": "string" } }, "required": [ "Name" ], "type": "object" }, "AWS::WAFv2::WebACL.SizeConstraintStatement": { "additionalProperties": false, "properties": { "ComparisonOperator": { "type": "string" }, "FieldToMatch": { "$ref": "#/definitions/AWS::WAFv2::WebACL.FieldToMatch" }, "Size": { "type": "number" }, "TextTransformations": { "items": { "$ref": "#/definitions/AWS::WAFv2::WebACL.TextTransformation" }, "type": "array" } }, "required": [ "ComparisonOperator", "FieldToMatch", "Size", "TextTransformations" ], "type": "object" }, "AWS::WAFv2::WebACL.SqliMatchStatement": { "additionalProperties": false, "properties": { "FieldToMatch": { "$ref": "#/definitions/AWS::WAFv2::WebACL.FieldToMatch" }, "SensitivityLevel": { "type": "string" }, "TextTransformations": { "items": { "$ref": "#/definitions/AWS::WAFv2::WebACL.TextTransformation" }, "type": "array" } }, "required": [ "FieldToMatch", "TextTransformations" ], "type": "object" }, "AWS::WAFv2::WebACL.Statement": { "additionalProperties": false, "properties": { "AndStatement": { "$ref": "#/definitions/AWS::WAFv2::WebACL.AndStatement" }, "ByteMatchStatement": { "$ref": "#/definitions/AWS::WAFv2::WebACL.ByteMatchStatement" }, "GeoMatchStatement": { "$ref": "#/definitions/AWS::WAFv2::WebACL.GeoMatchStatement" }, "IPSetReferenceStatement": { "$ref": "#/definitions/AWS::WAFv2::WebACL.IPSetReferenceStatement" }, "LabelMatchStatement": { "$ref": "#/definitions/AWS::WAFv2::WebACL.LabelMatchStatement" }, "ManagedRuleGroupStatement": { "$ref": "#/definitions/AWS::WAFv2::WebACL.ManagedRuleGroupStatement" }, "NotStatement": { "$ref": "#/definitions/AWS::WAFv2::WebACL.NotStatement" }, "OrStatement": { "$ref": "#/definitions/AWS::WAFv2::WebACL.OrStatement" }, "RateBasedStatement": { "$ref": "#/definitions/AWS::WAFv2::WebACL.RateBasedStatement" }, "RegexMatchStatement": { "$ref": "#/definitions/AWS::WAFv2::WebACL.RegexMatchStatement" }, "RegexPatternSetReferenceStatement": { "$ref": "#/definitions/AWS::WAFv2::WebACL.RegexPatternSetReferenceStatement" }, "RuleGroupReferenceStatement": { "$ref": "#/definitions/AWS::WAFv2::WebACL.RuleGroupReferenceStatement" }, "SizeConstraintStatement": { "$ref": "#/definitions/AWS::WAFv2::WebACL.SizeConstraintStatement" }, "SqliMatchStatement": { "$ref": "#/definitions/AWS::WAFv2::WebACL.SqliMatchStatement" }, "XssMatchStatement": { "$ref": "#/definitions/AWS::WAFv2::WebACL.XssMatchStatement" } }, "type": "object" }, "AWS::WAFv2::WebACL.TextTransformation": { "additionalProperties": false, "properties": { "Priority": { "type": "number" }, "Type": { "type": "string" } }, "required": [ "Priority", "Type" ], "type": "object" }, "AWS::WAFv2::WebACL.VisibilityConfig": { "additionalProperties": false, "properties": { "CloudWatchMetricsEnabled": { "type": "boolean" }, "MetricName": { "type": "string" }, "SampledRequestsEnabled": { "type": "boolean" } }, "required": [ "CloudWatchMetricsEnabled", "MetricName", "SampledRequestsEnabled" ], "type": "object" }, "AWS::WAFv2::WebACL.XssMatchStatement": { "additionalProperties": false, "properties": { "FieldToMatch": { "$ref": "#/definitions/AWS::WAFv2::WebACL.FieldToMatch" }, "TextTransformations": { "items": { "$ref": "#/definitions/AWS::WAFv2::WebACL.TextTransformation" }, "type": "array" } }, "required": [ "FieldToMatch", "TextTransformations" ], "type": "object" }, "AWS::WAFv2::WebACLAssociation": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ResourceArn": { "type": "string" }, "WebACLArn": { "type": "string" } }, "required": [ "ResourceArn", "WebACLArn" ], "type": "object" }, "Type": { "enum": [ "AWS::WAFv2::WebACLAssociation" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Wisdom::Assistant": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "Name": { "type": "string" }, "ServerSideEncryptionConfiguration": { "$ref": "#/definitions/AWS::Wisdom::Assistant.ServerSideEncryptionConfiguration" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "Type": { "type": "string" } }, "required": [ "Name", "Type" ], "type": "object" }, "Type": { "enum": [ "AWS::Wisdom::Assistant" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Wisdom::Assistant.ServerSideEncryptionConfiguration": { "additionalProperties": false, "properties": { "KmsKeyId": { "type": "string" } }, "type": "object" }, "AWS::Wisdom::AssistantAssociation": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AssistantId": { "type": "string" }, "Association": { "$ref": "#/definitions/AWS::Wisdom::AssistantAssociation.AssociationData" }, "AssociationType": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "AssistantId", "Association", "AssociationType" ], "type": "object" }, "Type": { "enum": [ "AWS::Wisdom::AssistantAssociation" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Wisdom::AssistantAssociation.AssociationData": { "additionalProperties": false, "properties": { "KnowledgeBaseId": { "type": "string" } }, "required": [ "KnowledgeBaseId" ], "type": "object" }, "AWS::Wisdom::KnowledgeBase": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "Description": { "type": "string" }, "KnowledgeBaseType": { "type": "string" }, "Name": { "type": "string" }, "RenderingConfiguration": { "$ref": "#/definitions/AWS::Wisdom::KnowledgeBase.RenderingConfiguration" }, "ServerSideEncryptionConfiguration": { "$ref": "#/definitions/AWS::Wisdom::KnowledgeBase.ServerSideEncryptionConfiguration" }, "SourceConfiguration": { "$ref": "#/definitions/AWS::Wisdom::KnowledgeBase.SourceConfiguration" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "KnowledgeBaseType", "Name" ], "type": "object" }, "Type": { "enum": [ "AWS::Wisdom::KnowledgeBase" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::Wisdom::KnowledgeBase.AppIntegrationsConfiguration": { "additionalProperties": false, "properties": { "AppIntegrationArn": { "type": "string" }, "ObjectFields": { "items": { "type": "string" }, "type": "array" } }, "required": [ "AppIntegrationArn" ], "type": "object" }, "AWS::Wisdom::KnowledgeBase.RenderingConfiguration": { "additionalProperties": false, "properties": { "TemplateUri": { "type": "string" } }, "type": "object" }, "AWS::Wisdom::KnowledgeBase.ServerSideEncryptionConfiguration": { "additionalProperties": false, "properties": { "KmsKeyId": { "type": "string" } }, "type": "object" }, "AWS::Wisdom::KnowledgeBase.SourceConfiguration": { "additionalProperties": false, "properties": { "AppIntegrations": { "$ref": "#/definitions/AWS::Wisdom::KnowledgeBase.AppIntegrationsConfiguration" } }, "required": [ "AppIntegrations" ], "type": "object" }, "AWS::WorkSpaces::ConnectionAlias": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "ConnectionString": { "type": "string" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "ConnectionString" ], "type": "object" }, "Type": { "enum": [ "AWS::WorkSpaces::ConnectionAlias" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::WorkSpaces::ConnectionAlias.ConnectionAliasAssociation": { "additionalProperties": false, "properties": { "AssociatedAccountId": { "type": "string" }, "AssociationStatus": { "type": "string" }, "ConnectionIdentifier": { "type": "string" }, "ResourceId": { "type": "string" } }, "type": "object" }, "AWS::WorkSpaces::Workspace": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "BundleId": { "type": "string" }, "DirectoryId": { "type": "string" }, "RootVolumeEncryptionEnabled": { "type": "boolean" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" }, "UserName": { "type": "string" }, "UserVolumeEncryptionEnabled": { "type": "boolean" }, "VolumeEncryptionKey": { "type": "string" }, "WorkspaceProperties": { "$ref": "#/definitions/AWS::WorkSpaces::Workspace.WorkspaceProperties" } }, "required": [ "BundleId", "DirectoryId", "UserName" ], "type": "object" }, "Type": { "enum": [ "AWS::WorkSpaces::Workspace" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::WorkSpaces::Workspace.WorkspaceProperties": { "additionalProperties": false, "properties": { "ComputeTypeName": { "type": "string" }, "RootVolumeSizeGib": { "type": "number" }, "RunningMode": { "type": "string" }, "RunningModeAutoStopTimeoutInMinutes": { "type": "number" }, "UserVolumeSizeGib": { "type": "number" } }, "type": "object" }, "AWS::XRay::Group": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "FilterExpression": { "type": "string" }, "GroupName": { "type": "string" }, "InsightsConfiguration": { "$ref": "#/definitions/AWS::XRay::Group.InsightsConfiguration" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "required": [ "GroupName" ], "type": "object" }, "Type": { "enum": [ "AWS::XRay::Group" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::XRay::Group.InsightsConfiguration": { "additionalProperties": false, "properties": { "InsightsEnabled": { "type": "boolean" }, "NotificationsEnabled": { "type": "boolean" } }, "type": "object" }, "AWS::XRay::ResourcePolicy": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "BypassPolicyLockoutCheck": { "type": "boolean" }, "PolicyDocument": { "type": "string" }, "PolicyName": { "type": "string" } }, "required": [ "PolicyDocument", "PolicyName" ], "type": "object" }, "Type": { "enum": [ "AWS::XRay::ResourcePolicy" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "AWS::XRay::SamplingRule": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "SamplingRule": { "$ref": "#/definitions/AWS::XRay::SamplingRule.SamplingRule" }, "Tags": { "items": { "$ref": "#/definitions/Tag" }, "type": "array" } }, "type": "object" }, "Type": { "enum": [ "AWS::XRay::SamplingRule" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "AWS::XRay::SamplingRule.SamplingRule": { "additionalProperties": false, "properties": { "Attributes": { "additionalProperties": true, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "string" } }, "type": "object" }, "FixedRate": { "type": "number" }, "HTTPMethod": { "type": "string" }, "Host": { "type": "string" }, "Priority": { "type": "number" }, "ReservoirSize": { "type": "number" }, "ResourceARN": { "type": "string" }, "RuleARN": { "type": "string" }, "RuleName": { "type": "string" }, "ServiceName": { "type": "string" }, "ServiceType": { "type": "string" }, "URLPath": { "type": "string" }, "Version": { "type": "number" } }, "required": [ "FixedRate", "HTTPMethod", "Host", "Priority", "ReservoirSize", "ResourceARN", "ServiceName", "ServiceType", "URLPath" ], "type": "object" }, "Alexa::ASK::Skill": { "additionalProperties": false, "properties": { "Condition": { "type": "string" }, "DeletionPolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" }, "DependsOn": { "anyOf": [ { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, { "items": { "pattern": "^[a-zA-Z0-9]+$", "type": "string" }, "type": "array" } ] }, "Metadata": { "type": "object" }, "Properties": { "additionalProperties": false, "properties": { "AuthenticationConfiguration": { "$ref": "#/definitions/Alexa::ASK::Skill.AuthenticationConfiguration" }, "SkillPackage": { "$ref": "#/definitions/Alexa::ASK::Skill.SkillPackage" }, "VendorId": { "type": "string" } }, "required": [ "AuthenticationConfiguration", "SkillPackage", "VendorId" ], "type": "object" }, "Type": { "enum": [ "Alexa::ASK::Skill" ], "type": "string" }, "UpdateReplacePolicy": { "enum": [ "Delete", "Retain", "Snapshot" ], "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "Alexa::ASK::Skill.AuthenticationConfiguration": { "additionalProperties": false, "properties": { "ClientId": { "type": "string" }, "ClientSecret": { "type": "string" }, "RefreshToken": { "type": "string" } }, "required": [ "ClientId", "ClientSecret", "RefreshToken" ], "type": "object" }, "Alexa::ASK::Skill.Overrides": { "additionalProperties": false, "properties": { "Manifest": { "type": "object" } }, "type": "object" }, "Alexa::ASK::Skill.SkillPackage": { "additionalProperties": false, "properties": { "Overrides": { "$ref": "#/definitions/Alexa::ASK::Skill.Overrides" }, "S3Bucket": { "type": "string" }, "S3BucketRole": { "type": "string" }, "S3Key": { "type": "string" }, "S3ObjectVersion": { "type": "string" } }, "required": [ "S3Bucket", "S3Key" ], "type": "object" }, "CustomResource": { "additionalProperties": false, "properties": { "Properties": { "additionalProperties": true, "properties": { "ServiceToken": { "type": "string" } }, "required": [ "ServiceToken" ], "type": "object" }, "Type": { "pattern": "^Custom::[a-zA-Z_@-]+$", "type": "string" } }, "required": [ "Type", "Properties" ], "type": "object" }, "Parameter": { "additionalProperties": false, "properties": { "AllowedPattern": { "type": "string" }, "AllowedValues": { "type": "array" }, "ConstraintDescription": { "type": "string" }, "Default": { "type": "string" }, "Description": { "type": "string" }, "MaxLength": { "type": "string" }, "MaxValue": { "type": "string" }, "MinLength": { "type": "string" }, "MinValue": { "type": "string" }, "NoEcho": { "type": [ "string", "boolean" ] }, "Type": { "enum": [ "String", "Number", "List\u003cNumber\u003e", "CommaDelimitedList", "AWS::EC2::AvailabilityZone::Name", "AWS::EC2::Image::Id", "AWS::EC2::Instance::Id", "AWS::EC2::KeyPair::KeyName", "AWS::EC2::SecurityGroup::GroupName", "AWS::EC2::SecurityGroup::Id", "AWS::EC2::Subnet::Id", "AWS::EC2::Volume::Id", "AWS::EC2::VPC::Id", "AWS::Route53::HostedZone::Id", "List\u003cAWS::EC2::AvailabilityZone::Name\u003e", "List\u003cAWS::EC2::Image::Id\u003e", "List\u003cAWS::EC2::Instance::Id\u003e", "List\u003cAWS::EC2::SecurityGroup::GroupName\u003e", "List\u003cAWS::EC2::SecurityGroup::Id\u003e", "List\u003cAWS::EC2::Subnet::Id\u003e", "List\u003cAWS::EC2::Volume::Id\u003e", "List\u003cAWS::EC2::VPC::Id\u003e", "List\u003cAWS::Route53::HostedZone::Id\u003e", "List\u003cString\u003e", "AWS::SSM::Parameter::Name", "AWS::SSM::Parameter::Value\u003cString\u003e", "AWS::SSM::Parameter::Value\u003cList\u003cString\u003e\u003e", "AWS::SSM::Parameter::Value\u003cCommaDelimitedList\u003e", "AWS::SSM::Parameter::Value\u003cAWS::EC2::AvailabilityZone::Name\u003e", "AWS::SSM::Parameter::Value\u003cAWS::EC2::Image::Id\u003e", "AWS::SSM::Parameter::Value\u003cAWS::EC2::Instance::Id\u003e", "AWS::SSM::Parameter::Value\u003cAWS::EC2::SecurityGroup::GroupName\u003e", "AWS::SSM::Parameter::Value\u003cAWS::EC2::SecurityGroup::Id\u003e", "AWS::SSM::Parameter::Value\u003cAWS::EC2::Subnet::Id\u003e", "AWS::SSM::Parameter::Value\u003cAWS::EC2::Volume::Id\u003e", "AWS::SSM::Parameter::Value\u003cAWS::EC2::VPC::Id\u003e", "AWS::SSM::Parameter::Value\u003cAWS::Route53::HostedZone::Id\u003e", "AWS::SSM::Parameter::Value\u003cList\u003cAWS::EC2::AvailabilityZone::Name\u003e\u003e", "AWS::SSM::Parameter::Value\u003cList\u003cAWS::EC2::Image::Id\u003e\u003e", "AWS::SSM::Parameter::Value\u003cList\u003cAWS::EC2::Instance::Id\u003e\u003e", "AWS::SSM::Parameter::Value\u003cList\u003cAWS::EC2::SecurityGroup::GroupName\u003e\u003e", "AWS::SSM::Parameter::Value\u003cList\u003cAWS::EC2::SecurityGroup::Id\u003e\u003e", "AWS::SSM::Parameter::Value\u003cList\u003cAWS::EC2::Subnet::Id\u003e\u003e", "AWS::SSM::Parameter::Value\u003cList\u003cAWS::EC2::Volume::Id\u003e\u003e", "AWS::SSM::Parameter::Value\u003cList\u003cAWS::EC2::VPC::Id\u003e\u003e", "AWS::SSM::Parameter::Value\u003cList\u003cAWS::Route53::HostedZone::Id\u003e\u003e" ], "type": "string" } }, "required": [ "Type" ], "type": "object" }, "Tag": { "additionalProperties": false, "properties": { "Key": { "type": "string" }, "Value": { "type": "string" } }, "required": [ "Key", "Value" ], "type": "object" } }, "properties": { "AWSTemplateFormatVersion": { "enum": [ "2010-09-09" ], "type": "string" }, "Conditions": { "additionalProperties": false, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "object" } }, "type": "object" }, "Description": { "description": "Template description", "maxLength": 1024, "type": "string" }, "Mappings": { "additionalProperties": false, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "object" } }, "type": "object" }, "Metadata": { "type": "object" }, "Outputs": { "additionalProperties": false, "maxProperties": 60, "minProperties": 1, "patternProperties": { "^[a-zA-Z0-9]+$": { "type": "object" } }, "type": "object" }, "Parameters": { "additionalProperties": false, "maxProperties": 50, "patternProperties": { "^[a-zA-Z0-9]+$": { "$ref": "#/definitions/Parameter" } }, "type": "object" }, "Resources": { "additionalProperties": false, "patternProperties": { "^[a-zA-Z0-9]+$": { "anyOf": [ { "$ref": "#/definitions/AWS::ACMPCA::Certificate" }, { "$ref": "#/definitions/AWS::ACMPCA::CertificateAuthority" }, { "$ref": "#/definitions/AWS::ACMPCA::CertificateAuthorityActivation" }, { "$ref": "#/definitions/AWS::ACMPCA::Permission" }, { "$ref": "#/definitions/AWS::APS::RuleGroupsNamespace" }, { "$ref": "#/definitions/AWS::APS::Workspace" }, { "$ref": "#/definitions/AWS::AccessAnalyzer::Analyzer" }, { "$ref": "#/definitions/AWS::AmazonMQ::Broker" }, { "$ref": "#/definitions/AWS::AmazonMQ::Configuration" }, { "$ref": "#/definitions/AWS::AmazonMQ::ConfigurationAssociation" }, { "$ref": "#/definitions/AWS::Amplify::App" }, { "$ref": "#/definitions/AWS::Amplify::Branch" }, { "$ref": "#/definitions/AWS::Amplify::Domain" }, { "$ref": "#/definitions/AWS::AmplifyUIBuilder::Component" }, { "$ref": "#/definitions/AWS::AmplifyUIBuilder::Form" }, { "$ref": "#/definitions/AWS::AmplifyUIBuilder::Theme" }, { "$ref": "#/definitions/AWS::ApiGateway::Account" }, { "$ref": "#/definitions/AWS::ApiGateway::ApiKey" }, { "$ref": "#/definitions/AWS::ApiGateway::Authorizer" }, { "$ref": "#/definitions/AWS::ApiGateway::BasePathMapping" }, { "$ref": "#/definitions/AWS::ApiGateway::ClientCertificate" }, { "$ref": "#/definitions/AWS::ApiGateway::Deployment" }, { "$ref": "#/definitions/AWS::ApiGateway::DocumentationPart" }, { "$ref": "#/definitions/AWS::ApiGateway::DocumentationVersion" }, { "$ref": "#/definitions/AWS::ApiGateway::DomainName" }, { "$ref": "#/definitions/AWS::ApiGateway::GatewayResponse" }, { "$ref": "#/definitions/AWS::ApiGateway::Method" }, { "$ref": "#/definitions/AWS::ApiGateway::Model" }, { "$ref": "#/definitions/AWS::ApiGateway::RequestValidator" }, { "$ref": "#/definitions/AWS::ApiGateway::Resource" }, { "$ref": "#/definitions/AWS::ApiGateway::RestApi" }, { "$ref": "#/definitions/AWS::ApiGateway::Stage" }, { "$ref": "#/definitions/AWS::ApiGateway::UsagePlan" }, { "$ref": "#/definitions/AWS::ApiGateway::UsagePlanKey" }, { "$ref": "#/definitions/AWS::ApiGateway::VpcLink" }, { "$ref": "#/definitions/AWS::ApiGatewayV2::Api" }, { "$ref": "#/definitions/AWS::ApiGatewayV2::ApiGatewayManagedOverrides" }, { "$ref": "#/definitions/AWS::ApiGatewayV2::ApiMapping" }, { "$ref": "#/definitions/AWS::ApiGatewayV2::Authorizer" }, { "$ref": "#/definitions/AWS::ApiGatewayV2::Deployment" }, { "$ref": "#/definitions/AWS::ApiGatewayV2::DomainName" }, { "$ref": "#/definitions/AWS::ApiGatewayV2::Integration" }, { "$ref": "#/definitions/AWS::ApiGatewayV2::IntegrationResponse" }, { "$ref": "#/definitions/AWS::ApiGatewayV2::Model" }, { "$ref": "#/definitions/AWS::ApiGatewayV2::Route" }, { "$ref": "#/definitions/AWS::ApiGatewayV2::RouteResponse" }, { "$ref": "#/definitions/AWS::ApiGatewayV2::Stage" }, { "$ref": "#/definitions/AWS::ApiGatewayV2::VpcLink" }, { "$ref": "#/definitions/AWS::AppConfig::Application" }, { "$ref": "#/definitions/AWS::AppConfig::ConfigurationProfile" }, { "$ref": "#/definitions/AWS::AppConfig::Deployment" }, { "$ref": "#/definitions/AWS::AppConfig::DeploymentStrategy" }, { "$ref": "#/definitions/AWS::AppConfig::Environment" }, { "$ref": "#/definitions/AWS::AppConfig::Extension" }, { "$ref": "#/definitions/AWS::AppConfig::ExtensionAssociation" }, { "$ref": "#/definitions/AWS::AppConfig::HostedConfigurationVersion" }, { "$ref": "#/definitions/AWS::AppFlow::Connector" }, { "$ref": "#/definitions/AWS::AppFlow::ConnectorProfile" }, { "$ref": "#/definitions/AWS::AppFlow::Flow" }, { "$ref": "#/definitions/AWS::AppIntegrations::DataIntegration" }, { "$ref": "#/definitions/AWS::AppIntegrations::EventIntegration" }, { "$ref": "#/definitions/AWS::AppMesh::GatewayRoute" }, { "$ref": "#/definitions/AWS::AppMesh::Mesh" }, { "$ref": "#/definitions/AWS::AppMesh::Route" }, { "$ref": "#/definitions/AWS::AppMesh::VirtualGateway" }, { "$ref": "#/definitions/AWS::AppMesh::VirtualNode" }, { "$ref": "#/definitions/AWS::AppMesh::VirtualRouter" }, { "$ref": "#/definitions/AWS::AppMesh::VirtualService" }, { "$ref": "#/definitions/AWS::AppRunner::AutoScalingConfiguration" }, { "$ref": "#/definitions/AWS::AppRunner::ObservabilityConfiguration" }, { "$ref": "#/definitions/AWS::AppRunner::Service" }, { "$ref": "#/definitions/AWS::AppRunner::VpcConnector" }, { "$ref": "#/definitions/AWS::AppRunner::VpcIngressConnection" }, { "$ref": "#/definitions/AWS::AppStream::AppBlock" }, { "$ref": "#/definitions/AWS::AppStream::AppBlockBuilder" }, { "$ref": "#/definitions/AWS::AppStream::Application" }, { "$ref": "#/definitions/AWS::AppStream::ApplicationEntitlementAssociation" }, { "$ref": "#/definitions/AWS::AppStream::ApplicationFleetAssociation" }, { "$ref": "#/definitions/AWS::AppStream::DirectoryConfig" }, { "$ref": "#/definitions/AWS::AppStream::Entitlement" }, { "$ref": "#/definitions/AWS::AppStream::Fleet" }, { "$ref": "#/definitions/AWS::AppStream::ImageBuilder" }, { "$ref": "#/definitions/AWS::AppStream::Stack" }, { "$ref": "#/definitions/AWS::AppStream::StackFleetAssociation" }, { "$ref": "#/definitions/AWS::AppStream::StackUserAssociation" }, { "$ref": "#/definitions/AWS::AppStream::User" }, { "$ref": "#/definitions/AWS::AppSync::ApiCache" }, { "$ref": "#/definitions/AWS::AppSync::ApiKey" }, { "$ref": "#/definitions/AWS::AppSync::DataSource" }, { "$ref": "#/definitions/AWS::AppSync::DomainName" }, { "$ref": "#/definitions/AWS::AppSync::DomainNameApiAssociation" }, { "$ref": "#/definitions/AWS::AppSync::FunctionConfiguration" }, { "$ref": "#/definitions/AWS::AppSync::GraphQLApi" }, { "$ref": "#/definitions/AWS::AppSync::GraphQLSchema" }, { "$ref": "#/definitions/AWS::AppSync::Resolver" }, { "$ref": "#/definitions/AWS::AppSync::SourceApiAssociation" }, { "$ref": "#/definitions/AWS::ApplicationAutoScaling::ScalableTarget" }, { "$ref": "#/definitions/AWS::ApplicationAutoScaling::ScalingPolicy" }, { "$ref": "#/definitions/AWS::ApplicationInsights::Application" }, { "$ref": "#/definitions/AWS::Athena::CapacityReservation" }, { "$ref": "#/definitions/AWS::Athena::DataCatalog" }, { "$ref": "#/definitions/AWS::Athena::NamedQuery" }, { "$ref": "#/definitions/AWS::Athena::PreparedStatement" }, { "$ref": "#/definitions/AWS::Athena::WorkGroup" }, { "$ref": "#/definitions/AWS::AuditManager::Assessment" }, { "$ref": "#/definitions/AWS::AutoScaling::AutoScalingGroup" }, { "$ref": "#/definitions/AWS::AutoScaling::LaunchConfiguration" }, { "$ref": "#/definitions/AWS::AutoScaling::LifecycleHook" }, { "$ref": "#/definitions/AWS::AutoScaling::ScalingPolicy" }, { "$ref": "#/definitions/AWS::AutoScaling::ScheduledAction" }, { "$ref": "#/definitions/AWS::AutoScaling::WarmPool" }, { "$ref": "#/definitions/AWS::AutoScalingPlans::ScalingPlan" }, { "$ref": "#/definitions/AWS::Backup::BackupPlan" }, { "$ref": "#/definitions/AWS::Backup::BackupSelection" }, { "$ref": "#/definitions/AWS::Backup::BackupVault" }, { "$ref": "#/definitions/AWS::Backup::Framework" }, { "$ref": "#/definitions/AWS::Backup::ReportPlan" }, { "$ref": "#/definitions/AWS::BackupGateway::Hypervisor" }, { "$ref": "#/definitions/AWS::Batch::ComputeEnvironment" }, { "$ref": "#/definitions/AWS::Batch::JobDefinition" }, { "$ref": "#/definitions/AWS::Batch::JobQueue" }, { "$ref": "#/definitions/AWS::Batch::SchedulingPolicy" }, { "$ref": "#/definitions/AWS::BillingConductor::BillingGroup" }, { "$ref": "#/definitions/AWS::BillingConductor::CustomLineItem" }, { "$ref": "#/definitions/AWS::BillingConductor::PricingPlan" }, { "$ref": "#/definitions/AWS::BillingConductor::PricingRule" }, { "$ref": "#/definitions/AWS::Budgets::Budget" }, { "$ref": "#/definitions/AWS::Budgets::BudgetsAction" }, { "$ref": "#/definitions/AWS::CE::AnomalyMonitor" }, { "$ref": "#/definitions/AWS::CE::AnomalySubscription" }, { "$ref": "#/definitions/AWS::CE::CostCategory" }, { "$ref": "#/definitions/AWS::CUR::ReportDefinition" }, { "$ref": "#/definitions/AWS::Cassandra::Keyspace" }, { "$ref": "#/definitions/AWS::Cassandra::Table" }, { "$ref": "#/definitions/AWS::CertificateManager::Account" }, { "$ref": "#/definitions/AWS::CertificateManager::Certificate" }, { "$ref": "#/definitions/AWS::Chatbot::MicrosoftTeamsChannelConfiguration" }, { "$ref": "#/definitions/AWS::Chatbot::SlackChannelConfiguration" }, { "$ref": "#/definitions/AWS::CleanRooms::Collaboration" }, { "$ref": "#/definitions/AWS::CleanRooms::ConfiguredTable" }, { "$ref": "#/definitions/AWS::CleanRooms::ConfiguredTableAssociation" }, { "$ref": "#/definitions/AWS::CleanRooms::Membership" }, { "$ref": "#/definitions/AWS::Cloud9::EnvironmentEC2" }, { "$ref": "#/definitions/AWS::CloudFormation::CustomResource" }, { "$ref": "#/definitions/AWS::CloudFormation::HookDefaultVersion" }, { "$ref": "#/definitions/AWS::CloudFormation::HookTypeConfig" }, { "$ref": "#/definitions/AWS::CloudFormation::HookVersion" }, { "$ref": "#/definitions/AWS::CloudFormation::Macro" }, { "$ref": "#/definitions/AWS::CloudFormation::ModuleDefaultVersion" }, { "$ref": "#/definitions/AWS::CloudFormation::ModuleVersion" }, { "$ref": "#/definitions/AWS::CloudFormation::PublicTypeVersion" }, { "$ref": "#/definitions/AWS::CloudFormation::Publisher" }, { "$ref": "#/definitions/AWS::CloudFormation::ResourceDefaultVersion" }, { "$ref": "#/definitions/AWS::CloudFormation::ResourceVersion" }, { "$ref": "#/definitions/AWS::CloudFormation::Stack" }, { "$ref": "#/definitions/AWS::CloudFormation::StackSet" }, { "$ref": "#/definitions/AWS::CloudFormation::TypeActivation" }, { "$ref": "#/definitions/AWS::CloudFormation::WaitCondition" }, { "$ref": "#/definitions/AWS::CloudFormation::WaitConditionHandle" }, { "$ref": "#/definitions/AWS::CloudFront::CachePolicy" }, { "$ref": "#/definitions/AWS::CloudFront::CloudFrontOriginAccessIdentity" }, { "$ref": "#/definitions/AWS::CloudFront::ContinuousDeploymentPolicy" }, { "$ref": "#/definitions/AWS::CloudFront::Distribution" }, { "$ref": "#/definitions/AWS::CloudFront::Function" }, { "$ref": "#/definitions/AWS::CloudFront::KeyGroup" }, { "$ref": "#/definitions/AWS::CloudFront::MonitoringSubscription" }, { "$ref": "#/definitions/AWS::CloudFront::OriginAccessControl" }, { "$ref": "#/definitions/AWS::CloudFront::OriginRequestPolicy" }, { "$ref": "#/definitions/AWS::CloudFront::PublicKey" }, { "$ref": "#/definitions/AWS::CloudFront::RealtimeLogConfig" }, { "$ref": "#/definitions/AWS::CloudFront::ResponseHeadersPolicy" }, { "$ref": "#/definitions/AWS::CloudFront::StreamingDistribution" }, { "$ref": "#/definitions/AWS::CloudTrail::Channel" }, { "$ref": "#/definitions/AWS::CloudTrail::EventDataStore" }, { "$ref": "#/definitions/AWS::CloudTrail::ResourcePolicy" }, { "$ref": "#/definitions/AWS::CloudTrail::Trail" }, { "$ref": "#/definitions/AWS::CloudWatch::Alarm" }, { "$ref": "#/definitions/AWS::CloudWatch::AnomalyDetector" }, { "$ref": "#/definitions/AWS::CloudWatch::CompositeAlarm" }, { "$ref": "#/definitions/AWS::CloudWatch::Dashboard" }, { "$ref": "#/definitions/AWS::CloudWatch::InsightRule" }, { "$ref": "#/definitions/AWS::CloudWatch::MetricStream" }, { "$ref": "#/definitions/AWS::CodeArtifact::Domain" }, { "$ref": "#/definitions/AWS::CodeArtifact::Repository" }, { "$ref": "#/definitions/AWS::CodeBuild::Project" }, { "$ref": "#/definitions/AWS::CodeBuild::ReportGroup" }, { "$ref": "#/definitions/AWS::CodeBuild::SourceCredential" }, { "$ref": "#/definitions/AWS::CodeCommit::Repository" }, { "$ref": "#/definitions/AWS::CodeDeploy::Application" }, { "$ref": "#/definitions/AWS::CodeDeploy::DeploymentConfig" }, { "$ref": "#/definitions/AWS::CodeDeploy::DeploymentGroup" }, { "$ref": "#/definitions/AWS::CodeGuruProfiler::ProfilingGroup" }, { "$ref": "#/definitions/AWS::CodeGuruReviewer::RepositoryAssociation" }, { "$ref": "#/definitions/AWS::CodePipeline::CustomActionType" }, { "$ref": "#/definitions/AWS::CodePipeline::Pipeline" }, { "$ref": "#/definitions/AWS::CodePipeline::Webhook" }, { "$ref": "#/definitions/AWS::CodeStar::GitHubRepository" }, { "$ref": "#/definitions/AWS::CodeStarConnections::Connection" }, { "$ref": "#/definitions/AWS::CodeStarNotifications::NotificationRule" }, { "$ref": "#/definitions/AWS::Cognito::IdentityPool" }, { "$ref": "#/definitions/AWS::Cognito::IdentityPoolPrincipalTag" }, { "$ref": "#/definitions/AWS::Cognito::IdentityPoolRoleAttachment" }, { "$ref": "#/definitions/AWS::Cognito::UserPool" }, { "$ref": "#/definitions/AWS::Cognito::UserPoolClient" }, { "$ref": "#/definitions/AWS::Cognito::UserPoolDomain" }, { "$ref": "#/definitions/AWS::Cognito::UserPoolGroup" }, { "$ref": "#/definitions/AWS::Cognito::UserPoolIdentityProvider" }, { "$ref": "#/definitions/AWS::Cognito::UserPoolResourceServer" }, { "$ref": "#/definitions/AWS::Cognito::UserPoolRiskConfigurationAttachment" }, { "$ref": "#/definitions/AWS::Cognito::UserPoolUICustomizationAttachment" }, { "$ref": "#/definitions/AWS::Cognito::UserPoolUser" }, { "$ref": "#/definitions/AWS::Cognito::UserPoolUserToGroupAttachment" }, { "$ref": "#/definitions/AWS::Comprehend::DocumentClassifier" }, { "$ref": "#/definitions/AWS::Comprehend::Flywheel" }, { "$ref": "#/definitions/AWS::Config::AggregationAuthorization" }, { "$ref": "#/definitions/AWS::Config::ConfigRule" }, { "$ref": "#/definitions/AWS::Config::ConfigurationAggregator" }, { "$ref": "#/definitions/AWS::Config::ConfigurationRecorder" }, { "$ref": "#/definitions/AWS::Config::ConformancePack" }, { "$ref": "#/definitions/AWS::Config::DeliveryChannel" }, { "$ref": "#/definitions/AWS::Config::OrganizationConfigRule" }, { "$ref": "#/definitions/AWS::Config::OrganizationConformancePack" }, { "$ref": "#/definitions/AWS::Config::RemediationConfiguration" }, { "$ref": "#/definitions/AWS::Config::StoredQuery" }, { "$ref": "#/definitions/AWS::Connect::ApprovedOrigin" }, { "$ref": "#/definitions/AWS::Connect::ContactFlow" }, { "$ref": "#/definitions/AWS::Connect::ContactFlowModule" }, { "$ref": "#/definitions/AWS::Connect::EvaluationForm" }, { "$ref": "#/definitions/AWS::Connect::HoursOfOperation" }, { "$ref": "#/definitions/AWS::Connect::Instance" }, { "$ref": "#/definitions/AWS::Connect::InstanceStorageConfig" }, { "$ref": "#/definitions/AWS::Connect::IntegrationAssociation" }, { "$ref": "#/definitions/AWS::Connect::PhoneNumber" }, { "$ref": "#/definitions/AWS::Connect::Prompt" }, { "$ref": "#/definitions/AWS::Connect::Queue" }, { "$ref": "#/definitions/AWS::Connect::QuickConnect" }, { "$ref": "#/definitions/AWS::Connect::RoutingProfile" }, { "$ref": "#/definitions/AWS::Connect::Rule" }, { "$ref": "#/definitions/AWS::Connect::SecurityKey" }, { "$ref": "#/definitions/AWS::Connect::TaskTemplate" }, { "$ref": "#/definitions/AWS::Connect::TrafficDistributionGroup" }, { "$ref": "#/definitions/AWS::Connect::User" }, { "$ref": "#/definitions/AWS::Connect::UserHierarchyGroup" }, { "$ref": "#/definitions/AWS::ConnectCampaigns::Campaign" }, { "$ref": "#/definitions/AWS::ControlTower::EnabledControl" }, { "$ref": "#/definitions/AWS::CustomerProfiles::CalculatedAttributeDefinition" }, { "$ref": "#/definitions/AWS::CustomerProfiles::Domain" }, { "$ref": "#/definitions/AWS::CustomerProfiles::EventStream" }, { "$ref": "#/definitions/AWS::CustomerProfiles::Integration" }, { "$ref": "#/definitions/AWS::CustomerProfiles::ObjectType" }, { "$ref": "#/definitions/AWS::DAX::Cluster" }, { "$ref": "#/definitions/AWS::DAX::ParameterGroup" }, { "$ref": "#/definitions/AWS::DAX::SubnetGroup" }, { "$ref": "#/definitions/AWS::DLM::LifecyclePolicy" }, { "$ref": "#/definitions/AWS::DMS::Certificate" }, { "$ref": "#/definitions/AWS::DMS::Endpoint" }, { "$ref": "#/definitions/AWS::DMS::EventSubscription" }, { "$ref": "#/definitions/AWS::DMS::ReplicationConfig" }, { "$ref": "#/definitions/AWS::DMS::ReplicationInstance" }, { "$ref": "#/definitions/AWS::DMS::ReplicationSubnetGroup" }, { "$ref": "#/definitions/AWS::DMS::ReplicationTask" }, { "$ref": "#/definitions/AWS::DataBrew::Dataset" }, { "$ref": "#/definitions/AWS::DataBrew::Job" }, { "$ref": "#/definitions/AWS::DataBrew::Project" }, { "$ref": "#/definitions/AWS::DataBrew::Recipe" }, { "$ref": "#/definitions/AWS::DataBrew::Ruleset" }, { "$ref": "#/definitions/AWS::DataBrew::Schedule" }, { "$ref": "#/definitions/AWS::DataPipeline::Pipeline" }, { "$ref": "#/definitions/AWS::DataSync::Agent" }, { "$ref": "#/definitions/AWS::DataSync::LocationAzureBlob" }, { "$ref": "#/definitions/AWS::DataSync::LocationEFS" }, { "$ref": "#/definitions/AWS::DataSync::LocationFSxLustre" }, { "$ref": "#/definitions/AWS::DataSync::LocationFSxONTAP" }, { "$ref": "#/definitions/AWS::DataSync::LocationFSxOpenZFS" }, { "$ref": "#/definitions/AWS::DataSync::LocationFSxWindows" }, { "$ref": "#/definitions/AWS::DataSync::LocationHDFS" }, { "$ref": "#/definitions/AWS::DataSync::LocationNFS" }, { "$ref": "#/definitions/AWS::DataSync::LocationObjectStorage" }, { "$ref": "#/definitions/AWS::DataSync::LocationS3" }, { "$ref": "#/definitions/AWS::DataSync::LocationSMB" }, { "$ref": "#/definitions/AWS::DataSync::StorageSystem" }, { "$ref": "#/definitions/AWS::DataSync::Task" }, { "$ref": "#/definitions/AWS::Detective::Graph" }, { "$ref": "#/definitions/AWS::Detective::MemberInvitation" }, { "$ref": "#/definitions/AWS::Detective::OrganizationAdmin" }, { "$ref": "#/definitions/AWS::DevOpsGuru::LogAnomalyDetectionIntegration" }, { "$ref": "#/definitions/AWS::DevOpsGuru::NotificationChannel" }, { "$ref": "#/definitions/AWS::DevOpsGuru::ResourceCollection" }, { "$ref": "#/definitions/AWS::DirectoryService::MicrosoftAD" }, { "$ref": "#/definitions/AWS::DirectoryService::SimpleAD" }, { "$ref": "#/definitions/AWS::DocDB::DBCluster" }, { "$ref": "#/definitions/AWS::DocDB::DBClusterParameterGroup" }, { "$ref": "#/definitions/AWS::DocDB::DBInstance" }, { "$ref": "#/definitions/AWS::DocDB::DBSubnetGroup" }, { "$ref": "#/definitions/AWS::DocDBElastic::Cluster" }, { "$ref": "#/definitions/AWS::DynamoDB::GlobalTable" }, { "$ref": "#/definitions/AWS::DynamoDB::Table" }, { "$ref": "#/definitions/AWS::EC2::CapacityReservation" }, { "$ref": "#/definitions/AWS::EC2::CapacityReservationFleet" }, { "$ref": "#/definitions/AWS::EC2::CarrierGateway" }, { "$ref": "#/definitions/AWS::EC2::ClientVpnAuthorizationRule" }, { "$ref": "#/definitions/AWS::EC2::ClientVpnEndpoint" }, { "$ref": "#/definitions/AWS::EC2::ClientVpnRoute" }, { "$ref": "#/definitions/AWS::EC2::ClientVpnTargetNetworkAssociation" }, { "$ref": "#/definitions/AWS::EC2::CustomerGateway" }, { "$ref": "#/definitions/AWS::EC2::DHCPOptions" }, { "$ref": "#/definitions/AWS::EC2::EC2Fleet" }, { "$ref": "#/definitions/AWS::EC2::EIP" }, { "$ref": "#/definitions/AWS::EC2::EIPAssociation" }, { "$ref": "#/definitions/AWS::EC2::EgressOnlyInternetGateway" }, { "$ref": "#/definitions/AWS::EC2::EnclaveCertificateIamRoleAssociation" }, { "$ref": "#/definitions/AWS::EC2::FlowLog" }, { "$ref": "#/definitions/AWS::EC2::GatewayRouteTableAssociation" }, { "$ref": "#/definitions/AWS::EC2::Host" }, { "$ref": "#/definitions/AWS::EC2::IPAM" }, { "$ref": "#/definitions/AWS::EC2::IPAMAllocation" }, { "$ref": "#/definitions/AWS::EC2::IPAMPool" }, { "$ref": "#/definitions/AWS::EC2::IPAMPoolCidr" }, { "$ref": "#/definitions/AWS::EC2::IPAMResourceDiscovery" }, { "$ref": "#/definitions/AWS::EC2::IPAMResourceDiscoveryAssociation" }, { "$ref": "#/definitions/AWS::EC2::IPAMScope" }, { "$ref": "#/definitions/AWS::EC2::Instance" }, { "$ref": "#/definitions/AWS::EC2::InstanceConnectEndpoint" }, { "$ref": "#/definitions/AWS::EC2::InternetGateway" }, { "$ref": "#/definitions/AWS::EC2::KeyPair" }, { "$ref": "#/definitions/AWS::EC2::LaunchTemplate" }, { "$ref": "#/definitions/AWS::EC2::LocalGatewayRoute" }, { "$ref": "#/definitions/AWS::EC2::LocalGatewayRouteTable" }, { "$ref": "#/definitions/AWS::EC2::LocalGatewayRouteTableVPCAssociation" }, { "$ref": "#/definitions/AWS::EC2::LocalGatewayRouteTableVirtualInterfaceGroupAssociation" }, { "$ref": "#/definitions/AWS::EC2::NatGateway" }, { "$ref": "#/definitions/AWS::EC2::NetworkAcl" }, { "$ref": "#/definitions/AWS::EC2::NetworkAclEntry" }, { "$ref": "#/definitions/AWS::EC2::NetworkInsightsAccessScope" }, { "$ref": "#/definitions/AWS::EC2::NetworkInsightsAccessScopeAnalysis" }, { "$ref": "#/definitions/AWS::EC2::NetworkInsightsAnalysis" }, { "$ref": "#/definitions/AWS::EC2::NetworkInsightsPath" }, { "$ref": "#/definitions/AWS::EC2::NetworkInterface" }, { "$ref": "#/definitions/AWS::EC2::NetworkInterfaceAttachment" }, { "$ref": "#/definitions/AWS::EC2::NetworkInterfacePermission" }, { "$ref": "#/definitions/AWS::EC2::NetworkPerformanceMetricSubscription" }, { "$ref": "#/definitions/AWS::EC2::PlacementGroup" }, { "$ref": "#/definitions/AWS::EC2::PrefixList" }, { "$ref": "#/definitions/AWS::EC2::Route" }, { "$ref": "#/definitions/AWS::EC2::RouteTable" }, { "$ref": "#/definitions/AWS::EC2::SecurityGroup" }, { "$ref": "#/definitions/AWS::EC2::SecurityGroupEgress" }, { "$ref": "#/definitions/AWS::EC2::SecurityGroupIngress" }, { "$ref": "#/definitions/AWS::EC2::SpotFleet" }, { "$ref": "#/definitions/AWS::EC2::Subnet" }, { "$ref": "#/definitions/AWS::EC2::SubnetCidrBlock" }, { "$ref": "#/definitions/AWS::EC2::SubnetNetworkAclAssociation" }, { "$ref": "#/definitions/AWS::EC2::SubnetRouteTableAssociation" }, { "$ref": "#/definitions/AWS::EC2::TrafficMirrorFilter" }, { "$ref": "#/definitions/AWS::EC2::TrafficMirrorFilterRule" }, { "$ref": "#/definitions/AWS::EC2::TrafficMirrorSession" }, { "$ref": "#/definitions/AWS::EC2::TrafficMirrorTarget" }, { "$ref": "#/definitions/AWS::EC2::TransitGateway" }, { "$ref": "#/definitions/AWS::EC2::TransitGatewayAttachment" }, { "$ref": "#/definitions/AWS::EC2::TransitGatewayConnect" }, { "$ref": "#/definitions/AWS::EC2::TransitGatewayMulticastDomain" }, { "$ref": "#/definitions/AWS::EC2::TransitGatewayMulticastDomainAssociation" }, { "$ref": "#/definitions/AWS::EC2::TransitGatewayMulticastGroupMember" }, { "$ref": "#/definitions/AWS::EC2::TransitGatewayMulticastGroupSource" }, { "$ref": "#/definitions/AWS::EC2::TransitGatewayPeeringAttachment" }, { "$ref": "#/definitions/AWS::EC2::TransitGatewayRoute" }, { "$ref": "#/definitions/AWS::EC2::TransitGatewayRouteTable" }, { "$ref": "#/definitions/AWS::EC2::TransitGatewayRouteTableAssociation" }, { "$ref": "#/definitions/AWS::EC2::TransitGatewayRouteTablePropagation" }, { "$ref": "#/definitions/AWS::EC2::TransitGatewayVpcAttachment" }, { "$ref": "#/definitions/AWS::EC2::VPC" }, { "$ref": "#/definitions/AWS::EC2::VPCCidrBlock" }, { "$ref": "#/definitions/AWS::EC2::VPCDHCPOptionsAssociation" }, { "$ref": "#/definitions/AWS::EC2::VPCEndpoint" }, { "$ref": "#/definitions/AWS::EC2::VPCEndpointConnectionNotification" }, { "$ref": "#/definitions/AWS::EC2::VPCEndpointService" }, { "$ref": "#/definitions/AWS::EC2::VPCEndpointServicePermissions" }, { "$ref": "#/definitions/AWS::EC2::VPCGatewayAttachment" }, { "$ref": "#/definitions/AWS::EC2::VPCPeeringConnection" }, { "$ref": "#/definitions/AWS::EC2::VPNConnection" }, { "$ref": "#/definitions/AWS::EC2::VPNConnectionRoute" }, { "$ref": "#/definitions/AWS::EC2::VPNGateway" }, { "$ref": "#/definitions/AWS::EC2::VPNGatewayRoutePropagation" }, { "$ref": "#/definitions/AWS::EC2::VerifiedAccessEndpoint" }, { "$ref": "#/definitions/AWS::EC2::VerifiedAccessGroup" }, { "$ref": "#/definitions/AWS::EC2::VerifiedAccessInstance" }, { "$ref": "#/definitions/AWS::EC2::VerifiedAccessTrustProvider" }, { "$ref": "#/definitions/AWS::EC2::Volume" }, { "$ref": "#/definitions/AWS::EC2::VolumeAttachment" }, { "$ref": "#/definitions/AWS::ECR::PublicRepository" }, { "$ref": "#/definitions/AWS::ECR::PullThroughCacheRule" }, { "$ref": "#/definitions/AWS::ECR::RegistryPolicy" }, { "$ref": "#/definitions/AWS::ECR::ReplicationConfiguration" }, { "$ref": "#/definitions/AWS::ECR::Repository" }, { "$ref": "#/definitions/AWS::ECS::CapacityProvider" }, { "$ref": "#/definitions/AWS::ECS::Cluster" }, { "$ref": "#/definitions/AWS::ECS::ClusterCapacityProviderAssociations" }, { "$ref": "#/definitions/AWS::ECS::PrimaryTaskSet" }, { "$ref": "#/definitions/AWS::ECS::Service" }, { "$ref": "#/definitions/AWS::ECS::TaskDefinition" }, { "$ref": "#/definitions/AWS::ECS::TaskSet" }, { "$ref": "#/definitions/AWS::EFS::AccessPoint" }, { "$ref": "#/definitions/AWS::EFS::FileSystem" }, { "$ref": "#/definitions/AWS::EFS::MountTarget" }, { "$ref": "#/definitions/AWS::EKS::Addon" }, { "$ref": "#/definitions/AWS::EKS::Cluster" }, { "$ref": "#/definitions/AWS::EKS::FargateProfile" }, { "$ref": "#/definitions/AWS::EKS::IdentityProviderConfig" }, { "$ref": "#/definitions/AWS::EKS::Nodegroup" }, { "$ref": "#/definitions/AWS::EMR::Cluster" }, { "$ref": "#/definitions/AWS::EMR::InstanceFleetConfig" }, { "$ref": "#/definitions/AWS::EMR::InstanceGroupConfig" }, { "$ref": "#/definitions/AWS::EMR::SecurityConfiguration" }, { "$ref": "#/definitions/AWS::EMR::Step" }, { "$ref": "#/definitions/AWS::EMR::Studio" }, { "$ref": "#/definitions/AWS::EMR::StudioSessionMapping" }, { "$ref": "#/definitions/AWS::EMRContainers::VirtualCluster" }, { "$ref": "#/definitions/AWS::EMRServerless::Application" }, { "$ref": "#/definitions/AWS::ElastiCache::CacheCluster" }, { "$ref": "#/definitions/AWS::ElastiCache::GlobalReplicationGroup" }, { "$ref": "#/definitions/AWS::ElastiCache::ParameterGroup" }, { "$ref": "#/definitions/AWS::ElastiCache::ReplicationGroup" }, { "$ref": "#/definitions/AWS::ElastiCache::SecurityGroup" }, { "$ref": "#/definitions/AWS::ElastiCache::SecurityGroupIngress" }, { "$ref": "#/definitions/AWS::ElastiCache::SubnetGroup" }, { "$ref": "#/definitions/AWS::ElastiCache::User" }, { "$ref": "#/definitions/AWS::ElastiCache::UserGroup" }, { "$ref": "#/definitions/AWS::ElasticBeanstalk::Application" }, { "$ref": "#/definitions/AWS::ElasticBeanstalk::ApplicationVersion" }, { "$ref": "#/definitions/AWS::ElasticBeanstalk::ConfigurationTemplate" }, { "$ref": "#/definitions/AWS::ElasticBeanstalk::Environment" }, { "$ref": "#/definitions/AWS::ElasticLoadBalancing::LoadBalancer" }, { "$ref": "#/definitions/AWS::ElasticLoadBalancingV2::Listener" }, { "$ref": "#/definitions/AWS::ElasticLoadBalancingV2::ListenerCertificate" }, { "$ref": "#/definitions/AWS::ElasticLoadBalancingV2::ListenerRule" }, { "$ref": "#/definitions/AWS::ElasticLoadBalancingV2::LoadBalancer" }, { "$ref": "#/definitions/AWS::ElasticLoadBalancingV2::TargetGroup" }, { "$ref": "#/definitions/AWS::Elasticsearch::Domain" }, { "$ref": "#/definitions/AWS::EventSchemas::Discoverer" }, { "$ref": "#/definitions/AWS::EventSchemas::Registry" }, { "$ref": "#/definitions/AWS::EventSchemas::RegistryPolicy" }, { "$ref": "#/definitions/AWS::EventSchemas::Schema" }, { "$ref": "#/definitions/AWS::Events::ApiDestination" }, { "$ref": "#/definitions/AWS::Events::Archive" }, { "$ref": "#/definitions/AWS::Events::Connection" }, { "$ref": "#/definitions/AWS::Events::Endpoint" }, { "$ref": "#/definitions/AWS::Events::EventBus" }, { "$ref": "#/definitions/AWS::Events::EventBusPolicy" }, { "$ref": "#/definitions/AWS::Events::Rule" }, { "$ref": "#/definitions/AWS::Evidently::Experiment" }, { "$ref": "#/definitions/AWS::Evidently::Feature" }, { "$ref": "#/definitions/AWS::Evidently::Launch" }, { "$ref": "#/definitions/AWS::Evidently::Project" }, { "$ref": "#/definitions/AWS::Evidently::Segment" }, { "$ref": "#/definitions/AWS::FIS::ExperimentTemplate" }, { "$ref": "#/definitions/AWS::FMS::NotificationChannel" }, { "$ref": "#/definitions/AWS::FMS::Policy" }, { "$ref": "#/definitions/AWS::FMS::ResourceSet" }, { "$ref": "#/definitions/AWS::FSx::DataRepositoryAssociation" }, { "$ref": "#/definitions/AWS::FSx::FileSystem" }, { "$ref": "#/definitions/AWS::FSx::Snapshot" }, { "$ref": "#/definitions/AWS::FSx::StorageVirtualMachine" }, { "$ref": "#/definitions/AWS::FSx::Volume" }, { "$ref": "#/definitions/AWS::FinSpace::Environment" }, { "$ref": "#/definitions/AWS::Forecast::Dataset" }, { "$ref": "#/definitions/AWS::Forecast::DatasetGroup" }, { "$ref": "#/definitions/AWS::FraudDetector::Detector" }, { "$ref": "#/definitions/AWS::FraudDetector::EntityType" }, { "$ref": "#/definitions/AWS::FraudDetector::EventType" }, { "$ref": "#/definitions/AWS::FraudDetector::Label" }, { "$ref": "#/definitions/AWS::FraudDetector::List" }, { "$ref": "#/definitions/AWS::FraudDetector::Outcome" }, { "$ref": "#/definitions/AWS::FraudDetector::Variable" }, { "$ref": "#/definitions/AWS::GameLift::Alias" }, { "$ref": "#/definitions/AWS::GameLift::Build" }, { "$ref": "#/definitions/AWS::GameLift::Fleet" }, { "$ref": "#/definitions/AWS::GameLift::GameServerGroup" }, { "$ref": "#/definitions/AWS::GameLift::GameSessionQueue" }, { "$ref": "#/definitions/AWS::GameLift::Location" }, { "$ref": "#/definitions/AWS::GameLift::MatchmakingConfiguration" }, { "$ref": "#/definitions/AWS::GameLift::MatchmakingRuleSet" }, { "$ref": "#/definitions/AWS::GameLift::Script" }, { "$ref": "#/definitions/AWS::GlobalAccelerator::Accelerator" }, { "$ref": "#/definitions/AWS::GlobalAccelerator::EndpointGroup" }, { "$ref": "#/definitions/AWS::GlobalAccelerator::Listener" }, { "$ref": "#/definitions/AWS::Glue::Classifier" }, { "$ref": "#/definitions/AWS::Glue::Connection" }, { "$ref": "#/definitions/AWS::Glue::Crawler" }, { "$ref": "#/definitions/AWS::Glue::DataCatalogEncryptionSettings" }, { "$ref": "#/definitions/AWS::Glue::DataQualityRuleset" }, { "$ref": "#/definitions/AWS::Glue::Database" }, { "$ref": "#/definitions/AWS::Glue::DevEndpoint" }, { "$ref": "#/definitions/AWS::Glue::Job" }, { "$ref": "#/definitions/AWS::Glue::MLTransform" }, { "$ref": "#/definitions/AWS::Glue::Partition" }, { "$ref": "#/definitions/AWS::Glue::Registry" }, { "$ref": "#/definitions/AWS::Glue::Schema" }, { "$ref": "#/definitions/AWS::Glue::SchemaVersion" }, { "$ref": "#/definitions/AWS::Glue::SchemaVersionMetadata" }, { "$ref": "#/definitions/AWS::Glue::SecurityConfiguration" }, { "$ref": "#/definitions/AWS::Glue::Table" }, { "$ref": "#/definitions/AWS::Glue::Trigger" }, { "$ref": "#/definitions/AWS::Glue::Workflow" }, { "$ref": "#/definitions/AWS::Grafana::Workspace" }, { "$ref": "#/definitions/AWS::Greengrass::ConnectorDefinition" }, { "$ref": "#/definitions/AWS::Greengrass::ConnectorDefinitionVersion" }, { "$ref": "#/definitions/AWS::Greengrass::CoreDefinition" }, { "$ref": "#/definitions/AWS::Greengrass::CoreDefinitionVersion" }, { "$ref": "#/definitions/AWS::Greengrass::DeviceDefinition" }, { "$ref": "#/definitions/AWS::Greengrass::DeviceDefinitionVersion" }, { "$ref": "#/definitions/AWS::Greengrass::FunctionDefinition" }, { "$ref": "#/definitions/AWS::Greengrass::FunctionDefinitionVersion" }, { "$ref": "#/definitions/AWS::Greengrass::Group" }, { "$ref": "#/definitions/AWS::Greengrass::GroupVersion" }, { "$ref": "#/definitions/AWS::Greengrass::LoggerDefinition" }, { "$ref": "#/definitions/AWS::Greengrass::LoggerDefinitionVersion" }, { "$ref": "#/definitions/AWS::Greengrass::ResourceDefinition" }, { "$ref": "#/definitions/AWS::Greengrass::ResourceDefinitionVersion" }, { "$ref": "#/definitions/AWS::Greengrass::SubscriptionDefinition" }, { "$ref": "#/definitions/AWS::Greengrass::SubscriptionDefinitionVersion" }, { "$ref": "#/definitions/AWS::GreengrassV2::ComponentVersion" }, { "$ref": "#/definitions/AWS::GreengrassV2::Deployment" }, { "$ref": "#/definitions/AWS::GroundStation::Config" }, { "$ref": "#/definitions/AWS::GroundStation::DataflowEndpointGroup" }, { "$ref": "#/definitions/AWS::GroundStation::MissionProfile" }, { "$ref": "#/definitions/AWS::GuardDuty::Detector" }, { "$ref": "#/definitions/AWS::GuardDuty::Filter" }, { "$ref": "#/definitions/AWS::GuardDuty::IPSet" }, { "$ref": "#/definitions/AWS::GuardDuty::Master" }, { "$ref": "#/definitions/AWS::GuardDuty::Member" }, { "$ref": "#/definitions/AWS::GuardDuty::ThreatIntelSet" }, { "$ref": "#/definitions/AWS::HealthLake::FHIRDatastore" }, { "$ref": "#/definitions/AWS::IAM::AccessKey" }, { "$ref": "#/definitions/AWS::IAM::Group" }, { "$ref": "#/definitions/AWS::IAM::GroupPolicy" }, { "$ref": "#/definitions/AWS::IAM::InstanceProfile" }, { "$ref": "#/definitions/AWS::IAM::ManagedPolicy" }, { "$ref": "#/definitions/AWS::IAM::OIDCProvider" }, { "$ref": "#/definitions/AWS::IAM::Policy" }, { "$ref": "#/definitions/AWS::IAM::Role" }, { "$ref": "#/definitions/AWS::IAM::RolePolicy" }, { "$ref": "#/definitions/AWS::IAM::SAMLProvider" }, { "$ref": "#/definitions/AWS::IAM::ServerCertificate" }, { "$ref": "#/definitions/AWS::IAM::ServiceLinkedRole" }, { "$ref": "#/definitions/AWS::IAM::User" }, { "$ref": "#/definitions/AWS::IAM::UserPolicy" }, { "$ref": "#/definitions/AWS::IAM::UserToGroupAddition" }, { "$ref": "#/definitions/AWS::IAM::VirtualMFADevice" }, { "$ref": "#/definitions/AWS::IVS::Channel" }, { "$ref": "#/definitions/AWS::IVS::PlaybackKeyPair" }, { "$ref": "#/definitions/AWS::IVS::RecordingConfiguration" }, { "$ref": "#/definitions/AWS::IVS::StreamKey" }, { "$ref": "#/definitions/AWS::IVSChat::LoggingConfiguration" }, { "$ref": "#/definitions/AWS::IVSChat::Room" }, { "$ref": "#/definitions/AWS::IdentityStore::Group" }, { "$ref": "#/definitions/AWS::IdentityStore::GroupMembership" }, { "$ref": "#/definitions/AWS::ImageBuilder::Component" }, { "$ref": "#/definitions/AWS::ImageBuilder::ContainerRecipe" }, { "$ref": "#/definitions/AWS::ImageBuilder::DistributionConfiguration" }, { "$ref": "#/definitions/AWS::ImageBuilder::Image" }, { "$ref": "#/definitions/AWS::ImageBuilder::ImagePipeline" }, { "$ref": "#/definitions/AWS::ImageBuilder::ImageRecipe" }, { "$ref": "#/definitions/AWS::ImageBuilder::InfrastructureConfiguration" }, { "$ref": "#/definitions/AWS::Inspector::AssessmentTarget" }, { "$ref": "#/definitions/AWS::Inspector::AssessmentTemplate" }, { "$ref": "#/definitions/AWS::Inspector::ResourceGroup" }, { "$ref": "#/definitions/AWS::InspectorV2::Filter" }, { "$ref": "#/definitions/AWS::InternetMonitor::Monitor" }, { "$ref": "#/definitions/AWS::IoT1Click::Device" }, { "$ref": "#/definitions/AWS::IoT1Click::Placement" }, { "$ref": "#/definitions/AWS::IoT1Click::Project" }, { "$ref": "#/definitions/AWS::IoT::AccountAuditConfiguration" }, { "$ref": "#/definitions/AWS::IoT::Authorizer" }, { "$ref": "#/definitions/AWS::IoT::BillingGroup" }, { "$ref": "#/definitions/AWS::IoT::CACertificate" }, { "$ref": "#/definitions/AWS::IoT::Certificate" }, { "$ref": "#/definitions/AWS::IoT::CustomMetric" }, { "$ref": "#/definitions/AWS::IoT::Dimension" }, { "$ref": "#/definitions/AWS::IoT::DomainConfiguration" }, { "$ref": "#/definitions/AWS::IoT::FleetMetric" }, { "$ref": "#/definitions/AWS::IoT::JobTemplate" }, { "$ref": "#/definitions/AWS::IoT::Logging" }, { "$ref": "#/definitions/AWS::IoT::MitigationAction" }, { "$ref": "#/definitions/AWS::IoT::Policy" }, { "$ref": "#/definitions/AWS::IoT::PolicyPrincipalAttachment" }, { "$ref": "#/definitions/AWS::IoT::ProvisioningTemplate" }, { "$ref": "#/definitions/AWS::IoT::ResourceSpecificLogging" }, { "$ref": "#/definitions/AWS::IoT::RoleAlias" }, { "$ref": "#/definitions/AWS::IoT::ScheduledAudit" }, { "$ref": "#/definitions/AWS::IoT::SecurityProfile" }, { "$ref": "#/definitions/AWS::IoT::Thing" }, { "$ref": "#/definitions/AWS::IoT::ThingGroup" }, { "$ref": "#/definitions/AWS::IoT::ThingPrincipalAttachment" }, { "$ref": "#/definitions/AWS::IoT::ThingType" }, { "$ref": "#/definitions/AWS::IoT::TopicRule" }, { "$ref": "#/definitions/AWS::IoT::TopicRuleDestination" }, { "$ref": "#/definitions/AWS::IoTAnalytics::Channel" }, { "$ref": "#/definitions/AWS::IoTAnalytics::Dataset" }, { "$ref": "#/definitions/AWS::IoTAnalytics::Datastore" }, { "$ref": "#/definitions/AWS::IoTAnalytics::Pipeline" }, { "$ref": "#/definitions/AWS::IoTCoreDeviceAdvisor::SuiteDefinition" }, { "$ref": "#/definitions/AWS::IoTEvents::AlarmModel" }, { "$ref": "#/definitions/AWS::IoTEvents::DetectorModel" }, { "$ref": "#/definitions/AWS::IoTEvents::Input" }, { "$ref": "#/definitions/AWS::IoTFleetHub::Application" }, { "$ref": "#/definitions/AWS::IoTFleetWise::Campaign" }, { "$ref": "#/definitions/AWS::IoTFleetWise::DecoderManifest" }, { "$ref": "#/definitions/AWS::IoTFleetWise::Fleet" }, { "$ref": "#/definitions/AWS::IoTFleetWise::ModelManifest" }, { "$ref": "#/definitions/AWS::IoTFleetWise::SignalCatalog" }, { "$ref": "#/definitions/AWS::IoTFleetWise::Vehicle" }, { "$ref": "#/definitions/AWS::IoTSiteWise::AccessPolicy" }, { "$ref": "#/definitions/AWS::IoTSiteWise::Asset" }, { "$ref": "#/definitions/AWS::IoTSiteWise::AssetModel" }, { "$ref": "#/definitions/AWS::IoTSiteWise::Dashboard" }, { "$ref": "#/definitions/AWS::IoTSiteWise::Gateway" }, { "$ref": "#/definitions/AWS::IoTSiteWise::Portal" }, { "$ref": "#/definitions/AWS::IoTSiteWise::Project" }, { "$ref": "#/definitions/AWS::IoTThingsGraph::FlowTemplate" }, { "$ref": "#/definitions/AWS::IoTTwinMaker::ComponentType" }, { "$ref": "#/definitions/AWS::IoTTwinMaker::Entity" }, { "$ref": "#/definitions/AWS::IoTTwinMaker::Scene" }, { "$ref": "#/definitions/AWS::IoTTwinMaker::SyncJob" }, { "$ref": "#/definitions/AWS::IoTTwinMaker::Workspace" }, { "$ref": "#/definitions/AWS::IoTWireless::Destination" }, { "$ref": "#/definitions/AWS::IoTWireless::DeviceProfile" }, { "$ref": "#/definitions/AWS::IoTWireless::FuotaTask" }, { "$ref": "#/definitions/AWS::IoTWireless::MulticastGroup" }, { "$ref": "#/definitions/AWS::IoTWireless::NetworkAnalyzerConfiguration" }, { "$ref": "#/definitions/AWS::IoTWireless::PartnerAccount" }, { "$ref": "#/definitions/AWS::IoTWireless::ServiceProfile" }, { "$ref": "#/definitions/AWS::IoTWireless::TaskDefinition" }, { "$ref": "#/definitions/AWS::IoTWireless::WirelessDevice" }, { "$ref": "#/definitions/AWS::IoTWireless::WirelessDeviceImportTask" }, { "$ref": "#/definitions/AWS::IoTWireless::WirelessGateway" }, { "$ref": "#/definitions/AWS::KMS::Alias" }, { "$ref": "#/definitions/AWS::KMS::Key" }, { "$ref": "#/definitions/AWS::KMS::ReplicaKey" }, { "$ref": "#/definitions/AWS::KafkaConnect::Connector" }, { "$ref": "#/definitions/AWS::Kendra::DataSource" }, { "$ref": "#/definitions/AWS::Kendra::Faq" }, { "$ref": "#/definitions/AWS::Kendra::Index" }, { "$ref": "#/definitions/AWS::KendraRanking::ExecutionPlan" }, { "$ref": "#/definitions/AWS::Kinesis::Stream" }, { "$ref": "#/definitions/AWS::Kinesis::StreamConsumer" }, { "$ref": "#/definitions/AWS::KinesisAnalytics::Application" }, { "$ref": "#/definitions/AWS::KinesisAnalytics::ApplicationOutput" }, { "$ref": "#/definitions/AWS::KinesisAnalytics::ApplicationReferenceDataSource" }, { "$ref": "#/definitions/AWS::KinesisAnalyticsV2::Application" }, { "$ref": "#/definitions/AWS::KinesisAnalyticsV2::ApplicationCloudWatchLoggingOption" }, { "$ref": "#/definitions/AWS::KinesisAnalyticsV2::ApplicationOutput" }, { "$ref": "#/definitions/AWS::KinesisAnalyticsV2::ApplicationReferenceDataSource" }, { "$ref": "#/definitions/AWS::KinesisFirehose::DeliveryStream" }, { "$ref": "#/definitions/AWS::KinesisVideo::SignalingChannel" }, { "$ref": "#/definitions/AWS::KinesisVideo::Stream" }, { "$ref": "#/definitions/AWS::LakeFormation::DataCellsFilter" }, { "$ref": "#/definitions/AWS::LakeFormation::DataLakeSettings" }, { "$ref": "#/definitions/AWS::LakeFormation::Permissions" }, { "$ref": "#/definitions/AWS::LakeFormation::PrincipalPermissions" }, { "$ref": "#/definitions/AWS::LakeFormation::Resource" }, { "$ref": "#/definitions/AWS::LakeFormation::Tag" }, { "$ref": "#/definitions/AWS::LakeFormation::TagAssociation" }, { "$ref": "#/definitions/AWS::Lambda::Alias" }, { "$ref": "#/definitions/AWS::Lambda::CodeSigningConfig" }, { "$ref": "#/definitions/AWS::Lambda::EventInvokeConfig" }, { "$ref": "#/definitions/AWS::Lambda::EventSourceMapping" }, { "$ref": "#/definitions/AWS::Lambda::Function" }, { "$ref": "#/definitions/AWS::Lambda::LayerVersion" }, { "$ref": "#/definitions/AWS::Lambda::LayerVersionPermission" }, { "$ref": "#/definitions/AWS::Lambda::Permission" }, { "$ref": "#/definitions/AWS::Lambda::Url" }, { "$ref": "#/definitions/AWS::Lambda::Version" }, { "$ref": "#/definitions/AWS::Lex::Bot" }, { "$ref": "#/definitions/AWS::Lex::BotAlias" }, { "$ref": "#/definitions/AWS::Lex::BotVersion" }, { "$ref": "#/definitions/AWS::Lex::ResourcePolicy" }, { "$ref": "#/definitions/AWS::LicenseManager::Grant" }, { "$ref": "#/definitions/AWS::LicenseManager::License" }, { "$ref": "#/definitions/AWS::Lightsail::Alarm" }, { "$ref": "#/definitions/AWS::Lightsail::Bucket" }, { "$ref": "#/definitions/AWS::Lightsail::Certificate" }, { "$ref": "#/definitions/AWS::Lightsail::Container" }, { "$ref": "#/definitions/AWS::Lightsail::Database" }, { "$ref": "#/definitions/AWS::Lightsail::Disk" }, { "$ref": "#/definitions/AWS::Lightsail::Distribution" }, { "$ref": "#/definitions/AWS::Lightsail::Instance" }, { "$ref": "#/definitions/AWS::Lightsail::LoadBalancer" }, { "$ref": "#/definitions/AWS::Lightsail::LoadBalancerTlsCertificate" }, { "$ref": "#/definitions/AWS::Lightsail::StaticIp" }, { "$ref": "#/definitions/AWS::Location::GeofenceCollection" }, { "$ref": "#/definitions/AWS::Location::Map" }, { "$ref": "#/definitions/AWS::Location::PlaceIndex" }, { "$ref": "#/definitions/AWS::Location::RouteCalculator" }, { "$ref": "#/definitions/AWS::Location::Tracker" }, { "$ref": "#/definitions/AWS::Location::TrackerConsumer" }, { "$ref": "#/definitions/AWS::Logs::AccountPolicy" }, { "$ref": "#/definitions/AWS::Logs::Destination" }, { "$ref": "#/definitions/AWS::Logs::LogGroup" }, { "$ref": "#/definitions/AWS::Logs::LogStream" }, { "$ref": "#/definitions/AWS::Logs::MetricFilter" }, { "$ref": "#/definitions/AWS::Logs::QueryDefinition" }, { "$ref": "#/definitions/AWS::Logs::ResourcePolicy" }, { "$ref": "#/definitions/AWS::Logs::SubscriptionFilter" }, { "$ref": "#/definitions/AWS::LookoutEquipment::InferenceScheduler" }, { "$ref": "#/definitions/AWS::LookoutMetrics::Alert" }, { "$ref": "#/definitions/AWS::LookoutMetrics::AnomalyDetector" }, { "$ref": "#/definitions/AWS::LookoutVision::Project" }, { "$ref": "#/definitions/AWS::M2::Application" }, { "$ref": "#/definitions/AWS::M2::Environment" }, { "$ref": "#/definitions/AWS::MSK::BatchScramSecret" }, { "$ref": "#/definitions/AWS::MSK::Cluster" }, { "$ref": "#/definitions/AWS::MSK::ClusterPolicy" }, { "$ref": "#/definitions/AWS::MSK::Configuration" }, { "$ref": "#/definitions/AWS::MSK::ServerlessCluster" }, { "$ref": "#/definitions/AWS::MSK::VpcConnection" }, { "$ref": "#/definitions/AWS::MWAA::Environment" }, { "$ref": "#/definitions/AWS::Macie::AllowList" }, { "$ref": "#/definitions/AWS::Macie::CustomDataIdentifier" }, { "$ref": "#/definitions/AWS::Macie::FindingsFilter" }, { "$ref": "#/definitions/AWS::Macie::Session" }, { "$ref": "#/definitions/AWS::ManagedBlockchain::Accessor" }, { "$ref": "#/definitions/AWS::ManagedBlockchain::Member" }, { "$ref": "#/definitions/AWS::ManagedBlockchain::Node" }, { "$ref": "#/definitions/AWS::MediaConnect::Bridge" }, { "$ref": "#/definitions/AWS::MediaConnect::BridgeOutput" }, { "$ref": "#/definitions/AWS::MediaConnect::BridgeSource" }, { "$ref": "#/definitions/AWS::MediaConnect::Flow" }, { "$ref": "#/definitions/AWS::MediaConnect::FlowEntitlement" }, { "$ref": "#/definitions/AWS::MediaConnect::FlowOutput" }, { "$ref": "#/definitions/AWS::MediaConnect::FlowSource" }, { "$ref": "#/definitions/AWS::MediaConnect::FlowVpcInterface" }, { "$ref": "#/definitions/AWS::MediaConnect::Gateway" }, { "$ref": "#/definitions/AWS::MediaConvert::JobTemplate" }, { "$ref": "#/definitions/AWS::MediaConvert::Preset" }, { "$ref": "#/definitions/AWS::MediaConvert::Queue" }, { "$ref": "#/definitions/AWS::MediaLive::Channel" }, { "$ref": "#/definitions/AWS::MediaLive::Input" }, { "$ref": "#/definitions/AWS::MediaLive::InputSecurityGroup" }, { "$ref": "#/definitions/AWS::MediaPackage::Asset" }, { "$ref": "#/definitions/AWS::MediaPackage::Channel" }, { "$ref": "#/definitions/AWS::MediaPackage::OriginEndpoint" }, { "$ref": "#/definitions/AWS::MediaPackage::PackagingConfiguration" }, { "$ref": "#/definitions/AWS::MediaPackage::PackagingGroup" }, { "$ref": "#/definitions/AWS::MediaStore::Container" }, { "$ref": "#/definitions/AWS::MediaTailor::Channel" }, { "$ref": "#/definitions/AWS::MediaTailor::ChannelPolicy" }, { "$ref": "#/definitions/AWS::MediaTailor::LiveSource" }, { "$ref": "#/definitions/AWS::MediaTailor::PlaybackConfiguration" }, { "$ref": "#/definitions/AWS::MediaTailor::SourceLocation" }, { "$ref": "#/definitions/AWS::MediaTailor::VodSource" }, { "$ref": "#/definitions/AWS::MemoryDB::ACL" }, { "$ref": "#/definitions/AWS::MemoryDB::Cluster" }, { "$ref": "#/definitions/AWS::MemoryDB::ParameterGroup" }, { "$ref": "#/definitions/AWS::MemoryDB::SubnetGroup" }, { "$ref": "#/definitions/AWS::MemoryDB::User" }, { "$ref": "#/definitions/AWS::Neptune::DBCluster" }, { "$ref": "#/definitions/AWS::Neptune::DBClusterParameterGroup" }, { "$ref": "#/definitions/AWS::Neptune::DBInstance" }, { "$ref": "#/definitions/AWS::Neptune::DBParameterGroup" }, { "$ref": "#/definitions/AWS::Neptune::DBSubnetGroup" }, { "$ref": "#/definitions/AWS::NetworkFirewall::Firewall" }, { "$ref": "#/definitions/AWS::NetworkFirewall::FirewallPolicy" }, { "$ref": "#/definitions/AWS::NetworkFirewall::LoggingConfiguration" }, { "$ref": "#/definitions/AWS::NetworkFirewall::RuleGroup" }, { "$ref": "#/definitions/AWS::NetworkManager::ConnectAttachment" }, { "$ref": "#/definitions/AWS::NetworkManager::ConnectPeer" }, { "$ref": "#/definitions/AWS::NetworkManager::CoreNetwork" }, { "$ref": "#/definitions/AWS::NetworkManager::CustomerGatewayAssociation" }, { "$ref": "#/definitions/AWS::NetworkManager::Device" }, { "$ref": "#/definitions/AWS::NetworkManager::GlobalNetwork" }, { "$ref": "#/definitions/AWS::NetworkManager::Link" }, { "$ref": "#/definitions/AWS::NetworkManager::LinkAssociation" }, { "$ref": "#/definitions/AWS::NetworkManager::Site" }, { "$ref": "#/definitions/AWS::NetworkManager::SiteToSiteVpnAttachment" }, { "$ref": "#/definitions/AWS::NetworkManager::TransitGatewayPeering" }, { "$ref": "#/definitions/AWS::NetworkManager::TransitGatewayRegistration" }, { "$ref": "#/definitions/AWS::NetworkManager::TransitGatewayRouteTableAttachment" }, { "$ref": "#/definitions/AWS::NetworkManager::VpcAttachment" }, { "$ref": "#/definitions/AWS::NimbleStudio::LaunchProfile" }, { "$ref": "#/definitions/AWS::NimbleStudio::StreamingImage" }, { "$ref": "#/definitions/AWS::NimbleStudio::Studio" }, { "$ref": "#/definitions/AWS::NimbleStudio::StudioComponent" }, { "$ref": "#/definitions/AWS::OSIS::Pipeline" }, { "$ref": "#/definitions/AWS::Oam::Link" }, { "$ref": "#/definitions/AWS::Oam::Sink" }, { "$ref": "#/definitions/AWS::Omics::AnnotationStore" }, { "$ref": "#/definitions/AWS::Omics::ReferenceStore" }, { "$ref": "#/definitions/AWS::Omics::RunGroup" }, { "$ref": "#/definitions/AWS::Omics::SequenceStore" }, { "$ref": "#/definitions/AWS::Omics::VariantStore" }, { "$ref": "#/definitions/AWS::Omics::Workflow" }, { "$ref": "#/definitions/AWS::OpenSearchServerless::AccessPolicy" }, { "$ref": "#/definitions/AWS::OpenSearchServerless::Collection" }, { "$ref": "#/definitions/AWS::OpenSearchServerless::SecurityConfig" }, { "$ref": "#/definitions/AWS::OpenSearchServerless::SecurityPolicy" }, { "$ref": "#/definitions/AWS::OpenSearchServerless::VpcEndpoint" }, { "$ref": "#/definitions/AWS::OpenSearchService::Domain" }, { "$ref": "#/definitions/AWS::OpsWorks::App" }, { "$ref": "#/definitions/AWS::OpsWorks::ElasticLoadBalancerAttachment" }, { "$ref": "#/definitions/AWS::OpsWorks::Instance" }, { "$ref": "#/definitions/AWS::OpsWorks::Layer" }, { "$ref": "#/definitions/AWS::OpsWorks::Stack" }, { "$ref": "#/definitions/AWS::OpsWorks::UserProfile" }, { "$ref": "#/definitions/AWS::OpsWorks::Volume" }, { "$ref": "#/definitions/AWS::OpsWorksCM::Server" }, { "$ref": "#/definitions/AWS::Organizations::Account" }, { "$ref": "#/definitions/AWS::Organizations::Organization" }, { "$ref": "#/definitions/AWS::Organizations::OrganizationalUnit" }, { "$ref": "#/definitions/AWS::Organizations::Policy" }, { "$ref": "#/definitions/AWS::Organizations::ResourcePolicy" }, { "$ref": "#/definitions/AWS::Panorama::ApplicationInstance" }, { "$ref": "#/definitions/AWS::Panorama::Package" }, { "$ref": "#/definitions/AWS::Panorama::PackageVersion" }, { "$ref": "#/definitions/AWS::Personalize::Dataset" }, { "$ref": "#/definitions/AWS::Personalize::DatasetGroup" }, { "$ref": "#/definitions/AWS::Personalize::Schema" }, { "$ref": "#/definitions/AWS::Personalize::Solution" }, { "$ref": "#/definitions/AWS::Pinpoint::ADMChannel" }, { "$ref": "#/definitions/AWS::Pinpoint::APNSChannel" }, { "$ref": "#/definitions/AWS::Pinpoint::APNSSandboxChannel" }, { "$ref": "#/definitions/AWS::Pinpoint::APNSVoipChannel" }, { "$ref": "#/definitions/AWS::Pinpoint::APNSVoipSandboxChannel" }, { "$ref": "#/definitions/AWS::Pinpoint::App" }, { "$ref": "#/definitions/AWS::Pinpoint::ApplicationSettings" }, { "$ref": "#/definitions/AWS::Pinpoint::BaiduChannel" }, { "$ref": "#/definitions/AWS::Pinpoint::Campaign" }, { "$ref": "#/definitions/AWS::Pinpoint::EmailChannel" }, { "$ref": "#/definitions/AWS::Pinpoint::EmailTemplate" }, { "$ref": "#/definitions/AWS::Pinpoint::EventStream" }, { "$ref": "#/definitions/AWS::Pinpoint::GCMChannel" }, { "$ref": "#/definitions/AWS::Pinpoint::InAppTemplate" }, { "$ref": "#/definitions/AWS::Pinpoint::PushTemplate" }, { "$ref": "#/definitions/AWS::Pinpoint::SMSChannel" }, { "$ref": "#/definitions/AWS::Pinpoint::Segment" }, { "$ref": "#/definitions/AWS::Pinpoint::SmsTemplate" }, { "$ref": "#/definitions/AWS::Pinpoint::VoiceChannel" }, { "$ref": "#/definitions/AWS::PinpointEmail::ConfigurationSet" }, { "$ref": "#/definitions/AWS::PinpointEmail::ConfigurationSetEventDestination" }, { "$ref": "#/definitions/AWS::PinpointEmail::DedicatedIpPool" }, { "$ref": "#/definitions/AWS::PinpointEmail::Identity" }, { "$ref": "#/definitions/AWS::Pipes::Pipe" }, { "$ref": "#/definitions/AWS::Proton::EnvironmentAccountConnection" }, { "$ref": "#/definitions/AWS::Proton::EnvironmentTemplate" }, { "$ref": "#/definitions/AWS::Proton::ServiceTemplate" }, { "$ref": "#/definitions/AWS::QLDB::Ledger" }, { "$ref": "#/definitions/AWS::QLDB::Stream" }, { "$ref": "#/definitions/AWS::QuickSight::Analysis" }, { "$ref": "#/definitions/AWS::QuickSight::Dashboard" }, { "$ref": "#/definitions/AWS::QuickSight::DataSet" }, { "$ref": "#/definitions/AWS::QuickSight::DataSource" }, { "$ref": "#/definitions/AWS::QuickSight::RefreshSchedule" }, { "$ref": "#/definitions/AWS::QuickSight::Template" }, { "$ref": "#/definitions/AWS::QuickSight::Theme" }, { "$ref": "#/definitions/AWS::QuickSight::Topic" }, { "$ref": "#/definitions/AWS::QuickSight::VPCConnection" }, { "$ref": "#/definitions/AWS::RAM::Permission" }, { "$ref": "#/definitions/AWS::RAM::ResourceShare" }, { "$ref": "#/definitions/AWS::RDS::CustomDBEngineVersion" }, { "$ref": "#/definitions/AWS::RDS::DBCluster" }, { "$ref": "#/definitions/AWS::RDS::DBClusterParameterGroup" }, { "$ref": "#/definitions/AWS::RDS::DBInstance" }, { "$ref": "#/definitions/AWS::RDS::DBParameterGroup" }, { "$ref": "#/definitions/AWS::RDS::DBProxy" }, { "$ref": "#/definitions/AWS::RDS::DBProxyEndpoint" }, { "$ref": "#/definitions/AWS::RDS::DBProxyTargetGroup" }, { "$ref": "#/definitions/AWS::RDS::DBSecurityGroup" }, { "$ref": "#/definitions/AWS::RDS::DBSecurityGroupIngress" }, { "$ref": "#/definitions/AWS::RDS::DBSubnetGroup" }, { "$ref": "#/definitions/AWS::RDS::EventSubscription" }, { "$ref": "#/definitions/AWS::RDS::GlobalCluster" }, { "$ref": "#/definitions/AWS::RDS::OptionGroup" }, { "$ref": "#/definitions/AWS::RUM::AppMonitor" }, { "$ref": "#/definitions/AWS::Redshift::Cluster" }, { "$ref": "#/definitions/AWS::Redshift::ClusterParameterGroup" }, { "$ref": "#/definitions/AWS::Redshift::ClusterSecurityGroup" }, { "$ref": "#/definitions/AWS::Redshift::ClusterSecurityGroupIngress" }, { "$ref": "#/definitions/AWS::Redshift::ClusterSubnetGroup" }, { "$ref": "#/definitions/AWS::Redshift::EndpointAccess" }, { "$ref": "#/definitions/AWS::Redshift::EndpointAuthorization" }, { "$ref": "#/definitions/AWS::Redshift::EventSubscription" }, { "$ref": "#/definitions/AWS::Redshift::ScheduledAction" }, { "$ref": "#/definitions/AWS::RedshiftServerless::Namespace" }, { "$ref": "#/definitions/AWS::RedshiftServerless::Workgroup" }, { "$ref": "#/definitions/AWS::RefactorSpaces::Application" }, { "$ref": "#/definitions/AWS::RefactorSpaces::Environment" }, { "$ref": "#/definitions/AWS::RefactorSpaces::Route" }, { "$ref": "#/definitions/AWS::RefactorSpaces::Service" }, { "$ref": "#/definitions/AWS::Rekognition::Collection" }, { "$ref": "#/definitions/AWS::Rekognition::Project" }, { "$ref": "#/definitions/AWS::Rekognition::StreamProcessor" }, { "$ref": "#/definitions/AWS::ResilienceHub::App" }, { "$ref": "#/definitions/AWS::ResilienceHub::ResiliencyPolicy" }, { "$ref": "#/definitions/AWS::ResourceExplorer2::DefaultViewAssociation" }, { "$ref": "#/definitions/AWS::ResourceExplorer2::Index" }, { "$ref": "#/definitions/AWS::ResourceExplorer2::View" }, { "$ref": "#/definitions/AWS::ResourceGroups::Group" }, { "$ref": "#/definitions/AWS::RoboMaker::Fleet" }, { "$ref": "#/definitions/AWS::RoboMaker::Robot" }, { "$ref": "#/definitions/AWS::RoboMaker::RobotApplication" }, { "$ref": "#/definitions/AWS::RoboMaker::RobotApplicationVersion" }, { "$ref": "#/definitions/AWS::RoboMaker::SimulationApplication" }, { "$ref": "#/definitions/AWS::RoboMaker::SimulationApplicationVersion" }, { "$ref": "#/definitions/AWS::RolesAnywhere::CRL" }, { "$ref": "#/definitions/AWS::RolesAnywhere::Profile" }, { "$ref": "#/definitions/AWS::RolesAnywhere::TrustAnchor" }, { "$ref": "#/definitions/AWS::Route53::CidrCollection" }, { "$ref": "#/definitions/AWS::Route53::DNSSEC" }, { "$ref": "#/definitions/AWS::Route53::HealthCheck" }, { "$ref": "#/definitions/AWS::Route53::HostedZone" }, { "$ref": "#/definitions/AWS::Route53::KeySigningKey" }, { "$ref": "#/definitions/AWS::Route53::RecordSet" }, { "$ref": "#/definitions/AWS::Route53::RecordSetGroup" }, { "$ref": "#/definitions/AWS::Route53RecoveryControl::Cluster" }, { "$ref": "#/definitions/AWS::Route53RecoveryControl::ControlPanel" }, { "$ref": "#/definitions/AWS::Route53RecoveryControl::RoutingControl" }, { "$ref": "#/definitions/AWS::Route53RecoveryControl::SafetyRule" }, { "$ref": "#/definitions/AWS::Route53RecoveryReadiness::Cell" }, { "$ref": "#/definitions/AWS::Route53RecoveryReadiness::ReadinessCheck" }, { "$ref": "#/definitions/AWS::Route53RecoveryReadiness::RecoveryGroup" }, { "$ref": "#/definitions/AWS::Route53RecoveryReadiness::ResourceSet" }, { "$ref": "#/definitions/AWS::Route53Resolver::FirewallDomainList" }, { "$ref": "#/definitions/AWS::Route53Resolver::FirewallRuleGroup" }, { "$ref": "#/definitions/AWS::Route53Resolver::FirewallRuleGroupAssociation" }, { "$ref": "#/definitions/AWS::Route53Resolver::OutpostResolver" }, { "$ref": "#/definitions/AWS::Route53Resolver::ResolverConfig" }, { "$ref": "#/definitions/AWS::Route53Resolver::ResolverDNSSECConfig" }, { "$ref": "#/definitions/AWS::Route53Resolver::ResolverEndpoint" }, { "$ref": "#/definitions/AWS::Route53Resolver::ResolverQueryLoggingConfig" }, { "$ref": "#/definitions/AWS::Route53Resolver::ResolverQueryLoggingConfigAssociation" }, { "$ref": "#/definitions/AWS::Route53Resolver::ResolverRule" }, { "$ref": "#/definitions/AWS::Route53Resolver::ResolverRuleAssociation" }, { "$ref": "#/definitions/AWS::S3::AccessPoint" }, { "$ref": "#/definitions/AWS::S3::Bucket" }, { "$ref": "#/definitions/AWS::S3::BucketPolicy" }, { "$ref": "#/definitions/AWS::S3::MultiRegionAccessPoint" }, { "$ref": "#/definitions/AWS::S3::MultiRegionAccessPointPolicy" }, { "$ref": "#/definitions/AWS::S3::StorageLens" }, { "$ref": "#/definitions/AWS::S3ObjectLambda::AccessPoint" }, { "$ref": "#/definitions/AWS::S3ObjectLambda::AccessPointPolicy" }, { "$ref": "#/definitions/AWS::S3Outposts::AccessPoint" }, { "$ref": "#/definitions/AWS::S3Outposts::Bucket" }, { "$ref": "#/definitions/AWS::S3Outposts::BucketPolicy" }, { "$ref": "#/definitions/AWS::S3Outposts::Endpoint" }, { "$ref": "#/definitions/AWS::SDB::Domain" }, { "$ref": "#/definitions/AWS::SES::ConfigurationSet" }, { "$ref": "#/definitions/AWS::SES::ConfigurationSetEventDestination" }, { "$ref": "#/definitions/AWS::SES::ContactList" }, { "$ref": "#/definitions/AWS::SES::DedicatedIpPool" }, { "$ref": "#/definitions/AWS::SES::EmailIdentity" }, { "$ref": "#/definitions/AWS::SES::ReceiptFilter" }, { "$ref": "#/definitions/AWS::SES::ReceiptRule" }, { "$ref": "#/definitions/AWS::SES::ReceiptRuleSet" }, { "$ref": "#/definitions/AWS::SES::Template" }, { "$ref": "#/definitions/AWS::SES::VdmAttributes" }, { "$ref": "#/definitions/AWS::SNS::Subscription" }, { "$ref": "#/definitions/AWS::SNS::Topic" }, { "$ref": "#/definitions/AWS::SNS::TopicInlinePolicy" }, { "$ref": "#/definitions/AWS::SNS::TopicPolicy" }, { "$ref": "#/definitions/AWS::SQS::Queue" }, { "$ref": "#/definitions/AWS::SQS::QueueInlinePolicy" }, { "$ref": "#/definitions/AWS::SQS::QueuePolicy" }, { "$ref": "#/definitions/AWS::SSM::Association" }, { "$ref": "#/definitions/AWS::SSM::Document" }, { "$ref": "#/definitions/AWS::SSM::MaintenanceWindow" }, { "$ref": "#/definitions/AWS::SSM::MaintenanceWindowTarget" }, { "$ref": "#/definitions/AWS::SSM::MaintenanceWindowTask" }, { "$ref": "#/definitions/AWS::SSM::Parameter" }, { "$ref": "#/definitions/AWS::SSM::PatchBaseline" }, { "$ref": "#/definitions/AWS::SSM::ResourceDataSync" }, { "$ref": "#/definitions/AWS::SSM::ResourcePolicy" }, { "$ref": "#/definitions/AWS::SSMContacts::Contact" }, { "$ref": "#/definitions/AWS::SSMContacts::ContactChannel" }, { "$ref": "#/definitions/AWS::SSMContacts::Plan" }, { "$ref": "#/definitions/AWS::SSMContacts::Rotation" }, { "$ref": "#/definitions/AWS::SSMIncidents::ReplicationSet" }, { "$ref": "#/definitions/AWS::SSMIncidents::ResponsePlan" }, { "$ref": "#/definitions/AWS::SSO::Assignment" }, { "$ref": "#/definitions/AWS::SSO::InstanceAccessControlAttributeConfiguration" }, { "$ref": "#/definitions/AWS::SSO::PermissionSet" }, { "$ref": "#/definitions/AWS::SageMaker::App" }, { "$ref": "#/definitions/AWS::SageMaker::AppImageConfig" }, { "$ref": "#/definitions/AWS::SageMaker::CodeRepository" }, { "$ref": "#/definitions/AWS::SageMaker::DataQualityJobDefinition" }, { "$ref": "#/definitions/AWS::SageMaker::Device" }, { "$ref": "#/definitions/AWS::SageMaker::DeviceFleet" }, { "$ref": "#/definitions/AWS::SageMaker::Domain" }, { "$ref": "#/definitions/AWS::SageMaker::Endpoint" }, { "$ref": "#/definitions/AWS::SageMaker::EndpointConfig" }, { "$ref": "#/definitions/AWS::SageMaker::FeatureGroup" }, { "$ref": "#/definitions/AWS::SageMaker::Image" }, { "$ref": "#/definitions/AWS::SageMaker::ImageVersion" }, { "$ref": "#/definitions/AWS::SageMaker::InferenceExperiment" }, { "$ref": "#/definitions/AWS::SageMaker::Model" }, { "$ref": "#/definitions/AWS::SageMaker::ModelBiasJobDefinition" }, { "$ref": "#/definitions/AWS::SageMaker::ModelCard" }, { "$ref": "#/definitions/AWS::SageMaker::ModelExplainabilityJobDefinition" }, { "$ref": "#/definitions/AWS::SageMaker::ModelPackage" }, { "$ref": "#/definitions/AWS::SageMaker::ModelPackageGroup" }, { "$ref": "#/definitions/AWS::SageMaker::ModelQualityJobDefinition" }, { "$ref": "#/definitions/AWS::SageMaker::MonitoringSchedule" }, { "$ref": "#/definitions/AWS::SageMaker::NotebookInstance" }, { "$ref": "#/definitions/AWS::SageMaker::NotebookInstanceLifecycleConfig" }, { "$ref": "#/definitions/AWS::SageMaker::Pipeline" }, { "$ref": "#/definitions/AWS::SageMaker::Project" }, { "$ref": "#/definitions/AWS::SageMaker::Space" }, { "$ref": "#/definitions/AWS::SageMaker::UserProfile" }, { "$ref": "#/definitions/AWS::SageMaker::Workteam" }, { "$ref": "#/definitions/AWS::Scheduler::Schedule" }, { "$ref": "#/definitions/AWS::Scheduler::ScheduleGroup" }, { "$ref": "#/definitions/AWS::SecretsManager::ResourcePolicy" }, { "$ref": "#/definitions/AWS::SecretsManager::RotationSchedule" }, { "$ref": "#/definitions/AWS::SecretsManager::Secret" }, { "$ref": "#/definitions/AWS::SecretsManager::SecretTargetAttachment" }, { "$ref": "#/definitions/AWS::SecurityHub::AutomationRule" }, { "$ref": "#/definitions/AWS::SecurityHub::Hub" }, { "$ref": "#/definitions/AWS::SecurityHub::Standard" }, { "$ref": "#/definitions/AWS::ServiceCatalog::AcceptedPortfolioShare" }, { "$ref": "#/definitions/AWS::ServiceCatalog::CloudFormationProduct" }, { "$ref": "#/definitions/AWS::ServiceCatalog::CloudFormationProvisionedProduct" }, { "$ref": "#/definitions/AWS::ServiceCatalog::LaunchNotificationConstraint" }, { "$ref": "#/definitions/AWS::ServiceCatalog::LaunchRoleConstraint" }, { "$ref": "#/definitions/AWS::ServiceCatalog::LaunchTemplateConstraint" }, { "$ref": "#/definitions/AWS::ServiceCatalog::Portfolio" }, { "$ref": "#/definitions/AWS::ServiceCatalog::PortfolioPrincipalAssociation" }, { "$ref": "#/definitions/AWS::ServiceCatalog::PortfolioProductAssociation" }, { "$ref": "#/definitions/AWS::ServiceCatalog::PortfolioShare" }, { "$ref": "#/definitions/AWS::ServiceCatalog::ResourceUpdateConstraint" }, { "$ref": "#/definitions/AWS::ServiceCatalog::ServiceAction" }, { "$ref": "#/definitions/AWS::ServiceCatalog::ServiceActionAssociation" }, { "$ref": "#/definitions/AWS::ServiceCatalog::StackSetConstraint" }, { "$ref": "#/definitions/AWS::ServiceCatalog::TagOption" }, { "$ref": "#/definitions/AWS::ServiceCatalog::TagOptionAssociation" }, { "$ref": "#/definitions/AWS::ServiceCatalogAppRegistry::Application" }, { "$ref": "#/definitions/AWS::ServiceCatalogAppRegistry::AttributeGroup" }, { "$ref": "#/definitions/AWS::ServiceCatalogAppRegistry::AttributeGroupAssociation" }, { "$ref": "#/definitions/AWS::ServiceCatalogAppRegistry::ResourceAssociation" }, { "$ref": "#/definitions/AWS::ServiceDiscovery::HttpNamespace" }, { "$ref": "#/definitions/AWS::ServiceDiscovery::Instance" }, { "$ref": "#/definitions/AWS::ServiceDiscovery::PrivateDnsNamespace" }, { "$ref": "#/definitions/AWS::ServiceDiscovery::PublicDnsNamespace" }, { "$ref": "#/definitions/AWS::ServiceDiscovery::Service" }, { "$ref": "#/definitions/AWS::Shield::DRTAccess" }, { "$ref": "#/definitions/AWS::Shield::ProactiveEngagement" }, { "$ref": "#/definitions/AWS::Shield::Protection" }, { "$ref": "#/definitions/AWS::Shield::ProtectionGroup" }, { "$ref": "#/definitions/AWS::Signer::ProfilePermission" }, { "$ref": "#/definitions/AWS::Signer::SigningProfile" }, { "$ref": "#/definitions/AWS::SimSpaceWeaver::Simulation" }, { "$ref": "#/definitions/AWS::StepFunctions::Activity" }, { "$ref": "#/definitions/AWS::StepFunctions::StateMachine" }, { "$ref": "#/definitions/AWS::StepFunctions::StateMachineAlias" }, { "$ref": "#/definitions/AWS::StepFunctions::StateMachineVersion" }, { "$ref": "#/definitions/AWS::SupportApp::AccountAlias" }, { "$ref": "#/definitions/AWS::SupportApp::SlackChannelConfiguration" }, { "$ref": "#/definitions/AWS::SupportApp::SlackWorkspaceConfiguration" }, { "$ref": "#/definitions/AWS::Synthetics::Canary" }, { "$ref": "#/definitions/AWS::Synthetics::Group" }, { "$ref": "#/definitions/AWS::SystemsManagerSAP::Application" }, { "$ref": "#/definitions/AWS::Timestream::Database" }, { "$ref": "#/definitions/AWS::Timestream::ScheduledQuery" }, { "$ref": "#/definitions/AWS::Timestream::Table" }, { "$ref": "#/definitions/AWS::Transfer::Agreement" }, { "$ref": "#/definitions/AWS::Transfer::Certificate" }, { "$ref": "#/definitions/AWS::Transfer::Connector" }, { "$ref": "#/definitions/AWS::Transfer::Profile" }, { "$ref": "#/definitions/AWS::Transfer::Server" }, { "$ref": "#/definitions/AWS::Transfer::User" }, { "$ref": "#/definitions/AWS::Transfer::Workflow" }, { "$ref": "#/definitions/AWS::VerifiedPermissions::IdentitySource" }, { "$ref": "#/definitions/AWS::VerifiedPermissions::Policy" }, { "$ref": "#/definitions/AWS::VerifiedPermissions::PolicyStore" }, { "$ref": "#/definitions/AWS::VerifiedPermissions::PolicyTemplate" }, { "$ref": "#/definitions/AWS::VoiceID::Domain" }, { "$ref": "#/definitions/AWS::VpcLattice::AccessLogSubscription" }, { "$ref": "#/definitions/AWS::VpcLattice::AuthPolicy" }, { "$ref": "#/definitions/AWS::VpcLattice::Listener" }, { "$ref": "#/definitions/AWS::VpcLattice::ResourcePolicy" }, { "$ref": "#/definitions/AWS::VpcLattice::Rule" }, { "$ref": "#/definitions/AWS::VpcLattice::Service" }, { "$ref": "#/definitions/AWS::VpcLattice::ServiceNetwork" }, { "$ref": "#/definitions/AWS::VpcLattice::ServiceNetworkServiceAssociation" }, { "$ref": "#/definitions/AWS::VpcLattice::ServiceNetworkVpcAssociation" }, { "$ref": "#/definitions/AWS::VpcLattice::TargetGroup" }, { "$ref": "#/definitions/AWS::WAF::ByteMatchSet" }, { "$ref": "#/definitions/AWS::WAF::IPSet" }, { "$ref": "#/definitions/AWS::WAF::Rule" }, { "$ref": "#/definitions/AWS::WAF::SizeConstraintSet" }, { "$ref": "#/definitions/AWS::WAF::SqlInjectionMatchSet" }, { "$ref": "#/definitions/AWS::WAF::WebACL" }, { "$ref": "#/definitions/AWS::WAF::XssMatchSet" }, { "$ref": "#/definitions/AWS::WAFRegional::ByteMatchSet" }, { "$ref": "#/definitions/AWS::WAFRegional::GeoMatchSet" }, { "$ref": "#/definitions/AWS::WAFRegional::IPSet" }, { "$ref": "#/definitions/AWS::WAFRegional::RateBasedRule" }, { "$ref": "#/definitions/AWS::WAFRegional::RegexPatternSet" }, { "$ref": "#/definitions/AWS::WAFRegional::Rule" }, { "$ref": "#/definitions/AWS::WAFRegional::SizeConstraintSet" }, { "$ref": "#/definitions/AWS::WAFRegional::SqlInjectionMatchSet" }, { "$ref": "#/definitions/AWS::WAFRegional::WebACL" }, { "$ref": "#/definitions/AWS::WAFRegional::WebACLAssociation" }, { "$ref": "#/definitions/AWS::WAFRegional::XssMatchSet" }, { "$ref": "#/definitions/AWS::WAFv2::IPSet" }, { "$ref": "#/definitions/AWS::WAFv2::LoggingConfiguration" }, { "$ref": "#/definitions/AWS::WAFv2::RegexPatternSet" }, { "$ref": "#/definitions/AWS::WAFv2::RuleGroup" }, { "$ref": "#/definitions/AWS::WAFv2::WebACL" }, { "$ref": "#/definitions/AWS::WAFv2::WebACLAssociation" }, { "$ref": "#/definitions/AWS::Wisdom::Assistant" }, { "$ref": "#/definitions/AWS::Wisdom::AssistantAssociation" }, { "$ref": "#/definitions/AWS::Wisdom::KnowledgeBase" }, { "$ref": "#/definitions/AWS::WorkSpaces::ConnectionAlias" }, { "$ref": "#/definitions/AWS::WorkSpaces::Workspace" }, { "$ref": "#/definitions/AWS::XRay::Group" }, { "$ref": "#/definitions/AWS::XRay::ResourcePolicy" }, { "$ref": "#/definitions/AWS::XRay::SamplingRule" }, { "$ref": "#/definitions/Alexa::ASK::Skill" }, { "$ref": "#/definitions/CustomResource" } ] } }, "type": "object" }, "Transform": { "oneOf": [ { "type": [ "string" ] }, { "items": { "type": "string" }, "type": "array" } ] } }, "required": [ "Resources" ], "type": "object" }
component.json
{ "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": true, "id": "https://json.schemastore.org/component.json", "properties": { "private": { "description": "A boolean specifying whether the component is private, defaulting to false.", "type": "boolean", "default": false }, "name": { "description": "A public component MUST have a 'name'. This is what will be passed to require().", "type": "string", "pattern": "^[0-9a-z-_]+$" }, "repo": { "description": "The public component MUST have a 'repository' property, this is registry end-point consisting of <username>/<project> , for example 'visionmedia/page.js' or 'component/dialog'.", "type": "string" }, "description": { "description": "The component SHOULD have a 'description' property. This helps people find and understand your component.", "type": "string" }, "version": { "description": "The public component MUST include a version, allowing other scripts to depend on specific releases of the component.", "type": "string" }, "keywords": { "description": "Keywords are used when searching for a component. A public component SHOULD list a few keywords.", "type": "array", "minItems": 1, "items": { "type": "string" } }, "main": { "description": "It is recommended that you use 'index.js' for the main component file, however if you use another filename, you MUST define a 'main' field for that.", "type": "string" }, "scripts": { "description": "The scripts field explicitly specifies the scripts for this component. For public components, these must be regular JavaScript files. For private components, these should be regular Javascript files.", "type": "array", "minItems": 1, "items": { "type": "string" } }, "styles": { "description": "The styles field explicitly specifies the stylesheets for this component. For public components, these must be regular CSS files. For private components, these should be regular CSS files.", "type": "array", "minItems": 1, "items": { "type": "string" } }, "json": { "description": "The json field explicitly specifies the JSON files for this component. Each file must be valid JSON .", "type": "array", "minItems": 1, "items": { "type": "string" } }, "images": { "description": "The images field MUST be supported and fetched upon installation, this allows component build tools to rewrite stylesheet url() s in order to accomodate various file serving techniques.", "type": "array", "minItems": 1, "items": { "type": "string" } }, "fonts": { "description": "The fonts field MUST be supported and fetched upon installation, this allows component build tools to rewrite stylesheet url() s in order to accomodate various file serving techniques.", "type": "array", "minItems": 1, "items": { "type": "string" } }, "files": { "description": "In the future we will classify more file types, however for those which are not treated uniquely such as fonts may be placed in a files array to aid build and installation tools.", "type": "array", "minItems": 1, "items": { "type": "string" } }, "dependencies": { "description": "Runtime dependencies.", "type": "object", "additionalProperties": { "type": "string" } }, "locals": { "description": "Local dependencies are already located on disk, these are not installed, but are however included in the builds, thus no versions need to be defined. Local components should be located in a directory specified within .paths.", "type": "array", "minItems": 1, "items": { "type": "string" } }, "remotes": { "description": "The public component must not contain any remotes.", "type": "array", "minItems": 1, "items": { "type": "string" } }, "paths": { "description": "The public component must not contain any paths.", "type": "array", "minItems": 1, "items": { "type": "string" } }, "templates": { "description": "The templates array MUST provide the contents of each file as a require-able module. For example the following must provide the HTML string via require('user.html').", "type": "array", "minItems": 1, "items": { "type": "string" } }, "demo": { "type": "string" }, "development": { "$ref": "#" }, "license": { "description": "The license string such as 'MIT' may be used for search output and other reporting, developers SHOULD specify this field", "type": "string" } }, "title": "JSON schema for component.json files", "type": "object" }
service-schema.json
{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://github.com/Microsoft/azure-pipelines-vscode/blob/main/service-schema.json", "$comment": "v1.219.1", "title": "Pipeline schema", "description": "A pipeline definition", "oneOf": [ { "$ref": "#/definitions/pipeline" }, { "type": "string", "pattern": "^$" } ], "definitions": { "string": { "type": "string" }, "sequence": { "type": "array", "items": { "$ref": "#/definitions/any" } }, "mapping": { "type": "object", "additionalProperties": true }, "any": { "anyOf": [ { "type": "string" }, { "type": "array", "items": { "$ref": "#/definitions/any" } }, { "type": "object", "additionalProperties": true } ] }, "pipeline": { "anyOf": [ { "type": "object", "properties": { "stages": { "description": "Stages are groups of jobs that can run without human intervention", "$ref": "#/definitions/stages" }, "pool": { "description": "Pool where jobs in this pipeline will run unless otherwise specified", "$ref": "#/definitions/pool" }, "name": { "description": "Pipeline name", "$ref": "#/definitions/string_allowExpressions" }, "appendCommitMessageToRunName": { "description": "Append the commit message to the build number", "$ref": "#/definitions/boolean" }, "trigger": { "description": "Continuous integration triggers", "$ref": "#/definitions/trigger" }, "parameters": { "description": "Pipeline template parameters", "$ref": "#/definitions/pipelineTemplateParameters" }, "pr": { "description": "Pull request triggers", "$ref": "#/definitions/pr" }, "schedules": { "$ref": "#/definitions/schedules" }, "resources": { "description": "Containers and repositories used in the build", "$ref": "#/definitions/resources" }, "variables": { "description": "Variables for this pipeline", "$ref": "#/definitions/variables" }, "lockBehavior": { "description": "Behavior lock requests from this stage should exhibit in relation to other exclusive lock requests", "$ref": "#/definitions/lockBehavior" } }, "additionalProperties": false, "required": [ "stages" ] }, { "type": "object", "properties": { "extends": { "description": "Extends a template", "$ref": "#/definitions/extends" }, "pool": { "description": "Pool where jobs in this pipeline will run unless otherwise specified", "$ref": "#/definitions/pool" }, "name": { "description": "Pipeline name", "$ref": "#/definitions/string_allowExpressions" }, "appendCommitMessageToRunName": { "description": "Append the commit message to the build number", "$ref": "#/definitions/boolean" }, "trigger": { "description": "Continuous integration triggers", "$ref": "#/definitions/trigger" }, "parameters": { "description": "Pipeline template parameters", "$ref": "#/definitions/pipelineTemplateParameters" }, "pr": { "description": "Pull request triggers", "$ref": "#/definitions/pr" }, "schedules": { "$ref": "#/definitions/schedules" }, "resources": { "description": "Containers and repositories used in the build", "$ref": "#/definitions/resources" }, "variables": { "description": "Variables for this pipeline", "$ref": "#/definitions/variables" }, "lockBehavior": { "description": "Behavior lock requests from this stage should exhibit in relation to other exclusive lock requests", "$ref": "#/definitions/lockBehavior" } }, "additionalProperties": false, "required": [ "extends" ] }, { "type": "object", "properties": { "jobs": { "description": "Jobs represent units of work which can be assigned to a single agent or server", "$ref": "#/definitions/jobs" }, "pool": { "description": "Pool where jobs in this pipeline will run unless otherwise specified", "$ref": "#/definitions/pool" }, "name": { "description": "Pipeline name", "$ref": "#/definitions/string_allowExpressions" }, "appendCommitMessageToRunName": { "description": "Append the commit message to the build number", "$ref": "#/definitions/boolean" }, "trigger": { "description": "Continuous integration triggers", "$ref": "#/definitions/trigger" }, "parameters": { "description": "Pipeline template parameters", "$ref": "#/definitions/pipelineTemplateParameters" }, "pr": { "description": "Pull request triggers", "$ref": "#/definitions/pr" }, "schedules": { "$ref": "#/definitions/schedules" }, "resources": { "description": "Containers and repositories used in the build", "$ref": "#/definitions/resources" }, "variables": { "description": "Variables for this pipeline", "$ref": "#/definitions/variables" }, "lockBehavior": { "description": "Behavior lock requests from this stage should exhibit in relation to other exclusive lock requests", "$ref": "#/definitions/lockBehavior" } }, "additionalProperties": false, "required": [ "jobs" ] }, { "type": "object", "properties": { "phases": { "description": "Phases which make up the pipeline", "deprecationMessage": "This option is deprecated, use `jobs` instead", "doNotSuggest": true, "$ref": "#/definitions/phases" }, "name": { "description": "Pipeline name", "$ref": "#/definitions/string_allowExpressions" }, "appendCommitMessageToRunName": { "description": "Append the commit message to the build number", "$ref": "#/definitions/boolean" }, "trigger": { "description": "Continuous integration triggers", "$ref": "#/definitions/trigger" }, "parameters": { "description": "Pipeline template parameters", "$ref": "#/definitions/pipelineTemplateParameters" }, "pr": { "description": "Pull request triggers", "$ref": "#/definitions/pr" }, "schedules": { "$ref": "#/definitions/schedules" }, "resources": { "description": "Containers and repositories used in the build", "$ref": "#/definitions/resources" }, "variables": { "description": "Variables for this pipeline", "$ref": "#/definitions/variables" }, "lockBehavior": { "description": "Behavior lock requests from this stage should exhibit in relation to other exclusive lock requests", "$ref": "#/definitions/lockBehavior" } }, "additionalProperties": false, "required": [ "phases" ] }, { "type": "object", "properties": { "strategy": { "description": "Execution strategy for this job", "$ref": "#/definitions/jobStrategy" }, "continueOnError": { "description": "Continue running even on failure?", "$ref": "#/definitions/jobContinueOnError" }, "pool": { "description": "Pool where this job will run", "$ref": "#/definitions/pool" }, "container": { "description": "Container resource name", "$ref": "#/definitions/jobContainer" }, "services": { "$ref": "#/definitions/jobServices" }, "workspace": { "$ref": "#/definitions/jobWorkspace" }, "steps": { "description": "A list of steps to run in this job", "$ref": "#/definitions/steps" }, "name": { "description": "Pipeline name", "$ref": "#/definitions/string_allowExpressions" }, "appendCommitMessageToRunName": { "description": "Append the commit message to the build number", "$ref": "#/definitions/boolean" }, "trigger": { "description": "Continuous integration triggers", "$ref": "#/definitions/trigger" }, "parameters": { "description": "Pipeline template parameters", "$ref": "#/definitions/pipelineTemplateParameters" }, "pr": { "description": "Pull request triggers", "$ref": "#/definitions/pr" }, "schedules": { "$ref": "#/definitions/schedules" }, "resources": { "description": "Containers and repositories used in the build", "$ref": "#/definitions/resources" }, "variables": { "description": "Variables for this pipeline", "$ref": "#/definitions/variables" }, "lockBehavior": { "description": "Behavior lock requests from this stage should exhibit in relation to other exclusive lock requests", "$ref": "#/definitions/lockBehavior" } }, "additionalProperties": false, "required": [ "steps" ] }, { "type": "object", "properties": { "continueOnError": { "description": "Continue running even on failure?", "$ref": "#/definitions/jobContinueOnError" }, "queue": { "description": "Queue where this phase will run", "deprecationMessage": "This option is deprecated, use pool instead", "doNotSuggest": true, "$ref": "#/definitions/phaseQueueTarget" }, "steps": { "description": "A list of steps to run in this phase", "$ref": "#/definitions/steps" }, "name": { "description": "Pipeline name", "$ref": "#/definitions/string_allowExpressions" }, "appendCommitMessageToRunName": { "description": "Append the commit message to the build number", "$ref": "#/definitions/boolean" }, "trigger": { "description": "Continuous integration triggers", "$ref": "#/definitions/trigger" }, "parameters": { "description": "Pipeline template parameters", "$ref": "#/definitions/pipelineTemplateParameters" }, "pr": { "description": "Pull request triggers", "$ref": "#/definitions/pr" }, "schedules": { "$ref": "#/definitions/schedules" }, "resources": { "description": "Containers and repositories used in the build", "$ref": "#/definitions/resources" }, "variables": { "description": "Variables for this pipeline", "$ref": "#/definitions/variables" }, "lockBehavior": { "description": "Behavior lock requests from this stage should exhibit in relation to other exclusive lock requests", "$ref": "#/definitions/lockBehavior" } }, "additionalProperties": false, "deprecationMessage": "This option is deprecated, use `job` (inside `jobs`) instead", "required": [ "steps" ] }, { "type": "object", "properties": { "continueOnError": { "description": "Continue running even on failure?", "$ref": "#/definitions/jobContinueOnError" }, "server": { "description": "True if this is an agent-less phase (runs on server)", "deprecationMessage": "This option is deprecated, use pool:server instead", "doNotSuggest": true, "$ref": "#/definitions/phaseServerTarget" }, "steps": { "description": "A list of steps to run in this phase", "$ref": "#/definitions/steps" }, "name": { "description": "Pipeline name", "$ref": "#/definitions/string_allowExpressions" }, "appendCommitMessageToRunName": { "description": "Append the commit message to the build number", "$ref": "#/definitions/boolean" }, "trigger": { "description": "Continuous integration triggers", "$ref": "#/definitions/trigger" }, "parameters": { "description": "Pipeline template parameters", "$ref": "#/definitions/pipelineTemplateParameters" }, "pr": { "description": "Pull request triggers", "$ref": "#/definitions/pr" }, "schedules": { "$ref": "#/definitions/schedules" }, "resources": { "description": "Containers and repositories used in the build", "$ref": "#/definitions/resources" }, "variables": { "description": "Variables for this pipeline", "$ref": "#/definitions/variables" }, "lockBehavior": { "description": "Behavior lock requests from this stage should exhibit in relation to other exclusive lock requests", "$ref": "#/definitions/lockBehavior" } }, "additionalProperties": false, "deprecationMessage": "This option is deprecated, use `job` (inside `jobs`) instead", "required": [ "steps" ] } ] }, "pipelineBase": { "type": "object", "properties": { "name": { "description": "Pipeline name", "$ref": "#/definitions/string_allowExpressions" }, "appendCommitMessageToRunName": { "description": "Append the commit message to the build number", "$ref": "#/definitions/boolean" }, "trigger": { "description": "Continuous integration triggers", "$ref": "#/definitions/trigger" }, "parameters": { "description": "Pipeline template parameters", "$ref": "#/definitions/pipelineTemplateParameters" }, "pr": { "description": "Pull request triggers", "$ref": "#/definitions/pr" }, "schedules": { "$ref": "#/definitions/schedules" }, "resources": { "description": "Containers and repositories used in the build", "$ref": "#/definitions/resources" }, "variables": { "description": "Variables for this pipeline", "$ref": "#/definitions/variables" }, "lockBehavior": { "description": "Behavior lock requests from this stage should exhibit in relation to other exclusive lock requests", "$ref": "#/definitions/lockBehavior" } }, "additionalProperties": false }, "pipelineTrigger": { "type": "object", "properties": { "trigger": { "description": "Continuous integration triggers", "$ref": "#/definitions/trigger" }, "name": { "description": "Pipeline name", "$ref": "#/definitions/any_allowExpressions" }, "appendCommitMessageToRunName": { "description": "Append the commit message to the build number", "$ref": "#/definitions/any_allowExpressions" }, "parameters": { "description": "Pipeline template parameters", "$ref": "#/definitions/any_allowExpressions" }, "pr": { "description": "Pull request triggers", "$ref": "#/definitions/any_allowExpressions" }, "schedules": { "$ref": "#/definitions/any_allowExpressions" }, "resources": { "description": "Containers and repositories used in the build", "$ref": "#/definitions/any_allowExpressions" }, "variables": { "description": "Variables for the entire pipeline", "$ref": "#/definitions/any_allowExpressions" }, "stages": { "$ref": "#/definitions/any_allowExpressions" }, "jobs": { "description": "Jobs which make up the pipeline", "$ref": "#/definitions/any_allowExpressions" }, "extends": { "description": "Extends a template", "$ref": "#/definitions/any_allowExpressions" }, "phases": { "description": "Phases which make up the pipeline", "deprecationMessage": "This option is deprecated, use `jobs` instead", "doNotSuggest": true, "$ref": "#/definitions/any_allowExpressions" }, "strategy": { "description": "Execution strategy for the job", "$ref": "#/definitions/any_allowExpressions" }, "continueOnError": { "description": "Continue running even on failure?", "$ref": "#/definitions/any_allowExpressions" }, "pool": { "description": "Pool where this job will run", "$ref": "#/definitions/any_allowExpressions" }, "container": { "description": "Container resource name", "$ref": "#/definitions/any_allowExpressions" }, "services": { "$ref": "#/definitions/any_allowExpressions" }, "workspace": { "$ref": "#/definitions/any_allowExpressions" }, "steps": { "description": "A list of steps to run", "$ref": "#/definitions/any_allowExpressions" }, "queue": { "description": "Queue where this phase will run", "deprecationMessage": "This option is deprecated, use pool instead", "doNotSuggest": true, "$ref": "#/definitions/any_allowExpressions" }, "server": { "description": "True if this is an agent-less phase (runs on server)", "deprecationMessage": "This option is deprecated, use pool:server instead", "doNotSuggest": true, "$ref": "#/definitions/any_allowExpressions" }, "lockBehavior": { "description": "Behavior lock requests from this stage should exhibit in relation to other exclusive lock requests", "$ref": "#/definitions/lockBehavior" } }, "additionalProperties": false }, "pipelineParameters": { "type": "object", "properties": { "parameters": { "description": "Pipeline template parameters", "$ref": "#/definitions/pipelineTemplateParameters" }, "name": { "description": "Pipeline name", "$ref": "#/definitions/any_allowExpressions" }, "appendCommitMessageToRunName": { "description": "Append the commit message to the build number", "$ref": "#/definitions/any_allowExpressions" }, "trigger": { "description": "Continuous integration triggers", "$ref": "#/definitions/any_allowExpressions" }, "pr": { "description": "Pull request triggers", "$ref": "#/definitions/any_allowExpressions" }, "schedules": { "$ref": "#/definitions/any_allowExpressions" }, "resources": { "description": "Containers and repositories used in the build", "$ref": "#/definitions/any_allowExpressions" }, "variables": { "description": "Variables for the entire pipeline", "$ref": "#/definitions/any_allowExpressions" }, "stages": { "$ref": "#/definitions/any_allowExpressions" }, "jobs": { "description": "Jobs which make up the pipeline", "$ref": "#/definitions/any_allowExpressions" }, "extends": { "description": "Extends a template", "$ref": "#/definitions/any_allowExpressions" }, "phases": { "description": "Phases which make up the pipeline", "deprecationMessage": "This option is deprecated, use `jobs` instead", "doNotSuggest": true, "$ref": "#/definitions/any_allowExpressions" }, "strategy": { "description": "Execution strategy for the job", "$ref": "#/definitions/any_allowExpressions" }, "continueOnError": { "description": "Continue running even on failure?", "$ref": "#/definitions/any_allowExpressions" }, "pool": { "description": "Pool where this job will run", "$ref": "#/definitions/any_allowExpressions" }, "container": { "description": "Container resource name", "$ref": "#/definitions/any_allowExpressions" }, "services": { "$ref": "#/definitions/any_allowExpressions" }, "workspace": { "$ref": "#/definitions/any_allowExpressions" }, "steps": { "description": "A list of steps to run", "$ref": "#/definitions/any_allowExpressions" }, "queue": { "description": "Queue where this phase will run", "deprecationMessage": "This option is deprecated, use pool instead", "doNotSuggest": true, "$ref": "#/definitions/any_allowExpressions" }, "server": { "description": "True if this is an agent-less phase (runs on server)", "deprecationMessage": "This option is deprecated, use pool:server instead", "doNotSuggest": true, "$ref": "#/definitions/any_allowExpressions" }, "lockBehavior": { "description": "Behavior lock requests from this stage should exhibit in relation to other exclusive lock requests", "$ref": "#/definitions/lockBehavior" } }, "additionalProperties": false }, "pipelinePR": { "type": "object", "properties": { "pr": { "description": "Pull request triggers", "$ref": "#/definitions/pr" }, "name": { "description": "Pipeline name", "$ref": "#/definitions/any_allowExpressions" }, "appendCommitMessageToRunName": { "description": "Append the commit message to the build number", "$ref": "#/definitions/any_allowExpressions" }, "trigger": { "description": "Continuous integration triggers", "$ref": "#/definitions/any_allowExpressions" }, "parameters": { "description": "Pipeline template parameters", "$ref": "#/definitions/any_allowExpressions" }, "schedules": { "$ref": "#/definitions/any_allowExpressions" }, "resources": { "description": "Containers and repositories used in the build", "$ref": "#/definitions/any_allowExpressions" }, "variables": { "description": "Variables for the entire pipeline", "$ref": "#/definitions/any_allowExpressions" }, "stages": { "$ref": "#/definitions/any_allowExpressions" }, "jobs": { "description": "Jobs which make up the pipeline", "$ref": "#/definitions/any_allowExpressions" }, "extends": { "description": "Extends a template", "$ref": "#/definitions/any_allowExpressions" }, "phases": { "description": "Phases which make up the pipeline", "deprecationMessage": "This option is deprecated, use `jobs` instead", "doNotSuggest": true, "$ref": "#/definitions/any_allowExpressions" }, "strategy": { "description": "Execution strategy for the job", "$ref": "#/definitions/any_allowExpressions" }, "continueOnError": { "description": "Continue running even on failure?", "$ref": "#/definitions/any_allowExpressions" }, "pool": { "description": "Pool where this job will run", "$ref": "#/definitions/any_allowExpressions" }, "container": { "description": "Container resource name", "$ref": "#/definitions/any_allowExpressions" }, "services": { "$ref": "#/definitions/any_allowExpressions" }, "workspace": { "$ref": "#/definitions/any_allowExpressions" }, "steps": { "description": "A list of steps to run", "$ref": "#/definitions/any_allowExpressions" }, "queue": { "description": "Queue where this phase will run", "deprecationMessage": "This option is deprecated, use pool instead", "doNotSuggest": true, "$ref": "#/definitions/any_allowExpressions" }, "server": { "description": "True if this is an agent-less phase (runs on server)", "deprecationMessage": "This option is deprecated, use pool:server instead", "doNotSuggest": true, "$ref": "#/definitions/any_allowExpressions" }, "lockBehavior": { "description": "Behavior lock requests from this stage should exhibit in relation to other exclusive lock requests", "$ref": "#/definitions/lockBehavior" } }, "additionalProperties": false }, "pipelineSchedules": { "type": "object", "properties": { "schedules": { "$ref": "#/definitions/schedules" }, "name": { "description": "Pipeline name", "$ref": "#/definitions/any_allowExpressions" }, "appendCommitMessageToRunName": { "description": "Append the commit message to the build number", "$ref": "#/definitions/any_allowExpressions" }, "trigger": { "description": "Continuous integration triggers", "$ref": "#/definitions/any_allowExpressions" }, "parameters": { "description": "Pipeline template parameters", "$ref": "#/definitions/any_allowExpressions" }, "pr": { "description": "Pull request triggers", "$ref": "#/definitions/any_allowExpressions" }, "resources": { "description": "Containers and repositories used in the build", "$ref": "#/definitions/any_allowExpressions" }, "variables": { "description": "Variables for the entire pipeline", "$ref": "#/definitions/any_allowExpressions" }, "stages": { "$ref": "#/definitions/any_allowExpressions" }, "jobs": { "description": "Jobs which make up the pipeline", "$ref": "#/definitions/any_allowExpressions" }, "extends": { "description": "Extends a template", "$ref": "#/definitions/any_allowExpressions" }, "phases": { "description": "Phases which make up the pipeline", "deprecationMessage": "This option is deprecated, use `jobs` instead", "doNotSuggest": true, "$ref": "#/definitions/any_allowExpressions" }, "strategy": { "description": "Execution strategy for the job", "$ref": "#/definitions/any_allowExpressions" }, "continueOnError": { "description": "Continue running even on failure?", "$ref": "#/definitions/any_allowExpressions" }, "pool": { "description": "Pool where this job will run", "$ref": "#/definitions/any_allowExpressions" }, "container": { "description": "Container resource name", "$ref": "#/definitions/any_allowExpressions" }, "services": { "$ref": "#/definitions/any_allowExpressions" }, "workspace": { "$ref": "#/definitions/any_allowExpressions" }, "steps": { "description": "A list of steps to run", "$ref": "#/definitions/any_allowExpressions" }, "queue": { "description": "Queue where this phase will run", "deprecationMessage": "This option is deprecated, use pool instead", "doNotSuggest": true, "$ref": "#/definitions/any_allowExpressions" }, "server": { "description": "True if this is an agent-less phase (runs on server)", "deprecationMessage": "This option is deprecated, use pool:server instead", "doNotSuggest": true, "$ref": "#/definitions/any_allowExpressions" }, "lockBehavior": { "description": "Behavior lock requests from this stage should exhibit in relation to other exclusive lock requests", "$ref": "#/definitions/lockBehavior" } }, "additionalProperties": false }, "pipelineAnyBase": { "type": "object", "properties": { "name": { "description": "Pipeline name", "$ref": "#/definitions/any_allowExpressions" }, "appendCommitMessageToRunName": { "description": "Append the commit message to the build number", "$ref": "#/definitions/any_allowExpressions" }, "trigger": { "description": "Continuous integration triggers", "$ref": "#/definitions/any_allowExpressions" }, "parameters": { "description": "Pipeline template parameters", "$ref": "#/definitions/any_allowExpressions" }, "pr": { "description": "Pull request triggers", "$ref": "#/definitions/any_allowExpressions" }, "schedules": { "$ref": "#/definitions/any_allowExpressions" }, "resources": { "description": "Containers and repositories used in the build", "$ref": "#/definitions/any_allowExpressions" }, "variables": { "description": "Variables for the entire pipeline", "$ref": "#/definitions/any_allowExpressions" }, "stages": { "$ref": "#/definitions/any_allowExpressions" }, "jobs": { "description": "Jobs which make up the pipeline", "$ref": "#/definitions/any_allowExpressions" }, "extends": { "description": "Extends a template", "$ref": "#/definitions/any_allowExpressions" }, "phases": { "description": "Phases which make up the pipeline", "deprecationMessage": "This option is deprecated, use `jobs` instead", "doNotSuggest": true, "$ref": "#/definitions/any_allowExpressions" }, "strategy": { "description": "Execution strategy for the job", "$ref": "#/definitions/any_allowExpressions" }, "continueOnError": { "description": "Continue running even on failure?", "$ref": "#/definitions/any_allowExpressions" }, "pool": { "description": "Pool where this job will run", "$ref": "#/definitions/any_allowExpressions" }, "container": { "description": "Container resource name", "$ref": "#/definitions/any_allowExpressions" }, "services": { "$ref": "#/definitions/any_allowExpressions" }, "workspace": { "$ref": "#/definitions/any_allowExpressions" }, "steps": { "description": "A list of steps to run", "$ref": "#/definitions/any_allowExpressions" }, "queue": { "description": "Queue where this phase will run", "deprecationMessage": "This option is deprecated, use pool instead", "doNotSuggest": true, "$ref": "#/definitions/any_allowExpressions" }, "server": { "description": "True if this is an agent-less phase (runs on server)", "deprecationMessage": "This option is deprecated, use pool:server instead", "doNotSuggest": true, "$ref": "#/definitions/any_allowExpressions" }, "lockBehavior": { "description": "Behavior lock requests from this stage should exhibit in relation to other exclusive lock requests", "$ref": "#/definitions/lockBehavior" } }, "additionalProperties": false }, "pr": { "anyOf": [ { "type": "string", "pattern": "^none$" }, { "type": "array", "items": { "$ref": "#/definitions/branchFilter" } }, { "type": "object", "properties": { "autoCancel": { "description": "Whether to cancel running PR builds when a new commit lands in the branch", "$ref": "#/definitions/boolean" }, "branches": { "$ref": "#/definitions/includeExcludeFilters" }, "paths": { "$ref": "#/definitions/includeExcludeFilters" }, "drafts": { "description": "Whether to start a run when a draft PR is created", "$ref": "#/definitions/boolean" } }, "additionalProperties": false } ] }, "trigger": { "anyOf": [ { "type": "string", "pattern": "^none$" }, { "type": "array", "items": { "$ref": "#/definitions/branchFilter" } }, { "type": "object", "properties": { "batch": { "description": "Whether to batch changes per branch", "$ref": "#/definitions/boolean" }, "branches": { "$ref": "#/definitions/includeExcludeFilters" }, "paths": { "$ref": "#/definitions/includeExcludeFilters" }, "tags": { "$ref": "#/definitions/includeExcludeFilters" } }, "additionalProperties": false } ] }, "includeExcludeFilters": { "type": "object", "properties": { "include": { "$ref": "#/definitions/branchFilterArray" }, "exclude": { "$ref": "#/definitions/branchFilterArray" } }, "additionalProperties": false }, "includeExcludeStringFilters": { "anyOf": [ { "type": "array", "items": { "$ref": "#/definitions/nonEmptyString" } }, { "type": "object", "properties": { "include": { "$ref": "#/definitions/sequenceOfNonEmptyString" }, "exclude": { "$ref": "#/definitions/sequenceOfNonEmptyString" } }, "additionalProperties": false } ] }, "branchFilterArray": { "type": "array", "items": { "$ref": "#/definitions/branchFilter" } }, "branchFilter": { "type": "string", "description": "branch name or prefix filter", "pattern": "^[^\\/~\\^\\: \\[\\]\\\\]+(\\/[^\\/~\\^\\: \\[\\]\\\\]+)*$" }, "templateParameters": { "anyOf": [ { "type": "array", "items": { "$ref": "#/definitions/templateParameter" } }, { "type": "object", "additionalProperties": true } ] }, "templateParameter": { "type": "object", "properties": { "name": { "$ref": "#/definitions/nonEmptyString" }, "displayName": { "description": "Human-readable name for the parameter", "$ref": "#/definitions/string" }, "type": { "$ref": "#/definitions/templateParameterType" }, "default": { "$ref": "#/definitions/any" }, "values": { "$ref": "#/definitions/sequenceOfNonEmptyString" } }, "additionalProperties": false, "firstProperty": [ "name" ] }, "templateParameterType": { "anyOf": [ { "type": "string", "pattern": "^boolean$" }, { "type": "string", "pattern": "^container$" }, { "type": "string", "pattern": "^containerList$" }, { "type": "string", "pattern": "^deployment$" }, { "type": "string", "pattern": "^deploymentList$" }, { "type": "string", "pattern": "^job$" }, { "type": "string", "pattern": "^jobList$" }, { "type": "string", "pattern": "^legacyObject$" }, { "type": "string", "pattern": "^number$" }, { "type": "string", "pattern": "^object$" }, { "type": "string", "pattern": "^stage$" }, { "type": "string", "pattern": "^stageList$" }, { "type": "string", "pattern": "^step$" }, { "type": "string", "pattern": "^stepList$" }, { "type": "string", "pattern": "^string$" } ] }, "pipelineTemplateParameters": { "type": "array", "items": { "$ref": "#/definitions/pipelineTemplateParameter" } }, "pipelineTemplateParameter": { "type": "object", "properties": { "name": { "$ref": "#/definitions/nonEmptyString" }, "displayName": { "description": "Human-readable name for the parameter", "$ref": "#/definitions/string" }, "type": { "$ref": "#/definitions/pipelineTemplateParameterType" }, "default": { "$ref": "#/definitions/any" }, "values": { "$ref": "#/definitions/sequenceOfNonEmptyString" } }, "additionalProperties": false, "firstProperty": [ "name" ] }, "pipelineTemplateParameterType": { "anyOf": [ { "type": "string", "pattern": "^boolean$" }, { "type": "string", "pattern": "^container$" }, { "type": "string", "pattern": "^containerList$" }, { "type": "string", "pattern": "^deployment$" }, { "type": "string", "pattern": "^deploymentList$" }, { "type": "string", "pattern": "^environment$" }, { "type": "string", "pattern": "^filePath$" }, { "type": "string", "pattern": "^job$" }, { "type": "string", "pattern": "^jobList$" }, { "type": "string", "pattern": "^number$" }, { "type": "string", "pattern": "^object$" }, { "type": "string", "pattern": "^pool$" }, { "type": "string", "pattern": "^secureFile$" }, { "type": "string", "pattern": "^serviceConnection$" }, { "type": "string", "pattern": "^stage$" }, { "type": "string", "pattern": "^stageList$" }, { "type": "string", "pattern": "^step$" }, { "type": "string", "pattern": "^stepList$" }, { "type": "string", "pattern": "^string$" } ] }, "schedules": { "type": "array", "items": { "$ref": "#/definitions/schedule" } }, "schedule": { "type": "object", "properties": { "cron": { "$ref": "#/definitions/nonEmptyString" }, "displayName": { "$ref": "#/definitions/string" }, "branches": { "$ref": "#/definitions/includeExcludeFilters" }, "batch": { "$ref": "#/definitions/boolean" }, "always": { "$ref": "#/definitions/boolean" } }, "additionalProperties": false, "firstProperty": [ "cron" ] }, "resources": { "anyOf": [ { "type": "object", "properties": { "builds": { "description": "List of external build resources", "$ref": "#/definitions/buildResources" }, "containers": { "description": "List of container images", "$ref": "#/definitions/containerResources" }, "pipelines": { "$ref": "#/definitions/pipelineResources" }, "repositories": { "description": "List of external repositories", "$ref": "#/definitions/repositoryResources" }, "webhooks": { "description": "List of webhooks", "$ref": "#/definitions/webhookResources" }, "packages": { "description": "List of external packages", "$ref": "#/definitions/packageResources" } }, "additionalProperties": false }, { "type": "array", "items": { "$ref": "#/definitions/legacyResource" } } ] }, "buildResources": { "type": "array", "items": { "$ref": "#/definitions/buildResource" } }, "buildResource": { "type": "object", "properties": { "build": { "description": "Alias or name of build artifact", "$ref": "#/definitions/referenceName" }, "type": { "description": "Name of the artifact type", "$ref": "#/definitions/nonEmptyString" }, "connection": { "description": "Name of the connection. This connection will be used for all the communication related to this artifact.", "$ref": "#/definitions/nonEmptyString" }, "source": { "description": "Name of the source definition/build/job", "$ref": "#/definitions/nonEmptyString" }, "version": { "$ref": "#/definitions/string_allowExpressions" }, "branch": { "$ref": "#/definitions/string_allowExpressions" }, "trigger": { "description": "When the artifact mentioned in this build resource completes a build, its allowed to trigger this pipeline.", "$ref": "#/definitions/buildResourceTrigger" } }, "additionalProperties": false, "firstProperty": [ "build" ], "required": [ "build", "type", "connection", "source" ] }, "buildResourceTrigger": { "anyOf": [ { "type": "string", "pattern": "^none$" }, { "type": "string", "pattern": "^true$" } ] }, "packageResources": { "type": "array", "items": { "$ref": "#/definitions/packageResource" } }, "packageResource": { "type": "object", "properties": { "package": { "description": "Alias of package artifact", "$ref": "#/definitions/referenceName" }, "type": { "description": "Type of the package. Ex - NuGet, NPM etc.", "$ref": "#/definitions/nonEmptyString" }, "connection": { "description": "Name of the connection. This connection will be used for all the communication related to this artifact.", "$ref": "#/definitions/nonEmptyString" }, "name": { "description": "Name of the package", "$ref": "#/definitions/nonEmptyString" }, "version": { "$ref": "#/definitions/string_allowExpressions" }, "tag": { "$ref": "#/definitions/string_allowExpressions" }, "trigger": { "description": "Trigger a new pipeline run when a new version of this package is available.", "$ref": "#/definitions/packageResourceTrigger" } }, "additionalProperties": false, "firstProperty": [ "package" ], "required": [ "package", "type", "connection", "name" ] }, "packageResourceTrigger": { "anyOf": [ { "type": "string", "pattern": "^none$" }, { "type": "string", "pattern": "^true$" } ] }, "containerResources": { "type": "array", "items": { "$ref": "#/definitions/containerResource" } }, "containerResource": { "type": "object", "properties": { "container": { "description": "ID for the container", "$ref": "#/definitions/referenceName" }, "type": { "$ref": "#/definitions/containerArtifactType" }, "trigger": { "$ref": "#/definitions/containerResourceTrigger" }, "endpoint": { "description": "ID of the service endpoint connecting to a private container registry", "$ref": "#/definitions/string_allowExpressions" }, "env": { "description": "Variables to map into the container's environment", "$ref": "#/definitions/mappingOfStringString" }, "image": { "description": "Container image tag", "$ref": "#/definitions/string", "examples": [ "ubuntu:16.04", "windows:1803" ] }, "mapDockerSocket": { "description": "Set this flag to false to force the agent not to setup the /var/run/docker.sock volume on container jobs", "$ref": "#/definitions/boolean" }, "options": { "description": "Options to pass into container host", "$ref": "#/definitions/string_allowExpressions" }, "ports": { "$ref": "#/definitions/sequenceOfString_allowExpressions" }, "volumes": { "$ref": "#/definitions/sequenceOfString_allowExpressions" }, "mountReadOnly": { "$ref": "#/definitions/readOnlyMounts" } }, "additionalProperties": true, "firstProperty": [ "container" ], "required": [ "container", "image" ] }, "containerArtifactType": { "anyOf": [ { "type": "string", "ignoreCase": "value", "pattern": "^ACR$" }, { "type": "string" } ] }, "containerResourceTrigger": { "anyOf": [ { "type": "string", "pattern": "^none$" }, { "type": "string", "pattern": "^true$" }, { "type": "object", "properties": { "enabled": { "$ref": "#/definitions/boolean" }, "tags": { "$ref": "#/definitions/includeExcludeStringFilters" } }, "additionalProperties": false } ] }, "pipelineResources": { "type": "array", "items": { "$ref": "#/definitions/pipelineResource" } }, "pipelineResource": { "type": "object", "properties": { "pipeline": { "description": "ID of the pipeline resource", "$ref": "#/definitions/referenceName" }, "project": { "$ref": "#/definitions/nonEmptyString" }, "source": { "$ref": "#/definitions/nonEmptyString" }, "version": { "$ref": "#/definitions/string_allowExpressions" }, "branch": { "$ref": "#/definitions/string_allowExpressions" }, "tags": { "$ref": "#/definitions/sequenceOfNonEmptyString" }, "trigger": { "$ref": "#/definitions/pipelineResourceTrigger" } }, "additionalProperties": false, "firstProperty": [ "pipeline" ], "required": [ "pipeline" ] }, "pipelineResourceTrigger": { "anyOf": [ { "type": "string", "pattern": "^none$" }, { "type": "string", "pattern": "^true$" }, { "type": "object", "properties": { "enabled": { "$ref": "#/definitions/boolean" }, "branches": { "$ref": "#/definitions/triggerBranchFilter" }, "stages": { "$ref": "#/definitions/sequenceOfNonEmptyString" }, "tags": { "$ref": "#/definitions/sequenceOfNonEmptyString" } }, "additionalProperties": false } ] }, "triggerBranchFilter": { "anyOf": [ { "type": "object", "properties": { "include": { "$ref": "#/definitions/branchFilterArray" }, "exclude": { "$ref": "#/definitions/branchFilterArray" } }, "additionalProperties": false }, { "type": "array", "items": { "$ref": "#/definitions/branchFilter" } } ] }, "repositoryResources": { "type": "array", "items": { "$ref": "#/definitions/repositoryResource" } }, "repositoryResource": { "type": "object", "properties": { "repository": { "description": "ID of the external repository", "$ref": "#/definitions/referenceName" }, "endpoint": { "description": "ID of the service endpoint connecting to this repository", "$ref": "#/definitions/nonEmptyString" }, "trigger": { "$ref": "#/definitions/trigger" }, "checkoutOptions": { "deprecationMessage": "This location is deprecated, `checkoutOptions` should be a peer of the `repository` keyword.", "doNotSuggest": true, "$ref": "#/definitions/repositoryCheckoutOptions" }, "ref": { "$ref": "#/definitions/string_allowExpressions" } }, "additionalProperties": true, "firstProperty": [ "repository" ], "required": [ "repository" ] }, "repositoryCheckoutOptions": { "type": "object", "properties": { "clean": { "description": "Scorch the repo before fetching?", "enum": [ "true", "false" ], "$ref": "#/definitions/string" }, "fetchDepth": { "description": "Depth of Git graph to fetch", "$ref": "#/definitions/string" }, "fetchTags": { "description": "Fetch tags?", "$ref": "#/definitions/string" }, "lfs": { "description": "Fetch and checkout Git LFS objects?", "$ref": "#/definitions/string" }, "submodules": { "description": "Fetch and checkout submodules?", "$ref": "#/definitions/string" }, "persistCredentials": { "description": "Keep credentials available for later use?", "$ref": "#/definitions/string" } }, "additionalProperties": false }, "legacyResource": { "type": "object", "properties": { "repo": { "$ref": "#/definitions/legacyRepoResourceAlias" }, "clean": { "description": "Scorch the repo before fetching?", "enum": [ "true", "false" ], "$ref": "#/definitions/string" }, "fetchDepth": { "description": "Depth of Git graph to fetch", "$ref": "#/definitions/string" }, "lfs": { "description": "Fetch and checkout Git LFS objects?", "$ref": "#/definitions/string" } }, "additionalProperties": false, "firstProperty": [ "repo" ] }, "legacyRepoResourceAlias": { "type": "string", "pattern": "^self$" }, "webhookResources": { "type": "array", "items": { "$ref": "#/definitions/webhookResource" } }, "webhookResource": { "type": "object", "properties": { "webhook": { "description": "Name of the webhook", "$ref": "#/definitions/referenceName" }, "connection": { "description": "Name of the connection. In case of offline webhook this will be the type of Incoming Webhook otherwise it will be the type of the webhook extension.", "$ref": "#/definitions/nonEmptyString" }, "type": { "description": "Name of the webhook extension. leave this empty if its offline webhook.", "$ref": "#/definitions/nonEmptyString" }, "filters": { "description": "List of trigger filters.", "$ref": "#/definitions/webhookFilters" } }, "additionalProperties": false, "firstProperty": [ "webhook" ], "required": [ "webhook", "connection" ] }, "webhookFilters": { "type": "array", "items": { "$ref": "#/definitions/webhookFilter" } }, "webhookFilter": { "type": "object", "properties": { "path": { "description": "json path to select data from event payload", "$ref": "#/definitions/nonEmptyString" }, "value": { "description": "Expected value for the filter to match", "$ref": "#/definitions/nonEmptyString" } }, "additionalProperties": false, "firstProperty": [ "path" ], "required": [ "path", "value" ] }, "variablesTemplate": { "type": "object", "properties": { "parameters": { "$ref": "#/definitions/templateParameters" }, "variables": { "$ref": "#/definitions/variables" } }, "additionalProperties": false }, "variables": { "anyOf": [ { "type": "object", "additionalProperties": true }, { "type": "array", "items": { "$ref": "#/definitions/variable" } } ] }, "variable": { "anyOf": [ { "type": "object", "properties": { "name": { "$ref": "#/definitions/nonEmptyString" }, "value": { "$ref": "#/definitions/string" }, "readonly": { "$ref": "#/definitions/boolean" } }, "additionalProperties": false, "firstProperty": [ "name" ] }, { "type": "object", "properties": { "group": { "$ref": "#/definitions/nonEmptyString" } }, "additionalProperties": false, "firstProperty": [ "group" ] }, { "type": "object", "properties": { "template": { "$ref": "#/definitions/nonEmptyString" }, "parameters": { "$ref": "#/definitions/mapping" } }, "additionalProperties": false, "firstProperty": [ "template" ] } ] }, "stagesTemplate": { "type": "object", "properties": { "parameters": { "$ref": "#/definitions/templateParameters" }, "stages": { "$ref": "#/definitions/stages" } }, "additionalProperties": false }, "stages": { "type": "array", "items": { "$ref": "#/definitions/stage" } }, "stage": { "anyOf": [ { "type": "object", "properties": { "stage": { "description": "ID of the stage", "$ref": "#/definitions/string" }, "displayName": { "description": "Human-readable name for the stage", "$ref": "#/definitions/string" }, "pool": { "description": "Pool where jobs in this stage will run unless otherwise specified", "$ref": "#/definitions/pool" }, "dependsOn": { "description": "Any stages which must complete before this one", "$ref": "#/definitions/jobDependsOn" }, "condition": { "description": "Evaluate this condition expression to determine whether to run this stage", "$ref": "#/definitions/string" }, "variables": { "description": "Stage-specific variables", "$ref": "#/definitions/variables" }, "jobs": { "description": "Jobs which make up the stage", "$ref": "#/definitions/jobs" }, "lockBehavior": { "description": "Behavior lock requests from this stage should exhibit in relation to other exclusive lock requests", "$ref": "#/definitions/lockBehavior" }, "templateContext": { "$ref": "#/definitions/templateContext" } }, "additionalProperties": false, "firstProperty": [ "stage" ] }, { "type": "object", "properties": { "template": { "description": "Reference to a template for this stage", "$ref": "#/definitions/nonEmptyString" }, "parameters": { "description": "Parameters used in a stage template", "$ref": "#/definitions/mapping" } }, "additionalProperties": false, "firstProperty": [ "template" ] } ] }, "lockBehavior": { "anyOf": [ { "type": "string", "pattern": "^sequential$" }, { "type": "string", "pattern": "^runLatest$" } ] }, "extendsParameters": { "type": "array", "items": { "$ref": "#/definitions/templateParameter" } }, "extendsTemplate": { "anyOf": [ { "type": "object", "properties": { "stages": { "$ref": "#/definitions/stages" }, "trigger": { "$ref": "#/definitions/trigger" }, "resources": { "$ref": "#/definitions/resources" }, "parameters": { "$ref": "#/definitions/extendsParameters" }, "variables": { "$ref": "#/definitions/variables" } }, "additionalProperties": false }, { "type": "object", "properties": { "jobs": { "$ref": "#/definitions/jobs" }, "trigger": { "$ref": "#/definitions/trigger" }, "resources": { "$ref": "#/definitions/resources" }, "parameters": { "$ref": "#/definitions/extendsParameters" }, "variables": { "$ref": "#/definitions/variables" } }, "additionalProperties": false }, { "type": "object", "properties": { "steps": { "$ref": "#/definitions/steps" }, "trigger": { "$ref": "#/definitions/trigger" }, "resources": { "$ref": "#/definitions/resources" }, "parameters": { "$ref": "#/definitions/extendsParameters" }, "variables": { "$ref": "#/definitions/variables" } }, "additionalProperties": false }, { "type": "object", "properties": { "trigger": { "$ref": "#/definitions/trigger" }, "resources": { "$ref": "#/definitions/resources" }, "parameters": { "$ref": "#/definitions/extendsParameters" }, "extends": { "$ref": "#/definitions/extends" } }, "additionalProperties": false } ] }, "extendsTemplateBase": { "type": "object", "properties": { "trigger": { "$ref": "#/definitions/trigger" }, "resources": { "$ref": "#/definitions/resources" }, "parameters": { "$ref": "#/definitions/extendsParameters" }, "variables": { "$ref": "#/definitions/variables" } }, "additionalProperties": false }, "parametersTemplate": { "anyOf": [ { "type": "object", "properties": { "parameters": { "description": "Step-specific parameters", "$ref": "#/definitions/templateParameters" }, "steps": { "description": "A list of steps to run", "$ref": "#/definitions/steps" } }, "additionalProperties": false, "required": [ "steps" ] }, { "type": "object", "properties": { "parameters": { "description": "Parameters used in a job template", "$ref": "#/definitions/templateParameters" }, "jobs": { "description": "Jobs which make up the pipeline", "$ref": "#/definitions/jobs" } }, "additionalProperties": false }, { "type": "object", "properties": { "parameters": { "$ref": "#/definitions/templateParameters" }, "stages": { "$ref": "#/definitions/stages" } }, "additionalProperties": false }, { "type": "object", "properties": { "resources": { "$ref": "#/definitions/resources" }, "parameters": { "$ref": "#/definitions/templateParameters" }, "extends": { "description": "Extends a template", "$ref": "#/definitions/extends" } }, "additionalProperties": false, "required": [ "extends" ] } ] }, "extends": { "type": "object", "properties": { "template": { "$ref": "#/definitions/nonEmptyString" }, "parameters": { "description": "Parameters used in the extend", "$ref": "#/definitions/mapping" } }, "additionalProperties": false }, "jobsTemplate": { "anyOf": [ { "type": "object", "properties": { "parameters": { "description": "Parameters used in a job template", "$ref": "#/definitions/templateParameters" }, "jobs": { "description": "Jobs which make up the pipeline", "$ref": "#/definitions/jobs" } }, "additionalProperties": false }, { "type": "object", "properties": { "parameters": { "description": "Parameters used in a phase template", "$ref": "#/definitions/templateParameters" }, "phases": { "description": "Phases which make up the pipeline", "deprecationMessage": "This option is deprecated, use `jobs` instead", "doNotSuggest": true, "$ref": "#/definitions/phases" } }, "additionalProperties": false } ] }, "jobs": { "type": "array", "items": { "$ref": "#/definitions/job" } }, "job": { "anyOf": [ { "type": "object", "properties": { "job": { "description": "ID of the job", "$ref": "#/definitions/referenceName" }, "displayName": { "description": "Human-readable name for the job", "$ref": "#/definitions/string" }, "dependsOn": { "description": "Any jobs which must complete before this one", "$ref": "#/definitions/jobDependsOn" }, "condition": { "description": "Evaluate this condition expression to determine whether to run this job", "$ref": "#/definitions/string" }, "continueOnError": { "description": "Continue running even on failure?", "$ref": "#/definitions/jobContinueOnError" }, "timeoutInMinutes": { "description": "Time to wait for this job to complete before the server kills it", "$ref": "#/definitions/nonEmptyString" }, "cancelTimeoutInMinutes": { "description": "Time to wait for the job to cancel before forcibly terminating it", "$ref": "#/definitions/nonEmptyString" }, "variables": { "description": "Job-specific variables", "$ref": "#/definitions/variables" }, "strategy": { "description": "Execution strategy for this job", "$ref": "#/definitions/jobStrategy" }, "pool": { "description": "Pool where this job will run", "$ref": "#/definitions/pool" }, "container": { "description": "Container resource name", "$ref": "#/definitions/jobContainer" }, "services": { "$ref": "#/definitions/jobServices" }, "workspace": { "$ref": "#/definitions/jobWorkspace" }, "uses": { "description": "Any resources required by this job that are not already referenced", "$ref": "#/definitions/explicitResources" }, "steps": { "description": "A list of steps to run", "$ref": "#/definitions/steps" }, "templateContext": { "$ref": "#/definitions/templateContext" } }, "additionalProperties": false, "firstProperty": [ "job" ] }, { "type": "object", "properties": { "deployment": { "$ref": "#/definitions/string" }, "displayName": { "description": "Human-readable name for the deployment", "$ref": "#/definitions/string" }, "dependsOn": { "description": "Any jobs which must complete before this one", "$ref": "#/definitions/jobDependsOn" }, "condition": { "description": "Evaluate this condition expression to determine whether to run this deployment", "$ref": "#/definitions/string" }, "continueOnError": { "description": "Continue running even on failure?", "$ref": "#/definitions/jobContinueOnError" }, "timeoutInMinutes": { "description": "Time to wait for this job to complete before the server kills it", "$ref": "#/definitions/nonEmptyString" }, "cancelTimeoutInMinutes": { "description": "Time to wait for the job to cancel before forcibly terminating it", "$ref": "#/definitions/nonEmptyString" }, "variables": { "description": "Deployment-specific variables", "$ref": "#/definitions/variables" }, "pool": { "description": "Pool where this job will run", "$ref": "#/definitions/pool" }, "environment": { "$ref": "#/definitions/deploymentEnvironment" }, "strategy": { "description": "Execution strategy for this deployment", "$ref": "#/definitions/deploymentStrategy" }, "workspace": { "description": "What to clean up before the job runs", "$ref": "#/definitions/jobWorkspace" }, "uses": { "description": "Any resources required by this job that are not already referenced", "$ref": "#/definitions/explicitResources" }, "container": { "description": "Container resource name", "$ref": "#/definitions/jobContainer" }, "services": { "description": "Container resources to run as a service container", "$ref": "#/definitions/jobServices" }, "templateContext": { "$ref": "#/definitions/templateContext" } }, "additionalProperties": false, "firstProperty": [ "deployment" ] }, { "type": "object", "properties": { "template": { "description": "Reference to a template for this deployment", "$ref": "#/definitions/nonEmptyString" }, "parameters": { "description": "Parameters used in a deployment template", "$ref": "#/definitions/mapping" } }, "additionalProperties": false, "firstProperty": [ "template" ] } ] }, "explicitResources": { "type": "object", "properties": { "repositories": { "description": "Repository references", "$ref": "#/definitions/sequenceOfNonEmptyString" }, "pools": { "description": "Pool references", "$ref": "#/definitions/sequenceOfNonEmptyString" } }, "additionalProperties": false }, "pool": { "description": "Pool details", "anyOf": [ { "type": "string" }, { "type": "object", "properties": { "name": { "description": "Name of a pool", "$ref": "#/definitions/nonEmptyString" }, "demands": { "description": "List of demands (for a private pool)", "$ref": "#/definitions/poolDemands" } }, "additionalProperties": true } ] }, "poolDemands": { "anyOf": [ { "type": "string" }, { "type": "array", "items": { "$ref": "#/definitions/nonEmptyString" } } ] }, "jobContainer": { "anyOf": [ { "type": "string" }, { "type": "object", "properties": { "alias": { "description": "The alias of the container resource", "$ref": "#/definitions/string" } }, "additionalProperties": false }, { "type": "object", "properties": { "endpoint": { "description": "ID of the service endpoint connecting to a private container registry", "$ref": "#/definitions/string_allowExpressions" }, "env": { "description": "Variables to map into the container's environment", "$ref": "#/definitions/mappingOfStringString" }, "image": { "description": "Container image tag", "$ref": "#/definitions/string", "examples": [ "ubuntu:16.04", "windows:1803" ] }, "mapDockerSocket": { "description": "Set this flag to false to force the agent not to setup the /var/run/docker.sock volume on container jobs", "$ref": "#/definitions/boolean" }, "options": { "description": "Options to pass into container host", "$ref": "#/definitions/string_allowExpressions" }, "ports": { "$ref": "#/definitions/sequenceOfString_allowExpressions" }, "volumes": { "$ref": "#/definitions/sequenceOfString_allowExpressions" }, "mountReadOnly": { "$ref": "#/definitions/readOnlyMounts" } }, "required": [ "image" ] } ] }, "containerBase": { "type": "object", "properties": { "endpoint": { "description": "ID of the service endpoint connecting to a private container registry", "$ref": "#/definitions/string_allowExpressions" }, "env": { "description": "Variables to map into the container's environment", "$ref": "#/definitions/mappingOfStringString" }, "image": { "description": "Container image tag", "$ref": "#/definitions/string", "examples": [ "ubuntu:16.04", "windows:1803" ] }, "mapDockerSocket": { "description": "Set this flag to false to force the agent not to setup the /var/run/docker.sock volume on container jobs", "$ref": "#/definitions/boolean" }, "options": { "description": "Options to pass into container host", "$ref": "#/definitions/string_allowExpressions" }, "ports": { "$ref": "#/definitions/sequenceOfString_allowExpressions" }, "volumes": { "$ref": "#/definitions/sequenceOfString_allowExpressions" }, "mountReadOnly": { "$ref": "#/definitions/readOnlyMounts" } }, "additionalProperties": false, "required": [ "image" ] }, "readOnlyMounts": { "type": "object", "properties": { "work": { "description": "Mount the work directory as readonly", "$ref": "#/definitions/boolean" }, "externals": { "description": "Mount the externals directory as readonly", "$ref": "#/definitions/boolean" }, "tools": { "description": "Mount the tools directory as readonly", "$ref": "#/definitions/boolean" }, "tasks": { "description": "Mount the tasks directory as readonly", "$ref": "#/definitions/boolean" } }, "additionalProperties": false }, "jobServices": { "type": "object", "additionalProperties": true }, "jobWorkspace": { "type": "object", "properties": { "clean": { "description": "Which parts of the workspace should be scorched before fetching", "enum": [ "outputs", "resources", "all" ], "$ref": "#/definitions/string" } }, "additionalProperties": false }, "jobStrategy": { "anyOf": [ { "type": "object", "properties": { "matrix": { "$ref": "#/definitions/jobMatrix" }, "maxParallel": { "description": "Maximum number of jobs running in parallel", "$ref": "#/definitions/nonEmptyString" } }, "additionalProperties": false }, { "type": "object", "properties": { "parallel": { "description": "Run the job this many times", "$ref": "#/definitions/nonEmptyString" } }, "additionalProperties": false } ] }, "jobMatrix": { "anyOf": [ { "type": "object", "additionalProperties": true, "minProperties": 1, "patternProperties": { "^[A-Za-z0-9_]+$": { "$ref": "#/definitions/matrixProperties" } } }, { "type": "string" } ] }, "matrixProperties": { "type": "object", "description": "Variable-value pair to pass in this matrix instance", "additionalProperties": true }, "deploymentEnvironment": { "description": "Environment details", "anyOf": [ { "type": "string" }, { "type": "object", "properties": { "name": { "description": "Name of environment", "$ref": "#/definitions/nonEmptyString" }, "resourceName": { "description": "Name of resource", "$ref": "#/definitions/nonEmptyString" }, "resourceId": { "description": "Id of resource", "$ref": "#/definitions/nonEmptyString" }, "resourceType": { "description": "Type of environment resource", "$ref": "#/definitions/nonEmptyString" }, "tags": { "description": "List of tag filters", "$ref": "#/definitions/nonEmptyString" } }, "additionalProperties": false } ] }, "deploymentStrategy": { "anyOf": [ { "type": "object", "properties": { "runOnce": { "description": "RunOnce Deployment strategy", "$ref": "#/definitions/runOnceDeploymentStrategy" } }, "additionalProperties": false }, { "type": "object", "properties": { "rolling": { "description": "Rolling Deployment strategy", "$ref": "#/definitions/rollingDeploymentStrategy" } }, "additionalProperties": false }, { "type": "object", "properties": { "canary": { "description": "Canary Deployment strategy", "$ref": "#/definitions/canaryDeploymentStrategy" } }, "additionalProperties": false } ] }, "preDeployHook": { "type": "object", "properties": { "steps": { "description": "A list of steps to run", "$ref": "#/definitions/steps" }, "pool": { "description": "Pool where pre deploy steps will run", "$ref": "#/definitions/pool" } }, "additionalProperties": false }, "deployHook": { "type": "object", "properties": { "steps": { "description": "A list of steps to run", "$ref": "#/definitions/steps" }, "pool": { "description": "Pool where deploy steps will run", "$ref": "#/definitions/pool" } }, "additionalProperties": false }, "routeTrafficHook": { "type": "object", "properties": { "steps": { "description": "A list of steps to run", "$ref": "#/definitions/steps" }, "pool": { "description": "Pool where route traffic steps will run", "$ref": "#/definitions/pool" } }, "additionalProperties": false }, "postRouteTrafficHook": { "type": "object", "properties": { "steps": { "description": "A list of steps to run", "$ref": "#/definitions/steps" }, "pool": { "description": "Pool where post route traffic steps will run", "$ref": "#/definitions/pool" } }, "additionalProperties": false }, "onSuccessOrFailureHook": { "type": "object", "properties": { "failure": { "description": "Runs on failure of any step", "$ref": "#/definitions/onFailureHook" }, "success": { "description": "Runs on success of all of the steps", "$ref": "#/definitions/onSuccessHook" } }, "additionalProperties": false }, "onFailureHook": { "type": "object", "properties": { "steps": { "description": "A list of steps to run", "$ref": "#/definitions/steps" }, "pool": { "description": "Pool where post on failure steps will run", "$ref": "#/definitions/pool" } }, "additionalProperties": false }, "onSuccessHook": { "type": "object", "properties": { "steps": { "description": "A list of steps to run", "$ref": "#/definitions/steps" }, "pool": { "description": "Pool where on success steps will run", "$ref": "#/definitions/pool" } }, "additionalProperties": false }, "runOnceDeploymentStrategy": { "type": "object", "properties": { "preDeploy": { "description": "Pre deploy hook for runOnce deployment strategy", "$ref": "#/definitions/preDeployHook" }, "deploy": { "description": "Deploy hook for runOnce deployment strategy", "$ref": "#/definitions/deployHook" }, "routeTraffic": { "description": "Route traffic hook for runOnce deployment strategy", "$ref": "#/definitions/routeTrafficHook" }, "postRouteTraffic": { "description": "Post route traffic hook for runOnce deployment strategy", "$ref": "#/definitions/postRouteTrafficHook" }, "on": { "description": "On success or failure hook for runOnce deployment strategy", "$ref": "#/definitions/onSuccessOrFailureHook" } }, "additionalProperties": false }, "rollingDeploymentStrategy": { "type": "object", "properties": { "maxParallel": { "description": "Maximum number of jobs running in parallel", "$ref": "#/definitions/nonEmptyString" }, "preDeploy": { "description": "Pre deploy hook for rolling deployment strategy", "$ref": "#/definitions/preDeployHook" }, "deploy": { "description": "Deploy hook for rolling deployment strategy", "$ref": "#/definitions/deployHook" }, "routeTraffic": { "description": "Route traffic hook for rolling deployment strategy", "$ref": "#/definitions/routeTrafficHook" }, "postRouteTraffic": { "description": "Post route traffic hook for rolling deployment strategy", "$ref": "#/definitions/postRouteTrafficHook" }, "on": { "description": "On success or failure hook for rolling deployment strategy", "$ref": "#/definitions/onSuccessOrFailureHook" } }, "additionalProperties": false }, "canaryDeploymentStrategy": { "type": "object", "properties": { "increments": { "description": "Maximum batch size for deployment", "$ref": "#/definitions/canaryDeploymentIncrements" }, "preDeploy": { "description": "Pre deploy hook for canary deployment strategy", "$ref": "#/definitions/preDeployHook" }, "deploy": { "description": "Deploy hook for canary deployment strategy", "$ref": "#/definitions/deployHook" }, "routeTraffic": { "description": "Route traffic hook for canary deployment strategy", "$ref": "#/definitions/routeTrafficHook" }, "postRouteTraffic": { "description": "Post route traffic hook for canary deployment strategy", "$ref": "#/definitions/postRouteTrafficHook" }, "on": { "description": "On success or failure hook for canary deployment strategy", "$ref": "#/definitions/onSuccessOrFailureHook" } }, "additionalProperties": false }, "canaryDeploymentIncrements": { "type": "array", "items": { "$ref": "#/definitions/nonEmptyString" } }, "phases": { "type": "array", "deprecationMessage": "This option is deprecated, use `jobs` instead", "items": { "$ref": "#/definitions/phase" } }, "phase": { "deprecationMessage": "This option is deprecated, use `job` (inside `jobs`) instead", "anyOf": [ { "type": "object", "properties": { "phase": { "description": "ID of the phase", "$ref": "#/definitions/referenceName" }, "dependsOn": { "description": "Any phases which must complete before this one", "$ref": "#/definitions/jobDependsOn" }, "displayName": { "description": "Human-readable name of the phase", "$ref": "#/definitions/string" }, "condition": { "description": "Evaluate this condition expression to determine whether to run this phase", "$ref": "#/definitions/string" }, "continueOnError": { "description": "Continue running even on failure?", "$ref": "#/definitions/jobContinueOnError" }, "queue": { "description": "Queue where this phase will run", "deprecationMessage": "This option is deprecated, use pool instead", "doNotSuggest": true, "$ref": "#/definitions/phaseQueueTarget" }, "variables": { "description": "Phase-specific variables", "$ref": "#/definitions/variables" }, "steps": { "description": "A list of steps to run in this phase", "$ref": "#/definitions/steps" } }, "additionalProperties": false, "firstProperty": [ "phase" ] }, { "type": "object", "properties": { "phase": { "description": "ID of the phase", "$ref": "#/definitions/referenceName" }, "dependsOn": { "description": "Any phases which must complete before this one", "$ref": "#/definitions/jobDependsOn" }, "displayName": { "description": "Human-readable name of the phase", "$ref": "#/definitions/string" }, "condition": { "description": "Evaluate this condition expression to determine whether to run this phase", "$ref": "#/definitions/string" }, "continueOnError": { "description": "Continue running even on failure?", "$ref": "#/definitions/jobContinueOnError" }, "server": { "description": "True if this is an agent-less phase (runs on server)", "deprecationMessage": "This option is deprecated, use pool:server instead", "doNotSuggest": true, "$ref": "#/definitions/phaseServerTarget" }, "variables": { "description": "Phase-specific variables", "$ref": "#/definitions/variables" }, "steps": { "description": "A list of steps to run in this phase", "$ref": "#/definitions/steps" } }, "additionalProperties": false, "firstProperty": [ "phase" ] }, { "type": "object", "properties": { "template": { "description": "Reference to a template for this phase", "$ref": "#/definitions/nonEmptyString" }, "parameters": { "description": "Parameters used in a phase template", "$ref": "#/definitions/mapping" } }, "additionalProperties": false, "firstProperty": [ "template" ] } ] }, "phaseQueueTarget": { "description": "Queue details", "deprecationMessage": "This option is deprecated, use `pool` under `jobs` instead", "anyOf": [ { "type": "string" }, { "type": "object", "properties": { "cancelTimeoutInMinutes": { "description": "Time to wait for the phase to cancel before forcibly terminating it", "$ref": "#/definitions/nonEmptyString" }, "container": { "description": "Container resource name", "$ref": "#/definitions/nonEmptyString" }, "demands": { "description": "List of demands (for a private queue)", "$ref": "#/definitions/phaseTargetDemands" }, "matrix": { "$ref": "#/definitions/phaseTargetMatrix" }, "name": { "description": "Name of a queue", "$ref": "#/definitions/string" }, "parallel": { "description": "Maximum number of parallel agent executions", "$ref": "#/definitions/nonEmptyString" }, "timeoutInMinutes": { "description": "Time to wait before cancelling the phase", "$ref": "#/definitions/nonEmptyString" }, "workspace": { "$ref": "#/definitions/phaseTargetWorkspace" } }, "additionalProperties": false } ] }, "phaseServerTarget": { "anyOf": [ { "type": "string" }, { "type": "object", "properties": { "cancelTimeoutInMinutes": { "description": "Time to wait for the job to cancel before forcibly terminating it", "$ref": "#/definitions/nonEmptyString" }, "matrix": { "$ref": "#/definitions/phaseTargetMatrix" }, "parallel": { "description": "Maximum number of parallel agent executions", "$ref": "#/definitions/nonEmptyString" }, "timeoutInMinutes": { "description": "Time to wait before cancelling the job", "$ref": "#/definitions/nonEmptyString" } }, "additionalProperties": false } ] }, "phaseTargetDemands": { "anyOf": [ { "type": "string" }, { "type": "array", "items": { "$ref": "#/definitions/nonEmptyString" } } ] }, "phaseTargetWorkspace": { "type": "object", "properties": { "clean": { "description": "Scorch the repo before fetching?", "enum": [ "outputs", "resources", "all" ], "$ref": "#/definitions/string" } }, "additionalProperties": false }, "phaseTargetMatrix": { "description": "List of permutations of variable values to run", "anyOf": [ { "type": "object", "additionalProperties": true }, { "type": "string" } ], "minProperties": 1, "patternProperties": { "^[A-Za-z0-9_]+$": { "$ref": "#/definitions/matrixProperties" } } }, "stepsTemplate": { "type": "object", "properties": { "parameters": { "description": "Step-specific parameters", "$ref": "#/definitions/templateParameters" }, "steps": { "description": "A list of steps to run", "$ref": "#/definitions/steps" } }, "additionalProperties": false }, "steps": { "type": "array", "items": { "$ref": "#/definitions/step" } }, "step": { "anyOf": [ { "type": "object", "$ref": "#/definitions/task" }, { "type": "object", "properties": { "script": { "description": "An inline script", "$ref": "#/definitions/string" }, "failOnStderr": { "description": "Fail the task if output is sent to Stderr?", "$ref": "#/definitions/string" }, "workingDirectory": { "description": "Start the script with this working directory", "$ref": "#/definitions/string" }, "condition": { "description": "Evaluate this condition expression to determine whether to run this task", "$ref": "#/definitions/string" }, "continueOnError": { "description": "Continue running even on failure?", "$ref": "#/definitions/boolean" }, "displayName": { "description": "Human-readable name for the task", "$ref": "#/definitions/string" }, "target": { "description": "Environment in which to run this task", "$ref": "#/definitions/stepTarget" }, "enabled": { "description": "Run this task when the job runs?", "$ref": "#/definitions/boolean" }, "env": { "description": "Variables to map into the process's environment", "$ref": "#/definitions/mappingOfStringString" }, "name": { "description": "ID of the step", "$ref": "#/definitions/referenceName" }, "timeoutInMinutes": { "description": "Time to wait for this task to complete before the server kills it", "$ref": "#/definitions/nonEmptyString" }, "retryCountOnTaskFailure": { "description": "Number of retries if the task fails", "$ref": "#/definitions/string" } }, "additionalProperties": false, "firstProperty": [ "script" ], "required": [ "script" ] }, { "type": "object", "properties": { "powershell": { "description": "Inline PowerShell or reference to a PowerShell file", "$ref": "#/definitions/string" }, "errorActionPreference": { "$ref": "#/definitions/string" }, "failOnStderr": { "description": "Fail the task if output is sent to Stderr?", "$ref": "#/definitions/string" }, "ignoreLASTEXITCODE": { "description": "Check the final exit code of the script to determine whether the step succeeded?", "$ref": "#/definitions/string" }, "workingDirectory": { "description": "Start the script with this working directory", "$ref": "#/definitions/string" }, "condition": { "description": "Evaluate this condition expression to determine whether to run this task", "$ref": "#/definitions/string" }, "continueOnError": { "description": "Continue running even on failure?", "$ref": "#/definitions/boolean" }, "displayName": { "description": "Human-readable name for the task", "$ref": "#/definitions/string" }, "target": { "description": "Environment in which to run this task", "$ref": "#/definitions/stepTarget" }, "enabled": { "description": "Run this task when the job runs?", "$ref": "#/definitions/boolean" }, "env": { "description": "Variables to map into the process's environment", "$ref": "#/definitions/mappingOfStringString" }, "name": { "description": "ID of the step", "$ref": "#/definitions/referenceName" }, "timeoutInMinutes": { "description": "Time to wait for this task to complete before the server kills it", "$ref": "#/definitions/nonEmptyString" }, "retryCountOnTaskFailure": { "description": "Number of retries if the task fails", "$ref": "#/definitions/string" } }, "additionalProperties": false, "firstProperty": [ "powershell" ], "required": [ "powershell" ] }, { "type": "object", "properties": { "pwsh": { "description": "Inline PowerShell or reference to a PowerShell file", "$ref": "#/definitions/string" }, "errorActionPreference": { "$ref": "#/definitions/string" }, "failOnStderr": { "description": "Fail the task if output is sent to Stderr?", "$ref": "#/definitions/string" }, "ignoreLASTEXITCODE": { "description": "Check the final exit code of the script to determine whether the step succeeded?", "$ref": "#/definitions/string" }, "workingDirectory": { "description": "Start the script with this working directory", "$ref": "#/definitions/string" }, "condition": { "description": "Evaluate this condition expression to determine whether to run this task", "$ref": "#/definitions/string" }, "continueOnError": { "description": "Continue running even on failure?", "$ref": "#/definitions/boolean" }, "displayName": { "description": "Human-readable name for the task", "$ref": "#/definitions/string" }, "target": { "description": "Environment in which to run this task", "$ref": "#/definitions/stepTarget" }, "enabled": { "description": "Run this task when the job runs?", "$ref": "#/definitions/boolean" }, "env": { "description": "Variables to map into the process's environment", "$ref": "#/definitions/mappingOfStringString" }, "name": { "description": "ID of the step", "$ref": "#/definitions/referenceName" }, "timeoutInMinutes": { "description": "Time to wait for this task to complete before the server kills it", "$ref": "#/definitions/nonEmptyString" }, "retryCountOnTaskFailure": { "description": "Number of retries if the task fails", "$ref": "#/definitions/string" } }, "additionalProperties": false, "firstProperty": [ "pwsh" ], "required": [ "pwsh" ] }, { "type": "object", "properties": { "bash": { "description": "An inline script", "$ref": "#/definitions/string" }, "failOnStderr": { "description": "Fail the task if output is sent to Stderr?", "$ref": "#/definitions/string" }, "workingDirectory": { "description": "Start the script with this working directory", "$ref": "#/definitions/string" }, "condition": { "description": "Evaluate this condition expression to determine whether to run this task", "$ref": "#/definitions/string" }, "continueOnError": { "description": "Continue running even on failure?", "$ref": "#/definitions/boolean" }, "displayName": { "description": "Human-readable name for the task", "$ref": "#/definitions/string" }, "target": { "description": "Environment in which to run this task", "$ref": "#/definitions/stepTarget" }, "enabled": { "description": "Run this task when the job runs?", "$ref": "#/definitions/boolean" }, "env": { "description": "Variables to map into the process's environment", "$ref": "#/definitions/mappingOfStringString" }, "name": { "description": "ID of the step", "$ref": "#/definitions/referenceName" }, "timeoutInMinutes": { "description": "Time to wait for this task to complete before the server kills it", "$ref": "#/definitions/nonEmptyString" }, "retryCountOnTaskFailure": { "description": "Number of retries if the task fails", "$ref": "#/definitions/string" } }, "additionalProperties": false, "firstProperty": [ "bash" ], "required": [ "bash" ] }, { "type": "object", "properties": { "checkout": { "description": "Alias of the repository resource to check out or 'none'", "$ref": "#/definitions/string" }, "clean": { "description": "Scorch the repo before fetching?", "enum": [ "true", "false" ], "$ref": "#/definitions/string" }, "fetchDepth": { "description": "Depth of Git graph to fetch", "$ref": "#/definitions/string" }, "fetchTags": { "description": "Fetch tags?", "$ref": "#/definitions/string" }, "lfs": { "description": "Fetch Git-LFS objects?", "$ref": "#/definitions/string" }, "persistCredentials": { "description": "Keep credentials available for later use?", "$ref": "#/definitions/string" }, "submodules": { "description": "Check out Git submodules?", "$ref": "#/definitions/string" }, "path": { "description": "Path of the repository to check out", "$ref": "#/definitions/string" }, "condition": { "description": "Evaluate this condition expression to determine whether to run this task", "$ref": "#/definitions/string" }, "continueOnError": { "description": "Continue running even on failure?", "$ref": "#/definitions/boolean" }, "displayName": { "description": "Human-readable name for the task", "$ref": "#/definitions/string" }, "target": { "description": "Environment in which to run this task", "$ref": "#/definitions/stepTarget" }, "enabled": { "description": "Run this task when the job runs?", "$ref": "#/definitions/boolean" }, "env": { "description": "Variables to map into the process's environment", "$ref": "#/definitions/mappingOfStringString" }, "name": { "description": "ID of the step", "$ref": "#/definitions/referenceName" }, "timeoutInMinutes": { "description": "Time to wait for this task to complete before the server kills it", "$ref": "#/definitions/nonEmptyString" }, "retryCountOnTaskFailure": { "description": "Number of retries if the task fails", "$ref": "#/definitions/string" } }, "additionalProperties": false, "firstProperty": [ "checkout" ] }, { "type": "object", "properties": { "download": { "description": "Reference to the pipeline", "$ref": "#/definitions/nonEmptyString" }, "artifact": { "description": "Name of the artifact to download", "$ref": "#/definitions/nonEmptyString" }, "patterns": { "description": "Pattern to download files from artifact", "$ref": "#/definitions/nonEmptyString" }, "condition": { "description": "Evaluate this condition expression to determine whether to run this task", "$ref": "#/definitions/string" }, "continueOnError": { "description": "Continue running even on failure?", "$ref": "#/definitions/boolean" }, "displayName": { "description": "Human-readable name for the task", "$ref": "#/definitions/string" }, "target": { "description": "Environment in which to run this task", "$ref": "#/definitions/stepTarget" }, "enabled": { "description": "Run this task when the job runs?", "$ref": "#/definitions/boolean" }, "env": { "description": "Variables to map into the process's environment", "$ref": "#/definitions/mappingOfStringString" }, "name": { "description": "ID of the step", "$ref": "#/definitions/referenceName" }, "timeoutInMinutes": { "description": "Time to wait for this task to complete before the server kills it", "$ref": "#/definitions/nonEmptyString" }, "retryCountOnTaskFailure": { "description": "Number of retries if the task fails", "$ref": "#/definitions/string" } }, "additionalProperties": false, "firstProperty": [ "download" ], "required": [ "download" ] }, { "type": "object", "properties": { "downloadBuild": { "description": "ID for the build resource", "$ref": "#/definitions/nonEmptyString" }, "artifact": { "description": "Name of the artifact to download", "$ref": "#/definitions/string" }, "path": { "description": "Path to download the artifact into", "$ref": "#/definitions/string" }, "patterns": { "description": "Downloads the files which matches the patterns", "$ref": "#/definitions/string" }, "condition": { "description": "Evaluate this condition expression to determine whether to run this task", "$ref": "#/definitions/string" }, "continueOnError": { "description": "Continue running even on failure?", "$ref": "#/definitions/boolean" }, "displayName": { "description": "Human-readable name for the task", "$ref": "#/definitions/string" }, "target": { "description": "Environment in which to run this task", "$ref": "#/definitions/stepTarget" }, "enabled": { "description": "Run this task when the job runs?", "$ref": "#/definitions/boolean" }, "env": { "description": "Variables to map into the process's environment", "$ref": "#/definitions/mappingOfStringString" }, "name": { "description": "ID of the step", "$ref": "#/definitions/referenceName" }, "timeoutInMinutes": { "description": "Time to wait for this task to complete before the server kills it", "$ref": "#/definitions/nonEmptyString" }, "retryCountOnTaskFailure": { "description": "Number of retries if the task fails", "$ref": "#/definitions/string" } }, "additionalProperties": false, "firstProperty": [ "downloadBuild" ] }, { "type": "object", "properties": { "getPackage": { "description": "ID for the package resource", "$ref": "#/definitions/nonEmptyString" }, "path": { "description": "Path to download the package into", "$ref": "#/definitions/string" }, "condition": { "description": "Evaluate this condition expression to determine whether to run this task", "$ref": "#/definitions/string" }, "continueOnError": { "description": "Continue running even on failure?", "$ref": "#/definitions/boolean" }, "displayName": { "description": "Human-readable name for the task", "$ref": "#/definitions/string" }, "target": { "description": "Environment in which to run this task", "$ref": "#/definitions/stepTarget" }, "enabled": { "description": "Run this task when the job runs?", "$ref": "#/definitions/boolean" }, "env": { "description": "Variables to map into the process's environment", "$ref": "#/definitions/mappingOfStringString" }, "name": { "description": "ID of the step", "$ref": "#/definitions/referenceName" }, "timeoutInMinutes": { "description": "Time to wait for this task to complete before the server kills it", "$ref": "#/definitions/nonEmptyString" }, "retryCountOnTaskFailure": { "description": "Number of retries if the task fails", "$ref": "#/definitions/string" } }, "additionalProperties": false, "firstProperty": [ "getPackage" ] }, { "type": "object", "properties": { "upload": { "deprecationMessage": "This option is deprecated, use `publish` instead", "doNotSuggest": true, "$ref": "#/definitions/string" }, "artifact": { "$ref": "#/definitions/string" }, "condition": { "description": "Evaluate this condition expression to determine whether to run this task", "$ref": "#/definitions/string" }, "continueOnError": { "description": "Continue running even on failure?", "$ref": "#/definitions/boolean" }, "displayName": { "description": "Human-readable name for the task", "$ref": "#/definitions/string" }, "target": { "description": "Environment in which to run this task", "$ref": "#/definitions/stepTarget" }, "enabled": { "description": "Run this task when the job runs?", "$ref": "#/definitions/boolean" }, "env": { "description": "Variables to map into the process's environment", "$ref": "#/definitions/mappingOfStringString" }, "name": { "description": "ID of the step", "$ref": "#/definitions/referenceName" }, "timeoutInMinutes": { "description": "Time to wait for this task to complete before the server kills it", "$ref": "#/definitions/nonEmptyString" }, "retryCountOnTaskFailure": { "description": "Number of retries if the task fails", "$ref": "#/definitions/string" } }, "additionalProperties": false, "firstProperty": [ "upload" ] }, { "type": "object", "properties": { "publish": { "$ref": "#/definitions/string" }, "artifact": { "$ref": "#/definitions/string" }, "condition": { "description": "Evaluate this condition expression to determine whether to run this task", "$ref": "#/definitions/string" }, "continueOnError": { "description": "Continue running even on failure?", "$ref": "#/definitions/boolean" }, "displayName": { "description": "Human-readable name for the task", "$ref": "#/definitions/string" }, "target": { "description": "Environment in which to run this task", "$ref": "#/definitions/stepTarget" }, "enabled": { "description": "Run this task when the job runs?", "$ref": "#/definitions/boolean" }, "env": { "description": "Variables to map into the process's environment", "$ref": "#/definitions/mappingOfStringString" }, "name": { "description": "ID of the step", "$ref": "#/definitions/referenceName" }, "timeoutInMinutes": { "description": "Time to wait for this task to complete before the server kills it", "$ref": "#/definitions/nonEmptyString" }, "retryCountOnTaskFailure": { "description": "Number of retries if the task fails", "$ref": "#/definitions/string" } }, "additionalProperties": false, "firstProperty": [ "publish" ] }, { "type": "object", "properties": { "template": { "description": "Reference to a template for this step", "$ref": "#/definitions/nonEmptyString" }, "parameters": { "description": "Parameters used in a step template", "$ref": "#/definitions/mapping" } }, "additionalProperties": false, "firstProperty": [ "template" ] }, { "type": "object", "properties": { "reviewApp": { "$ref": "#/definitions/string" }, "condition": { "description": "Evaluate this condition expression to determine whether to run this task", "$ref": "#/definitions/string" }, "continueOnError": { "description": "Continue running even on failure?", "$ref": "#/definitions/boolean" }, "displayName": { "description": "Human-readable name for the task", "$ref": "#/definitions/string" }, "target": { "description": "Environment in which to run this task", "$ref": "#/definitions/stepTarget" }, "enabled": { "description": "Run this task when the job runs?", "$ref": "#/definitions/boolean" }, "env": { "description": "Variables to map into the process's environment", "$ref": "#/definitions/mappingOfStringString" }, "name": { "description": "ID of the step", "$ref": "#/definitions/referenceName" }, "timeoutInMinutes": { "description": "Time to wait for this task to complete before the server kills it", "$ref": "#/definitions/nonEmptyString" }, "retryCountOnTaskFailure": { "description": "Number of retries if the task fails", "$ref": "#/definitions/string" } }, "additionalProperties": false, "firstProperty": [ "reviewApp" ] } ] }, "stepTarget": { "description": "Step target", "anyOf": [ { "type": "string" }, { "type": "object", "properties": { "container": { "description": "Container to target (or 'host' for host machine)", "$ref": "#/definitions/nonEmptyString" }, "commands": { "description": "Set of allowed logging commands ('any' or 'restricted')", "enum": [ "any", "restricted" ], "$ref": "#/definitions/string" }, "settableVariables": { "description": "Restrictions on which variables that can be set", "$ref": "#/definitions/variableRestrictions" } }, "additionalProperties": false } ] }, "variableRestrictions": { "anyOf": [ { "type": "string", "ignoreCase": "value", "pattern": "^none$" }, { "type": "array", "items": { "$ref": "#/definitions/nonEmptyString" } } ] }, "jobDecoratorSteps": { "type": "object", "properties": { "steps": { "description": "A list of steps to run in this job", "$ref": "#/definitions/tasks" } }, "additionalProperties": false }, "tasks": { "type": "array", "items": { "$ref": "#/definitions/task" } }, "taskBase": { "type": "object", "properties": { "condition": { "description": "Evaluate this condition expression to determine whether to run this task", "$ref": "#/definitions/string" }, "continueOnError": { "description": "Continue running even on failure?", "$ref": "#/definitions/boolean" }, "displayName": { "description": "Human-readable name for the task", "$ref": "#/definitions/string" }, "target": { "description": "Environment in which to run this task", "$ref": "#/definitions/stepTarget" }, "enabled": { "description": "Run this task when the job runs?", "$ref": "#/definitions/boolean" }, "env": { "description": "Variables to map into the process's environment", "$ref": "#/definitions/mappingOfStringString" }, "name": { "description": "ID of the step", "$ref": "#/definitions/referenceName" }, "timeoutInMinutes": { "description": "Time to wait for this task to complete before the server kills it", "$ref": "#/definitions/nonEmptyString" }, "retryCountOnTaskFailure": { "description": "Number of retries if the task fails", "$ref": "#/definitions/string" } }, "additionalProperties": false }, "jobContinueOnError": { "type": "string" }, "jobDependsOn": { "anyOf": [ { "type": "string" }, { "type": "array", "items": { "$ref": "#/definitions/string" } } ] }, "referenceName": { "type": "string", "pattern": "^[-_A-Za-z0-9]*$" }, "templateContext": { "type": "object", "additionalProperties": true }, "boolean": { "anyOf": [ { "type": "string", "ignoreCase": "value", "pattern": "^true$" }, { "type": "string", "ignoreCase": "value", "pattern": "^y$" }, { "type": "string", "ignoreCase": "value", "pattern": "^yes$" }, { "type": "string", "ignoreCase": "value", "pattern": "^on$" }, { "type": "string", "ignoreCase": "value", "pattern": "^false$" }, { "type": "string", "ignoreCase": "value", "pattern": "^n$" }, { "type": "string", "ignoreCase": "value", "pattern": "^no$" }, { "type": "string", "ignoreCase": "value", "pattern": "^off$" } ] }, "string_allowExpressions": { "type": "string" }, "nonEmptyString": { "type": "string" }, "sequenceOfNonEmptyString": { "type": "array", "items": { "$ref": "#/definitions/nonEmptyString" } }, "sequenceOfString_allowExpressions": { "type": "array", "items": { "$ref": "#/definitions/string_allowExpressions" } }, "mappingOfStringString": { "type": "object", "additionalProperties": true }, "any_allowExpressions": { "anyOf": [ { "type": "string" }, { "type": "array", "items": { "$ref": "#/definitions/any" } }, { "type": "object", "additionalProperties": true } ] }, "task": { "type": "object", "properties": { "task": { "anyOf": [ { "description": "Run a PowerShell script", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "PowerShell@1" ] }, { "description": "Run a PowerShell script on Linux, macOS, or Windows", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "PowerShell@2" ] }, { "description": "Run a PowerShell script within an Azure environment", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "AzurePowerShell@4" ] }, { "description": "Run a PowerShell script within an Azure environment", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "AzurePowerShell@2" ] }, { "description": "Run a PowerShell script within an Azure environment", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "AzurePowerShell@5" ] }, { "description": "Run a PowerShell script within an Azure environment", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "AzurePowerShell@3" ] }, { "description": "Run a PowerShell script within an Azure environment", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "AzurePowerShell@1" ] }, { "description": "Run scripts and make changes to a MySQL Database", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "MysqlDeploymentOnMachineGroup@1" ] }, { "description": "Authentication task for the pip client used for installing Python distributions", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "PipAuthenticate@1" ] }, { "description": "Authentication task for the pip client used for installing Python distributions", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "PipAuthenticate@0" ] }, { "description": "Build, test, and deploy with Apache Maven", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "Maven@4" ] }, { "description": "Build, test, and deploy with Apache Maven", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "Maven@3" ] }, { "description": "Build, test, and deploy with Apache Maven", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "Maven@2" ] }, { "description": "Build with Apache Maven", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "Maven@1" ] }, { "description": "Build, test and publish using dotnet core command-line.", "deprecationMessage": "DotNetCoreCLI is deprecated - Build, test and publish using dotnet core command-line.", "doNotSuggest": true, "ignoreCase": "value", "enum": [ "DotNetCoreCLI@0" ] }, { "description": "Build, test, package, or publish a dotnet application, or run a custom dotnet command", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "DotNetCoreCLI@2" ] }, { "description": "Build, test and publish using dotnet core command-line.", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "DotNetCoreCLI@1" ] }, { "description": "This task is deprecated. Use 'NuGet' instead.", "deprecationMessage": "XamarinComponentRestore is deprecated - This task is deprecated. Use 'NuGet' instead.", "doNotSuggest": true, "ignoreCase": "value", "enum": [ "XamarinComponentRestore@0" ] }, { "description": "Deploy to Azure App Service a web, mobile, or API app using Docker, Java, .NET, .NET Core, Node.js, PHP, Python, or Ruby", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "AzureRmWebAppDeployment@4" ] }, { "description": "Update Azure App Service using Web Deploy / Kudu REST APIs", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "AzureRmWebAppDeployment@2" ] }, { "description": "Deploy to Azure App Service a web, mobile, or API app using Docker, Java, .NET, .NET Core, Node.js, PHP, Python, or Ruby", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "AzureRmWebAppDeployment@3" ] }, { "description": "Execute PowerShell scripts on remote machines using PSSession and Invoke-Command for remoting", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "PowerShellOnTargetMachines@3" ] }, { "description": "Execute PowerShell scripts on remote machine(s)", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "PowerShellOnTargetMachines@1" ] }, { "description": "Execute PowerShell scripts on remote machine(s)", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "PowerShellOnTargetMachines@2" ] }, { "description": "Publish any of the code coverage results from a build", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "PublishCodeCoverageResults@2" ] }, { "description": "Publish Cobertura or JaCoCo code coverage results from a build", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "PublishCodeCoverageResults@1" ] }, { "description": "Deprecated: This task and it’s companion task (Visual Studio Test Agent Deployment) are deprecated. Use the 'Visual Studio Test' task instead. The VSTest task can run unit as well as functional tests. Run tests on one or more agents using the multi-agent job setting. Use the 'Visual Studio Test Platform' task to run tests without needing Visual Studio on the agent. VSTest task also brings new capabilities such as automatically rerunning failed tests.", "deprecationMessage": "RunVisualStudioTestsusingTestAgent is deprecated - Deprecated: This task and it’s companion task (Visual Studio Test Agent Deployment) are deprecated. Use the 'Visual Studio Test' task instead. The VSTest task can run unit as well as functional tests. Run tests on one or more agents using the multi-agent job setting. Use the 'Visual Studio Test Platform' task to run tests without needing Visual Studio on the agent. VSTest task also brings new capabilities such as automatically rerunning failed tests.", "doNotSuggest": true, "ignoreCase": "value", "enum": [ "RunVisualStudioTestsusingTestAgent@1" ] }, { "description": "Pause deployment and wait for manual intervention", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "ManualIntervention@8" ] }, { "description": "Install an Apple provisioning profile required to build on a macOS agent", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "InstallAppleProvisioningProfile@0" ] }, { "description": "Install an Apple provisioning profile required to build on a macOS agent machine", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "InstallAppleProvisioningProfile@1" ] }, { "description": "[DEPRECATED] Finish the analysis and upload the results to SonarQube", "deprecationMessage": "SonarQubePostTest is deprecated - [DEPRECATED] Finish the analysis and upload the results to SonarQube", "doNotSuggest": true, "ignoreCase": "value", "enum": [ "SonarQubePostTest@1" ] }, { "description": "Create and upload an sdist or wheel to a PyPI-compatible index using Twine", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "PyPIPublisher@0" ] }, { "description": "Run scripts with Knife commands on your Chef workstation", "deprecationMessage": "ChefKnife is deprecated - Run scripts with Knife commands on your Chef workstation", "doNotSuggest": true, "ignoreCase": "value", "enum": [ "ChefKnife@1" ] }, { "description": "Find in cache or download a specific version of Go and add it to the PATH", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "GoTool@0" ] }, { "description": "Generate an .ipa file from Xcode build output using xcrun (Xcode 7 or below)", "deprecationMessage": "XcodePackageiOS is deprecated - Generate an .ipa file from Xcode build output using xcrun (Xcode 7 or below)", "doNotSuggest": true, "ignoreCase": "value", "enum": [ "XcodePackageiOS@0" ] }, { "description": "Get, build, or test a Go application, or run a custom Go command", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "Go@0" ] }, { "description": "Publish Pipeline Metadata to Evidence store", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "PublishPipelineMetadata@0" ] }, { "description": "Build, tag, push, or run Docker images, or run a Docker command", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "Docker@0" ] }, { "description": "Build, tag, push, or run Docker images, or run a Docker command", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "Docker@1" ] }, { "description": "Build or push Docker images, login or logout, start or stop containers, or run a Docker command", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "Docker@2" ] }, { "description": "Queue a job on a Jenkins server", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "JenkinsQueueJob@1" ] }, { "description": "Queue a job on a Jenkins server", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "JenkinsQueueJob@2" ] }, { "description": "Upload files using FTP", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "FtpUpload@2" ] }, { "description": "Upload files using FTP", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "FtpUpload@1" ] }, { "description": "Copy files to remote Windows machines", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "WindowsMachineFileCopy@1" ] }, { "description": "Copy files to remote Windows machines", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "WindowsMachineFileCopy@2" ] }, { "description": "[Deprecated] Use Gradle", "deprecationMessage": "AndroidBuild is deprecated - [Deprecated] Use Gradle", "doNotSuggest": true, "ignoreCase": "value", "enum": [ "AndroidBuild@1" ] }, { "description": "Authenticate for uploading Python distributions using twine. Add '-r FeedName/EndpointName --config-file $(PYPIRC_PATH)' to your twine upload command. For feeds present in this organization, use the feed name as the repository (-r). Otherwise, use the endpoint name defined in the service connection.", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "TwineAuthenticate@0" ] }, { "description": "Authenticate for uploading Python distributions using twine. Add '-r FeedName/EndpointName --config-file $(PYPIRC_PATH)' to your twine upload command. For feeds present in this organization, use the feed name as the repository (-r). Otherwise, use the endpoint name defined in the service connection.", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "TwineAuthenticate@1" ] }, { "description": "Deploy a website or web application using Web Deploy", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "IISWebAppDeploymentOnMachineGroup@0" ] }, { "description": "Run a Python file or inline script", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "PythonScript@0" ] }, { "description": "Install Helm and Kubernetes on an agent machine", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "HelmInstaller@0" ] }, { "description": "Install Helm on an agent machine", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "HelmInstaller@1" ] }, { "description": "Install specific Node.js version to run node tasks", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "NodeTaskRunnerInstaller@0" ] }, { "description": "[Deprecated] Upgrade to free version of Xamarin: https://store.xamarin.com", "deprecationMessage": "XamarinLicense is deprecated - [Deprecated] Upgrade to free version of Xamarin: https://store.xamarin.com", "doNotSuggest": true, "ignoreCase": "value", "enum": [ "XamarinLicense@1" ] }, { "description": "This version of the task is deprecated, use NuGetAuthenticateV1 instead. Configure NuGet tools to authenticate with Azure Artifacts and other NuGet repositories. Requires NuGet >= 4.8.5385, dotnet >= 2.1.400, or MSBuild >= 15.8.166.59604.", "deprecationMessage": "NuGetAuthenticate is deprecated - This version of the task is deprecated, use NuGetAuthenticateV1 instead. Configure NuGet tools to authenticate with Azure Artifacts and other NuGet repositories. Requires NuGet >= 4.8.5385, dotnet >= 2.1.400, or MSBuild >= 15.8.166.59604.", "doNotSuggest": true, "ignoreCase": "value", "enum": [ "NuGetAuthenticate@0" ] }, { "description": "Configure NuGet tools to authenticate with Azure Artifacts and other NuGet repositories. Requires NuGet >= 4.8.5385, dotnet >= 6, or MSBuild >= 15.8.166.59604", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "NuGetAuthenticate@1" ] }, { "description": "Restore your nuget packages using dotnet CLI", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "DownloadGitHubNugetPackage@1" ] }, { "description": "Provides credentials for Azure Artifacts feeds and external maven repositories", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "MavenAuthenticate@0" ] }, { "description": "Use this task under deploy phase provider to create a resource dynamically", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "ReviewApp@0" ] }, { "description": "Acquire a specific version of Java from a user-supplied Azure blob or the tool cache and sets JAVA_HOME", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "JavaToolInstaller@0" ] }, { "description": "Deploy to Chef environments by editing environment attributes", "deprecationMessage": "Chef is deprecated - Deploy to Chef environments by editing environment attributes", "doNotSuggest": true, "ignoreCase": "value", "enum": [ "Chef@1" ] }, { "description": "Update a function app with .NET, Python, JavaScript, PowerShell, Java based web applications", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "AzureFunctionApp@2" ] }, { "description": "Update a function app with .NET, Python, JavaScript, PowerShell, Java based web applications", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "AzureFunctionApp@1" ] }, { "description": "Don't use this task if you're also using the npm task. Provides npm credentials to an .npmrc file in your repository for the scope of the build. This enables npm task runners like gulp and Grunt to authenticate with private registries.", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "npmAuthenticate@0" ] }, { "description": "Build with MSBuild", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "MSBuild@1" ] }, { "description": "Build a machine image using Packer, which may be used for Azure Virtual machine scale set deployment", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "PackerBuild@0" ] }, { "description": "Build a machine image using Packer, which may be used for Azure Virtual machine scale set deployment", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "PackerBuild@1" ] }, { "description": "Deprecated: use the “NuGet” task instead. It works with the new Tool Installer framework so you can easily use new versions of NuGet without waiting for a task update, provides better support for authenticated feeds outside this organization/collection, and uses NuGet 4 by default.", "deprecationMessage": "NuGetPackager is deprecated - Deprecated: use the “NuGet” task instead. It works with the new Tool Installer framework so you can easily use new versions of NuGet without waiting for a task update, provides better support for authenticated feeds outside this organization/collection, and uses NuGet 4 by default.", "doNotSuggest": true, "ignoreCase": "value", "enum": [ "NuGetPackager@0" ] }, { "description": "Install a specified version of Duffle for installing and managing CNAB bundles", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "DuffleInstaller@0" ] }, { "description": "Automatically updates the versions of a packaged Service Fabric application.", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "ServiceFabricUpdateAppVersions@1" ] }, { "description": "Automatically update portions of application and service manifests in a packaged Azure Service Fabric application", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "ServiceFabricUpdateManifests@2" ] }, { "description": "Observe the configured Azure Monitor rules for active alerts", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "AzureMonitor@1" ] }, { "description": "Observe the configured classic Azure Monitor rules for active alerts", "deprecationMessage": "AzureMonitor is deprecated - Observe the configured classic Azure Monitor rules for active alerts", "doNotSuggest": true, "ignoreCase": "value", "enum": [ "AzureMonitor@0" ] }, { "description": "Connect or disconnect an Azure virtual machine's network interface to a Load Balancer's back end address pool", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "AzureNLBManagement@1" ] }, { "description": "Run an Apache JMeter load test in the cloud", "deprecationMessage": "ApacheJMeterLoadTest is deprecated - Run an Apache JMeter load test in the cloud", "doNotSuggest": true, "ignoreCase": "value", "enum": [ "ApacheJMeterLoadTest@1" ] }, { "description": "Build, push or run multi-container Docker applications. Task can be used with Docker or Azure Container registry.", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "DockerCompose@0" ] }, { "description": "Configure alerts on available metrics for an Azure resource (Deprecated)", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "AzureMonitorAlerts@0" ] }, { "description": "[Deprecated] Test mobile apps with Xamarin Test Cloud using Xamarin.UITest. Instead, use the 'App Center test' task.", "deprecationMessage": "XamarinTestCloud is deprecated - [Deprecated] Test mobile apps with Xamarin Test Cloud using Xamarin.UITest. Instead, use the 'App Center test' task.", "doNotSuggest": true, "ignoreCase": "value", "enum": [ "XamarinTestCloud@1" ] }, { "description": "Deploy an Azure Service Fabric application to a cluster", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "ServiceFabricDeploy@1" ] }, { "description": "Build, test, or archive an Xcode workspace on macOS. Optionally package an app.", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "Xcode@5" ] }, { "description": "Build an Xcode workspace on macOS", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "Xcode@3" ] }, { "description": "Build, test, or archive an Xcode workspace on macOS. Optionally package an app.", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "Xcode@4" ] }, { "description": "Build an Xcode workspace on Mac OS", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "Xcode@2" ] }, { "description": "Deprecated: use the “NuGet” task instead. It works with the new Tool Installer framework so you can easily use new versions of NuGet without waiting for a task update, provides better support for authenticated feeds outside this organization/collection, and uses NuGet 4 by default.", "deprecationMessage": "NuGetPublisher is deprecated - Deprecated: use the “NuGet” task instead. It works with the new Tool Installer framework so you can easily use new versions of NuGet without waiting for a task update, provides better support for authenticated feeds outside this organization/collection, and uses NuGet 4 by default.", "doNotSuggest": true, "ignoreCase": "value", "enum": [ "NuGetPublisher@0" ] }, { "description": "Execute a work item query and check the number of items returned", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "queryWorkItems@0" ] }, { "description": "Deploy containers to Azure App Service", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "AzureWebAppContainer@1" ] }, { "description": "Deploy a SQL Server database using DACPAC or SQL scripts", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "SqlDacpacDeploymentOnMachineGroup@0" ] }, { "description": "Cache files between runs", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "CacheBeta@1" ] }, { "description": "Cache files between runs", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "Cache@2" ] }, { "description": "Cache files between runs", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "CacheBeta@0" ] }, { "description": "Build with the CMake cross-platform build system", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "CMake@1" ] }, { "description": "Test mobile app packages with Visual Studio Mobile Center.", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "VSMobileCenterTest@0" ] }, { "description": "Test app packages with Visual Studio App Center", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "AppCenterTest@1" ] }, { "description": "Download a secure file to the agent machine", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "DownloadSecureFile@1" ] }, { "description": "An Azure DevOps Task to build and deploy Azure Container Apps.", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "AzureContainerApps@0" ] }, { "description": "Use the specified version of Ruby from the tool cache, optionally adding it to the PATH", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "UseRubyVersion@0" ] }, { "description": "Run the Grunt JavaScript task runner", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "Grunt@0" ] }, { "description": "Deploy an Azure SQL Database using DACPAC or run scripts using SQLCMD", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "SqlAzureDacpacDeployment@1" ] }, { "description": "Uses container-structure-test (https://github.com/GoogleContainerTools/container-structure-test) to validate the structure of an image based on four categories of tests - command tests, file existence tests, file content tests and metadata tests", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "ContainerStructureTest@0" ] }, { "description": "Deploy using MSDeploy, then create/update websites and app pools", "deprecationMessage": "IISWebAppDeployment is deprecated - Deploy using MSDeploy, then create/update websites and app pools", "doNotSuggest": true, "ignoreCase": "value", "enum": [ "IISWebAppDeployment@1" ] }, { "description": "Run a load test in the cloud with Azure Pipelines", "deprecationMessage": "CloudLoadTest is deprecated - Run a load test in the cloud with Azure Pipelines", "doNotSuggest": true, "ignoreCase": "value", "enum": [ "CloudLoadTest@1" ] }, { "description": "Install Kubectl on agent machine", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "KubectlInstaller@0" ] }, { "description": "Run a command line with arguments", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "CmdLine@1" ] }, { "description": "Run a command line script using Bash on Linux and macOS and cmd.exe on Windows", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "CmdLine@2" ] }, { "description": "Deprecated: use the “NuGet” task instead. It works with the new Tool Installer framework so you can easily use new versions of NuGet without waiting for a task update, provides better support for authenticated feeds outside this organization/collection, and uses NuGet 4 by default.", "deprecationMessage": "NuGet is deprecated - Deprecated: use the “NuGet” task instead. It works with the new Tool Installer framework so you can easily use new versions of NuGet without waiting for a task update, provides better support for authenticated feeds outside this organization/collection, and uses NuGet 4 by default.", "doNotSuggest": true, "ignoreCase": "value", "enum": [ "NuGet@0" ] }, { "description": "Container Build Task", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "ContainerBuild@0" ] }, { "description": "Restore, pack, or push NuGet packages, or run a NuGet command. Supports NuGet.org and authenticated feeds like Azure Artifacts and MyGet. Uses NuGet.exe and works with .NET Framework apps. For .NET Core and .NET Standard apps, use the .NET Core task.", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "NuGetCommand@2" ] }, { "description": "Installs or restores missing NuGet packages. Use NuGetAuthenticate@0 task for latest capabilities.", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "NuGetInstaller@0" ] }, { "description": "Restores NuGet packages in preparation for a Visual Studio Build step.", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "NuGetRestore@1" ] }, { "description": "Delay further execution of a workflow by a fixed time", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "Delay@1" ] }, { "description": "Build an iOS app with Xamarin on macOS", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "XamariniOS@2" ] }, { "description": "Build an iOS app with Xamarin on macOS", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "XamariniOS@1" ] }, { "description": "Publish test results to Azure Pipelines", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "PublishTestResults@1" ] }, { "description": "Publish test results to Azure Pipelines", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "PublishTestResults@2" ] }, { "description": "Copy files to Azure Blob Storage or virtual machines", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "AzureFileCopy@1" ] }, { "description": "Copy files to Azure Blob Storage or virtual machines", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "AzureFileCopy@4" ] }, { "description": "Copy files to Azure Blob Storage or virtual machines", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "AzureFileCopy@5" ] }, { "description": "Copy files to Azure Blob Storage or virtual machines", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "AzureFileCopy@2" ] }, { "description": "Copy files to Azure Blob Storage or virtual machines", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "AzureFileCopy@3" ] }, { "description": "Index your source code and publish symbols to a file share or Azure Artifacts symbol server", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "PublishSymbols@2" ] }, { "description": "Index your source code and publish symbols to a file share", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "PublishSymbols@1" ] }, { "description": "Copy files or build artifacts to a remote machine over SSH", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "CopyFilesOverSSH@0" ] }, { "description": "Build using a Gradle wrapper script", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "Gradle@2" ] }, { "description": "Build using a Gradle wrapper script", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "Gradle@3" ] }, { "description": "Build using a Gradle wrapper script", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "Gradle@1" ] }, { "description": "Distribute app builds to testers and users via Visual Studio App Center", "deprecationMessage": "AppCenterDistribute is deprecated - Distribute app builds to testers and users via Visual Studio App Center", "doNotSuggest": true, "ignoreCase": "value", "enum": [ "AppCenterDistribute@2" ] }, { "description": "Distribute app builds to testers and users via Visual Studio App Center", "deprecationMessage": "AppCenterDistribute is deprecated - Distribute app builds to testers and users via Visual Studio App Center", "doNotSuggest": true, "ignoreCase": "value", "enum": [ "AppCenterDistribute@1" ] }, { "description": "Distribute app builds to testers and users via Visual Studio App Center", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "AppCenterDistribute@3" ] }, { "description": "Distribute app builds to testers and users via App Center", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "AppCenterDistribute@0" ] }, { "description": "Acquires a specific version of NuGet from the internet or the tools cache and adds it to the PATH. Use this task to change the version of NuGet used in the NuGet tasks.", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "NuGetToolInstaller@0" ] }, { "description": "Acquires a specific version of NuGet from the internet or the tools cache and adds it to the PATH. Use this task to change the version of NuGet used in the NuGet tasks.", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "NuGetToolInstaller@1" ] }, { "description": "Download artifacts produced by a Jenkins job", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "JenkinsDownloadArtifacts@1" ] }, { "description": "Update a function app with a Docker container", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "AzureFunctionAppContainer@1" ] }, { "description": "Acquire a specific version of Java from a user-supplied Azure blob or the tool cache and sets JAVA_HOME", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "JavaToolInstallerTestVuln2@0" ] }, { "description": "Decrypt a file using OpenSSL", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "DecryptFile@1" ] }, { "description": "Deploy, configure, update a Kubernetes cluster in Azure Container Service by running helm commands", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "HelmDeploy@0" ] }, { "description": "Install an Apple certificate required to build on a macOS agent machine", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "InstallAppleCertificate@2" ] }, { "description": "Install an Apple certificate required to build on a macOS agent", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "InstallAppleCertificate@1" ] }, { "description": "Install an Apple certificate required to build on a macOS agent", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "InstallAppleCertificate@0" ] }, { "description": "Invoke an Azure Function", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "AzureFunction@1" ] }, { "description": "Invoke Azure function as a part of your process.", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "AzureFunction@0" ] }, { "description": "Downloads a GitHub Release from a repository", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "DownloadGitHubRelease@0" ] }, { "description": "Run shell commands or a script on a remote machine using SSH", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "SSH@0" ] }, { "description": "Publish a local directory or file as a named artifact for the current pipeline", "deprecationMessage": "PublishPipelineArtifact is deprecated - Publish a local directory or file as a named artifact for the current pipeline", "doNotSuggest": true, "ignoreCase": "value", "enum": [ "PublishPipelineArtifact@0" ] }, { "description": "Publish (upload) a file or directory as a named artifact for the current run", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "PublishPipelineArtifact@1" ] }, { "description": "[DEPRECATED] Fetch the Quality Profile from SonarQube to configure the analysis", "deprecationMessage": "SonarQubePreBuild is deprecated - [DEPRECATED] Fetch the Quality Profile from SonarQube to configure the analysis", "doNotSuggest": true, "ignoreCase": "value", "enum": [ "SonarQubePreBuild@1" ] }, { "description": "Download artifacts from a file share, like \\\\share\\drop", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "DownloadFileshareArtifacts@1" ] }, { "description": "Deploy, configure, update a Kubernetes cluster in Azure Container Service by running kubectl commands", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "Kubernetes@0" ] }, { "description": "Deploy, configure, update a Kubernetes cluster in Azure Container Service by running kubectl commands", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "Kubernetes@1" ] }, { "description": "Build and deploy an Azure IoT Edge image", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "AzureIoTEdge@2" ] }, { "description": "Deploy a Docker Compose application to an Azure Service Fabric cluster", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "ServiceFabricComposeDeploy@0" ] }, { "description": "Sign and align Android APK files", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "AndroidSigning@2" ] }, { "description": "Sign and align Android APK files", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "AndroidSigning@3" ] }, { "description": "Sign and align Android APK files", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "AndroidSigning@1" ] }, { "description": "Download a named artifact from a pipeline to a local path", "deprecationMessage": "DownloadPipelineArtifact is deprecated - Download a named artifact from a pipeline to a local path", "doNotSuggest": true, "ignoreCase": "value", "enum": [ "DownloadPipelineArtifact@1" ] }, { "description": "Downloads an artifact associated with a pipeline", "deprecationMessage": "DownloadPipelineArtifact is deprecated - Downloads an artifact associated with a pipeline", "doNotSuggest": true, "ignoreCase": "value", "enum": [ "DownloadPipelineArtifact@0" ] }, { "description": "Download build and pipeline artifacts", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "DownloadPipelineArtifact@2" ] }, { "description": "Use the specified version of Python from the tool cache, optionally adding it to the PATH", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "UsePythonVersion@0" ] }, { "description": "Run a PowerShell script in the context of an Azure Service Fabric cluster connection", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "ServiceFabricPowerShell@1" ] }, { "description": "Run tests with Visual Studio test runner", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "VSTest@1" ] }, { "description": "Run unit and functional tests (Selenium, Appium, Coded UI test, etc.) using the Visual Studio Test (VsTest) runner. Test frameworks that have a Visual Studio test adapter such as MsTest, xUnit, NUnit, Chutzpah (for JavaScript tests using QUnit, Mocha and Jasmine), etc. can be run. Tests can be distributed on multiple agents using this task (version 2).", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "VSTest@2" ] }, { "description": "[PREVIEW] Pause a pipeline run to wait for manual interaction. Works only with YAML pipelines.", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "ManualValidation@0" ] }, { "description": "Build with Apache Ant", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "Ant@1" ] }, { "description": "Deprecated: Instead, use the 'Visual Studio Test' task to run unit and functional tests", "deprecationMessage": "DeployVisualStudioTestAgent is deprecated - Deprecated: Instead, use the 'Visual Studio Test' task to run unit and functional tests", "doNotSuggest": true, "ignoreCase": "value", "enum": [ "DeployVisualStudioTestAgent@2" ] }, { "description": "Deploy and configure Test Agent to run tests on a set of machines", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "DeployVisualStudioTestAgent@1" ] }, { "description": "Create and activate a Conda environment", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "CondaEnvironment@0" ] }, { "description": "This task is deprecated. Use `conda` directly in script to work with Anaconda environments.", "deprecationMessage": "CondaEnvironment is deprecated - This task is deprecated. Use `conda` directly in script to work with Anaconda environments.", "doNotSuggest": true, "ignoreCase": "value", "enum": [ "CondaEnvironment@1" ] }, { "description": "Run a Windows command or batch script and optionally allow it to change the environment", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "BatchScript@1" ] }, { "description": "Install npm packages from GitHub.", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "DownloadGithubNpmPackage@1" ] }, { "description": "Build with MSBuild and set the Visual Studio version property", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "VSBuild@1" ] }, { "description": "Download Azure Key Vault secrets", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "AzureKeyVault@2" ] }, { "description": "Download Azure Key Vault secrets", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "AzureKeyVault@1" ] }, { "description": "Acquires a specific version of the .NET Core SDK from the internet or the local cache and adds it to the PATH. Use this task to change the version of .NET Core used in subsequent tasks. Additionally provides proxy support.", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "UseDotNet@2" ] }, { "description": "Acquire a specific version of the .NET Core SDK from the internet or local cache and add it to the PATH", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "DotNetCoreInstaller@0" ] }, { "description": "Acquire a specific version of the .NET Core SDK from the internet or local cache and add it to the PATH", "deprecationMessage": "DotNetCoreInstaller is deprecated - Acquire a specific version of the .NET Core SDK from the internet or local cache and add it to the PATH", "doNotSuggest": true, "ignoreCase": "value", "enum": [ "DotNetCoreInstaller@1" ] }, { "description": "Start, stop, restart, slot swap, slot delete, install site extensions or enable continuous monitoring for an Azure App Service", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "AzureAppServiceManage@0" ] }, { "description": "Install Azure Func Core Tools", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "FuncToolsInstaller@0" ] }, { "description": "Replace tokens with variable values in XML or JSON configuration files", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "FileTransform@2" ] }, { "description": "Replace tokens with variable values in XML or JSON configuration files", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "FileTransform@1" ] }, { "description": "Extract a variety of archive and compression files such as .7z, .rar, .tar.gz, and .zip", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "ExtractFiles@1" ] }, { "description": "Build an Android app with Xamarin", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "XamarinAndroid@1" ] }, { "description": "[DEPRECATED] Use the Copy Files task and the Publish Build Artifacts task instead", "deprecationMessage": "CopyPublishBuildArtifacts is deprecated - [DEPRECATED] Use the Copy Files task and the Publish Build Artifacts task instead", "doNotSuggest": true, "ignoreCase": "value", "enum": [ "CopyPublishBuildArtifacts@1" ] }, { "description": "Download a package from a package management feed in Azure Artifacts", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "DownloadPackage@0" ] }, { "description": "Download a package from a package management feed in Azure Artifacts", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "DownloadPackage@1" ] }, { "description": "Deploy an Azure Resource Manager (ARM) template to all the deployment scopes", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "AzureResourceManagerTemplateDeployment@3" ] }, { "description": "Deploy, start, stop, delete Azure Resource Groups", "deprecationMessage": "AzureResourceGroupDeployment is deprecated - Deploy, start, stop, delete Azure Resource Groups", "doNotSuggest": true, "ignoreCase": "value", "enum": [ "AzureResourceGroupDeployment@1" ] }, { "description": "Deploy an Azure Resource Manager (ARM) template to a resource group and manage virtual machines", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "AzureResourceGroupDeployment@2" ] }, { "description": "Invoke REST API as a part of your process.", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "InvokeRESTAPI@0" ] }, { "description": "Invoke a REST API as a part of your pipeline.", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "InvokeRESTAPI@1" ] }, { "description": "Archive files using compression formats such as .7z, .rar, .tar.gz, and .zip.", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "ArchiveFiles@1" ] }, { "description": "Compress files into .7z, .tar.gz, or .zip", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "ArchiveFiles@2" ] }, { "description": "Write a comment to your Github entity i.e. issue or a Pull Request (PR)", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "GitHubComment@0" ] }, { "description": "Copy files from source folder to target folder using minimatch patterns (The minimatch patterns will only match file paths, not folder paths)", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "CopyFiles@1" ] }, { "description": "Copy files from a source folder to a target folder using patterns matching file paths (not folder paths)", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "CopyFiles@2" ] }, { "description": "Run your scripts and make changes to your Azure Database for MySQL", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "AzureMysqlDeployment@1" ] }, { "description": "Run an npm command. Use NpmAuthenticate@0 task for latest capabilities.", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "Npm@0" ] }, { "description": "Install and publish npm packages, or run an npm command. Supports npmjs.com and authenticated registries like Azure Artifacts.", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "Npm@1" ] }, { "description": "[PREVIEW] Build and deploy an Azure Static Web App", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "AzureStaticWebApp@0" ] }, { "description": "Finds or downloads and caches the specified version spec of Node.js and adds it to the PATH", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "NodeTool@0" ] }, { "description": "Set up a Node.js environment and add it to the PATH, additionally providing proxy support", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "UseNode@1" ] }, { "description": "Deploy a SQL Server database using DACPAC", "deprecationMessage": "SqlServerDacpacDeployment is deprecated - Deploy a SQL Server database using DACPAC", "doNotSuggest": true, "ignoreCase": "value", "enum": [ "SqlServerDacpacDeployment@1" ] }, { "description": "Acquire the test platform from nuget.org or the tool cache. Satisfies the ‘vstest’ demand and can be used for running tests and collecting diagnostic data using the Visual Studio Test task.", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "VisualStudioTestPlatformInstaller@1" ] }, { "description": "Sends a message to Azure Service Bus using a service connection (no agent is required)", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "PublishToAzureServiceBus@1" ] }, { "description": "Sends a message to azure service bus using a service connection (no agent required).", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "PublishToAzureServiceBus@0" ] }, { "description": "Use Kubernetes manifest files to deploy to clusters or even bake the manifest files to be used for deployments using Helm charts", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "KubernetesManifest@0" ] }, { "description": "Use Kubernetes manifest files to deploy to clusters or even bake the manifest files to be used for deployments using Helm charts", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "KubernetesManifest@1" ] }, { "description": "Download files that were saved as artifacts of a completed build", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "DownloadBuildArtifacts@0" ] }, { "description": "Download files that were saved as artifacts of a completed build", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "DownloadBuildArtifacts@1" ] }, { "description": "Install CocoaPods dependencies for Swift and Objective-C Cocoa projects", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "CocoaPods@0" ] }, { "description": "Deploy applications to Azure Spring Cloud and manage deployments.", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "AzureSpringCloud@0" ] }, { "description": "Deploy an Azure Web App for Linux or Windows", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "AzureWebApp@1" ] }, { "description": "Run Azure CLI commands against an Azure subscription in a Shell script when running on Linux agent or Batch script when running on Windows agent.", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "AzureCLI@1" ] }, { "description": "Run a Shell or Batch script with Azure CLI commands against an azure subscription", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "AzureCLI@0" ] }, { "description": "Run Azure CLI commands against an Azure subscription in a PowerShell Core/Shell script when running on Linux agent or PowerShell/PowerShell Core/Batch script when running on Windows agent.", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "AzureCLI@2" ] }, { "description": "Create, edit, or delete a GitHub release", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "GitHubRelease@1" ] }, { "description": "Create, edit, or delete a GitHub release", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "GitHubRelease@0" ] }, { "description": "Use cURL to upload files with FTP, FTPS, SFTP, HTTP, and more.", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "cURLUploader@1" ] }, { "description": "Use cURL's supported protocols to upload files", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "cURLUploader@2" ] }, { "description": "Update/Add App settings an Azure Web App for Linux or Windows", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "AzureAppServiceSettings@1" ] }, { "description": "Download or publish Universal Packages", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "UniversalPackages@0" ] }, { "description": "Security and compliance assessment for Azure Policy", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "AzurePolicyCheckGate@0" ] }, { "description": "Deploy Azure function to Kubernetes cluster.", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "AzureFunctionOnKubernetes@0" ] }, { "description": "Deploy Azure function to Kubernetes cluster.", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "AzureFunctionOnKubernetes@1" ] }, { "description": "Run a Bash script on macOS, Linux, or Windows", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "Bash@3" ] }, { "description": "Run a shell script using Bash", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "ShellScript@2" ] }, { "description": "Publish build artifacts to Azure Pipelines or a Windows file share", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "PublishBuildArtifacts@1" ] }, { "description": "Install an SSH key prior to a build or deployment", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "InstallSSHKey@0" ] }, { "description": "Deploy a virtual machine scale set image", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "AzureVmssDeployment@0" ] }, { "description": "Create or update Azure App Service using Azure PowerShell", "deprecationMessage": "AzureWebPowerShellDeployment is deprecated - Create or update Azure App Service using Azure PowerShell", "doNotSuggest": true, "ignoreCase": "value", "enum": [ "AzureWebPowerShellDeployment@1" ] }, { "description": "Deploy an Azure Cloud Service", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "AzureCloudPowerShellDeployment@1" ] }, { "description": "Authentication task for the cargo client used for installing Cargo crates distribution", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "CargoAuthenticate@0" ] }, { "description": "Delete folders, or files matching a pattern", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "DeleteFiles@1" ] }, { "description": "Run the gulp Node.js streaming task-based build system", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "gulp@0" ] }, { "description": "Run the gulp Node.js streaming task-based build system", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "gulp@1" ] }, { "description": "Run a quick web performance test in the cloud with Azure Pipelines", "deprecationMessage": "QuickPerfTest is deprecated - Run a quick web performance test in the cloud with Azure Pipelines", "doNotSuggest": true, "ignoreCase": "value", "enum": [ "QuickPerfTest@1" ] }, { "description": "Create or update websites, web apps, virtual directories, or application pools", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "IISWebAppManagementOnMachineGroup@0" ] }, { "description": "Install Docker CLI on agent machine.", "doNotSuggest": false, "ignoreCase": "value", "enum": [ "DockerInstaller@0" ] } ] }, "displayName": { "type": "string", "description": "Human-readable name for the task" }, "name": { "type": "string", "description": "ID of the task instance", "pattern": "^[_A-Za-z0-9]*$" }, "condition": { "type": "string", "description": "Evaluate this condition expression to determine whether to run this task" }, "continueOnError": { "type": "boolean", "description": "Continue running the parent job even on failure?" }, "enabled": { "type": "string", "description": "Run this task when the job runs?" }, "retryCountOnTaskFailure": { "type": "integer", "description": "Number of retries if the task fails" }, "timeoutInMinutes": { "type": "integer", "description": "Time to wait for this task to complete before the server kills it" }, "inputs": { "type": "object", "description": "Task-specific inputs" }, "env": { "type": "object", "description": "Variables to map into the process's environment" } }, "additionalProperties": false, "firstProperty": [ "task" ], "anyOf": [ { "properties": { "task": { "description": "PowerShell\n\nRun a PowerShell script", "ignoreCase": "value", "pattern": "^PowerShell@1$" }, "inputs": { "description": "PowerShell inputs", "properties": { "scriptType": { "description": "Type", "ignoreCase": "all", "enum": [ "inlineScript", "filePath" ] }, "scriptName": { "type": "string", "description": "Script Path", "ignoreCase": "key" }, "arguments": { "type": "string", "description": "Arguments", "ignoreCase": "key" }, "workingFolder": { "type": "string", "description": "Working folder", "ignoreCase": "key" }, "inlineScript": { "type": "string", "description": "Inline Script", "ignoreCase": "key" }, "failOnStandardError": { "type": "boolean", "description": "Fail on Standard Error", "ignoreCase": "key" } }, "additionalProperties": false, "required": [] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task" ] }, { "properties": { "task": { "description": "PowerShell\n\nRun a PowerShell script on Linux, macOS, or Windows", "ignoreCase": "value", "pattern": "^PowerShell@2$" }, "inputs": { "description": "PowerShell inputs", "properties": { "targetType": { "description": "Type", "ignoreCase": "all", "enum": [ "filePath", "inline" ] }, "filePath": { "type": "string", "description": "Script Path", "ignoreCase": "key" }, "arguments": { "type": "string", "description": "Arguments", "ignoreCase": "key" }, "script": { "type": "string", "description": "Script", "ignoreCase": "key" }, "errorActionPreference": { "description": "ErrorActionPreference", "ignoreCase": "all", "enum": [ "default", "stop", "continue", "silentlyContinue" ] }, "warningPreference": { "description": "WarningPreference", "ignoreCase": "all", "enum": [ "default", "stop", "continue", "silentlyContinue" ] }, "informationPreference": { "description": "InformationPreference", "ignoreCase": "all", "enum": [ "default", "stop", "continue", "silentlyContinue" ] }, "verbosePreference": { "description": "VerbosePreference", "ignoreCase": "all", "enum": [ "default", "stop", "continue", "silentlyContinue" ] }, "debugPreference": { "description": "DebugPreference", "ignoreCase": "all", "enum": [ "default", "stop", "continue", "silentlyContinue" ] }, "progressPreference": { "description": "ProgressPreference", "ignoreCase": "all", "enum": [ "default", "stop", "continue", "silentlyContinue" ] }, "failOnStderr": { "type": "boolean", "description": "Fail on Standard Error", "ignoreCase": "key" }, "showWarnings": { "type": "boolean", "description": "Show warnings as Azure DevOps warnings", "ignoreCase": "key" }, "ignoreLASTEXITCODE": { "type": "boolean", "description": "Ignore $LASTEXITCODE", "ignoreCase": "key" }, "pwsh": { "type": "boolean", "description": "Use PowerShell Core", "ignoreCase": "key" }, "workingDirectory": { "type": "string", "description": "Working Directory", "ignoreCase": "key" }, "runScriptInSeparateScope": { "type": "boolean", "description": "Run script in the separate scope", "ignoreCase": "key" } }, "additionalProperties": false, "required": [] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task" ] }, { "properties": { "task": { "description": "Azure PowerShell\n\nRun a PowerShell script within an Azure environment", "ignoreCase": "value", "pattern": "^AzurePowerShell@4$" }, "inputs": { "description": "Azure PowerShell inputs", "properties": { "azureSubscription": { "type": "string", "description": "Azure Subscription", "ignoreCase": "key", "aliases": [ "ConnectedServiceNameARM" ] }, "ScriptType": { "description": "Script Type", "ignoreCase": "all", "enum": [ "FilePath", "InlineScript" ] }, "ScriptPath": { "type": "string", "description": "Script Path", "ignoreCase": "key" }, "Inline": { "type": "string", "description": "Inline Script", "ignoreCase": "key" }, "ScriptArguments": { "type": "string", "description": "Script Arguments", "ignoreCase": "key" }, "errorActionPreference": { "description": "ErrorActionPreference", "ignoreCase": "all", "enum": [ "stop", "continue", "silentlyContinue" ] }, "FailOnStandardError": { "type": "boolean", "description": "Fail on Standard Error", "ignoreCase": "key" }, "RestrictContextToCurrentTask": { "type": "boolean", "description": "Restrict scope of context to current task", "ignoreCase": "key" }, "azurePowerShellVersion": { "description": "Azure PowerShell Version", "ignoreCase": "all", "enum": [ "LatestVersion", "OtherVersion" ], "aliases": [ "TargetAzurePs" ] }, "preferredAzurePowerShellVersion": { "type": "string", "description": "Preferred Azure PowerShell Version", "ignoreCase": "key", "aliases": [ "CustomTargetAzurePs" ] }, "pwsh": { "type": "boolean", "description": "Use PowerShell Core", "ignoreCase": "key" }, "validateScriptSignature": { "type": "boolean", "description": "Validate script signature", "ignoreCase": "key" }, "workingDirectory": { "type": "string", "description": "Working Directory", "ignoreCase": "key" } }, "additionalProperties": false, "required": [ "azureSubscription" ] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task", "inputs" ] }, { "properties": { "task": { "description": "Azure PowerShell\n\nRun a PowerShell script within an Azure environment", "ignoreCase": "value", "pattern": "^AzurePowerShell@2$" }, "inputs": { "description": "Azure PowerShell inputs", "properties": { "azureConnectionType": { "description": "Azure Connection Type", "ignoreCase": "all", "enum": [ "ConnectedServiceName", "ConnectedServiceNameARM" ], "aliases": [ "ConnectedServiceNameSelector" ] }, "azureClassicSubscription": { "type": "string", "description": "Azure Classic Subscription", "ignoreCase": "key", "aliases": [ "ConnectedServiceName" ] }, "azureSubscription": { "type": "string", "description": "Azure Subscription", "ignoreCase": "key", "aliases": [ "ConnectedServiceNameARM" ] }, "ScriptType": { "description": "Script Type", "ignoreCase": "all", "enum": [ "FilePath", "InlineScript" ] }, "ScriptPath": { "type": "string", "description": "Script Path", "ignoreCase": "key" }, "Inline": { "type": "string", "description": "Inline Script", "ignoreCase": "key" }, "ScriptArguments": { "type": "string", "description": "Script Arguments", "ignoreCase": "key" }, "azurePowerShellVersion": { "description": "Azure PowerShell Version", "ignoreCase": "all", "enum": [ "LatestVersion", "OtherVersion" ], "aliases": [ "TargetAzurePs" ] }, "preferredAzurePowerShellVersion": { "type": "string", "description": "Preferred Azure PowerShell Version", "ignoreCase": "key", "aliases": [ "CustomTargetAzurePs" ] } }, "additionalProperties": false, "required": [] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task" ] }, { "properties": { "task": { "description": "Azure PowerShell\n\nRun a PowerShell script within an Azure environment", "ignoreCase": "value", "pattern": "^AzurePowerShell@5$" }, "inputs": { "description": "Azure PowerShell inputs", "properties": { "azureSubscription": { "type": "string", "description": "Azure Subscription", "ignoreCase": "key", "aliases": [ "ConnectedServiceNameARM" ] }, "ScriptType": { "description": "Script Type", "ignoreCase": "all", "enum": [ "FilePath", "InlineScript" ] }, "ScriptPath": { "type": "string", "description": "Script Path", "ignoreCase": "key" }, "Inline": { "type": "string", "description": "Inline Script", "ignoreCase": "key" }, "ScriptArguments": { "type": "string", "description": "Script Arguments", "ignoreCase": "key" }, "errorActionPreference": { "description": "ErrorActionPreference", "ignoreCase": "all", "enum": [ "stop", "continue", "silentlyContinue" ] }, "FailOnStandardError": { "type": "boolean", "description": "Fail on Standard Error", "ignoreCase": "key" }, "azurePowerShellVersion": { "description": "Azure PowerShell Version", "ignoreCase": "all", "enum": [ "LatestVersion", "OtherVersion" ], "aliases": [ "TargetAzurePs" ] }, "preferredAzurePowerShellVersion": { "type": "string", "description": "Preferred Azure PowerShell Version", "ignoreCase": "key", "aliases": [ "CustomTargetAzurePs" ] }, "pwsh": { "type": "boolean", "description": "Use PowerShell Core", "ignoreCase": "key" }, "validateScriptSignature": { "type": "boolean", "description": "Validate script signature", "ignoreCase": "key" }, "workingDirectory": { "type": "string", "description": "Working Directory", "ignoreCase": "key" } }, "additionalProperties": false, "required": [ "azureSubscription" ] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task", "inputs" ] }, { "properties": { "task": { "description": "Azure PowerShell\n\nRun a PowerShell script within an Azure environment", "ignoreCase": "value", "pattern": "^AzurePowerShell@3$" }, "inputs": { "description": "Azure PowerShell inputs", "properties": { "azureConnectionType": { "description": "Azure Connection Type", "ignoreCase": "all", "enum": [ "ConnectedServiceName", "ConnectedServiceNameARM" ], "aliases": [ "ConnectedServiceNameSelector" ] }, "azureClassicSubscription": { "type": "string", "description": "Azure Classic Subscription", "ignoreCase": "key", "aliases": [ "ConnectedServiceName" ] }, "azureSubscription": { "type": "string", "description": "Azure Subscription", "ignoreCase": "key", "aliases": [ "ConnectedServiceNameARM" ] }, "ScriptType": { "description": "Script Type", "ignoreCase": "all", "enum": [ "FilePath", "InlineScript" ] }, "ScriptPath": { "type": "string", "description": "Script Path", "ignoreCase": "key" }, "Inline": { "type": "string", "description": "Inline Script", "ignoreCase": "key" }, "ScriptArguments": { "type": "string", "description": "Script Arguments", "ignoreCase": "key" }, "errorActionPreference": { "description": "ErrorActionPreference", "ignoreCase": "all", "enum": [ "stop", "continue", "silentlyContinue" ] }, "FailOnStandardError": { "type": "boolean", "description": "Fail on Standard Error", "ignoreCase": "key" }, "azurePowerShellVersion": { "description": "Azure PowerShell Version", "ignoreCase": "all", "enum": [ "LatestVersion", "OtherVersion" ], "aliases": [ "TargetAzurePs" ] }, "preferredAzurePowerShellVersion": { "type": "string", "description": "Preferred Azure PowerShell Version", "ignoreCase": "key", "aliases": [ "CustomTargetAzurePs" ] }, "validateScriptSignature": { "type": "boolean", "description": "Validate script signature", "ignoreCase": "key" } }, "additionalProperties": false, "required": [] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task" ] }, { "properties": { "task": { "description": "Azure PowerShell\n\nRun a PowerShell script within an Azure environment", "ignoreCase": "value", "pattern": "^AzurePowerShell@1$" }, "inputs": { "description": "Azure PowerShell inputs", "properties": { "ConnectedServiceNameSelector": { "description": "Azure Connection Type", "ignoreCase": "all", "enum": [ "ConnectedServiceName", "ConnectedServiceNameARM" ] }, "ConnectedServiceName": { "type": "string", "description": "Azure Classic Subscription", "ignoreCase": "key" }, "ConnectedServiceNameARM": { "type": "string", "description": "Azure Subscription", "ignoreCase": "key" }, "ScriptType": { "description": "Script Type", "ignoreCase": "all", "enum": [ "FilePath", "InlineScript" ] }, "ScriptPath": { "type": "string", "description": "Script Path", "ignoreCase": "key" }, "Inline": { "type": "string", "description": "Inline Script", "ignoreCase": "key" }, "ScriptArguments": { "type": "string", "description": "Script Arguments", "ignoreCase": "key" } }, "additionalProperties": false, "required": [] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task" ] }, { "properties": { "task": { "description": "MySQL database deploy\n\nRun scripts and make changes to a MySQL Database", "ignoreCase": "value", "pattern": "^MysqlDeploymentOnMachineGroup@1$" }, "inputs": { "description": "MySQL database deploy inputs", "properties": { "TaskNameSelector": { "description": "Deploy MySql Using", "ignoreCase": "all", "enum": [ "SqlTaskFile", "InlineSqlTask" ] }, "SqlFile": { "type": "string", "description": "MySQL Script", "ignoreCase": "key" }, "SqlInline": { "type": "string", "description": "Inline MySQL Script", "ignoreCase": "key" }, "ServerName": { "type": "string", "description": "Host Name", "ignoreCase": "key" }, "DatabaseName": { "type": "string", "description": "Database Name", "ignoreCase": "key" }, "SqlUsername": { "type": "string", "description": "Mysql User Name", "ignoreCase": "key" }, "SqlPassword": { "type": "string", "description": "Password", "ignoreCase": "key" }, "SqlAdditionalArguments": { "type": "string", "description": "Additional Arguments", "ignoreCase": "key" } }, "additionalProperties": false, "required": [ "SqlUsername", "SqlPassword" ] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task", "inputs" ] }, { "properties": { "task": { "description": "Python pip authenticate\n\nAuthentication task for the pip client used for installing Python distributions", "ignoreCase": "value", "pattern": "^PipAuthenticate@1$" }, "inputs": { "description": "Python pip authenticate inputs", "properties": { "artifactFeeds": { "type": "string", "description": "My feeds (select below)", "ignoreCase": "key", "aliases": [ "artifactFeeds" ] }, "pythonDownloadServiceConnections": { "type": "string", "description": "Feeds from external organizations", "ignoreCase": "key", "aliases": [ "pythonDownloadServiceConnections" ] }, "onlyAddExtraIndex": { "type": "boolean", "description": "Don't set primary index URL", "ignoreCase": "key" } }, "additionalProperties": false, "required": [] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task" ] }, { "properties": { "task": { "description": "Python pip authenticate\n\nAuthentication task for the pip client used for installing Python distributions", "ignoreCase": "value", "pattern": "^PipAuthenticate@0$" }, "inputs": { "description": "Python pip authenticate inputs", "properties": { "artifactFeeds": { "type": "string", "description": "My feeds (select below)", "ignoreCase": "key", "aliases": [ "feedList" ] }, "externalFeeds": { "type": "string", "description": "Feeds from external organizations", "ignoreCase": "key", "aliases": [ "externalSources" ] } }, "additionalProperties": false, "required": [] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task" ] }, { "properties": { "task": { "description": "Maven\n\nBuild, test, and deploy with Apache Maven", "ignoreCase": "value", "pattern": "^Maven@4$" }, "inputs": { "description": "Maven inputs", "properties": { "mavenPomFile": { "type": "string", "description": "Maven POM file", "ignoreCase": "key", "aliases": [ "mavenPOMFile" ] }, "goals": { "type": "string", "description": "Goal(s)", "ignoreCase": "key" }, "options": { "type": "string", "description": "Options", "ignoreCase": "key" }, "publishJUnitResults": { "type": "boolean", "description": "Publish to Azure Pipelines", "ignoreCase": "key" }, "testResultsFiles": { "type": "string", "description": "Test results files", "ignoreCase": "key" }, "testRunTitle": { "type": "string", "description": "Test run title", "ignoreCase": "key" }, "allowBrokenSymlinks": { "type": "boolean", "description": "Allow broken symbolic links", "ignoreCase": "key", "aliases": [ "allowBrokenSymbolicLinks" ] }, "codeCoverageToolOption": { "description": "Code coverage tool", "ignoreCase": "all", "enum": [ "None", "Cobertura", "JaCoCo" ], "aliases": [ "codeCoverageTool" ] }, "codeCoverageClassFilter": { "type": "string", "description": "Class inclusion/exclusion filters", "ignoreCase": "key", "aliases": [ "classFilter" ] }, "codeCoverageClassFilesDirectories": { "type": "string", "description": "Class files directories", "ignoreCase": "key", "aliases": [ "classFilesDirectories" ] }, "codeCoverageSourceDirectories": { "type": "string", "description": "Source files directories", "ignoreCase": "key", "aliases": [ "srcDirectories" ] }, "codeCoverageFailIfEmpty": { "type": "boolean", "description": "Fail when code coverage results are missing", "ignoreCase": "key", "aliases": [ "failIfCoverageEmpty" ] }, "codeCoverageRestoreOriginalPomXml": { "type": "boolean", "description": "Restore original pom.xml after task execution", "ignoreCase": "key", "aliases": [ "restoreOriginalPomXml" ] }, "javaHomeOption": { "description": "Set JAVA_HOME by", "ignoreCase": "all", "enum": [ "JDKVersion", "Path" ], "aliases": [ "javaHomeSelection" ] }, "jdkVersionOption": { "description": "JDK version", "ignoreCase": "all", "enum": [ "default", "1.17", "1.11", "1.10", "1.9", "1.8", "1.7", "1.6" ], "aliases": [ "jdkVersion" ] }, "jdkDirectory": { "type": "string", "description": "JDK path", "ignoreCase": "key", "aliases": [ "jdkUserInputPath" ] }, "jdkArchitectureOption": { "description": "JDK architecture", "ignoreCase": "all", "enum": [ "x86", "x64" ], "aliases": [ "jdkArchitecture" ] }, "mavenVersionOption": { "description": "Maven version", "ignoreCase": "all", "enum": [ "Default", "Path" ], "aliases": [ "mavenVersionSelection" ] }, "mavenDirectory": { "type": "string", "description": "Maven path", "ignoreCase": "key", "aliases": [ "mavenPath" ] }, "mavenSetM2Home": { "type": "boolean", "description": "Set M2_HOME variable", "ignoreCase": "key" }, "mavenOptions": { "type": "string", "description": "Set MAVEN_OPTS to", "ignoreCase": "key", "aliases": [ "mavenOpts" ] }, "mavenAuthenticateFeed": { "type": "boolean", "description": "Authenticate built-in Maven feeds", "ignoreCase": "key", "aliases": [ "mavenFeedAuthenticate" ] }, "effectivePomSkip": { "type": "boolean", "description": "Skip generating effective POM while authenticating built-in feeds", "ignoreCase": "key", "aliases": [ "skipEffectivePom" ] }, "sonarQubeRunAnalysis": { "type": "boolean", "description": "Run SonarQube or SonarCloud analysis", "ignoreCase": "key", "aliases": [ "sqAnalysisEnabled" ] }, "isJacocoCoverageReportXML": { "type": "boolean", "description": "Use XML Jacoco reports for SonarQube analysis", "ignoreCase": "key" }, "sqMavenPluginVersionChoice": { "description": "SonarQube scanner for Maven version", "ignoreCase": "all", "enum": [ "latest", "pom" ] }, "checkStyleRunAnalysis": { "type": "boolean", "description": "Run Checkstyle", "ignoreCase": "key", "aliases": [ "checkstyleAnalysisEnabled" ] }, "pmdRunAnalysis": { "type": "boolean", "description": "Run PMD", "ignoreCase": "key", "aliases": [ "pmdAnalysisEnabled" ] }, "findBugsRunAnalysis": { "type": "boolean", "description": "Run FindBugs", "ignoreCase": "key", "aliases": [ "findbugsAnalysisEnabled" ] }, "spotBugsRunAnalysis": { "type": "boolean", "description": "Run SpotBugs analysis", "ignoreCase": "key", "aliases": [ "spotBugsAnalysisEnabled" ] }, "spotBugsVersion": { "type": "string", "description": "Version number", "ignoreCase": "key", "aliases": [ "spotBugsMavenPluginVersion" ] }, "spotBugsGoal": { "description": "The goal for the spotbugs plugin", "ignoreCase": "all", "enum": [ "spotbugs", "check" ] }, "failWhenBugsFound": { "type": "boolean", "description": "Fail when bugs are found with spotbugs:check", "ignoreCase": "key", "aliases": [ "spotBugsFailWhenBugsFound", "sbFailWhenBugsFound" ] } }, "additionalProperties": false, "required": [] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task" ] }, { "properties": { "task": { "description": "Maven\n\nBuild, test, and deploy with Apache Maven", "ignoreCase": "value", "pattern": "^Maven@3$" }, "inputs": { "description": "Maven inputs", "properties": { "mavenPomFile": { "type": "string", "description": "Maven POM file", "ignoreCase": "key", "aliases": [ "mavenPOMFile" ] }, "goals": { "type": "string", "description": "Goal(s)", "ignoreCase": "key" }, "options": { "type": "string", "description": "Options", "ignoreCase": "key" }, "publishJUnitResults": { "type": "boolean", "description": "Publish to Azure Pipelines", "ignoreCase": "key" }, "testResultsFiles": { "type": "string", "description": "Test results files", "ignoreCase": "key" }, "testRunTitle": { "type": "string", "description": "Test run title", "ignoreCase": "key" }, "allowBrokenSymlinks": { "type": "boolean", "description": "Allow broken symbolic links", "ignoreCase": "key", "aliases": [ "allowBrokenSymbolicLinks" ] }, "codeCoverageToolOption": { "description": "Code coverage tool", "ignoreCase": "all", "enum": [ "None", "Cobertura", "JaCoCo" ], "aliases": [ "codeCoverageTool" ] }, "codeCoverageClassFilter": { "type": "string", "description": "Class inclusion/exclusion filters", "ignoreCase": "key", "aliases": [ "classFilter" ] }, "codeCoverageClassFilesDirectories": { "type": "string", "description": "Class files directories", "ignoreCase": "key", "aliases": [ "classFilesDirectories" ] }, "codeCoverageSourceDirectories": { "type": "string", "description": "Source files directories", "ignoreCase": "key", "aliases": [ "srcDirectories" ] }, "codeCoverageFailIfEmpty": { "type": "boolean", "description": "Fail when code coverage results are missing", "ignoreCase": "key", "aliases": [ "failIfCoverageEmpty" ] }, "codeCoverageRestoreOriginalPomXml": { "type": "boolean", "description": "Restore original pom.xml after task execution", "ignoreCase": "key", "aliases": [ "restoreOriginalPomXml" ] }, "javaHomeOption": { "description": "Set JAVA_HOME by", "ignoreCase": "all", "enum": [ "JDKVersion", "Path" ], "aliases": [ "javaHomeSelection" ] }, "jdkVersionOption": { "description": "JDK version", "ignoreCase": "all", "enum": [ "default", "1.17", "1.11", "1.10", "1.9", "1.8", "1.7", "1.6" ], "aliases": [ "jdkVersion" ] }, "jdkDirectory": { "type": "string", "description": "JDK path", "ignoreCase": "key", "aliases": [ "jdkUserInputPath" ] }, "jdkArchitectureOption": { "description": "JDK architecture", "ignoreCase": "all", "enum": [ "x86", "x64" ], "aliases": [ "jdkArchitecture" ] }, "mavenVersionOption": { "description": "Maven version", "ignoreCase": "all", "enum": [ "Default", "Path" ], "aliases": [ "mavenVersionSelection" ] }, "mavenDirectory": { "type": "string", "description": "Maven path", "ignoreCase": "key", "aliases": [ "mavenPath" ] }, "mavenSetM2Home": { "type": "boolean", "description": "Set M2_HOME variable", "ignoreCase": "key" }, "mavenOptions": { "type": "string", "description": "Set MAVEN_OPTS to", "ignoreCase": "key", "aliases": [ "mavenOpts" ] }, "mavenAuthenticateFeed": { "type": "boolean", "description": "Authenticate built-in Maven feeds", "ignoreCase": "key", "aliases": [ "mavenFeedAuthenticate" ] }, "effectivePomSkip": { "type": "boolean", "description": "Skip generating effective POM while authenticating built-in feeds", "ignoreCase": "key", "aliases": [ "skipEffectivePom" ] }, "sonarQubeRunAnalysis": { "type": "boolean", "description": "Run SonarQube or SonarCloud analysis", "ignoreCase": "key", "aliases": [ "sqAnalysisEnabled" ] }, "isJacocoCoverageReportXML": { "type": "boolean", "description": "Use XML Jacoco reports for SonarQube analysis", "ignoreCase": "key" }, "sqMavenPluginVersionChoice": { "description": "SonarQube scanner for Maven version", "ignoreCase": "all", "enum": [ "latest", "pom" ] }, "checkStyleRunAnalysis": { "type": "boolean", "description": "Run Checkstyle", "ignoreCase": "key", "aliases": [ "checkstyleAnalysisEnabled" ] }, "pmdRunAnalysis": { "type": "boolean", "description": "Run PMD", "ignoreCase": "key", "aliases": [ "pmdAnalysisEnabled" ] }, "findBugsRunAnalysis": { "type": "boolean", "description": "Run FindBugs", "ignoreCase": "key", "aliases": [ "findbugsAnalysisEnabled" ] }, "spotBugsRunAnalysis": { "type": "boolean", "description": "Run SpotBugs analysis", "ignoreCase": "key", "aliases": [ "spotBugsAnalysisEnabled" ] }, "spotBugsVersion": { "type": "string", "description": "Version number", "ignoreCase": "key", "aliases": [ "spotBugsMavenPluginVersion" ] }, "spotBugsGoal": { "description": "The goal for the spotbugs plugin", "ignoreCase": "all", "enum": [ "spotbugs", "check" ] }, "failWhenBugsFound": { "type": "boolean", "description": "Fail when bugs are found with spotbugs:check", "ignoreCase": "key", "aliases": [ "spotBugsFailWhenBugsFound", "sbFailWhenBugsFound" ] } }, "additionalProperties": false, "required": [] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task" ] }, { "properties": { "task": { "description": "Maven\n\nBuild, test, and deploy with Apache Maven", "ignoreCase": "value", "pattern": "^Maven@2$" }, "inputs": { "description": "Maven inputs", "properties": { "mavenPomFile": { "type": "string", "description": "Maven POM file", "ignoreCase": "key", "aliases": [ "mavenPOMFile" ] }, "goals": { "type": "string", "description": "Goal(s)", "ignoreCase": "key" }, "options": { "type": "string", "description": "Options", "ignoreCase": "key" }, "publishJUnitResults": { "type": "boolean", "description": "Publish to Azure Pipelines", "ignoreCase": "key" }, "testResultsFiles": { "type": "string", "description": "Test results files", "ignoreCase": "key" }, "testRunTitle": { "type": "string", "description": "Test run title", "ignoreCase": "key" }, "allowBrokenSymlinks": { "type": "boolean", "description": "Allow broken symbolic links", "ignoreCase": "key", "aliases": [ "allowBrokenSymbolicLinks" ] }, "codeCoverageToolOption": { "description": "Code coverage tool", "ignoreCase": "all", "enum": [ "None", "Cobertura", "JaCoCo" ], "aliases": [ "codeCoverageTool" ] }, "codeCoverageClassFilter": { "type": "string", "description": "Class inclusion/exclusion filters", "ignoreCase": "key", "aliases": [ "classFilter" ] }, "codeCoverageClassFilesDirectories": { "type": "string", "description": "Class files directories", "ignoreCase": "key", "aliases": [ "classFilesDirectories" ] }, "codeCoverageSourceDirectories": { "type": "string", "description": "Source files directories", "ignoreCase": "key", "aliases": [ "srcDirectories" ] }, "codeCoverageFailIfEmpty": { "type": "boolean", "description": "Fail when code coverage results are missing", "ignoreCase": "key", "aliases": [ "failIfCoverageEmpty" ] }, "codeCoverageRestoreOriginalPomXml": { "type": "boolean", "description": "Restore original pom.xml after task execution", "ignoreCase": "key", "aliases": [ "restoreOriginalPomXml" ] }, "javaHomeOption": { "description": "Set JAVA_HOME by", "ignoreCase": "all", "enum": [ "JDKVersion", "Path" ], "aliases": [ "javaHomeSelection" ] }, "jdkVersionOption": { "description": "JDK version", "ignoreCase": "all", "enum": [ "default", "1.17", "1.11", "1.10", "1.9", "1.8", "1.7", "1.6" ], "aliases": [ "jdkVersion" ] }, "jdkDirectory": { "type": "string", "description": "JDK path", "ignoreCase": "key", "aliases": [ "jdkUserInputPath" ] }, "jdkArchitectureOption": { "description": "JDK architecture", "ignoreCase": "all", "enum": [ "x86", "x64" ], "aliases": [ "jdkArchitecture" ] }, "mavenVersionOption": { "description": "Maven version", "ignoreCase": "all", "enum": [ "Default", "Path" ], "aliases": [ "mavenVersionSelection" ] }, "mavenDirectory": { "type": "string", "description": "Maven path", "ignoreCase": "key", "aliases": [ "mavenPath" ] }, "mavenSetM2Home": { "type": "boolean", "description": "Set M2_HOME variable", "ignoreCase": "key" }, "mavenOptions": { "type": "string", "description": "Set MAVEN_OPTS to", "ignoreCase": "key", "aliases": [ "mavenOpts" ] }, "mavenAuthenticateFeed": { "type": "boolean", "description": "Authenticate built-in Maven feeds", "ignoreCase": "key", "aliases": [ "mavenFeedAuthenticate" ] }, "sonarQubeRunAnalysis": { "type": "boolean", "description": "Run SonarQube or SonarCloud analysis", "ignoreCase": "key", "aliases": [ "sqAnalysisEnabled" ] }, "isJacocoCoverageReportXML": { "type": "boolean", "description": "Use XML Jacoco reports for SonarQube analysis", "ignoreCase": "key" }, "sqMavenPluginVersionChoice": { "description": "SonarQube scanner for Maven version", "ignoreCase": "all", "enum": [ "latest", "pom" ] }, "checkStyleRunAnalysis": { "type": "boolean", "description": "Run Checkstyle", "ignoreCase": "key", "aliases": [ "checkstyleAnalysisEnabled" ] }, "pmdRunAnalysis": { "type": "boolean", "description": "Run PMD", "ignoreCase": "key", "aliases": [ "pmdAnalysisEnabled" ] }, "findBugsRunAnalysis": { "type": "boolean", "description": "Run FindBugs", "ignoreCase": "key", "aliases": [ "findbugsAnalysisEnabled" ] } }, "additionalProperties": false, "required": [] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task" ] }, { "properties": { "task": { "description": "Maven\n\nBuild with Apache Maven", "ignoreCase": "value", "pattern": "^Maven@1$" }, "inputs": { "description": "Maven inputs", "properties": { "mavenPomFile": { "type": "string", "description": "Maven POM file", "ignoreCase": "key", "aliases": [ "mavenPOMFile" ] }, "goals": { "type": "string", "description": "Goal(s)", "ignoreCase": "key" }, "options": { "type": "string", "description": "Options", "ignoreCase": "key" }, "publishJUnitResults": { "type": "boolean", "description": "Publish to TFS/Team Services", "ignoreCase": "key" }, "testResultsFiles": { "type": "string", "description": "Test Results Files", "ignoreCase": "key" }, "testRunTitle": { "type": "string", "description": "Test Run Title", "ignoreCase": "key" }, "codeCoverageToolOption": { "description": "Code Coverage Tool", "ignoreCase": "all", "enum": [ "None", "Cobertura", "JaCoCo" ], "aliases": [ "codeCoverageTool" ] }, "codeCoverageClassFilter": { "type": "string", "description": "Class Inclusion/Exclusion Filters", "ignoreCase": "key", "aliases": [ "classFilter" ] }, "codeCoverageClassFilesDirectories": { "type": "string", "description": "Class Files Directories", "ignoreCase": "key", "aliases": [ "classFilesDirectories" ] }, "codeCoverageSourceDirectories": { "type": "string", "description": "Source Files Directories", "ignoreCase": "key", "aliases": [ "srcDirectories" ] }, "codeCoverageFailIfEmpty": { "type": "boolean", "description": "Fail When Code Coverage Results Are Missing", "ignoreCase": "key", "aliases": [ "failIfCoverageEmpty" ] }, "javaHomeOption": { "description": "Set JAVA_HOME by", "ignoreCase": "all", "enum": [ "JDKVersion", "Path" ], "aliases": [ "javaHomeSelection" ] }, "jdkVersionOption": { "description": "JDK Version", "ignoreCase": "all", "enum": [ "default", "1.9", "1.8", "1.7", "1.6" ], "aliases": [ "jdkVersion" ] }, "jdkDirectory": { "type": "string", "description": "JDK Path", "ignoreCase": "key", "aliases": [ "jdkUserInputPath" ] }, "jdkArchitectureOption": { "description": "JDK Architecture", "ignoreCase": "all", "enum": [ "x86", "x64" ], "aliases": [ "jdkArchitecture" ] }, "mavenVersionOption": { "description": "Maven Version", "ignoreCase": "all", "enum": [ "Default", "Path" ], "aliases": [ "mavenVersionSelection" ] }, "mavenDirectory": { "type": "string", "description": "Maven Path", "ignoreCase": "key", "aliases": [ "mavenPath" ] }, "mavenSetM2Home": { "type": "boolean", "description": "Set M2_HOME variable", "ignoreCase": "key" }, "mavenOptions": { "type": "string", "description": "Set MAVEN_OPTS to", "ignoreCase": "key", "aliases": [ "mavenOpts" ] }, "mavenAuthenticateFeed": { "type": "boolean", "description": "Authenticate built-in Maven feeds", "ignoreCase": "key", "aliases": [ "mavenFeedAuthenticate" ] }, "sonarQubeRunAnalysis": { "type": "boolean", "description": "Run SonarQube Analysis", "ignoreCase": "key", "aliases": [ "sqAnalysisEnabled" ] }, "sonarQubeServiceEndpoint": { "type": "string", "description": "SonarQube Endpoint", "ignoreCase": "key", "aliases": [ "sqConnectedServiceName" ] }, "sonarQubeProjectName": { "type": "string", "description": "SonarQube Project Name", "ignoreCase": "key", "aliases": [ "sqProjectName" ] }, "sonarQubeProjectKey": { "type": "string", "description": "SonarQube Project Key", "ignoreCase": "key", "aliases": [ "sqProjectKey" ] }, "sonarQubeProjectVersion": { "type": "string", "description": "SonarQube Project Version", "ignoreCase": "key", "aliases": [ "sqProjectVersion" ] }, "sonarQubeSpecifyDB": { "type": "boolean", "description": "The SonarQube server version is lower than 5.2", "ignoreCase": "key", "aliases": [ "sqDbDetailsRequired" ] }, "sonarQubeDBUrl": { "type": "string", "description": "Db Connection String", "ignoreCase": "key", "aliases": [ "sqDbUrl" ] }, "sonarQubeDBUsername": { "type": "string", "description": "Db Username", "ignoreCase": "key", "aliases": [ "sqDbUsername" ] }, "sonarQubeDBPassword": { "type": "string", "description": "Db User Password", "ignoreCase": "key", "aliases": [ "sqDbPassword" ] }, "sonarQubeIncludeFullReport": { "type": "boolean", "description": "Include full analysis report in the build summary (SQ 5.3+)", "ignoreCase": "key", "aliases": [ "sqAnalysisIncludeFullReport" ] }, "sonarQubeFailWhenQualityGateFails": { "type": "boolean", "description": "Fail the build on quality gate failure (SQ 5.3+)", "ignoreCase": "key", "aliases": [ "sqAnalysisBreakBuildIfQualityGateFailed" ] }, "checkStyleRunAnalysis": { "type": "boolean", "description": "Run Checkstyle", "ignoreCase": "key", "aliases": [ "checkstyleAnalysisEnabled" ] }, "pmdRunAnalysis": { "type": "boolean", "description": "Run PMD", "ignoreCase": "key", "aliases": [ "pmdAnalysisEnabled" ] }, "findBugsRunAnalysis": { "type": "boolean", "description": "Run FindBugs", "ignoreCase": "key", "aliases": [ "findbugsAnalysisEnabled" ] } }, "additionalProperties": false, "required": [] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task" ] }, { "properties": { "task": { "description": ".NET Core (PREVIEW)\n\nBuild, test and publish using dotnet core command-line.", "ignoreCase": "value", "pattern": "^DotNetCoreCLI@0$" }, "inputs": { "description": ".NET Core (PREVIEW) inputs", "properties": { "command": { "description": "Command", "ignoreCase": "all", "enum": [ "build", "publish", "restore", "test", "run" ] }, "publishWebProjects": { "type": "boolean", "description": "Publish Web Projects", "ignoreCase": "key" }, "projects": { "type": "string", "description": "Project(s)", "ignoreCase": "key" }, "arguments": { "type": "string", "description": "Arguments", "ignoreCase": "key" }, "zipAfterPublish": { "type": "boolean", "description": "Zip Published Projects", "ignoreCase": "key" } }, "additionalProperties": false, "required": [] } }, "deprecationMessage": "DotNetCoreCLI is deprecated - Build, test and publish using dotnet core command-line.", "doNotSuggest": true, "firstProperty": [ "task" ], "required": [ "task" ] }, { "properties": { "task": { "description": ".NET Core\n\nBuild, test, package, or publish a dotnet application, or run a custom dotnet command", "ignoreCase": "value", "pattern": "^DotNetCoreCLI@2$" }, "inputs": { "description": ".NET Core inputs", "properties": { "command": { "description": "Command", "ignoreCase": "all", "enum": [ "build", "push", "pack", "publish", "restore", "run", "test", "custom" ] }, "publishWebProjects": { "type": "boolean", "description": "Publish web projects", "ignoreCase": "key" }, "projects": { "type": "string", "description": "Path to project(s)", "ignoreCase": "key" }, "custom": { "type": "string", "description": "Custom command", "ignoreCase": "key" }, "arguments": { "type": "string", "description": "Arguments", "ignoreCase": "key" }, "restoreArguments": { "type": "string", "description": "Arguments", "ignoreCase": "key" }, "publishTestResults": { "type": "boolean", "description": "Publish test results and code coverage", "ignoreCase": "key" }, "testRunTitle": { "type": "string", "description": "Test run title", "ignoreCase": "key" }, "zipAfterPublish": { "type": "boolean", "description": "Zip published projects", "ignoreCase": "key" }, "modifyOutputPath": { "type": "boolean", "description": "Add project's folder name to publish path", "ignoreCase": "key" }, "feedsToUse": { "description": "Feeds to use", "ignoreCase": "all", "enum": [ "select", "config" ], "aliases": [ "selectOrConfig" ] }, "vstsFeed": { "type": "string", "description": "Use packages from this Azure Artifacts feed", "ignoreCase": "key", "aliases": [ "feedRestore" ] }, "includeNuGetOrg": { "type": "boolean", "description": "Use packages from NuGet.org", "ignoreCase": "key" }, "nugetConfigPath": { "type": "string", "description": "Path to NuGet.config", "ignoreCase": "key" }, "externalFeedCredentials": { "type": "string", "description": "Credentials for feeds outside this organization/collection", "ignoreCase": "key", "aliases": [ "externalEndpoints" ] }, "noCache": { "type": "boolean", "description": "Disable local cache", "ignoreCase": "key" }, "restoreDirectory": { "type": "string", "description": "Destination directory", "ignoreCase": "key", "aliases": [ "packagesDirectory" ] }, "verbosityRestore": { "description": "Verbosity", "ignoreCase": "all", "enum": [ "-", "Quiet", "Minimal", "Normal", "Detailed", "Diagnostic" ] }, "packagesToPush": { "type": "string", "description": "Path to NuGet package(s) to publish", "ignoreCase": "key", "aliases": [ "searchPatternPush" ] }, "nuGetFeedType": { "description": "Target feed location", "ignoreCase": "all", "enum": [ "internal", "external" ] }, "publishVstsFeed": { "type": "string", "description": "Target feed", "ignoreCase": "key", "aliases": [ "feedPublish" ] }, "publishPackageMetadata": { "type": "boolean", "description": "Publish pipeline metadata", "ignoreCase": "key" }, "publishFeedCredentials": { "type": "string", "description": "NuGet server", "ignoreCase": "key", "aliases": [ "externalEndpoint" ] }, "packagesToPack": { "type": "string", "description": "Path to csproj or nuspec file(s) to pack", "ignoreCase": "key", "aliases": [ "searchPatternPack" ] }, "configuration": { "type": "string", "description": "Configuration to Package", "ignoreCase": "key", "aliases": [ "configurationToPack" ] }, "packDirectory": { "type": "string", "description": "Package Folder", "ignoreCase": "key", "aliases": [ "outputDir" ] }, "nobuild": { "type": "boolean", "description": "Do not build", "ignoreCase": "key" }, "includesymbols": { "type": "boolean", "description": "Include Symbols", "ignoreCase": "key" }, "includesource": { "type": "boolean", "description": "Include Source", "ignoreCase": "key" }, "versioningScheme": { "description": "Automatic package versioning", "ignoreCase": "all", "enum": [ "off", "byPrereleaseNumber", "byEnvVar", "byBuildNumber" ] }, "versionEnvVar": { "type": "string", "description": "Environment variable", "ignoreCase": "key" }, "majorVersion": { "type": "string", "description": "Major", "ignoreCase": "key", "aliases": [ "requestedMajorVersion" ] }, "minorVersion": { "type": "string", "description": "Minor", "ignoreCase": "key", "aliases": [ "requestedMinorVersion" ] }, "patchVersion": { "type": "string", "description": "Patch", "ignoreCase": "key", "aliases": [ "requestedPatchVersion" ] }, "buildProperties": { "type": "string", "description": "Additional build properties", "ignoreCase": "key" }, "verbosityPack": { "description": "Verbosity", "ignoreCase": "all", "enum": [ "-", "Quiet", "Minimal", "Normal", "Detailed", "Diagnostic" ] }, "workingDirectory": { "type": "string", "description": "Working directory", "ignoreCase": "key" } }, "additionalProperties": false, "required": [] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task" ] }, { "properties": { "task": { "description": ".NET Core\n\nBuild, test and publish using dotnet core command-line.", "ignoreCase": "value", "pattern": "^DotNetCoreCLI@1$" }, "inputs": { "description": ".NET Core inputs", "properties": { "command": { "description": "Command", "ignoreCase": "all", "enum": [ "build", "publish", "restore", "test", "run" ] }, "publishWebProjects": { "type": "boolean", "description": "Publish Web Projects", "ignoreCase": "key" }, "projects": { "type": "string", "description": "Project(s)", "ignoreCase": "key" }, "arguments": { "type": "string", "description": "Arguments", "ignoreCase": "key" }, "zipAfterPublish": { "type": "boolean", "description": "Zip Published Projects", "ignoreCase": "key" } }, "additionalProperties": false, "required": [] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task" ] }, { "properties": { "task": { "description": "Xamarin Component Restore\n\nThis task is deprecated. Use 'NuGet' instead.", "ignoreCase": "value", "pattern": "^XamarinComponentRestore@0$" }, "inputs": { "description": "Xamarin Component Restore inputs", "properties": { "solutionFile": { "type": "string", "description": "Path to solution", "ignoreCase": "key", "aliases": [ "solution" ] }, "email": { "type": "string", "description": "Email", "ignoreCase": "key" }, "password": { "type": "string", "description": "Password", "ignoreCase": "key" } }, "additionalProperties": false, "required": [ "email", "password" ] } }, "deprecationMessage": "XamarinComponentRestore is deprecated - This task is deprecated. Use 'NuGet' instead.", "doNotSuggest": true, "firstProperty": [ "task" ], "required": [ "task", "inputs" ] }, { "properties": { "task": { "description": "Azure App Service deploy\n\nDeploy to Azure App Service a web, mobile, or API app using Docker, Java, .NET, .NET Core, Node.js, PHP, Python, or Ruby", "ignoreCase": "value", "pattern": "^AzureRmWebAppDeployment@4$" }, "inputs": { "description": "Azure App Service deploy inputs", "properties": { "ConnectionType": { "description": "Connection type", "ignoreCase": "all", "enum": [ "AzureRM", "PublishProfile" ] }, "azureSubscription": { "type": "string", "description": "Azure subscription", "ignoreCase": "key", "aliases": [ "ConnectedServiceName" ] }, "PublishProfilePath": { "type": "string", "description": "Publish profile path", "ignoreCase": "key" }, "PublishProfilePassword": { "type": "string", "description": "Publish profile password", "ignoreCase": "key" }, "appType": { "description": "App Service type", "ignoreCase": "all", "enum": [ "webApp", "webAppLinux", "webAppContainer", "webAppHyperVContainer", "functionApp", "functionAppLinux", "functionAppContainer", "apiApp", "mobileApp" ], "aliases": [ "WebAppKind" ] }, "WebAppName": { "type": "string", "description": "App Service name", "ignoreCase": "key" }, "deployToSlotOrASE": { "type": "boolean", "description": "Deploy to Slot or App Service Environment", "ignoreCase": "key", "aliases": [ "DeployToSlotOrASEFlag" ] }, "ResourceGroupName": { "type": "string", "description": "Resource group", "ignoreCase": "key" }, "SlotName": { "type": "string", "description": "Slot", "ignoreCase": "key" }, "DockerNamespace": { "type": "string", "description": "Registry or Namespace", "ignoreCase": "key" }, "DockerRepository": { "type": "string", "description": "Image", "ignoreCase": "key" }, "DockerImageTag": { "type": "string", "description": "Tag", "ignoreCase": "key" }, "VirtualApplication": { "type": "string", "description": "Virtual application", "ignoreCase": "key" }, "packageForLinux": { "type": "string", "description": "Package or folder", "ignoreCase": "key", "aliases": [ "Package" ] }, "RuntimeStack": { "type": "string", "description": "Runtime Stack", "ignoreCase": "key" }, "RuntimeStackFunction": { "description": "Runtime Stack", "ignoreCase": "all", "enum": [ "DOTNET|2.2", "DOTNET|3.1", "JAVA|8", "JAVA|11", "NODE|8", "NODE|10", "NODE|12", "NODE|14", "PYTHON|3.6", "PYTHON|3.7", "PYTHON|3.8" ] }, "StartupCommand": { "type": "string", "description": "Startup command ", "ignoreCase": "key" }, "ScriptType": { "description": "Deployment script type", "ignoreCase": "all", "enum": [ "", "Inline Script", "File Path" ] }, "InlineScript": { "type": "string", "description": "Inline Script", "ignoreCase": "key" }, "ScriptPath": { "type": "string", "description": "Deployment script path", "ignoreCase": "key" }, "WebConfigParameters": { "type": "string", "description": "Generate web.config parameters for Python, Node.js, Go and Java apps", "ignoreCase": "key" }, "AppSettings": { "type": "string", "description": "App settings", "ignoreCase": "key" }, "ConfigurationSettings": { "type": "string", "description": "Configuration settings", "ignoreCase": "key" }, "enableCustomDeployment": { "type": "boolean", "description": "Select deployment method", "ignoreCase": "key", "aliases": [ "UseWebDeploy" ] }, "DeploymentType": { "description": "Deployment method", "ignoreCase": "all", "enum": [ "webDeploy", "zipDeploy", "runFromZip" ] }, "TakeAppOfflineFlag": { "type": "boolean", "description": "Take App Offline", "ignoreCase": "key" }, "SetParametersFile": { "type": "string", "description": "SetParameters file", "ignoreCase": "key" }, "RemoveAdditionalFilesFlag": { "type": "boolean", "description": "Remove additional files at destination", "ignoreCase": "key" }, "ExcludeFilesFromAppDataFlag": { "type": "boolean", "description": "Exclude files from the App_Data folder", "ignoreCase": "key" }, "AdditionalArguments": { "type": "string", "description": "Additional arguments", "ignoreCase": "key" }, "RenameFilesFlag": { "type": "boolean", "description": "Rename locked files", "ignoreCase": "key" }, "enableXmlTransform": { "type": "boolean", "description": "XML transformation", "ignoreCase": "key", "aliases": [ "XmlTransformation" ] }, "enableXmlVariableSubstitution": { "type": "boolean", "description": "XML variable substitution", "ignoreCase": "key", "aliases": [ "XmlVariableSubstitution" ] }, "JSONFiles": { "type": "string", "description": "JSON variable substitution", "ignoreCase": "key" } }, "additionalProperties": false, "required": [] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task" ] }, { "properties": { "task": { "description": "Azure App Service Deploy\n\nUpdate Azure App Service using Web Deploy / Kudu REST APIs", "ignoreCase": "value", "pattern": "^AzureRmWebAppDeployment@2$" }, "inputs": { "description": "Azure App Service Deploy inputs", "properties": { "ConnectedServiceName": { "type": "string", "description": "Azure Subscription", "ignoreCase": "key" }, "WebAppName": { "type": "string", "description": "App Service name", "ignoreCase": "key" }, "DeployToSlotFlag": { "type": "boolean", "description": "Deploy to slot", "ignoreCase": "key" }, "ResourceGroupName": { "type": "string", "description": "Resource group", "ignoreCase": "key" }, "SlotName": { "type": "string", "description": "Slot", "ignoreCase": "key" }, "VirtualApplication": { "type": "string", "description": "Virtual Application", "ignoreCase": "key" }, "Package": { "type": "string", "description": "Package or Folder", "ignoreCase": "key" }, "WebAppUri": { "type": "string", "description": "App Service URL", "ignoreCase": "key" }, "UseWebDeploy": { "type": "boolean", "description": "Publish using Web Deploy", "ignoreCase": "key" }, "SetParametersFile": { "type": "string", "description": "SetParameters File", "ignoreCase": "key" }, "RemoveAdditionalFilesFlag": { "type": "boolean", "description": "Remove Additional Files at Destination", "ignoreCase": "key" }, "ExcludeFilesFromAppDataFlag": { "type": "boolean", "description": "Exclude Files from the App_Data Folder", "ignoreCase": "key" }, "AdditionalArguments": { "type": "string", "description": "Additional Arguments", "ignoreCase": "key" }, "TakeAppOfflineFlag": { "type": "boolean", "description": "Take App Offline", "ignoreCase": "key" } }, "additionalProperties": false, "required": [ "ConnectedServiceName", "WebAppName" ] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task", "inputs" ] }, { "properties": { "task": { "description": "Azure App Service deploy\n\nDeploy to Azure App Service a web, mobile, or API app using Docker, Java, .NET, .NET Core, Node.js, PHP, Python, or Ruby", "ignoreCase": "value", "pattern": "^AzureRmWebAppDeployment@3$" }, "inputs": { "description": "Azure App Service deploy inputs", "properties": { "azureSubscription": { "type": "string", "description": "Azure subscription", "ignoreCase": "key", "aliases": [ "ConnectedServiceName" ] }, "appType": { "description": "App type", "ignoreCase": "all", "enum": [ "app", "applinux", "functionapp", "api", "mobileapp" ], "aliases": [ "WebAppKind" ] }, "WebAppName": { "type": "string", "description": "App Service name", "ignoreCase": "key" }, "DeployToSlotFlag": { "type": "boolean", "description": "Deploy to slot", "ignoreCase": "key" }, "ResourceGroupName": { "type": "string", "description": "Resource group", "ignoreCase": "key" }, "SlotName": { "type": "string", "description": "Slot", "ignoreCase": "key" }, "ImageSource": { "description": "Image Source", "ignoreCase": "all", "enum": [ "Registry", "Builtin" ] }, "AzureContainerRegistry": { "type": "string", "description": "Registry", "ignoreCase": "key" }, "AzureContainerRegistryLoginServer": { "type": "string", "description": "Registry Login Server Name", "ignoreCase": "key" }, "AzureContainerRegistryImage": { "type": "string", "description": "Image", "ignoreCase": "key" }, "AzureContainerRegistryTag": { "type": "string", "description": "Tag", "ignoreCase": "key" }, "DockerRepositoryAccess": { "description": "Repository Access", "ignoreCase": "all", "enum": [ "private", "public" ] }, "dockerRegistryConnection": { "type": "string", "description": "Registry Connection", "ignoreCase": "key", "aliases": [ "RegistryConnectedServiceName" ] }, "PrivateRegistryImage": { "type": "string", "description": "Image", "ignoreCase": "key" }, "PrivateRegistryTag": { "type": "string", "description": "Tag", "ignoreCase": "key" }, "DockerNamespace": { "type": "string", "description": "Registry or Namespace", "ignoreCase": "key" }, "DockerRepository": { "type": "string", "description": "Image", "ignoreCase": "key" }, "DockerImageTag": { "type": "string", "description": "Tag", "ignoreCase": "key" }, "VirtualApplication": { "type": "string", "description": "Virtual application", "ignoreCase": "key" }, "Package": { "type": "string", "description": "Package or folder", "ignoreCase": "key" }, "packageForLinux": { "type": "string", "description": "Package or folder", "ignoreCase": "key", "aliases": [ "BuiltinLinuxPackage" ] }, "RuntimeStack": { "type": "string", "description": "Runtime Stack", "ignoreCase": "key" }, "StartupCommand": { "type": "string", "description": "Startup command ", "ignoreCase": "key" }, "WebAppUri": { "type": "string", "description": "App Service URL", "ignoreCase": "key" }, "ScriptType": { "description": "Deployment script type", "ignoreCase": "all", "enum": [ "", "Inline Script", "File Path" ] }, "InlineScript": { "type": "string", "description": "Inline Script", "ignoreCase": "key" }, "ScriptPath": { "type": "string", "description": "Deployment script path", "ignoreCase": "key" }, "GenerateWebConfig": { "type": "boolean", "description": "Generate Web.config", "ignoreCase": "key" }, "WebConfigParameters": { "type": "string", "description": "Web.config parameters", "ignoreCase": "key" }, "AppSettings": { "type": "string", "description": "App settings", "ignoreCase": "key" }, "ConfigurationSettings": { "type": "string", "description": "Configuration settings", "ignoreCase": "key" }, "TakeAppOfflineFlag": { "type": "boolean", "description": "Take App Offline", "ignoreCase": "key" }, "UseWebDeploy": { "type": "boolean", "description": "Publish using Web Deploy", "ignoreCase": "key" }, "SetParametersFile": { "type": "string", "description": "SetParameters file", "ignoreCase": "key" }, "RemoveAdditionalFilesFlag": { "type": "boolean", "description": "Remove additional files at destination", "ignoreCase": "key" }, "ExcludeFilesFromAppDataFlag": { "type": "boolean", "description": "Exclude files from the App_Data folder", "ignoreCase": "key" }, "AdditionalArguments": { "type": "string", "description": "Additional arguments", "ignoreCase": "key" }, "RenameFilesFlag": { "type": "boolean", "description": "Rename locked files", "ignoreCase": "key" }, "enableXmlTransform": { "type": "boolean", "description": "XML transformation", "ignoreCase": "key", "aliases": [ "XmlTransformation" ] }, "enableXmlVariableSubstitution": { "type": "boolean", "description": "XML variable substitution", "ignoreCase": "key", "aliases": [ "XmlVariableSubstitution" ] }, "JSONFiles": { "type": "string", "description": "JSON variable substitution", "ignoreCase": "key" } }, "additionalProperties": false, "required": [ "azureSubscription", "WebAppName" ] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task", "inputs" ] }, { "properties": { "task": { "description": "PowerShell on target machines\n\nExecute PowerShell scripts on remote machines using PSSession and Invoke-Command for remoting", "ignoreCase": "value", "pattern": "^PowerShellOnTargetMachines@3$" }, "inputs": { "description": "PowerShell on target machines inputs", "properties": { "Machines": { "type": "string", "description": "Machines", "ignoreCase": "key" }, "UserName": { "type": "string", "description": "Username", "ignoreCase": "key" }, "UserPassword": { "type": "string", "description": "Password", "ignoreCase": "key" }, "ScriptType": { "description": "Script Type", "ignoreCase": "all", "enum": [ "FilePath", "Inline" ] }, "ScriptPath": { "type": "string", "description": "Script File Path", "ignoreCase": "key" }, "InlineScript": { "type": "string", "description": "Script", "ignoreCase": "key" }, "ScriptArguments": { "type": "string", "description": "Script Arguments", "ignoreCase": "key" }, "InitializationScript": { "type": "string", "description": "Initialization script", "ignoreCase": "key" }, "SessionVariables": { "type": "string", "description": "Session Variables", "ignoreCase": "key" }, "CommunicationProtocol": { "description": "Protocol", "ignoreCase": "all", "enum": [ "Http", "Https" ] }, "AuthenticationMechanism": { "description": "Authentication", "ignoreCase": "all", "enum": [ "Default", "Credssp" ] }, "NewPsSessionOptionArguments": { "type": "string", "description": "Session Option parameters", "ignoreCase": "key" }, "ErrorActionPreference": { "description": "ErrorActionPreference", "ignoreCase": "all", "enum": [ "stop", "continue", "silentlyContinue" ] }, "failOnStderr": { "type": "boolean", "description": "Fail on Standard Error", "ignoreCase": "key" }, "ignoreLASTEXITCODE": { "type": "boolean", "description": "Ignore $LASTEXITCODE", "ignoreCase": "key" }, "WorkingDirectory": { "type": "string", "description": "Working Directory", "ignoreCase": "key" }, "RunPowershellInParallel": { "type": "boolean", "description": "Run PowerShell in Parallel", "ignoreCase": "key" } }, "additionalProperties": false, "required": [ "Machines" ] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task", "inputs" ] }, { "properties": { "task": { "description": "PowerShell on Target Machines\n\nExecute PowerShell scripts on remote machine(s)", "ignoreCase": "value", "pattern": "^PowerShellOnTargetMachines@1$" }, "inputs": { "description": "PowerShell on Target Machines inputs", "properties": { "EnvironmentName": { "type": "string", "description": "Machines", "ignoreCase": "key" }, "AdminUserName": { "type": "string", "description": "Admin Login", "ignoreCase": "key" }, "AdminPassword": { "type": "string", "description": "Password", "ignoreCase": "key" }, "Protocol": { "description": "Protocol", "ignoreCase": "all", "enum": [ "Http", "Https" ] }, "TestCertificate": { "type": "boolean", "description": "Test Certificate", "ignoreCase": "key" }, "ScriptPath": { "type": "string", "description": "PowerShell Script", "ignoreCase": "key" }, "ScriptArguments": { "type": "string", "description": "Script Arguments", "ignoreCase": "key" }, "InitializationScriptPath": { "type": "string", "description": "Initialization Script", "ignoreCase": "key" }, "SessionVariables": { "type": "string", "description": "Session Variables", "ignoreCase": "key" }, "RunPowershellInParallel": { "type": "boolean", "description": "Run PowerShell in Parallel", "ignoreCase": "key" }, "ResourceFilteringMethod": { "description": "Select Machines By", "ignoreCase": "all", "enum": [ "machineNames", "tags" ] }, "MachineNames": { "type": "string", "description": "Filter Criteria", "ignoreCase": "key" } }, "additionalProperties": false, "required": [ "EnvironmentName", "ScriptPath" ] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task", "inputs" ] }, { "properties": { "task": { "description": "PowerShell on Target Machines\n\nExecute PowerShell scripts on remote machine(s)", "ignoreCase": "value", "pattern": "^PowerShellOnTargetMachines@2$" }, "inputs": { "description": "PowerShell on Target Machines inputs", "properties": { "EnvironmentName": { "type": "string", "description": "Machines", "ignoreCase": "key" }, "AdminUserName": { "type": "string", "description": "Admin Login", "ignoreCase": "key" }, "AdminPassword": { "type": "string", "description": "Password", "ignoreCase": "key" }, "Protocol": { "description": "Protocol", "ignoreCase": "all", "enum": [ "Http", "Https" ] }, "TestCertificate": { "type": "boolean", "description": "Test Certificate", "ignoreCase": "key" }, "ScriptPath": { "type": "string", "description": "PowerShell Script", "ignoreCase": "key" }, "ScriptArguments": { "type": "string", "description": "Script Arguments", "ignoreCase": "key" }, "InitializationScriptPath": { "type": "string", "description": "Initialization Script", "ignoreCase": "key" }, "SessionVariables": { "type": "string", "description": "Session Variables", "ignoreCase": "key" }, "RunPowershellInParallel": { "type": "boolean", "description": "Run PowerShell in Parallel", "ignoreCase": "key" }, "ResourceFilteringMethod": { "description": "Select Machines By", "ignoreCase": "all", "enum": [ "machineNames", "tags" ] }, "MachineNames": { "type": "string", "description": "Filter Criteria", "ignoreCase": "key" } }, "additionalProperties": false, "required": [ "EnvironmentName", "ScriptPath" ] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task", "inputs" ] }, { "properties": { "task": { "description": "Publish code coverage results v2\n\nPublish any of the code coverage results from a build", "ignoreCase": "value", "pattern": "^PublishCodeCoverageResults@2$" }, "inputs": { "description": "Publish code coverage results v2 inputs", "properties": { "summaryFileLocation": { "type": "string", "description": "Path to summary files", "ignoreCase": "key" }, "pathToSources": { "type": "string", "description": "Path to Source files", "ignoreCase": "key" }, "failIfCoverageEmpty": { "type": "boolean", "description": "Fail if code coverage results are missing", "ignoreCase": "key" } }, "additionalProperties": false, "required": [ "summaryFileLocation" ] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task", "inputs" ] }, { "properties": { "task": { "description": "Publish code coverage results\n\nPublish Cobertura or JaCoCo code coverage results from a build", "ignoreCase": "value", "pattern": "^PublishCodeCoverageResults@1$" }, "inputs": { "description": "Publish code coverage results inputs", "properties": { "codeCoverageTool": { "description": "Code coverage tool", "ignoreCase": "all", "enum": [ "Cobertura", "JaCoCo" ] }, "summaryFileLocation": { "type": "string", "description": "Summary file", "ignoreCase": "key" }, "pathToSources": { "type": "string", "description": "Path to Source files", "ignoreCase": "key" }, "reportDirectory": { "type": "string", "description": "Report directory", "ignoreCase": "key" }, "additionalCodeCoverageFiles": { "type": "string", "description": "Additional files", "ignoreCase": "key" }, "failIfCoverageEmpty": { "type": "boolean", "description": "Fail when code coverage results are missing", "ignoreCase": "key" } }, "additionalProperties": false, "required": [ "summaryFileLocation" ] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task", "inputs" ] }, { "properties": { "task": { "description": "Run functional tests\n\nDeprecated: This task and it’s companion task (Visual Studio Test Agent Deployment) are deprecated. Use the 'Visual Studio Test' task instead. The VSTest task can run unit as well as functional tests. Run tests on one or more agents using the multi-agent job setting. Use the 'Visual Studio Test Platform' task to run tests without needing Visual Studio on the agent. VSTest task also brings new capabilities such as automatically rerunning failed tests.", "ignoreCase": "value", "pattern": "^RunVisualStudioTestsusingTestAgent@1$" }, "inputs": { "description": "Run functional tests inputs", "properties": { "testMachineGroup": { "type": "string", "description": "Machines", "ignoreCase": "key" }, "dropLocation": { "type": "string", "description": "Test Drop Location", "ignoreCase": "key" }, "testSelection": { "description": "Test Selection", "ignoreCase": "all", "enum": [ "testAssembly", "testPlan" ] }, "testPlan": { "type": "string", "description": "Test Plan", "ignoreCase": "key" }, "testSuite": { "type": "string", "description": "Test Suite", "ignoreCase": "key" }, "testConfiguration": { "type": "string", "description": "Test Configuration", "ignoreCase": "key" }, "sourcefilters": { "type": "string", "description": "Test Assembly", "ignoreCase": "key" }, "testFilterCriteria": { "type": "string", "description": "Test Filter criteria", "ignoreCase": "key" }, "runSettingsFile": { "type": "string", "description": "Run Settings File", "ignoreCase": "key" }, "overrideRunParams": { "type": "string", "description": "Override Test Run Parameters", "ignoreCase": "key" }, "codeCoverageEnabled": { "type": "boolean", "description": "Code Coverage Enabled", "ignoreCase": "key" }, "customSlicingEnabled": { "type": "boolean", "description": "Distribute tests by number of machines", "ignoreCase": "key" }, "testRunTitle": { "type": "string", "description": "Test Run Title", "ignoreCase": "key" }, "platform": { "type": "string", "description": "Platform", "ignoreCase": "key" }, "configuration": { "type": "string", "description": "Configuration", "ignoreCase": "key" }, "testConfigurations": { "type": "string", "description": "Test Configurations", "ignoreCase": "key" }, "autMachineGroup": { "type": "string", "description": "Application Under Test Machines", "ignoreCase": "key" } }, "additionalProperties": false, "required": [ "testMachineGroup", "dropLocation" ] } }, "deprecationMessage": "RunVisualStudioTestsusingTestAgent is deprecated - Deprecated: This task and it’s companion task (Visual Studio Test Agent Deployment) are deprecated. Use the 'Visual Studio Test' task instead. The VSTest task can run unit as well as functional tests. Run tests on one or more agents using the multi-agent job setting. Use the 'Visual Studio Test Platform' task to run tests without needing Visual Studio on the agent. VSTest task also brings new capabilities such as automatically rerunning failed tests.", "doNotSuggest": true, "firstProperty": [ "task" ], "required": [ "task", "inputs" ] }, { "properties": { "task": { "description": "Manual intervention\n\nPause deployment and wait for manual intervention", "ignoreCase": "value", "pattern": "^ManualIntervention@8$" }, "inputs": { "description": "Manual intervention inputs", "properties": { "instructions": { "type": "string", "description": "Instructions", "ignoreCase": "key" }, "emailRecipients": { "type": "string", "description": "Notify users", "ignoreCase": "key" }, "onTimeout": { "description": "On timeout", "ignoreCase": "all", "enum": [ "reject", "resume" ] } }, "additionalProperties": false, "required": [] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task" ] }, { "properties": { "task": { "description": "Install Apple Provisioning Profile\n\nInstall an Apple provisioning profile required to build on a macOS agent", "ignoreCase": "value", "pattern": "^InstallAppleProvisioningProfile@0$" }, "inputs": { "description": "Install Apple Provisioning Profile inputs", "properties": { "provProfileSecureFile": { "type": "string", "description": "Provisioning Profile", "ignoreCase": "key" }, "removeProfile": { "type": "boolean", "description": "Remove Profile After Build", "ignoreCase": "key" } }, "additionalProperties": false, "required": [ "provProfileSecureFile" ] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task", "inputs" ] }, { "properties": { "task": { "description": "Install Apple provisioning profile\n\nInstall an Apple provisioning profile required to build on a macOS agent machine", "ignoreCase": "value", "pattern": "^InstallAppleProvisioningProfile@1$" }, "inputs": { "description": "Install Apple provisioning profile inputs", "properties": { "provisioningProfileLocation": { "description": "Provisioning profile location", "ignoreCase": "all", "enum": [ "secureFiles", "sourceRepository" ] }, "provProfileSecureFile": { "type": "string", "description": "Provisioning profile", "ignoreCase": "key" }, "provProfileSourceRepository": { "type": "string", "description": "Provisioning profile", "ignoreCase": "key" }, "removeProfile": { "type": "boolean", "description": "Remove profile after build", "ignoreCase": "key" } }, "additionalProperties": false, "required": [] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task" ] }, { "properties": { "task": { "description": "SonarQube for MSBuild - End Analysis\n\n[DEPRECATED] Finish the analysis and upload the results to SonarQube", "ignoreCase": "value", "pattern": "^SonarQubePostTest@1$" }, "inputs": { "description": "SonarQube for MSBuild - End Analysis inputs", "properties": {}, "additionalProperties": false, "required": [] } }, "deprecationMessage": "SonarQubePostTest is deprecated - [DEPRECATED] Finish the analysis and upload the results to SonarQube", "doNotSuggest": true, "firstProperty": [ "task" ], "required": [ "task" ] }, { "properties": { "task": { "description": "PyPI publisher\n\nCreate and upload an sdist or wheel to a PyPI-compatible index using Twine", "ignoreCase": "value", "pattern": "^PyPIPublisher@0$" }, "inputs": { "description": "PyPI publisher inputs", "properties": { "pypiConnection": { "type": "string", "description": "PyPI service connection", "ignoreCase": "key", "aliases": [ "serviceEndpoint" ] }, "packageDirectory": { "type": "string", "description": "Python package directory", "ignoreCase": "key", "aliases": [ "wd" ] }, "alsoPublishWheel": { "type": "boolean", "description": "Also publish a wheel", "ignoreCase": "key", "aliases": [ "wheel" ] } }, "additionalProperties": false, "required": [ "pypiConnection", "packageDirectory" ] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task", "inputs" ] }, { "properties": { "task": { "description": "Chef Knife\n\nRun scripts with Knife commands on your Chef workstation", "ignoreCase": "value", "pattern": "^ChefKnife@1$" }, "inputs": { "description": "Chef Knife inputs", "properties": { "ConnectedServiceName": { "type": "string", "description": "Chef Subscription", "ignoreCase": "key" }, "ScriptPath": { "type": "string", "description": "Script Path", "ignoreCase": "key" }, "ScriptArguments": { "type": "string", "description": "Script Arguments", "ignoreCase": "key" } }, "additionalProperties": false, "required": [ "ConnectedServiceName", "ScriptPath" ] } }, "deprecationMessage": "ChefKnife is deprecated - Run scripts with Knife commands on your Chef workstation", "doNotSuggest": true, "firstProperty": [ "task" ], "required": [ "task", "inputs" ] }, { "properties": { "task": { "description": "Go tool installer\n\nFind in cache or download a specific version of Go and add it to the PATH", "ignoreCase": "value", "pattern": "^GoTool@0$" }, "inputs": { "description": "Go tool installer inputs", "properties": { "version": { "type": "string", "description": "Version", "ignoreCase": "key" }, "goPath": { "type": "string", "description": "GOPATH", "ignoreCase": "key" }, "goBin": { "type": "string", "description": "GOBIN", "ignoreCase": "key" } }, "additionalProperties": false, "required": [] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task" ] }, { "properties": { "task": { "description": "Xcode Package iOS\n\nGenerate an .ipa file from Xcode build output using xcrun (Xcode 7 or below)", "ignoreCase": "value", "pattern": "^XcodePackageiOS@0$" }, "inputs": { "description": "Xcode Package iOS inputs", "properties": { "appName": { "type": "string", "description": "Name of .app", "ignoreCase": "key" }, "ipaName": { "type": "string", "description": "Name of .ipa", "ignoreCase": "key" }, "provisioningProfile": { "type": "string", "description": "Provisioning Profile Name", "ignoreCase": "key" }, "sdk": { "type": "string", "description": "SDK", "ignoreCase": "key" }, "appPath": { "type": "string", "description": "Path to .app", "ignoreCase": "key" }, "ipaPath": { "type": "string", "description": "Path to place .ipa", "ignoreCase": "key" } }, "additionalProperties": false, "required": [ "provisioningProfile" ] } }, "deprecationMessage": "XcodePackageiOS is deprecated - Generate an .ipa file from Xcode build output using xcrun (Xcode 7 or below)", "doNotSuggest": true, "firstProperty": [ "task" ], "required": [ "task", "inputs" ] }, { "properties": { "task": { "description": "Go\n\nGet, build, or test a Go application, or run a custom Go command", "ignoreCase": "value", "pattern": "^Go@0$" }, "inputs": { "description": "Go inputs", "properties": { "command": { "description": "Command", "ignoreCase": "all", "enum": [ "get", "build", "test", "custom" ] }, "customCommand": { "type": "string", "description": "Custom command", "ignoreCase": "key" }, "arguments": { "type": "string", "description": "Arguments", "ignoreCase": "key" }, "workingDirectory": { "type": "string", "description": "Working directory", "ignoreCase": "key" } }, "additionalProperties": false, "required": [] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task" ] }, { "properties": { "task": { "description": "Publish Pipeline Metadata\n\nPublish Pipeline Metadata to Evidence store", "ignoreCase": "value", "pattern": "^PublishPipelineMetadata@0$" }, "inputs": { "description": "Publish Pipeline Metadata inputs", "properties": {}, "additionalProperties": false, "required": [] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task" ] }, { "properties": { "task": { "description": "Docker\n\nBuild, tag, push, or run Docker images, or run a Docker command", "ignoreCase": "value", "pattern": "^Docker@0$" }, "inputs": { "description": "Docker inputs", "properties": { "containerregistrytype": { "description": "Container Registry Type", "ignoreCase": "all", "enum": [ "Azure Container Registry", "Container Registry" ] }, "dockerRegistryConnection": { "type": "string", "description": "Docker Registry Service Connection", "ignoreCase": "key", "aliases": [ "dockerRegistryEndpoint" ] }, "azureSubscription": { "type": "string", "description": "Azure subscription", "ignoreCase": "key", "aliases": [ "azureSubscriptionEndpoint" ] }, "azureContainerRegistry": { "type": "string", "description": "Azure Container Registry", "ignoreCase": "key" }, "action": { "description": "Action", "ignoreCase": "all", "enum": [ "Build an image", "Tag images", "Push an image", "Push images", "Run an image", "Run a Docker command" ] }, "dockerFile": { "type": "string", "description": "Docker File", "ignoreCase": "key" }, "addBaseImageData": { "type": "boolean", "description": "Add base image metadata to image(s)", "ignoreCase": "key" }, "buildArguments": { "type": "string", "description": "Build Arguments", "ignoreCase": "key" }, "defaultContext": { "type": "boolean", "description": "Use Default Build Context", "ignoreCase": "key" }, "context": { "type": "string", "description": "Build Context", "ignoreCase": "key" }, "imageName": { "type": "string", "description": "Image Name", "ignoreCase": "key" }, "imageNamesPath": { "type": "string", "description": "Image Names Path", "ignoreCase": "key" }, "qualifyImageName": { "type": "boolean", "description": "Qualify Image Name", "ignoreCase": "key" }, "additionalImageTags": { "type": "string", "description": "Additional Image Tags", "ignoreCase": "key" }, "includeSourceTags": { "type": "boolean", "description": "Include Source Tags", "ignoreCase": "key" }, "includeLatestTag": { "type": "boolean", "description": "Include Latest Tag", "ignoreCase": "key" }, "imageDigestFile": { "type": "string", "description": "Image Digest File", "ignoreCase": "key" }, "containerName": { "type": "string", "description": "Container Name", "ignoreCase": "key" }, "ports": { "type": "string", "description": "Ports", "ignoreCase": "key" }, "volumes": { "type": "string", "description": "Volumes", "ignoreCase": "key" }, "envVars": { "type": "string", "description": "Environment Variables", "ignoreCase": "key" }, "workDir": { "type": "string", "description": "Working Directory", "ignoreCase": "key" }, "entrypoint": { "type": "string", "description": "Entry Point Override", "ignoreCase": "key" }, "containerCommand": { "type": "string", "description": "Command", "ignoreCase": "key" }, "detached": { "type": "boolean", "description": "Run In Background", "ignoreCase": "key" }, "restartPolicy": { "description": "Restart Policy", "ignoreCase": "all", "enum": [ "no", "onFailure", "always", "unlessStopped" ] }, "restartMaxRetries": { "type": "string", "description": "Maximum Restart Retries", "ignoreCase": "key" }, "customCommand": { "type": "string", "description": "Command", "ignoreCase": "key" }, "dockerHostEndpoint": { "type": "string", "description": "Docker Host Service Connection", "ignoreCase": "key" }, "enforceDockerNamingConvention": { "type": "boolean", "description": "Force image name to follow Docker naming convention", "ignoreCase": "key" }, "workingDirectory": { "type": "string", "description": "Working Directory", "ignoreCase": "key", "aliases": [ "cwd" ] }, "memory": { "type": "string", "description": "Memory limit", "ignoreCase": "key" } }, "additionalProperties": false, "required": [] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task" ] }, { "properties": { "task": { "description": "Docker\n\nBuild, tag, push, or run Docker images, or run a Docker command", "ignoreCase": "value", "pattern": "^Docker@1$" }, "inputs": { "description": "Docker inputs", "properties": { "containerregistrytype": { "description": "Container registry type", "ignoreCase": "all", "enum": [ "Azure Container Registry", "Container Registry" ] }, "addBaseImageData": { "type": "boolean", "description": "Add base image metadata to image(s)", "ignoreCase": "key" }, "dockerRegistryEndpoint": { "type": "string", "description": "Docker registry service connection", "ignoreCase": "key" }, "azureSubscriptionEndpoint": { "type": "string", "description": "Azure subscription", "ignoreCase": "key" }, "azureContainerRegistry": { "type": "string", "description": "Azure container registry", "ignoreCase": "key" }, "command": { "description": "Command", "ignoreCase": "all", "enum": [ "Build an image", "Tag image", "Push an image", "Run an image", "login", "logout" ] }, "dockerFile": { "type": "string", "description": "Dockerfile", "ignoreCase": "key" }, "arguments": { "type": "string", "description": "Arguments", "ignoreCase": "key" }, "pushMultipleImages": { "type": "boolean", "description": "Push multiple images", "ignoreCase": "key" }, "tagMultipleImages": { "type": "boolean", "description": "Tag multiple images", "ignoreCase": "key" }, "imageName": { "type": "string", "description": "Image name", "ignoreCase": "key" }, "imageNamesPath": { "type": "string", "description": "Image names path", "ignoreCase": "key" }, "qualifyImageName": { "type": "boolean", "description": "Qualify image name", "ignoreCase": "key" }, "qualifySourceImageName": { "type": "boolean", "description": "Qualify source image name", "ignoreCase": "key" }, "includeSourceTags": { "type": "boolean", "description": "Include source tags", "ignoreCase": "key" }, "includeLatestTag": { "type": "boolean", "description": "Include latest tag", "ignoreCase": "key" }, "addDefaultLabels": { "type": "boolean", "description": "Add default labels", "ignoreCase": "key" }, "useDefaultContext": { "type": "boolean", "description": "Use default build context", "ignoreCase": "key" }, "buildContext": { "type": "string", "description": "Build context", "ignoreCase": "key" }, "imageDigestFile": { "type": "string", "description": "Image digest file", "ignoreCase": "key" }, "containerName": { "type": "string", "description": "Container name", "ignoreCase": "key" }, "ports": { "type": "string", "description": "Ports", "ignoreCase": "key" }, "volumes": { "type": "string", "description": "Volumes", "ignoreCase": "key" }, "envVars": { "type": "string", "description": "Environment variables", "ignoreCase": "key" }, "workingDirectory": { "type": "string", "description": "Working directory", "ignoreCase": "key" }, "entrypointOverride": { "type": "string", "description": "Entry point override", "ignoreCase": "key" }, "containerCommand": { "type": "string", "description": "Container command", "ignoreCase": "key" }, "runInBackground": { "type": "boolean", "description": "Run in background", "ignoreCase": "key" }, "restartPolicy": { "description": "Restart policy", "ignoreCase": "all", "enum": [ "no", "onFailure", "always", "unlessStopped" ] }, "maxRestartRetries": { "type": "string", "description": "Maximum restart retries", "ignoreCase": "key" }, "dockerHostEndpoint": { "type": "string", "description": "Docker host service connection", "ignoreCase": "key" }, "enforceDockerNamingConvention": { "type": "boolean", "description": "Force image name to follow Docker naming convention", "ignoreCase": "key" }, "memoryLimit": { "type": "string", "description": "Memory limit", "ignoreCase": "key" } }, "additionalProperties": false, "required": [] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task" ] }, { "properties": { "task": { "description": "Docker\n\nBuild or push Docker images, login or logout, start or stop containers, or run a Docker command", "ignoreCase": "value", "pattern": "^Docker@2$" }, "inputs": { "description": "Docker inputs", "properties": { "containerRegistry": { "type": "string", "description": "Container registry", "ignoreCase": "key" }, "repository": { "type": "string", "description": "Container repository", "ignoreCase": "key" }, "command": { "description": "Command", "ignoreCase": "all", "enum": [ "buildAndPush", "build", "push", "login", "logout", "start", "stop" ] }, "Dockerfile": { "type": "string", "description": "Dockerfile", "ignoreCase": "key" }, "buildContext": { "type": "string", "description": "Build context", "ignoreCase": "key" }, "tags": { "type": "string", "description": "Tags", "ignoreCase": "key" }, "arguments": { "type": "string", "description": "Arguments", "ignoreCase": "key" }, "addPipelineData": { "type": "boolean", "description": "Add Pipeline metadata to image(s)", "ignoreCase": "key" }, "addBaseImageData": { "type": "boolean", "description": "Add base image metadata to image(s)", "ignoreCase": "key" }, "container": { "type": "string", "description": "Container", "ignoreCase": "key" } }, "additionalProperties": false, "required": [] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task" ] }, { "properties": { "task": { "description": "Jenkins Queue Job\n\nQueue a job on a Jenkins server", "ignoreCase": "value", "pattern": "^JenkinsQueueJob@1$" }, "inputs": { "description": "Jenkins Queue Job inputs", "properties": { "serverEndpoint": { "type": "string", "description": "Jenkins service endpoint", "ignoreCase": "key" }, "jobName": { "type": "string", "description": "Job name", "ignoreCase": "key" }, "isMultibranchJob": { "type": "boolean", "description": "Job is of Multibranch Pipeline type", "ignoreCase": "key" }, "multibranchPipelineBranch": { "type": "string", "description": "Multibranch Pipeline Branch", "ignoreCase": "key" }, "captureConsole": { "type": "boolean", "description": "Capture console output and wait for completion", "ignoreCase": "key" }, "capturePipeline": { "type": "boolean", "description": "Capture pipeline output and wait for pipeline completion", "ignoreCase": "key" }, "parameterizedJob": { "type": "boolean", "description": "Parameterized job", "ignoreCase": "key" }, "jobParameters": { "type": "string", "description": "Job parameters", "ignoreCase": "key" } }, "additionalProperties": false, "required": [ "serverEndpoint", "jobName" ] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task", "inputs" ] }, { "properties": { "task": { "description": "Jenkins queue job\n\nQueue a job on a Jenkins server", "ignoreCase": "value", "pattern": "^JenkinsQueueJob@2$" }, "inputs": { "description": "Jenkins queue job inputs", "properties": { "serverEndpoint": { "type": "string", "description": "Jenkins service connection", "ignoreCase": "key" }, "jobName": { "type": "string", "description": "Job name", "ignoreCase": "key" }, "isMultibranchJob": { "type": "boolean", "description": "Job is of multibranch pipeline type", "ignoreCase": "key" }, "multibranchPipelineBranch": { "type": "string", "description": "Multibranch pipeline branch", "ignoreCase": "key" }, "captureConsole": { "type": "boolean", "description": "Capture console output and wait for completion", "ignoreCase": "key" }, "capturePipeline": { "type": "boolean", "description": "Capture pipeline output and wait for pipeline completion", "ignoreCase": "key" }, "isParameterizedJob": { "type": "boolean", "description": "Parameterized job", "ignoreCase": "key", "aliases": [ "parameterizedJob" ] }, "jobParameters": { "type": "string", "description": "Job parameters", "ignoreCase": "key" }, "failOnUnstableResult": { "type": "boolean", "description": "Fail on unstable result", "ignoreCase": "key" }, "retryCount": { "type": "string", "description": "Number of retries for failed connection", "ignoreCase": "key" }, "delayBetweenRetries": { "type": "string", "description": "Time between retries", "ignoreCase": "key" } }, "additionalProperties": false, "required": [ "serverEndpoint", "jobName" ] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task", "inputs" ] }, { "properties": { "task": { "description": "FTP upload\n\nUpload files using FTP", "ignoreCase": "value", "pattern": "^FtpUpload@2$" }, "inputs": { "description": "FTP upload inputs", "properties": { "credentialsOption": { "description": "Authentication Method", "ignoreCase": "all", "enum": [ "serviceEndpoint", "inputs" ], "aliases": [ "credsType" ] }, "serverEndpoint": { "type": "string", "description": "FTP Service Connection", "ignoreCase": "key" }, "serverUrl": { "type": "string", "description": "Server URL", "ignoreCase": "key" }, "username": { "type": "string", "description": "Username", "ignoreCase": "key" }, "password": { "type": "string", "description": "Password", "ignoreCase": "key" }, "rootDirectory": { "type": "string", "description": "Root folder", "ignoreCase": "key", "aliases": [ "rootFolder" ] }, "filePatterns": { "type": "string", "description": "File patterns", "ignoreCase": "key" }, "remoteDirectory": { "type": "string", "description": "Remote directory", "ignoreCase": "key", "aliases": [ "remotePath" ] }, "enableUtf8": { "type": "boolean", "description": "Enable UTF8 support", "ignoreCase": "key" }, "clean": { "type": "boolean", "description": "Delete remote directory", "ignoreCase": "key" }, "cleanContents": { "type": "boolean", "description": "Clear remote directory contents", "ignoreCase": "key" }, "preservePaths": { "type": "boolean", "description": "Preserve file paths", "ignoreCase": "key" }, "trustSSL": { "type": "boolean", "description": "Trust server certificate", "ignoreCase": "key" }, "customCmds": { "type": "string", "description": "FTP Commands", "ignoreCase": "key" } }, "additionalProperties": false, "required": [ "rootDirectory" ] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task", "inputs" ] }, { "properties": { "task": { "description": "FTP upload\n\nUpload files using FTP", "ignoreCase": "value", "pattern": "^FtpUpload@1$" }, "inputs": { "description": "FTP upload inputs", "properties": { "credentialsOption": { "description": "Authentication Method", "ignoreCase": "all", "enum": [ "serviceEndpoint", "inputs" ], "aliases": [ "credsType" ] }, "serverEndpoint": { "type": "string", "description": "FTP Service Connection", "ignoreCase": "key" }, "serverUrl": { "type": "string", "description": "Server URL", "ignoreCase": "key" }, "username": { "type": "string", "description": "Username", "ignoreCase": "key" }, "password": { "type": "string", "description": "Password", "ignoreCase": "key" }, "rootDirectory": { "type": "string", "description": "Root folder", "ignoreCase": "key", "aliases": [ "rootFolder" ] }, "filePatterns": { "type": "string", "description": "File patterns", "ignoreCase": "key" }, "remoteDirectory": { "type": "string", "description": "Remote directory", "ignoreCase": "key", "aliases": [ "remotePath" ] }, "clean": { "type": "boolean", "description": "Delete remote directory", "ignoreCase": "key" }, "cleanContents": { "type": "boolean", "description": "Clear remote directory contents", "ignoreCase": "key" }, "overwrite": { "type": "boolean", "description": "Overwrite", "ignoreCase": "key" }, "preservePaths": { "type": "boolean", "description": "Preserve file paths", "ignoreCase": "key" }, "trustSSL": { "type": "boolean", "description": "Trust server certificate", "ignoreCase": "key" } }, "additionalProperties": false, "required": [ "rootDirectory" ] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task", "inputs" ] }, { "properties": { "task": { "description": "Windows machine file copy\n\nCopy files to remote Windows machines", "ignoreCase": "value", "pattern": "^WindowsMachineFileCopy@1$" }, "inputs": { "description": "Windows machine file copy inputs", "properties": { "SourcePath": { "type": "string", "description": "Source", "ignoreCase": "key" }, "EnvironmentName": { "type": "string", "description": "Machines", "ignoreCase": "key" }, "AdminUserName": { "type": "string", "description": "Admin Login", "ignoreCase": "key" }, "AdminPassword": { "type": "string", "description": "Password", "ignoreCase": "key" }, "TargetPath": { "type": "string", "description": "Destination Folder", "ignoreCase": "key" }, "CleanTargetBeforeCopy": { "type": "boolean", "description": "Clean Target", "ignoreCase": "key" }, "CopyFilesInParallel": { "type": "boolean", "description": "Copy Files in Parallel", "ignoreCase": "key" }, "AdditionalArguments": { "type": "string", "description": "Additional Arguments", "ignoreCase": "key" }, "ResourceFilteringMethod": { "description": "Select Machines By", "ignoreCase": "all", "enum": [ "machineNames", "tags" ] }, "MachineNames": { "type": "string", "description": "Filter Criteria", "ignoreCase": "key" } }, "additionalProperties": false, "required": [ "SourcePath", "TargetPath" ] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task", "inputs" ] }, { "properties": { "task": { "description": "Windows machine file copy\n\nCopy files to remote Windows machines", "ignoreCase": "value", "pattern": "^WindowsMachineFileCopy@2$" }, "inputs": { "description": "Windows machine file copy inputs", "properties": { "SourcePath": { "type": "string", "description": "Source", "ignoreCase": "key" }, "MachineNames": { "type": "string", "description": "Machines", "ignoreCase": "key" }, "AdminUserName": { "type": "string", "description": "Admin Login", "ignoreCase": "key" }, "AdminPassword": { "type": "string", "description": "Password", "ignoreCase": "key" }, "TargetPath": { "type": "string", "description": "Destination Folder", "ignoreCase": "key" }, "CleanTargetBeforeCopy": { "type": "boolean", "description": "Clean Target", "ignoreCase": "key" }, "CopyFilesInParallel": { "type": "boolean", "description": "Copy Files in Parallel", "ignoreCase": "key" }, "AdditionalArguments": { "type": "string", "description": "Additional Arguments", "ignoreCase": "key" } }, "additionalProperties": false, "required": [ "SourcePath", "MachineNames", "AdminUserName", "AdminPassword", "TargetPath" ] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task", "inputs" ] }, { "properties": { "task": { "description": "Android Build\n\n[Deprecated] Use Gradle", "ignoreCase": "value", "pattern": "^AndroidBuild@1$" }, "inputs": { "description": "Android Build inputs", "properties": { "gradleWrapper": { "type": "string", "description": "Location of Gradle Wrapper", "ignoreCase": "key" }, "gradleProj": { "type": "string", "description": "Project Directory", "ignoreCase": "key" }, "gradleArguments": { "type": "string", "description": "Gradle Arguments", "ignoreCase": "key" }, "avdName": { "type": "string", "description": "Name", "ignoreCase": "key" }, "createAvd": { "type": "boolean", "description": "Create AVD", "ignoreCase": "key" }, "emulatorTarget": { "type": "string", "description": "AVD Target SDK", "ignoreCase": "key" }, "emulatorDevice": { "type": "string", "description": "AVD Device", "ignoreCase": "key" }, "avdAbi": { "type": "string", "description": "AVD ABI", "ignoreCase": "key" }, "avdForce": { "type": "boolean", "description": "Overwrite Existing AVD", "ignoreCase": "key" }, "avdOptionalArgs": { "type": "string", "description": "Create AVD Optional Arguments", "ignoreCase": "key" }, "startEmulator": { "type": "boolean", "description": "Start and Stop Android Emulator", "ignoreCase": "key" }, "emulatorTimeout": { "type": "string", "description": "Timeout in Seconds", "ignoreCase": "key" }, "emulatorHeadless": { "type": "boolean", "description": "Headless Display", "ignoreCase": "key" }, "emulatorOptionalArgs": { "type": "string", "description": "Emulator Optional Arguments", "ignoreCase": "key" }, "deleteAvd": { "type": "boolean", "description": "Delete AVD", "ignoreCase": "key" } }, "additionalProperties": false, "required": [] } }, "deprecationMessage": "AndroidBuild is deprecated - [Deprecated] Use Gradle", "doNotSuggest": true, "firstProperty": [ "task" ], "required": [ "task" ] }, { "properties": { "task": { "description": "Python twine upload authenticate\n\nAuthenticate for uploading Python distributions using twine. Add '-r FeedName/EndpointName --config-file $(PYPIRC_PATH)' to your twine upload command. For feeds present in this organization, use the feed name as the repository (-r). Otherwise, use the endpoint name defined in the service connection.", "ignoreCase": "value", "pattern": "^TwineAuthenticate@0$" }, "inputs": { "description": "Python twine upload authenticate inputs", "properties": { "artifactFeeds": { "type": "string", "description": "My feeds (select below)", "ignoreCase": "key", "aliases": [ "feedList" ] }, "externalFeeds": { "type": "string", "description": "Feeds from external organizations", "ignoreCase": "key", "aliases": [ "externalSources" ] }, "publishPackageMetadata": { "type": "boolean", "description": "Publish pipeline metadata", "ignoreCase": "key" } }, "additionalProperties": false, "required": [] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task" ] }, { "properties": { "task": { "description": "Python twine upload authenticate\n\nAuthenticate for uploading Python distributions using twine. Add '-r FeedName/EndpointName --config-file $(PYPIRC_PATH)' to your twine upload command. For feeds present in this organization, use the feed name as the repository (-r). Otherwise, use the endpoint name defined in the service connection.", "ignoreCase": "value", "pattern": "^TwineAuthenticate@1$" }, "inputs": { "description": "Python twine upload authenticate inputs", "properties": { "artifactFeed": { "type": "string", "description": "My feed name (select below)", "ignoreCase": "key", "aliases": [ "artifactFeed" ] }, "pythonUploadServiceConnection": { "type": "string", "description": "Feed from external organizations", "ignoreCase": "key", "aliases": [ "pythonUploadServiceConnection" ] } }, "additionalProperties": false, "required": [] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task" ] }, { "properties": { "task": { "description": "IIS web app deploy\n\nDeploy a website or web application using Web Deploy", "ignoreCase": "value", "pattern": "^IISWebAppDeploymentOnMachineGroup@0$" }, "inputs": { "description": "IIS web app deploy inputs", "properties": { "WebSiteName": { "type": "string", "description": "Website Name", "ignoreCase": "key" }, "VirtualApplication": { "type": "string", "description": "Virtual Application", "ignoreCase": "key" }, "Package": { "type": "string", "description": "Package or Folder", "ignoreCase": "key" }, "SetParametersFile": { "type": "string", "description": "SetParameters File", "ignoreCase": "key" }, "RemoveAdditionalFilesFlag": { "type": "boolean", "description": "Remove Additional Files at Destination", "ignoreCase": "key" }, "ExcludeFilesFromAppDataFlag": { "type": "boolean", "description": "Exclude Files from the App_Data Folder", "ignoreCase": "key" }, "TakeAppOfflineFlag": { "type": "boolean", "description": "Take App Offline", "ignoreCase": "key" }, "AdditionalArguments": { "type": "string", "description": "Additional Arguments", "ignoreCase": "key" }, "XmlTransformation": { "type": "boolean", "description": "XML transformation", "ignoreCase": "key" }, "XmlVariableSubstitution": { "type": "boolean", "description": "XML variable substitution", "ignoreCase": "key" }, "JSONFiles": { "type": "string", "description": "JSON variable substitution", "ignoreCase": "key" } }, "additionalProperties": false, "required": [ "WebSiteName" ] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task", "inputs" ] }, { "properties": { "task": { "description": "Python script\n\nRun a Python file or inline script", "ignoreCase": "value", "pattern": "^PythonScript@0$" }, "inputs": { "description": "Python script inputs", "properties": { "scriptSource": { "description": "Script source", "ignoreCase": "all", "enum": [ "filePath", "inline" ] }, "scriptPath": { "type": "string", "description": "Script path", "ignoreCase": "key" }, "script": { "type": "string", "description": "Script", "ignoreCase": "key" }, "arguments": { "type": "string", "description": "Arguments", "ignoreCase": "key" }, "pythonInterpreter": { "type": "string", "description": "Python interpreter", "ignoreCase": "key" }, "workingDirectory": { "type": "string", "description": "Working directory", "ignoreCase": "key" }, "failOnStderr": { "type": "boolean", "description": "Fail on standard error", "ignoreCase": "key" } }, "additionalProperties": false, "required": [] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task" ] }, { "properties": { "task": { "description": "Helm tool installer\n\nInstall Helm and Kubernetes on an agent machine", "ignoreCase": "value", "pattern": "^HelmInstaller@0$" }, "inputs": { "description": "Helm tool installer inputs", "properties": { "helmVersion": { "type": "string", "description": "Helm Version Spec", "ignoreCase": "key" }, "checkLatestHelmVersion": { "type": "boolean", "description": "Check for latest version of Helm", "ignoreCase": "key" }, "installKubectl": { "type": "boolean", "description": "Install Kubectl", "ignoreCase": "key", "aliases": [ "installKubeCtl" ] }, "kubectlVersion": { "type": "string", "description": "Kubectl Version Spec", "ignoreCase": "key" }, "checkLatestKubectl": { "type": "boolean", "description": "Check for latest version of kubectl", "ignoreCase": "key", "aliases": [ "checkLatestKubeCtl" ] } }, "additionalProperties": false, "required": [] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task" ] }, { "properties": { "task": { "description": "Helm tool installer\n\nInstall Helm on an agent machine", "ignoreCase": "value", "pattern": "^HelmInstaller@1$" }, "inputs": { "description": "Helm tool installer inputs", "properties": { "helmVersionToInstall": { "type": "string", "description": "Helm Version Spec", "ignoreCase": "key" } }, "additionalProperties": false, "required": [] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task" ] }, { "properties": { "task": { "description": "Node.js tasks runner installer\n\nInstall specific Node.js version to run node tasks", "ignoreCase": "value", "pattern": "^NodeTaskRunnerInstaller@0$" }, "inputs": { "description": "Node.js tasks runner installer inputs", "properties": { "nodeVersion": { "description": "Version of runner to install", "ignoreCase": "all", "enum": [ "6", "10" ], "aliases": [ "runnerVersion", "installVersion" ] } }, "additionalProperties": false, "required": [] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task" ] }, { "properties": { "task": { "description": "Xamarin License\n\n[Deprecated] Upgrade to free version of Xamarin: https://store.xamarin.com", "ignoreCase": "value", "pattern": "^XamarinLicense@1$" }, "inputs": { "description": "Xamarin License inputs", "properties": { "action": { "description": "Action", "ignoreCase": "all", "enum": [ "Activate", "Deactivate" ] }, "email": { "type": "string", "description": "Email", "ignoreCase": "key" }, "password": { "type": "string", "description": "Password", "ignoreCase": "key" }, "product": { "description": "Xamarin Product", "ignoreCase": "all", "enum": [ "MA", "MT", "MM" ] }, "timeout": { "type": "string", "description": "Timeout in Seconds", "ignoreCase": "key" } }, "additionalProperties": false, "required": [ "email", "password" ] } }, "deprecationMessage": "XamarinLicense is deprecated - [Deprecated] Upgrade to free version of Xamarin: https://store.xamarin.com", "doNotSuggest": true, "firstProperty": [ "task" ], "required": [ "task", "inputs" ] }, { "properties": { "task": { "description": "NuGet authenticate\n\nThis version of the task is deprecated, use NuGetAuthenticateV1 instead. Configure NuGet tools to authenticate with Azure Artifacts and other NuGet repositories. Requires NuGet >= 4.8.5385, dotnet >= 2.1.400, or MSBuild >= 15.8.166.59604.", "ignoreCase": "value", "pattern": "^NuGetAuthenticate@0$" }, "inputs": { "description": "NuGet authenticate inputs", "properties": { "nuGetServiceConnections": { "type": "string", "description": "Service connection credentials for feeds outside this organization", "ignoreCase": "key" }, "forceReinstallCredentialProvider": { "type": "boolean", "description": "Reinstall the credential provider even if already installed", "ignoreCase": "key" } }, "additionalProperties": false, "required": [] } }, "deprecationMessage": "NuGetAuthenticate is deprecated - This version of the task is deprecated, use NuGetAuthenticateV1 instead. Configure NuGet tools to authenticate with Azure Artifacts and other NuGet repositories. Requires NuGet >= 4.8.5385, dotnet >= 2.1.400, or MSBuild >= 15.8.166.59604.", "doNotSuggest": true, "firstProperty": [ "task" ], "required": [ "task" ] }, { "properties": { "task": { "description": "NuGet authenticate\n\nConfigure NuGet tools to authenticate with Azure Artifacts and other NuGet repositories. Requires NuGet >= 4.8.5385, dotnet >= 6, or MSBuild >= 15.8.166.59604", "ignoreCase": "value", "pattern": "^NuGetAuthenticate@1$" }, "inputs": { "description": "NuGet authenticate inputs", "properties": { "nuGetServiceConnections": { "type": "string", "description": "Service connection credentials for feeds outside this organization", "ignoreCase": "key" }, "forceReinstallCredentialProvider": { "type": "boolean", "description": "Reinstall the credential provider even if already installed", "ignoreCase": "key" } }, "additionalProperties": false, "required": [] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task" ] }, { "properties": { "task": { "description": "Download GitHub Nuget Packages\n\nRestore your nuget packages using dotnet CLI", "ignoreCase": "value", "pattern": "^DownloadGitHubNugetPackage@1$" }, "inputs": { "description": "Download GitHub Nuget Packages inputs", "properties": { "packageName": { "type": "string", "description": "Package Name", "ignoreCase": "key" }, "version": { "type": "string", "description": "Package Version", "ignoreCase": "key" }, "externalFeedCredentials": { "type": "string", "description": "Credentials for feed from GitHub", "ignoreCase": "key", "aliases": [ "externalEndpoints" ] }, "restoreDirectory": { "type": "string", "description": "Destination directory", "ignoreCase": "key", "aliases": [ "packagesDirectory" ] } }, "additionalProperties": false, "required": [ "packageName", "version" ] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task", "inputs" ] }, { "properties": { "task": { "description": "Maven Authenticate\n\nProvides credentials for Azure Artifacts feeds and external maven repositories", "ignoreCase": "value", "pattern": "^MavenAuthenticate@0$" }, "inputs": { "description": "Maven Authenticate inputs", "properties": { "artifactsFeeds": { "type": "string", "description": "Feeds", "ignoreCase": "key" }, "mavenServiceConnections": { "type": "string", "description": "Credentials for repositories outside this organization/collection", "ignoreCase": "key" } }, "additionalProperties": false, "required": [] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task" ] }, { "properties": { "task": { "description": "Review App\n\nUse this task under deploy phase provider to create a resource dynamically", "ignoreCase": "value", "pattern": "^ReviewApp@0$" }, "inputs": { "description": "Review App inputs", "properties": { "resourceName": { "type": "string", "description": "Resource name", "ignoreCase": "key" }, "baseEnvironmentName": { "type": "string", "description": "Environment name", "ignoreCase": "key" }, "reviewResourceName": { "type": "string", "description": "Review Resource Name", "ignoreCase": "key" } }, "additionalProperties": false, "required": [ "resourceName" ] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task", "inputs" ] }, { "properties": { "task": { "description": "Java tool installer\n\nAcquire a specific version of Java from a user-supplied Azure blob or the tool cache and sets JAVA_HOME", "ignoreCase": "value", "pattern": "^JavaToolInstaller@0$" }, "inputs": { "description": "Java tool installer inputs", "properties": { "versionSpec": { "type": "string", "description": "JDK version", "ignoreCase": "key" }, "jdkArchitectureOption": { "description": "JDK architecture", "ignoreCase": "all", "enum": [ "x64", "x86" ] }, "jdkSourceOption": { "description": "JDK source", "ignoreCase": "all", "enum": [ "AzureStorage", "LocalDirectory", "PreInstalled" ] }, "jdkFile": { "type": "string", "description": "JDK file", "ignoreCase": "key" }, "azureResourceManagerEndpoint": { "type": "string", "description": "Azure subscription", "ignoreCase": "key" }, "azureStorageAccountName": { "type": "string", "description": "Storage account name", "ignoreCase": "key" }, "azureContainerName": { "type": "string", "description": "Container name", "ignoreCase": "key" }, "azureCommonVirtualFile": { "type": "string", "description": "Common virtual path", "ignoreCase": "key" }, "jdkDestinationDirectory": { "type": "string", "description": "Destination directory", "ignoreCase": "key" }, "cleanDestinationDirectory": { "type": "boolean", "description": "Clean destination directory", "ignoreCase": "key" }, "createExtractDirectory": { "type": "boolean", "description": "Create directory for extracting", "ignoreCase": "key" } }, "additionalProperties": false, "required": [ "jdkArchitectureOption", "jdkSourceOption" ] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task", "inputs" ] }, { "properties": { "task": { "description": "Chef\n\nDeploy to Chef environments by editing environment attributes", "ignoreCase": "value", "pattern": "^Chef@1$" }, "inputs": { "description": "Chef inputs", "properties": { "connectedServiceName": { "type": "string", "description": "Chef Service Connection", "ignoreCase": "key" }, "Environment": { "type": "string", "description": "Environment", "ignoreCase": "key" }, "Attributes": { "type": "string", "description": "Environment Attributes", "ignoreCase": "key" }, "chefWaitTime": { "type": "string", "description": "Wait Time", "ignoreCase": "key" } }, "additionalProperties": false, "required": [ "connectedServiceName", "Environment", "Attributes" ] } }, "deprecationMessage": "Chef is deprecated - Deploy to Chef environments by editing environment attributes", "doNotSuggest": true, "firstProperty": [ "task" ], "required": [ "task", "inputs" ] }, { "properties": { "task": { "description": "Azure Functions Deploy\n\nUpdate a function app with .NET, Python, JavaScript, PowerShell, Java based web applications", "ignoreCase": "value", "pattern": "^AzureFunctionApp@2$" }, "inputs": { "description": "Azure Functions Deploy inputs", "properties": { "azureSubscription": { "type": "string", "description": "Azure subscription", "ignoreCase": "key" }, "appType": { "description": "App type", "ignoreCase": "all", "enum": [ "functionApp", "functionAppLinux" ] }, "appName": { "type": "string", "description": "Azure Functions App name", "ignoreCase": "key" }, "deployToSlotOrASE": { "type": "boolean", "description": "Deploy to Slot or App Service Environment", "ignoreCase": "key" }, "resourceGroupName": { "type": "string", "description": "Resource group", "ignoreCase": "key" }, "slotName": { "type": "string", "description": "Slot", "ignoreCase": "key" }, "package": { "type": "string", "description": "Package or folder", "ignoreCase": "key" }, "runtimeStack": { "description": "Runtime stack", "ignoreCase": "all", "enum": [ "DOTNET|2.2", "DOTNET|3.1", "DOTNET|6.0", "DOTNET-ISOLATED|7.0", "JAVA|8", "JAVA|11", "NODE|8", "NODE|10", "NODE|12", "NODE|14", "NODE|16", "NODE|18", "PYTHON|3.6", "PYTHON|3.7", "PYTHON|3.8", "PYTHON|3.9" ] }, "appSettings": { "type": "string", "description": "App settings", "ignoreCase": "key" }, "deploymentMethod": { "description": "Deployment method", "ignoreCase": "all", "enum": [ "auto", "zipDeploy", "runFromPackage" ] } }, "additionalProperties": false, "required": [ "azureSubscription", "appType", "appName" ] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task", "inputs" ] }, { "properties": { "task": { "description": "Azure Functions\n\nUpdate a function app with .NET, Python, JavaScript, PowerShell, Java based web applications", "ignoreCase": "value", "pattern": "^AzureFunctionApp@1$" }, "inputs": { "description": "Azure Functions inputs", "properties": { "azureSubscription": { "type": "string", "description": "Azure subscription", "ignoreCase": "key" }, "appType": { "description": "App type", "ignoreCase": "all", "enum": [ "functionApp", "functionAppLinux" ] }, "appName": { "type": "string", "description": "Azure Functions App name", "ignoreCase": "key" }, "deployToSlotOrASE": { "type": "boolean", "description": "Deploy to Slot or App Service Environment", "ignoreCase": "key" }, "resourceGroupName": { "type": "string", "description": "Resource group", "ignoreCase": "key" }, "slotName": { "type": "string", "description": "Slot", "ignoreCase": "key" }, "package": { "type": "string", "description": "Package or folder", "ignoreCase": "key" }, "runtimeStack": { "description": "Runtime stack", "ignoreCase": "all", "enum": [ "DOTNET|2.2", "DOTNET|3.1", "DOTNET|6.0", "JAVA|8", "JAVA|11", "NODE|8", "NODE|10", "NODE|12", "NODE|14", "NODE|16", "PYTHON|3.6", "PYTHON|3.7", "PYTHON|3.8", "PYTHON|3.9" ] }, "startUpCommand": { "type": "string", "description": "Startup command ", "ignoreCase": "key" }, "customWebConfig": { "type": "string", "description": "Generate web.config parameters for Python, Node.js, Go and Java apps", "ignoreCase": "key" }, "appSettings": { "type": "string", "description": "App settings", "ignoreCase": "key" }, "configurationStrings": { "type": "string", "description": "Configuration settings", "ignoreCase": "key" }, "deploymentMethod": { "description": "Deployment method", "ignoreCase": "all", "enum": [ "auto", "zipDeploy", "runFromPackage" ] } }, "additionalProperties": false, "required": [ "azureSubscription", "appType", "appName" ] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task", "inputs" ] }, { "properties": { "task": { "description": "npm authenticate (for task runners)\n\nDon't use this task if you're also using the npm task. Provides npm credentials to an .npmrc file in your repository for the scope of the build. This enables npm task runners like gulp and Grunt to authenticate with private registries.", "ignoreCase": "value", "pattern": "^npmAuthenticate@0$" }, "inputs": { "description": "npm authenticate (for task runners) inputs", "properties": { "workingFile": { "type": "string", "description": ".npmrc file to authenticate", "ignoreCase": "key" }, "customEndpoint": { "type": "string", "description": "Credentials for registries outside this organization/collection", "ignoreCase": "key" } }, "additionalProperties": false, "required": [ "workingFile" ] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task", "inputs" ] }, { "properties": { "task": { "description": "MSBuild\n\nBuild with MSBuild", "ignoreCase": "value", "pattern": "^MSBuild@1$" }, "inputs": { "description": "MSBuild inputs", "properties": { "solution": { "type": "string", "description": "Project", "ignoreCase": "key" }, "msbuildLocationMethod": { "description": "MSBuild", "ignoreCase": "all", "enum": [ "version", "location" ] }, "msbuildVersion": { "description": "MSBuild Version", "ignoreCase": "all", "enum": [ "latest", "17.0", "16.0", "15.0", "14.0", "12.0", "4.0" ] }, "msbuildArchitecture": { "description": "MSBuild Architecture", "ignoreCase": "all", "enum": [ "x86", "x64" ] }, "msbuildLocation": { "type": "string", "description": "Path to MSBuild", "ignoreCase": "key" }, "platform": { "type": "string", "description": "Platform", "ignoreCase": "key" }, "configuration": { "type": "string", "description": "Configuration", "ignoreCase": "key" }, "msbuildArguments": { "type": "string", "description": "MSBuild Arguments", "ignoreCase": "key" }, "clean": { "type": "boolean", "description": "Clean", "ignoreCase": "key" }, "maximumCpuCount": { "type": "boolean", "description": "Build in Parallel", "ignoreCase": "key" }, "restoreNugetPackages": { "type": "boolean", "description": "Restore NuGet Packages", "ignoreCase": "key" }, "logProjectEvents": { "type": "boolean", "description": "Record Project Details", "ignoreCase": "key" }, "createLogFile": { "type": "boolean", "description": "Create Log File", "ignoreCase": "key" }, "logFileVerbosity": { "description": "Log File Verbosity", "ignoreCase": "all", "enum": [ "quiet", "minimal", "normal", "detailed", "diagnostic" ] } }, "additionalProperties": false, "required": [] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task" ] }, { "properties": { "task": { "description": "Build machine image\n\nBuild a machine image using Packer, which may be used for Azure Virtual machine scale set deployment", "ignoreCase": "value", "pattern": "^PackerBuild@0$" }, "inputs": { "description": "Build machine image inputs", "properties": { "templateType": { "description": "Packer template", "ignoreCase": "all", "enum": [ "builtin", "custom" ] }, "customTemplateLocation": { "type": "string", "description": "Packer template location", "ignoreCase": "key" }, "customTemplateParameters": { "type": "string", "description": "Template parameters", "ignoreCase": "key" }, "ConnectedServiceName": { "type": "string", "description": "Azure subscription", "ignoreCase": "key" }, "location": { "type": "string", "description": "Storage location", "ignoreCase": "key" }, "storageAccountName": { "type": "string", "description": "Storage account", "ignoreCase": "key" }, "azureResourceGroup": { "type": "string", "description": "Resource group", "ignoreCase": "key" }, "baseImageSource": { "description": "Base image source", "ignoreCase": "all", "enum": [ "default", "customVhd" ] }, "baseImage": { "description": "Base image", "ignoreCase": "all", "enum": [ "MicrosoftWindowsServer:WindowsServer:2012-R2-Datacenter:windows", "MicrosoftWindowsServer:WindowsServer:2016-Datacenter:windows", "MicrosoftWindowsServer:WindowsServer:2012-Datacenter:windows", "MicrosoftWindowsServer:WindowsServer:2008-R2-SP1:windows", "Canonical:UbuntuServer:14.04.4-LTS:linux", "Canonical:UbuntuServer:16.04-LTS:linux", "RedHat:RHEL:7.2:linux", "RedHat:RHEL:6.8:linux", "OpenLogic:CentOS:7.2:linux", "OpenLogic:CentOS:6.8:linux", "credativ:Debian:8:linux", "credativ:Debian:7:linux", "SUSE:openSUSE-Leap:42.2:linux", "SUSE:SLES:12-SP2:linux", "SUSE:SLES:11-SP4:linux" ] }, "customImageUrl": { "type": "string", "description": "Base image URL", "ignoreCase": "key" }, "customImageOSType": { "description": "Base image OS", "ignoreCase": "all", "enum": [ "windows", "linux" ] }, "packagePath": { "type": "string", "description": "Deployment Package", "ignoreCase": "key" }, "deployScriptPath": { "type": "string", "description": "Deployment script", "ignoreCase": "key" }, "deployScriptArguments": { "type": "string", "description": "Deployment script arguments", "ignoreCase": "key" }, "additionalBuilderParameters": { "type": "string", "description": "Additional Builder parameters", "ignoreCase": "key" }, "skipTempFileCleanupDuringVMDeprovision": { "type": "boolean", "description": "Skip temporary file cleanup during deprovision", "ignoreCase": "key" }, "imageUri": { "type": "string", "description": "Image URL", "ignoreCase": "key" } }, "additionalProperties": false, "required": [ "ConnectedServiceName", "location", "storageAccountName", "azureResourceGroup", "packagePath", "deployScriptPath" ] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task", "inputs" ] }, { "properties": { "task": { "description": "Build machine image\n\nBuild a machine image using Packer, which may be used for Azure Virtual machine scale set deployment", "ignoreCase": "value", "pattern": "^PackerBuild@1$" }, "inputs": { "description": "Build machine image inputs", "properties": { "templateType": { "description": "Packer template", "ignoreCase": "all", "enum": [ "builtin", "custom" ] }, "customTemplateLocation": { "type": "string", "description": "Packer template location", "ignoreCase": "key" }, "customTemplateParameters": { "type": "string", "description": "Template parameters", "ignoreCase": "key" }, "ConnectedServiceName": { "type": "string", "description": "Azure subscription", "ignoreCase": "key" }, "isManagedImage": { "type": "boolean", "description": "Managed VM disk image", "ignoreCase": "key" }, "managedImageName": { "type": "string", "description": "Managed VM Disk Image Name ", "ignoreCase": "key" }, "location": { "type": "string", "description": "Storage location", "ignoreCase": "key" }, "storageAccountName": { "type": "string", "description": "Storage account", "ignoreCase": "key" }, "azureResourceGroup": { "type": "string", "description": "Resource group", "ignoreCase": "key" }, "baseImageSource": { "description": "Base image source", "ignoreCase": "all", "enum": [ "default", "customVhd" ] }, "baseImage": { "description": "Base image", "ignoreCase": "all", "enum": [ "MicrosoftWindowsServer:WindowsServer:2012-R2-Datacenter:windows", "MicrosoftWindowsServer:WindowsServer:2016-Datacenter:windows", "MicrosoftWindowsServer:WindowsServer:2012-Datacenter:windows", "MicrosoftWindowsServer:WindowsServer:2008-R2-SP1:windows", "Canonical:UbuntuServer:14.04.4-LTS:linux", "Canonical:UbuntuServer:16.04-LTS:linux", "Canonical:UbuntuServer:18.04-LTS:linux", "RedHat:RHEL:7.2:linux", "RedHat:RHEL:6.8:linux", "OpenLogic:CentOS:7.2:linux", "OpenLogic:CentOS:6.8:linux", "credativ:Debian:8:linux", "credativ:Debian:7:linux", "SUSE:openSUSE-Leap:42.2:linux", "SUSE:SLES:12-SP2:linux", "SUSE:SLES:11-SP4:linux" ] }, "customImageUrl": { "type": "string", "description": "Base image URL", "ignoreCase": "key" }, "customImageOSType": { "description": "Base image OS", "ignoreCase": "all", "enum": [ "windows", "linux" ] }, "packagePath": { "type": "string", "description": "Deployment Package", "ignoreCase": "key" }, "deployScriptPath": { "type": "string", "description": "Deployment script", "ignoreCase": "key" }, "deployScriptArguments": { "type": "string", "description": "Deployment script arguments", "ignoreCase": "key" }, "additionalBuilderParameters": { "type": "string", "description": "Additional Builder parameters", "ignoreCase": "key" }, "skipTempFileCleanupDuringVMDeprovision": { "type": "boolean", "description": "Skip temporary file cleanup during deprovision", "ignoreCase": "key" }, "packerVersion": { "type": "string", "description": "Packer Version", "ignoreCase": "key" }, "imageUri": { "type": "string", "description": "Image URL or Name", "ignoreCase": "key" }, "imageId": { "type": "string", "description": "Azure Resource Id", "ignoreCase": "key" } }, "additionalProperties": false, "required": [ "ConnectedServiceName", "location", "storageAccountName", "azureResourceGroup", "packagePath", "deployScriptPath" ] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task", "inputs" ] }, { "properties": { "task": { "description": "NuGet packager\n\nDeprecated: use the “NuGet” task instead. It works with the new Tool Installer framework so you can easily use new versions of NuGet without waiting for a task update, provides better support for authenticated feeds outside this organization/collection, and uses NuGet 4 by default.", "ignoreCase": "value", "pattern": "^NuGetPackager@0$" }, "inputs": { "description": "NuGet packager inputs", "properties": { "searchPattern": { "type": "string", "description": "Path to csproj or nuspec file(s) to pack", "ignoreCase": "key" }, "outputdir": { "type": "string", "description": "Package Folder", "ignoreCase": "key" }, "includeReferencedProjects": { "type": "boolean", "description": "Include referenced projects", "ignoreCase": "key" }, "versionByBuild": { "description": "Automatic package versioning", "ignoreCase": "all", "enum": [ "false", "byPrereleaseNumber", "byEnvVar", "true" ] }, "versionEnvVar": { "type": "string", "description": "Environment variable", "ignoreCase": "key" }, "requestedMajorVersion": { "type": "string", "description": "Major", "ignoreCase": "key" }, "requestedMinorVersion": { "type": "string", "description": "Minor", "ignoreCase": "key" }, "requestedPatchVersion": { "type": "string", "description": "Patch", "ignoreCase": "key" }, "configurationToPack": { "type": "string", "description": "Configuration to Package", "ignoreCase": "key" }, "buildProperties": { "type": "string", "description": "Additional build properties", "ignoreCase": "key" }, "nuGetAdditionalArgs": { "type": "string", "description": "NuGet Arguments", "ignoreCase": "key" }, "nuGetPath": { "type": "string", "description": "Path to NuGet.exe", "ignoreCase": "key" } }, "additionalProperties": false, "required": [] } }, "deprecationMessage": "NuGetPackager is deprecated - Deprecated: use the “NuGet” task instead. It works with the new Tool Installer framework so you can easily use new versions of NuGet without waiting for a task update, provides better support for authenticated feeds outside this organization/collection, and uses NuGet 4 by default.", "doNotSuggest": true, "firstProperty": [ "task" ], "required": [ "task" ] }, { "properties": { "task": { "description": "Duffle tool installer\n\nInstall a specified version of Duffle for installing and managing CNAB bundles", "ignoreCase": "value", "pattern": "^DuffleInstaller@0$" }, "inputs": { "description": "Duffle tool installer inputs", "properties": { "version": { "type": "string", "description": "Version", "ignoreCase": "key" }, "checkLatestVersion": { "type": "boolean", "description": "Check for latest version", "ignoreCase": "key" } }, "additionalProperties": false, "required": [] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task" ] }, { "properties": { "task": { "description": "Update Service Fabric App Versions\n\nAutomatically updates the versions of a packaged Service Fabric application.", "ignoreCase": "value", "pattern": "^ServiceFabricUpdateAppVersions@1$" }, "inputs": { "description": "Update Service Fabric App Versions inputs", "properties": { "applicationPackagePath": { "type": "string", "description": "Application Package", "ignoreCase": "key" }, "versionSuffix": { "type": "string", "description": "Version Value", "ignoreCase": "key" }, "versionBehavior": { "description": "Version Behavior", "ignoreCase": "all", "enum": [ "Append", "Replace" ] }, "updateOnlyChanged": { "type": "boolean", "description": "Update only if changed", "ignoreCase": "key" }, "pkgArtifactName": { "type": "string", "description": "Package Artifact Name", "ignoreCase": "key" }, "logAllChanges": { "type": "boolean", "description": "Log all changes", "ignoreCase": "key" }, "compareType": { "description": "Compare against", "ignoreCase": "all", "enum": [ "LastSuccessful", "Specific" ] }, "buildNumber": { "type": "string", "description": "Build Number", "ignoreCase": "key" } }, "additionalProperties": false, "required": [ "applicationPackagePath" ] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task", "inputs" ] }, { "properties": { "task": { "description": "Update Service Fabric manifests\n\nAutomatically update portions of application and service manifests in a packaged Azure Service Fabric application", "ignoreCase": "value", "pattern": "^ServiceFabricUpdateManifests@2$" }, "inputs": { "description": "Update Service Fabric manifests inputs", "properties": { "updateType": { "description": "Update Type", "ignoreCase": "all", "enum": [ "Manifest versions", "Docker image settings" ] }, "applicationPackagePath": { "type": "string", "description": "Application Package", "ignoreCase": "key" }, "versionSuffix": { "type": "string", "description": "Version Value", "ignoreCase": "key" }, "versionBehavior": { "description": "Version Behavior", "ignoreCase": "all", "enum": [ "Append", "Replace" ] }, "updateOnlyChanged": { "type": "boolean", "description": "Update only if changed", "ignoreCase": "key" }, "pkgArtifactName": { "type": "string", "description": "Package Artifact Name", "ignoreCase": "key" }, "logAllChanges": { "type": "boolean", "description": "Log all changes", "ignoreCase": "key" }, "compareType": { "description": "Compare against", "ignoreCase": "all", "enum": [ "LastSuccessful", "Specific" ] }, "buildNumber": { "type": "string", "description": "Build Number", "ignoreCase": "key" }, "overwriteExistingPkgArtifact": { "type": "boolean", "description": "Overwrite Existing Package Artifact", "ignoreCase": "key" }, "imageNamesPath": { "type": "string", "description": "Image Names Path", "ignoreCase": "key" }, "imageDigestsPath": { "type": "string", "description": "Image Digests Path", "ignoreCase": "key" } }, "additionalProperties": false, "required": [ "applicationPackagePath" ] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task", "inputs" ] }, { "properties": { "task": { "description": "Query Azure Monitor alerts\n\nObserve the configured Azure Monitor rules for active alerts", "ignoreCase": "value", "pattern": "^AzureMonitor@1$" }, "inputs": { "description": "Query Azure Monitor alerts inputs", "properties": { "connectedServiceNameARM": { "type": "string", "description": "Azure subscription", "ignoreCase": "key" }, "ResourceGroupName": { "type": "string", "description": "Resource group", "ignoreCase": "key" }, "filterType": { "description": "Filter type", "ignoreCase": "all", "enum": [ "resource", "alertrule", "none" ] }, "resource": { "type": "string", "description": "Resource", "ignoreCase": "key" }, "alertRule": { "type": "string", "description": "Alert rule", "ignoreCase": "key" }, "severity": { "description": "Severity", "ignoreCase": "all", "enum": [ "Sev0", "Sev1", "Sev2", "Sev3", "Sev4" ] }, "timeRange": { "description": "Time range", "ignoreCase": "all", "enum": [ "1h", "1d", "7d", "30d" ] }, "alertState": { "description": "Alert state", "ignoreCase": "all", "enum": [ "New", "Acknowledged", "Closed" ] }, "monitorCondition": { "description": "Monitor condition", "ignoreCase": "all", "enum": [ "Fired ", "Resolved" ] } }, "additionalProperties": false, "required": [ "connectedServiceNameARM", "ResourceGroupName" ] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task", "inputs" ] }, { "properties": { "task": { "description": "Query Classic Azure Monitor alerts\n\nObserve the configured classic Azure Monitor rules for active alerts", "ignoreCase": "value", "pattern": "^AzureMonitor@0$" }, "inputs": { "description": "Query Classic Azure Monitor alerts inputs", "properties": { "connectedServiceNameARM": { "type": "string", "description": "Azure subscription", "ignoreCase": "key" }, "ResourceGroupName": { "type": "string", "description": "Resource group", "ignoreCase": "key" }, "ResourceType": { "description": "Resource type", "ignoreCase": "all", "enum": [ "Microsoft.Insights/components", "Microsoft.Web/sites", "Microsoft.Storage/storageAccounts", "Microsoft.Compute/virtualMachines" ] }, "resourceName": { "type": "string", "description": "Resource name", "ignoreCase": "key" }, "alertRules": { "type": "string", "description": "Alert rules", "ignoreCase": "key" } }, "additionalProperties": false, "required": [ "connectedServiceNameARM", "ResourceGroupName", "resourceName", "alertRules" ] } }, "deprecationMessage": "AzureMonitor is deprecated - Observe the configured classic Azure Monitor rules for active alerts", "doNotSuggest": true, "firstProperty": [ "task" ], "required": [ "task", "inputs" ] }, { "properties": { "task": { "description": "Azure Network Load Balancer\n\nConnect or disconnect an Azure virtual machine's network interface to a Load Balancer's back end address pool", "ignoreCase": "value", "pattern": "^AzureNLBManagement@1$" }, "inputs": { "description": "Azure Network Load Balancer inputs", "properties": { "azureSubscription": { "type": "string", "description": "Azure Subscription", "ignoreCase": "key", "aliases": [ "ConnectedServiceName" ] }, "ResourceGroupName": { "type": "string", "description": "Resource Group", "ignoreCase": "key" }, "LoadBalancer": { "type": "string", "description": "Load Balancer Name", "ignoreCase": "key" }, "Action": { "description": "Action", "ignoreCase": "all", "enum": [ "Disconnect", "Connect" ] } }, "additionalProperties": false, "required": [ "azureSubscription", "ResourceGroupName", "LoadBalancer", "Action" ] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task", "inputs" ] }, { "properties": { "task": { "description": "Cloud-based Apache JMeter load test\n\nRun an Apache JMeter load test in the cloud", "ignoreCase": "value", "pattern": "^ApacheJMeterLoadTest@1$" }, "inputs": { "description": "Cloud-based Apache JMeter load test inputs", "properties": { "connectedServiceName": { "type": "string", "description": "Azure Pipelines Connection", "ignoreCase": "key" }, "TestDrop": { "type": "string", "description": "Apache JMeter test files folder", "ignoreCase": "key" }, "LoadTest": { "type": "string", "description": "Apache JMeter file", "ignoreCase": "key" }, "agentCount": { "description": "Agent Count", "ignoreCase": "all", "enum": [ "1", "2", "3", "4", "5" ] }, "runDuration": { "description": "Run Duration (sec)", "ignoreCase": "all", "enum": [ "60", "120", "180", "240", "300" ] }, "geoLocation": { "description": "Load Location", "ignoreCase": "all", "enum": [ "Default", "Australia East", "Australia Southeast", "Brazil South", "Central India", "Central US", "East Asia", "East US 2", "East US", "Japan East", "Japan West", "North Central US", "North Europe", "South Central US", "South India", "Southeast Asia", "West Europe", "West US" ] }, "machineType": { "description": "Run load test using", "ignoreCase": "all", "enum": [ "0", "2" ] } }, "additionalProperties": false, "required": [ "TestDrop" ] } }, "deprecationMessage": "ApacheJMeterLoadTest is deprecated - Run an Apache JMeter load test in the cloud", "doNotSuggest": true, "firstProperty": [ "task" ], "required": [ "task", "inputs" ] }, { "properties": { "task": { "description": "Docker Compose\n\nBuild, push or run multi-container Docker applications. Task can be used with Docker or Azure Container registry.", "ignoreCase": "value", "pattern": "^DockerCompose@0$" }, "inputs": { "description": "Docker Compose inputs", "properties": { "containerregistrytype": { "description": "Container Registry Type", "ignoreCase": "all", "enum": [ "Azure Container Registry", "Container Registry" ] }, "dockerRegistryEndpoint": { "type": "string", "description": "Docker Registry Service Connection", "ignoreCase": "key" }, "azureSubscription": { "type": "string", "description": "Azure subscription", "ignoreCase": "key", "aliases": [ "azureSubscriptionEndpoint" ] }, "azureContainerRegistry": { "type": "string", "description": "Azure Container Registry", "ignoreCase": "key" }, "dockerComposeFile": { "type": "string", "description": "Docker Compose File", "ignoreCase": "key" }, "additionalDockerComposeFiles": { "type": "string", "description": "Additional Docker Compose Files", "ignoreCase": "key" }, "dockerComposeFileArgs": { "type": "string", "description": "Environment Variables", "ignoreCase": "key" }, "projectName": { "type": "string", "description": "Project Name", "ignoreCase": "key" }, "qualifyImageNames": { "type": "boolean", "description": "Qualify Image Names", "ignoreCase": "key" }, "action": { "description": "Action", "ignoreCase": "all", "enum": [ "Build services", "Push services", "Run services", "Run a specific service", "Lock services", "Write service image digests", "Combine configuration", "Run a Docker Compose command" ] }, "additionalImageTags": { "type": "string", "description": "Additional Image Tags", "ignoreCase": "key" }, "includeSourceTags": { "type": "boolean", "description": "Include Source Tags", "ignoreCase": "key" }, "includeLatestTag": { "type": "boolean", "description": "Include Latest Tag", "ignoreCase": "key" }, "buildImages": { "type": "boolean", "description": "Build Images", "ignoreCase": "key" }, "serviceName": { "type": "string", "description": "Service Name", "ignoreCase": "key" }, "containerName": { "type": "string", "description": "Container Name", "ignoreCase": "key" }, "ports": { "type": "string", "description": "Ports", "ignoreCase": "key" }, "workingDirectory": { "type": "string", "description": "Working Directory", "ignoreCase": "key", "aliases": [ "workDir" ] }, "entrypoint": { "type": "string", "description": "Entry Point Override", "ignoreCase": "key" }, "containerCommand": { "type": "string", "description": "Command", "ignoreCase": "key" }, "detached": { "type": "boolean", "description": "Run in Background", "ignoreCase": "key" }, "abortOnContainerExit": { "type": "boolean", "description": "Abort on Container Exit", "ignoreCase": "key" }, "imageDigestComposeFile": { "type": "string", "description": "Image Digest Compose File", "ignoreCase": "key" }, "removeBuildOptions": { "type": "boolean", "description": "Remove Build Options", "ignoreCase": "key" }, "baseResolveDirectory": { "type": "string", "description": "Base Resolve Directory", "ignoreCase": "key" }, "outputDockerComposeFile": { "type": "string", "description": "Output Docker Compose File", "ignoreCase": "key" }, "dockerComposeCommand": { "type": "string", "description": "Command", "ignoreCase": "key" }, "arguments": { "type": "string", "description": "Arguments", "ignoreCase": "key" }, "dockerHostEndpoint": { "type": "string", "description": "Docker Host Service Connection", "ignoreCase": "key" }, "nopIfNoDockerComposeFile": { "type": "boolean", "description": "No-op if no Docker Compose File", "ignoreCase": "key" }, "requireAdditionalDockerComposeFiles": { "type": "boolean", "description": "Require Additional Docker Compose Files", "ignoreCase": "key" }, "currentWorkingDirectory": { "type": "string", "description": "Working Directory", "ignoreCase": "key", "aliases": [ "cwd" ] }, "dockerComposePath": { "type": "string", "description": "Docker Compose executable Path", "ignoreCase": "key" } }, "additionalProperties": false, "required": [] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task" ] }, { "properties": { "task": { "description": "Azure Monitor alerts (Deprecated)\n\nConfigure alerts on available metrics for an Azure resource (Deprecated)", "ignoreCase": "value", "pattern": "^AzureMonitorAlerts@0$" }, "inputs": { "description": "Azure Monitor alerts (Deprecated) inputs", "properties": { "azureSubscription": { "type": "string", "description": "Azure Subscription", "ignoreCase": "key", "aliases": [ "ConnectedServiceName" ] }, "ResourceGroupName": { "type": "string", "description": "Resource Group", "ignoreCase": "key" }, "ResourceType": { "description": "Resource Type", "ignoreCase": "all", "enum": [ "Microsoft.Insights/components", "Microsoft.Web/sites", "Microsoft.Storage/storageAccounts", "Microsoft.Compute/virtualMachines" ] }, "ResourceName": { "type": "string", "description": "Resource name", "ignoreCase": "key" }, "AlertRules": { "type": "string", "description": "Alert rules", "ignoreCase": "key" }, "NotifyServiceOwners": { "type": "boolean", "description": "Subscription owners, contributors and readers", "ignoreCase": "key" }, "NotifyEmails": { "type": "string", "description": "Additional administrator emails", "ignoreCase": "key" } }, "additionalProperties": false, "required": [ "azureSubscription", "ResourceGroupName", "ResourceName", "AlertRules" ] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task", "inputs" ] }, { "properties": { "task": { "description": "Xamarin Test Cloud\n\n[Deprecated] Test mobile apps with Xamarin Test Cloud using Xamarin.UITest. Instead, use the 'App Center test' task.", "ignoreCase": "value", "pattern": "^XamarinTestCloud@1$" }, "inputs": { "description": "Xamarin Test Cloud inputs", "properties": { "appFile": { "type": "string", "description": "App file", "ignoreCase": "key", "aliases": [ "app" ] }, "dsymFile": { "type": "string", "description": "dSYM file (iOS only)", "ignoreCase": "key", "aliases": [ "dsym" ] }, "teamApiKey": { "type": "string", "description": "Team API key", "ignoreCase": "key" }, "email": { "type": "string", "description": "User email", "ignoreCase": "key", "aliases": [ "user" ] }, "devices": { "type": "string", "description": "Devices", "ignoreCase": "key" }, "series": { "type": "string", "description": "Series", "ignoreCase": "key" }, "testAssemblyDirectory": { "type": "string", "description": "Test assembly directory", "ignoreCase": "key", "aliases": [ "testDir" ] }, "parallelizationOption": { "description": "Parallelization", "ignoreCase": "all", "enum": [ "none", "--fixture-chunk", "--test-chunk" ], "aliases": [ "parallelization" ] }, "localeOption": { "description": "System language", "ignoreCase": "all", "enum": [ "da_DK", "nl_NL", "en_GB", "en_US", "fr_FR", "de_DE", "ja_JP", "ru_RU", "es_MX", "es_ES", "user" ], "aliases": [ "locale" ] }, "userDefinedLocale": { "type": "string", "description": "Other locale", "ignoreCase": "key" }, "testCloudFile": { "type": "string", "description": "test-cloud.exe location", "ignoreCase": "key", "aliases": [ "testCloudLocation" ] }, "optionalArgs": { "type": "string", "description": "Optional arguments", "ignoreCase": "key" }, "publishNUnitResults": { "type": "boolean", "description": "Publish results to Azure Pipelines", "ignoreCase": "key" } }, "additionalProperties": false, "required": [ "appFile", "teamApiKey", "email", "devices", "testAssemblyDirectory" ] } }, "deprecationMessage": "XamarinTestCloud is deprecated - [Deprecated] Test mobile apps with Xamarin Test Cloud using Xamarin.UITest. Instead, use the 'App Center test' task.", "doNotSuggest": true, "firstProperty": [ "task" ], "required": [ "task", "inputs" ] }, { "properties": { "task": { "description": "Service Fabric application deployment\n\nDeploy an Azure Service Fabric application to a cluster", "ignoreCase": "value", "pattern": "^ServiceFabricDeploy@1$" }, "inputs": { "description": "Service Fabric application deployment inputs", "properties": { "applicationPackagePath": { "type": "string", "description": "Application Package", "ignoreCase": "key" }, "serviceConnectionName": { "type": "string", "description": "Cluster Service Connection", "ignoreCase": "key" }, "publishProfilePath": { "type": "string", "description": "Publish Profile", "ignoreCase": "key" }, "applicationParameterPath": { "type": "string", "description": "Application Parameters", "ignoreCase": "key" }, "overrideApplicationParameter": { "type": "boolean", "description": "Override Application Parameters", "ignoreCase": "key" }, "compressPackage": { "type": "boolean", "description": "Compress Package", "ignoreCase": "key" }, "copyPackageTimeoutSec": { "type": "string", "description": "CopyPackageTimeoutSec", "ignoreCase": "key" }, "registerPackageTimeoutSec": { "type": "string", "description": "RegisterPackageTimeoutSec", "ignoreCase": "key" }, "overwriteBehavior": { "description": "Overwrite Behavior", "ignoreCase": "all", "enum": [ "Always", "Never", "SameAppTypeAndVersion" ] }, "skipUpgradeSameTypeAndVersion": { "type": "boolean", "description": "Skip upgrade for same Type and Version", "ignoreCase": "key" }, "skipPackageValidation": { "type": "boolean", "description": "Skip package validation", "ignoreCase": "key" }, "useDiffPackage": { "type": "boolean", "description": "Use Diff Package", "ignoreCase": "key" }, "overridePublishProfileSettings": { "type": "boolean", "description": "Override All Publish Profile Upgrade Settings", "ignoreCase": "key" }, "isUpgrade": { "type": "boolean", "description": "Upgrade the Application", "ignoreCase": "key" }, "unregisterUnusedVersions": { "type": "boolean", "description": "Unregister Unused Versions", "ignoreCase": "key" }, "upgradeMode": { "description": "Upgrade Mode", "ignoreCase": "all", "enum": [ "Monitored", "UnmonitoredAuto", "UnmonitoredManual" ] }, "FailureAction": { "description": "FailureAction", "ignoreCase": "all", "enum": [ "Rollback", "Manual" ] }, "UpgradeReplicaSetCheckTimeoutSec": { "type": "string", "description": "UpgradeReplicaSetCheckTimeoutSec", "ignoreCase": "key" }, "TimeoutSec": { "type": "string", "description": "TimeoutSec", "ignoreCase": "key" }, "ForceRestart": { "type": "boolean", "description": "ForceRestart", "ignoreCase": "key" }, "HealthCheckRetryTimeoutSec": { "type": "string", "description": "HealthCheckRetryTimeoutSec", "ignoreCase": "key" }, "HealthCheckWaitDurationSec": { "type": "string", "description": "HealthCheckWaitDurationSec", "ignoreCase": "key" }, "HealthCheckStableDurationSec": { "type": "string", "description": "HealthCheckStableDurationSec", "ignoreCase": "key" }, "UpgradeDomainTimeoutSec": { "type": "string", "description": "UpgradeDomainTimeoutSec", "ignoreCase": "key" }, "ConsiderWarningAsError": { "type": "boolean", "description": "ConsiderWarningAsError", "ignoreCase": "key" }, "DefaultServiceTypeHealthPolicy": { "type": "string", "description": "DefaultServiceTypeHealthPolicy", "ignoreCase": "key" }, "MaxPercentUnhealthyDeployedApplications": { "type": "string", "description": "MaxPercentUnhealthyDeployedApplications", "ignoreCase": "key" }, "UpgradeTimeoutSec": { "type": "string", "description": "UpgradeTimeoutSec", "ignoreCase": "key" }, "ServiceTypeHealthPolicyMap": { "type": "string", "description": "ServiceTypeHealthPolicyMap", "ignoreCase": "key" }, "configureDockerSettings": { "type": "boolean", "description": "Configure Docker settings", "ignoreCase": "key" }, "registryCredentials": { "description": "Registry Credentials Source", "ignoreCase": "all", "enum": [ "AzureResourceManagerEndpoint", "ContainerRegistryEndpoint", "UsernamePassword" ] }, "dockerRegistryConnection": { "type": "string", "description": "Docker Registry Service Connection", "ignoreCase": "key", "aliases": [ "dockerRegistryEndpoint" ] }, "azureSubscription": { "type": "string", "description": "Azure subscription", "ignoreCase": "key", "aliases": [ "azureSubscriptionEndpoint" ] }, "registryUserName": { "type": "string", "description": "Registry User Name", "ignoreCase": "key" }, "registryPassword": { "type": "string", "description": "Registry Password", "ignoreCase": "key" }, "passwordEncrypted": { "type": "boolean", "description": "Password Encrypted", "ignoreCase": "key" } }, "additionalProperties": false, "required": [ "applicationPackagePath", "serviceConnectionName" ] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task", "inputs" ] }, { "properties": { "task": { "description": "Xcode\n\nBuild, test, or archive an Xcode workspace on macOS. Optionally package an app.", "ignoreCase": "value", "pattern": "^Xcode@5$" }, "inputs": { "description": "Xcode inputs", "properties": { "actions": { "type": "string", "description": "Actions", "ignoreCase": "key" }, "configuration": { "type": "string", "description": "Configuration", "ignoreCase": "key" }, "sdk": { "type": "string", "description": "SDK", "ignoreCase": "key" }, "xcWorkspacePath": { "type": "string", "description": "Workspace or project path", "ignoreCase": "key" }, "scheme": { "type": "string", "description": "Scheme", "ignoreCase": "key" }, "xcodeVersion": { "description": "Xcode version", "ignoreCase": "all", "enum": [ "8", "9", "10", "11", "12", "13", "default", "specifyPath" ] }, "xcodeDeveloperDir": { "type": "string", "description": "Xcode developer path", "ignoreCase": "key" }, "packageApp": { "type": "boolean", "description": "Create app package", "ignoreCase": "key" }, "archivePath": { "type": "string", "description": "Archive path", "ignoreCase": "key" }, "exportPath": { "type": "string", "description": "Export path", "ignoreCase": "key" }, "exportOptions": { "description": "Export options", "ignoreCase": "all", "enum": [ "auto", "plist", "specify" ] }, "exportMethod": { "type": "string", "description": "Export method", "ignoreCase": "key" }, "exportTeamId": { "type": "string", "description": "Team ID", "ignoreCase": "key" }, "exportOptionsPlist": { "type": "string", "description": "Export options plist", "ignoreCase": "key" }, "exportArgs": { "type": "string", "description": "Export arguments", "ignoreCase": "key" }, "signingOption": { "description": "Signing style", "ignoreCase": "all", "enum": [ "nosign", "default", "manual", "auto" ] }, "signingIdentity": { "type": "string", "description": "Signing identity", "ignoreCase": "key" }, "provisioningProfileUuid": { "type": "string", "description": "Provisioning profile UUID", "ignoreCase": "key" }, "provisioningProfileName": { "type": "string", "description": "Provisioning profile name", "ignoreCase": "key" }, "teamId": { "type": "string", "description": "Team ID", "ignoreCase": "key" }, "destinationPlatformOption": { "description": "Destination platform", "ignoreCase": "all", "enum": [ "default", "iOS", "tvOS", "macOS", "custom" ] }, "destinationPlatform": { "type": "string", "description": "Custom destination platform", "ignoreCase": "key" }, "destinationTypeOption": { "description": "Destination type", "ignoreCase": "all", "enum": [ "simulators", "devices" ] }, "destinationSimulators": { "type": "string", "description": "Simulator", "ignoreCase": "key" }, "destinationDevices": { "type": "string", "description": "Device", "ignoreCase": "key" }, "args": { "type": "string", "description": "Arguments", "ignoreCase": "key" }, "workingDirectory": { "type": "string", "description": "Working directory", "ignoreCase": "key", "aliases": [ "cwd" ] }, "useXcpretty": { "type": "boolean", "description": "Use xcpretty", "ignoreCase": "key" }, "xcprettyArgs": { "type": "string", "description": "Xcpretty arguments", "ignoreCase": "key" }, "publishJUnitResults": { "type": "boolean", "description": "Publish test results to Azure Pipelines", "ignoreCase": "key" }, "testRunTitle": { "type": "string", "description": "Test run title", "ignoreCase": "key" } }, "additionalProperties": false, "required": [] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task" ] }, { "properties": { "task": { "description": "Xcode Build\n\nBuild an Xcode workspace on macOS", "ignoreCase": "value", "pattern": "^Xcode@3$" }, "inputs": { "description": "Xcode Build inputs", "properties": { "actions": { "type": "string", "description": "Actions", "ignoreCase": "key" }, "configuration": { "type": "string", "description": "Configuration", "ignoreCase": "key" }, "sdk": { "type": "string", "description": "SDK", "ignoreCase": "key" }, "xcWorkspacePath": { "type": "string", "description": "Workspace/Project Path", "ignoreCase": "key" }, "scheme": { "type": "string", "description": "Scheme", "ignoreCase": "key" }, "packageApp": { "type": "boolean", "description": "Create App Package", "ignoreCase": "key" }, "archivePath": { "type": "string", "description": "Archive Path", "ignoreCase": "key" }, "exportPath": { "type": "string", "description": "Export Path", "ignoreCase": "key" }, "exportOptions": { "description": "Export Options", "ignoreCase": "all", "enum": [ "auto", "plist", "specify" ] }, "exportMethod": { "type": "string", "description": "Export Method", "ignoreCase": "key" }, "exportTeamId": { "type": "string", "description": "Team ID", "ignoreCase": "key" }, "exportOptionsPlist": { "type": "string", "description": "Export Options Plist", "ignoreCase": "key" }, "exportArgs": { "type": "string", "description": "Export Arguments", "ignoreCase": "key" }, "xcode8AutomaticSigning": { "type": "boolean", "description": "Automatic Signing", "ignoreCase": "key" }, "teamId": { "type": "string", "description": "Team ID", "ignoreCase": "key" }, "signMethod": { "description": "Override Using", "ignoreCase": "all", "enum": [ "file", "id" ] }, "iosSigningIdentity": { "type": "string", "description": "Signing Identity", "ignoreCase": "key" }, "unlockDefaultKeychain": { "type": "boolean", "description": "Unlock Default Keychain", "ignoreCase": "key" }, "defaultKeychainPassword": { "type": "string", "description": "Default Keychain Password", "ignoreCase": "key" }, "provProfileUuid": { "type": "string", "description": "Provisioning Profile UUID", "ignoreCase": "key" }, "p12": { "type": "string", "description": "P12 Certificate File", "ignoreCase": "key" }, "p12pwd": { "type": "string", "description": "P12 Password", "ignoreCase": "key" }, "provProfile": { "type": "string", "description": "Provisioning Profile File", "ignoreCase": "key" }, "removeProfile": { "type": "boolean", "description": "Remove Profile After Build", "ignoreCase": "key" }, "args": { "type": "string", "description": "Arguments", "ignoreCase": "key" }, "cwd": { "type": "string", "description": "Working Directory", "ignoreCase": "key" }, "outputPattern": { "type": "string", "description": "Output Directory", "ignoreCase": "key" }, "xcodeDeveloperDir": { "type": "string", "description": "Xcode Developer Path", "ignoreCase": "key" }, "useXcpretty": { "type": "boolean", "description": "Use xcpretty", "ignoreCase": "key" }, "publishJUnitResults": { "type": "boolean", "description": "Publish to VSTS/TFS", "ignoreCase": "key" } }, "additionalProperties": false, "required": [] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task" ] }, { "properties": { "task": { "description": "Xcode\n\nBuild, test, or archive an Xcode workspace on macOS. Optionally package an app.", "ignoreCase": "value", "pattern": "^Xcode@4$" }, "inputs": { "description": "Xcode inputs", "properties": { "actions": { "type": "string", "description": "Actions", "ignoreCase": "key" }, "configuration": { "type": "string", "description": "Configuration", "ignoreCase": "key" }, "sdk": { "type": "string", "description": "SDK", "ignoreCase": "key" }, "xcWorkspacePath": { "type": "string", "description": "Workspace or project path", "ignoreCase": "key" }, "scheme": { "type": "string", "description": "Scheme", "ignoreCase": "key" }, "xcodeVersion": { "description": "Xcode version", "ignoreCase": "all", "enum": [ "8", "9", "default", "specifyPath" ] }, "xcodeDeveloperDir": { "type": "string", "description": "Xcode developer path", "ignoreCase": "key" }, "packageApp": { "type": "boolean", "description": "Create app package", "ignoreCase": "key" }, "archivePath": { "type": "string", "description": "Archive path", "ignoreCase": "key" }, "exportPath": { "type": "string", "description": "Export path", "ignoreCase": "key" }, "exportOptions": { "description": "Export options", "ignoreCase": "all", "enum": [ "auto", "plist", "specify" ] }, "exportMethod": { "type": "string", "description": "Export method", "ignoreCase": "key" }, "exportTeamId": { "type": "string", "description": "Team ID", "ignoreCase": "key" }, "exportOptionsPlist": { "type": "string", "description": "Export options plist", "ignoreCase": "key" }, "exportArgs": { "type": "string", "description": "Export arguments", "ignoreCase": "key" }, "signingOption": { "description": "Signing style", "ignoreCase": "all", "enum": [ "nosign", "default", "manual", "auto" ] }, "signingIdentity": { "type": "string", "description": "Signing identity", "ignoreCase": "key" }, "provisioningProfileUuid": { "type": "string", "description": "Provisioning profile UUID", "ignoreCase": "key" }, "teamId": { "type": "string", "description": "Team ID", "ignoreCase": "key" }, "destinationPlatformOption": { "description": "Destination platform", "ignoreCase": "all", "enum": [ "default", "iOS", "tvOS", "macOS", "custom" ] }, "destinationPlatform": { "type": "string", "description": "Custom destination platform", "ignoreCase": "key" }, "destinationTypeOption": { "description": "Destination type", "ignoreCase": "all", "enum": [ "simulators", "devices" ] }, "destinationSimulators": { "type": "string", "description": "Simulator", "ignoreCase": "key" }, "destinationDevices": { "type": "string", "description": "Device", "ignoreCase": "key" }, "args": { "type": "string", "description": "Arguments", "ignoreCase": "key" }, "workingDirectory": { "type": "string", "description": "Working directory", "ignoreCase": "key", "aliases": [ "cwd" ] }, "outputPattern": { "type": "string", "description": "Output directory", "ignoreCase": "key" }, "useXcpretty": { "type": "boolean", "description": "Use xcpretty", "ignoreCase": "key" }, "publishJUnitResults": { "type": "boolean", "description": "Publish test results to VSTS/TFS", "ignoreCase": "key" } }, "additionalProperties": false, "required": [] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task" ] }, { "properties": { "task": { "description": "Xcode Build\n\nBuild an Xcode workspace on Mac OS", "ignoreCase": "value", "pattern": "^Xcode@2$" }, "inputs": { "description": "Xcode Build inputs", "properties": { "actions": { "type": "string", "description": "Actions", "ignoreCase": "key" }, "configuration": { "type": "string", "description": "Configuration", "ignoreCase": "key" }, "sdk": { "type": "string", "description": "SDK", "ignoreCase": "key" }, "xcWorkspacePath": { "type": "string", "description": "Workspace/Project Path", "ignoreCase": "key" }, "scheme": { "type": "string", "description": "Scheme", "ignoreCase": "key" }, "packageApp": { "type": "boolean", "description": "Create App Package", "ignoreCase": "key" }, "packageTool": { "description": "Create Package (IPA) using", "ignoreCase": "all", "enum": [ "xcrun", "xcodebuild" ] }, "archivePath": { "type": "string", "description": "Archive Path", "ignoreCase": "key" }, "exportPath": { "type": "string", "description": "Export Path", "ignoreCase": "key" }, "exportOptions": { "description": "Export Options", "ignoreCase": "all", "enum": [ "auto", "plist", "specify" ] }, "exportMethod": { "type": "string", "description": "Export Method", "ignoreCase": "key" }, "exportTeamId": { "type": "string", "description": "Team ID", "ignoreCase": "key" }, "exportOptionsPlist": { "type": "string", "description": "Export Options Plist", "ignoreCase": "key" }, "xcode8AutomaticSigning": { "type": "boolean", "description": "Automatic Signing", "ignoreCase": "key" }, "teamId": { "type": "string", "description": "Team ID", "ignoreCase": "key" }, "signMethod": { "description": "Override Using", "ignoreCase": "all", "enum": [ "file", "id" ] }, "iosSigningIdentity": { "type": "string", "description": "Signing Identity", "ignoreCase": "key" }, "unlockDefaultKeychain": { "type": "boolean", "description": "Unlock Default Keychain", "ignoreCase": "key" }, "defaultKeychainPassword": { "type": "string", "description": "Default Keychain Password", "ignoreCase": "key" }, "provProfileUuid": { "type": "string", "description": "Provisioning Profile UUID", "ignoreCase": "key" }, "p12": { "type": "string", "description": "P12 Certificate File", "ignoreCase": "key" }, "p12pwd": { "type": "string", "description": "P12 Password", "ignoreCase": "key" }, "provProfile": { "type": "string", "description": "Provisioning Profile File", "ignoreCase": "key" }, "removeProfile": { "type": "boolean", "description": "Remove Profile After Build", "ignoreCase": "key" }, "args": { "type": "string", "description": "Arguments", "ignoreCase": "key" }, "cwd": { "type": "string", "description": "Working Directory", "ignoreCase": "key" }, "outputPattern": { "type": "string", "description": "Output Directory", "ignoreCase": "key" }, "xcodeDeveloperDir": { "type": "string", "description": "Xcode Developer Path", "ignoreCase": "key" }, "useXcpretty": { "type": "boolean", "description": "Use xcpretty", "ignoreCase": "key" }, "publishJUnitResults": { "type": "boolean", "description": "Publish to VSTS/TFS", "ignoreCase": "key" }, "useXctool": { "type": "boolean", "description": "Use xctool", "ignoreCase": "key" }, "xctoolReporter": { "type": "string", "description": "xctool Test Reporter Format", "ignoreCase": "key" } }, "additionalProperties": false, "required": [] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task" ] }, { "properties": { "task": { "description": "NuGet publisher\n\nDeprecated: use the “NuGet” task instead. It works with the new Tool Installer framework so you can easily use new versions of NuGet without waiting for a task update, provides better support for authenticated feeds outside this organization/collection, and uses NuGet 4 by default.", "ignoreCase": "value", "pattern": "^NuGetPublisher@0$" }, "inputs": { "description": "NuGet publisher inputs", "properties": { "searchPattern": { "type": "string", "description": "Path/Pattern to nupkg", "ignoreCase": "key" }, "nuGetFeedType": { "description": "Feed type", "ignoreCase": "all", "enum": [ "external", "internal" ] }, "connectedServiceName": { "type": "string", "description": "NuGet Service Connection", "ignoreCase": "key" }, "feedName": { "type": "string", "description": "Internal Feed URL", "ignoreCase": "key" }, "nuGetAdditionalArgs": { "type": "string", "description": "NuGet Arguments", "ignoreCase": "key" }, "verbosity": { "description": "Verbosity", "ignoreCase": "all", "enum": [ "-", "Quiet", "Normal", "Detailed" ] }, "nuGetVersion": { "description": "NuGet Version", "ignoreCase": "all", "enum": [ "3.3.0", "3.5.0.1829", "4.0.0.2283", "custom" ] }, "nuGetPath": { "type": "string", "description": "Path to NuGet.exe", "ignoreCase": "key" }, "continueOnEmptyNupkgMatch": { "type": "boolean", "description": "Continue if no packages match the \"Path/Pattern to nupkg\"", "ignoreCase": "key" } }, "additionalProperties": false, "required": [] } }, "deprecationMessage": "NuGetPublisher is deprecated - Deprecated: use the “NuGet” task instead. It works with the new Tool Installer framework so you can easily use new versions of NuGet without waiting for a task update, provides better support for authenticated feeds outside this organization/collection, and uses NuGet 4 by default.", "doNotSuggest": true, "firstProperty": [ "task" ], "required": [ "task" ] }, { "properties": { "task": { "description": "Query work items\n\nExecute a work item query and check the number of items returned", "ignoreCase": "value", "pattern": "^queryWorkItems@0$" }, "inputs": { "description": "Query work items inputs", "properties": { "queryId": { "type": "string", "description": "Query", "ignoreCase": "key" }, "maxThreshold": { "type": "string", "description": "Upper threshold", "ignoreCase": "key" }, "minThreshold": { "type": "string", "description": "Lower threshold", "ignoreCase": "key" } }, "additionalProperties": false, "required": [ "queryId" ] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task", "inputs" ] }, { "properties": { "task": { "description": "Azure Web App for Containers\n\nDeploy containers to Azure App Service", "ignoreCase": "value", "pattern": "^AzureWebAppContainer@1$" }, "inputs": { "description": "Azure Web App for Containers inputs", "properties": { "azureSubscription": { "type": "string", "description": "Azure subscription", "ignoreCase": "key" }, "appName": { "type": "string", "description": "App name", "ignoreCase": "key" }, "deployToSlotOrASE": { "type": "boolean", "description": "Deploy to Slot or App Service Environment", "ignoreCase": "key" }, "resourceGroupName": { "type": "string", "description": "Resource group", "ignoreCase": "key" }, "slotName": { "type": "string", "description": "Slot", "ignoreCase": "key" }, "containers": { "type": "string", "description": "Image name", "ignoreCase": "key", "aliases": [ "imageName" ] }, "multicontainerConfigFile": { "type": "string", "description": "Configuration File", "ignoreCase": "key" }, "containerCommand": { "type": "string", "description": "Startup command ", "ignoreCase": "key" }, "appSettings": { "type": "string", "description": "App settings", "ignoreCase": "key" }, "configurationStrings": { "type": "string", "description": "Configuration settings", "ignoreCase": "key" } }, "additionalProperties": false, "required": [ "azureSubscription", "appName" ] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task", "inputs" ] }, { "properties": { "task": { "description": "SQL Server database deploy\n\nDeploy a SQL Server database using DACPAC or SQL scripts", "ignoreCase": "value", "pattern": "^SqlDacpacDeploymentOnMachineGroup@0$" }, "inputs": { "description": "SQL Server database deploy inputs", "properties": { "TaskType": { "description": "Deploy SQL Using", "ignoreCase": "all", "enum": [ "dacpac", "sqlQuery", "sqlInline" ] }, "DacpacFile": { "type": "string", "description": "DACPAC File", "ignoreCase": "key" }, "SqlFile": { "type": "string", "description": "Sql File", "ignoreCase": "key" }, "ExecuteInTransaction": { "type": "boolean", "description": "Execute within a transaction", "ignoreCase": "key" }, "ExclusiveLock": { "type": "boolean", "description": "Acquire an exclusive app lock while executing script(s)", "ignoreCase": "key" }, "AppLockName": { "type": "string", "description": "App lock name", "ignoreCase": "key" }, "InlineSql": { "type": "string", "description": "Inline Sql", "ignoreCase": "key" }, "TargetMethod": { "description": "Specify SQL Using", "ignoreCase": "all", "enum": [ "server", "connectionString", "publishProfile" ] }, "ServerName": { "type": "string", "description": "Server Name", "ignoreCase": "key" }, "DatabaseName": { "type": "string", "description": "Database Name", "ignoreCase": "key" }, "AuthScheme": { "description": "Authentication", "ignoreCase": "all", "enum": [ "windowsAuthentication", "sqlServerAuthentication" ] }, "SqlUsername": { "type": "string", "description": "SQL User name", "ignoreCase": "key" }, "SqlPassword": { "type": "string", "description": "SQL Password", "ignoreCase": "key" }, "ConnectionString": { "type": "string", "description": "Connection String", "ignoreCase": "key" }, "PublishProfile": { "type": "string", "description": "Publish Profile", "ignoreCase": "key" }, "AdditionalArguments": { "type": "string", "description": "Additional Arguments", "ignoreCase": "key" }, "AdditionalArgumentsSql": { "type": "string", "description": "Additional Arguments", "ignoreCase": "key" } }, "additionalProperties": false, "required": [] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task" ] }, { "properties": { "task": { "description": "Cache (Beta)\n\nCache files between runs", "ignoreCase": "value", "pattern": "^CacheBeta@1$" }, "inputs": { "description": "Cache (Beta) inputs", "properties": { "key": { "type": "string", "description": "Key", "ignoreCase": "key" }, "path": { "type": "string", "description": "Path", "ignoreCase": "key" }, "cacheHitVar": { "type": "string", "description": "Cache hit variable", "ignoreCase": "key" }, "restoreKeys": { "type": "string", "description": "Additional restore key prefixes", "ignoreCase": "key" } }, "additionalProperties": false, "required": [ "key", "path" ] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task", "inputs" ] }, { "properties": { "task": { "description": "Cache\n\nCache files between runs", "ignoreCase": "value", "pattern": "^Cache@2$" }, "inputs": { "description": "Cache inputs", "properties": { "key": { "type": "string", "description": "Key", "ignoreCase": "key" }, "path": { "type": "string", "description": "Path", "ignoreCase": "key" }, "cacheHitVar": { "type": "string", "description": "Cache hit variable", "ignoreCase": "key" }, "restoreKeys": { "type": "string", "description": "Additional restore key prefixes", "ignoreCase": "key" } }, "additionalProperties": false, "required": [ "key", "path" ] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task", "inputs" ] }, { "properties": { "task": { "description": "Cache (Beta)\n\nCache files between runs", "ignoreCase": "value", "pattern": "^CacheBeta@0$" }, "inputs": { "description": "Cache (Beta) inputs", "properties": { "key": { "type": "string", "description": "Key", "ignoreCase": "key" }, "path": { "type": "string", "description": "Path", "ignoreCase": "key" }, "cacheHitVar": { "type": "string", "description": "Cache hit variable", "ignoreCase": "key" } }, "additionalProperties": false, "required": [ "key", "path" ] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task", "inputs" ] }, { "properties": { "task": { "description": "CMake\n\nBuild with the CMake cross-platform build system", "ignoreCase": "value", "pattern": "^CMake@1$" }, "inputs": { "description": "CMake inputs", "properties": { "workingDirectory": { "type": "string", "description": "Working Directory", "ignoreCase": "key", "aliases": [ "cwd" ] }, "cmakeArgs": { "type": "string", "description": "Arguments", "ignoreCase": "key" }, "runInsideShell": { "type": "boolean", "description": "Run cmake command inside shell", "ignoreCase": "key" } }, "additionalProperties": false, "required": [] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task" ] }, { "properties": { "task": { "description": "Mobile Center Test\n\nTest mobile app packages with Visual Studio Mobile Center.", "ignoreCase": "value", "pattern": "^VSMobileCenterTest@0$" }, "inputs": { "description": "Mobile Center Test inputs", "properties": { "app": { "type": "string", "description": "Binary Application File Path", "ignoreCase": "key" }, "artifactsDir": { "type": "string", "description": "Artifacts Directory", "ignoreCase": "key" }, "enablePrepare": { "type": "boolean", "description": "Prepare Tests", "ignoreCase": "key" }, "framework": { "description": "Test Framework", "ignoreCase": "all", "enum": [ "appium", "espresso", "calabash", "uitest", "xcuitest" ] }, "appiumBuildDir": { "type": "string", "description": "Build Directory", "ignoreCase": "key" }, "espressoBuildDir": { "type": "string", "description": "Build Directory", "ignoreCase": "key" }, "espressoTestApkPath": { "type": "string", "description": "Test APK Path", "ignoreCase": "key" }, "calabashProjectDir": { "type": "string", "description": "Project Directory", "ignoreCase": "key" }, "calabashConfigFile": { "type": "string", "description": "Cucumber Config File", "ignoreCase": "key" }, "calabashProfile": { "type": "string", "description": "Profile to run", "ignoreCase": "key" }, "calabashSkipConfigCheck": { "type": "boolean", "description": "Skip Configuration Check", "ignoreCase": "key" }, "uitestBuildDir": { "type": "string", "description": "Build Directory", "ignoreCase": "key" }, "uitestStoreFile": { "type": "string", "description": "Store File", "ignoreCase": "key" }, "uitestStorePass": { "type": "string", "description": "Store Password", "ignoreCase": "key" }, "uitestKeyAlias": { "type": "string", "description": "Key Alias", "ignoreCase": "key" }, "uitestKeyPass": { "type": "string", "description": "Key Password", "ignoreCase": "key" }, "uitestToolsDir": { "type": "string", "description": "Test Tools Directory", "ignoreCase": "key" }, "signInfo": { "type": "string", "description": "Signing Information", "ignoreCase": "key" }, "xcuitestBuildDir": { "type": "string", "description": "Build Directory", "ignoreCase": "key" }, "xcuitestTestIpaPath": { "type": "string", "description": "Test IPA Path", "ignoreCase": "key" }, "prepareOpts": { "type": "string", "description": "Additional Options", "ignoreCase": "key" }, "enableRun": { "type": "boolean", "description": "Run Tests", "ignoreCase": "key" }, "credsType": { "description": "Authentication Method", "ignoreCase": "all", "enum": [ "serviceEndpoint", "inputs" ] }, "serverEndpoint": { "type": "string", "description": "Mobile Center Connection", "ignoreCase": "key" }, "username": { "type": "string", "description": "Mobile Center Username", "ignoreCase": "key" }, "password": { "type": "string", "description": "Mobile Center Password", "ignoreCase": "key" }, "appSlug": { "type": "string", "description": "App Slug", "ignoreCase": "key" }, "devices": { "type": "string", "description": "Devices", "ignoreCase": "key" }, "series": { "type": "string", "description": "Test Series", "ignoreCase": "key" }, "dsymDir": { "type": "string", "description": "dSYM Directory", "ignoreCase": "key" }, "locale": { "description": "System Language", "ignoreCase": "all", "enum": [ "da_DK", "nl_NL", "en_GB", "en_US", "fr_FR", "de_DE", "ja_JP", "ru_RU", "es_MX", "es_ES", "user" ] }, "userDefinedLocale": { "type": "string", "description": "Other Locale", "ignoreCase": "key" }, "loginOpts": { "type": "string", "description": "Addtional Options for Login", "ignoreCase": "key" }, "runOpts": { "type": "string", "description": "Additional Options for Run", "ignoreCase": "key" }, "async": { "type": "boolean", "description": "Do not wait for test result", "ignoreCase": "key" }, "cliLocationOverride": { "type": "string", "description": "mobile-center CLI Location", "ignoreCase": "key" }, "debug": { "type": "boolean", "description": "Enable Debug Output", "ignoreCase": "key" } }, "additionalProperties": false, "required": [ "app" ] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task", "inputs" ] }, { "properties": { "task": { "description": "App Center test\n\nTest app packages with Visual Studio App Center", "ignoreCase": "value", "pattern": "^AppCenterTest@1$" }, "inputs": { "description": "App Center test inputs", "properties": { "appFile": { "type": "string", "description": "Binary application file path", "ignoreCase": "key", "aliases": [ "app" ] }, "artifactsDirectory": { "type": "string", "description": "Artifacts directory", "ignoreCase": "key", "aliases": [ "artifactsDir" ] }, "prepareTests": { "type": "boolean", "description": "Prepare tests", "ignoreCase": "key", "aliases": [ "enablePrepare" ] }, "frameworkOption": { "description": "Test framework", "ignoreCase": "all", "enum": [ "appium", "espresso", "calabash", "uitest", "xcuitest" ], "aliases": [ "framework" ] }, "appiumBuildDirectory": { "type": "string", "description": "Build directory", "ignoreCase": "key", "aliases": [ "appiumBuildDir" ] }, "espressoBuildDirectory": { "type": "string", "description": "Build directory", "ignoreCase": "key", "aliases": [ "espressoBuildDir" ] }, "espressoTestApkFile": { "type": "string", "description": "Test APK path", "ignoreCase": "key", "aliases": [ "espressoTestApkPath" ] }, "calabashProjectDirectory": { "type": "string", "description": "Project directory", "ignoreCase": "key", "aliases": [ "calabashProjectDir" ] }, "calabashConfigFile": { "type": "string", "description": "Cucumber config file", "ignoreCase": "key" }, "calabashProfile": { "type": "string", "description": "Profile to run", "ignoreCase": "key" }, "calabashSkipConfigCheck": { "type": "boolean", "description": "Skip Configuration Check", "ignoreCase": "key" }, "uiTestBuildDirectory": { "type": "string", "description": "Build directory", "ignoreCase": "key", "aliases": [ "uitestBuildDir" ] }, "uitestStorePath": { "type": "string", "description": "Store file", "ignoreCase": "key" }, "uiTestStorePassword": { "type": "string", "description": "Store password", "ignoreCase": "key", "aliases": [ "uitestStorePass" ] }, "uitestKeyAlias": { "type": "string", "description": "Key alias", "ignoreCase": "key" }, "uiTestKeyPassword": { "type": "string", "description": "Key password", "ignoreCase": "key", "aliases": [ "uitestKeyPass" ] }, "uiTestToolsDirectory": { "type": "string", "description": "Test tools directory", "ignoreCase": "key", "aliases": [ "uitestToolsDir" ] }, "signInfo": { "type": "string", "description": "Signing information", "ignoreCase": "key" }, "xcUITestBuildDirectory": { "type": "string", "description": "Build directory", "ignoreCase": "key", "aliases": [ "xcuitestBuildDir" ] }, "xcUITestIpaFile": { "type": "string", "description": "Test IPA path", "ignoreCase": "key", "aliases": [ "xcuitestTestIpaPath" ] }, "prepareOptions": { "type": "string", "description": "Additional options", "ignoreCase": "key", "aliases": [ "prepareOpts" ] }, "runTests": { "type": "boolean", "description": "Run tests", "ignoreCase": "key", "aliases": [ "enableRun" ] }, "credentialsOption": { "description": "Authentication method", "ignoreCase": "all", "enum": [ "serviceEndpoint", "inputs" ], "aliases": [ "credsType" ] }, "serverEndpoint": { "type": "string", "description": "App Center service connection", "ignoreCase": "key" }, "username": { "type": "string", "description": "App Center username", "ignoreCase": "key" }, "password": { "type": "string", "description": "App Center password", "ignoreCase": "key" }, "appSlug": { "type": "string", "description": "App slug", "ignoreCase": "key" }, "devices": { "type": "string", "description": "Devices", "ignoreCase": "key" }, "series": { "type": "string", "description": "Test series", "ignoreCase": "key" }, "dsymDirectory": { "type": "string", "description": "dSYM directory", "ignoreCase": "key", "aliases": [ "dsymDir" ] }, "localeOption": { "description": "System language", "ignoreCase": "all", "enum": [ "da_DK", "nl_NL", "en_GB", "en_US", "fr_FR", "de_DE", "ja_JP", "ru_RU", "es_MX", "es_ES", "user" ], "aliases": [ "locale" ] }, "userDefinedLocale": { "type": "string", "description": "Other locale", "ignoreCase": "key" }, "loginOptions": { "type": "string", "description": "Additional options for login", "ignoreCase": "key", "aliases": [ "loginOpts" ] }, "runOptions": { "type": "string", "description": "Additional options for run", "ignoreCase": "key", "aliases": [ "runOpts" ] }, "skipWaitingForResults": { "type": "boolean", "description": "Do not wait for test result", "ignoreCase": "key", "aliases": [ "async" ] }, "cliFile": { "type": "string", "description": "App Center CLI location", "ignoreCase": "key", "aliases": [ "cliLocationOverride" ] }, "showDebugOutput": { "type": "boolean", "description": "Enable debug output", "ignoreCase": "key", "aliases": [ "debug" ] } }, "additionalProperties": false, "required": [ "appFile" ] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task", "inputs" ] }, { "properties": { "task": { "description": "Download secure file\n\nDownload a secure file to the agent machine", "ignoreCase": "value", "pattern": "^DownloadSecureFile@1$" }, "inputs": { "description": "Download secure file inputs", "properties": { "secureFile": { "type": "string", "description": "Secure File", "ignoreCase": "key" }, "retryCount": { "type": "string", "description": "Retry Count", "ignoreCase": "key" }, "socketTimeout": { "type": "string", "description": "Socket Timeout", "ignoreCase": "key" } }, "additionalProperties": false, "required": [ "secureFile" ] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task", "inputs" ] }, { "properties": { "task": { "description": "Azure Container Apps Deploy\n\nAn Azure DevOps Task to build and deploy Azure Container Apps.", "ignoreCase": "value", "pattern": "^AzureContainerApps@0$" }, "inputs": { "description": "Azure Container Apps Deploy inputs", "properties": { "workingDirectory": { "type": "string", "description": "Working Directory", "ignoreCase": "key", "aliases": [ "cwd" ] }, "appSourcePath": { "type": "string", "description": "Application source path", "ignoreCase": "key" }, "azureSubscription": { "type": "string", "description": "Azure Resource Manager connection", "ignoreCase": "key", "aliases": [ "connectedServiceNameARM" ] }, "acrName": { "type": "string", "description": "Azure Container Registry name", "ignoreCase": "key" }, "acrUsername": { "type": "string", "description": "Azure Container Registry username", "ignoreCase": "key" }, "acrPassword": { "type": "string", "description": "Azure Container Registry password", "ignoreCase": "key" }, "dockerfilePath": { "type": "string", "description": "Dockerfile path", "ignoreCase": "key" }, "imageToBuild": { "type": "string", "description": "Docker image to build", "ignoreCase": "key" }, "imageToDeploy": { "type": "string", "description": "Docker image to deploy", "ignoreCase": "key" }, "containerAppName": { "type": "string", "description": "Azure Container App name", "ignoreCase": "key" }, "resourceGroup": { "type": "string", "description": "Azure resource group name", "ignoreCase": "key" }, "containerAppEnvironment": { "type": "string", "description": "Azure Container App environment", "ignoreCase": "key" }, "runtimeStack": { "type": "string", "description": "Application runtime stack", "ignoreCase": "key" }, "targetPort": { "type": "string", "description": "Application target port", "ignoreCase": "key" }, "location": { "type": "string", "description": "Location of the Container App", "ignoreCase": "key" }, "environmentVariables": { "type": "string", "description": "Environment variables", "ignoreCase": "key" }, "disableTelemetry": { "type": "boolean", "description": "Disable telemetry", "ignoreCase": "key" } }, "additionalProperties": false, "required": [ "azureSubscription" ] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task", "inputs" ] }, { "properties": { "task": { "description": "Use Ruby version\n\nUse the specified version of Ruby from the tool cache, optionally adding it to the PATH", "ignoreCase": "value", "pattern": "^UseRubyVersion@0$" }, "inputs": { "description": "Use Ruby version inputs", "properties": { "versionSpec": { "type": "string", "description": "Version spec", "ignoreCase": "key" }, "addToPath": { "type": "boolean", "description": "Add to PATH", "ignoreCase": "key" } }, "additionalProperties": false, "required": [] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task" ] }, { "properties": { "task": { "description": "Grunt\n\nRun the Grunt JavaScript task runner", "ignoreCase": "value", "pattern": "^Grunt@0$" }, "inputs": { "description": "Grunt inputs", "properties": { "gruntFile": { "type": "string", "description": "Grunt File Path", "ignoreCase": "key" }, "targets": { "type": "string", "description": "Grunt Task(s)", "ignoreCase": "key" }, "arguments": { "type": "string", "description": "Arguments", "ignoreCase": "key" }, "workingDirectory": { "type": "string", "description": "Working Directory", "ignoreCase": "key", "aliases": [ "cwd" ] }, "gruntCli": { "type": "string", "description": "grunt-cli location", "ignoreCase": "key" }, "publishJUnitResults": { "type": "boolean", "description": "Publish to Azure Pipelines", "ignoreCase": "key" }, "testResultsFiles": { "type": "string", "description": "Test Results Files", "ignoreCase": "key" }, "testRunTitle": { "type": "string", "description": "Test Run Title", "ignoreCase": "key" }, "enableCodeCoverage": { "type": "boolean", "description": "Enable Code Coverage", "ignoreCase": "key" }, "testFramework": { "description": "Test Framework", "ignoreCase": "all", "enum": [ "Mocha", "Jasmine" ] }, "srcFiles": { "type": "string", "description": "Source Files", "ignoreCase": "key" }, "testFiles": { "type": "string", "description": "Test Script Files", "ignoreCase": "key" } }, "additionalProperties": false, "required": [] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task" ] }, { "properties": { "task": { "description": "Azure SQL Database deployment\n\nDeploy an Azure SQL Database using DACPAC or run scripts using SQLCMD", "ignoreCase": "value", "pattern": "^SqlAzureDacpacDeployment@1$" }, "inputs": { "description": "Azure SQL Database deployment inputs", "properties": { "azureConnectionType": { "description": "Azure Service Connection Type", "ignoreCase": "all", "enum": [ "ConnectedServiceName", "ConnectedServiceNameARM" ], "aliases": [ "ConnectedServiceNameSelector" ] }, "azureClassicSubscription": { "type": "string", "description": "Azure Classic Subscription", "ignoreCase": "key", "aliases": [ "ConnectedServiceName" ] }, "azureSubscription": { "type": "string", "description": "Azure Subscription", "ignoreCase": "key", "aliases": [ "ConnectedServiceNameARM" ] }, "AuthenticationType": { "description": "Authentication Type", "ignoreCase": "all", "enum": [ "server", "aadAuthenticationPassword", "aadAuthenticationIntegrated", "connectionString", "servicePrincipal" ] }, "ServerName": { "type": "string", "description": "Azure SQL Server", "ignoreCase": "key" }, "DatabaseName": { "type": "string", "description": "Database", "ignoreCase": "key" }, "SqlUsername": { "type": "string", "description": "Login", "ignoreCase": "key" }, "SqlPassword": { "type": "string", "description": "Password", "ignoreCase": "key" }, "aadSqlUsername": { "type": "string", "description": "Login", "ignoreCase": "key" }, "aadSqlPassword": { "type": "string", "description": "Password", "ignoreCase": "key" }, "ConnectionString": { "type": "string", "description": "Connection String", "ignoreCase": "key" }, "deployType": { "description": "Deploy type", "ignoreCase": "all", "enum": [ "DacpacTask", "SqlTask", "InlineSqlTask" ], "aliases": [ "TaskNameSelector" ] }, "DeploymentAction": { "description": "Action", "ignoreCase": "all", "enum": [ "Publish", "Extract", "Export", "Import", "Script", "DriftReport", "DeployReport" ] }, "DacpacFile": { "type": "string", "description": "DACPAC File", "ignoreCase": "key" }, "BacpacFile": { "type": "string", "description": "BACPAC File", "ignoreCase": "key" }, "SqlFile": { "type": "string", "description": "SQL Script", "ignoreCase": "key" }, "SqlInline": { "type": "string", "description": "Inline SQL Script", "ignoreCase": "key" }, "PublishProfile": { "type": "string", "description": "Publish Profile", "ignoreCase": "key" }, "AdditionalArguments": { "type": "string", "description": "Additional SqlPackage.exe Arguments", "ignoreCase": "key" }, "SqlAdditionalArguments": { "type": "string", "description": "Additional Invoke-Sqlcmd Arguments", "ignoreCase": "key" }, "InlineAdditionalArguments": { "type": "string", "description": "Additional Invoke-Sqlcmd Arguments", "ignoreCase": "key" }, "IpDetectionMethod": { "description": "Specify Firewall Rules Using", "ignoreCase": "all", "enum": [ "AutoDetect", "IPAddressRange" ] }, "StartIpAddress": { "type": "string", "description": "Start IP Address", "ignoreCase": "key" }, "EndIpAddress": { "type": "string", "description": "End IP Address", "ignoreCase": "key" }, "DeleteFirewallRule": { "type": "boolean", "description": "Delete Rule After Task Ends", "ignoreCase": "key" } }, "additionalProperties": false, "required": [] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task" ] }, { "properties": { "task": { "description": "Container Structure Test\n\nUses container-structure-test (https://github.com/GoogleContainerTools/container-structure-test) to validate the structure of an image based on four categories of tests - command tests, file existence tests, file content tests and metadata tests", "ignoreCase": "value", "pattern": "^ContainerStructureTest@0$" }, "inputs": { "description": "Container Structure Test inputs", "properties": { "dockerRegistryServiceConnection": { "type": "string", "description": "Docker registry service connection", "ignoreCase": "key" }, "repository": { "type": "string", "description": "Container repository", "ignoreCase": "key" }, "tag": { "type": "string", "description": "Tag", "ignoreCase": "key" }, "configFile": { "type": "string", "description": "Config file path", "ignoreCase": "key" }, "testRunTitle": { "type": "string", "description": "Test run title", "ignoreCase": "key" }, "failTaskOnFailedTests": { "type": "boolean", "description": "Fail task if there are test failures", "ignoreCase": "key" } }, "additionalProperties": false, "required": [ "dockerRegistryServiceConnection", "repository", "configFile" ] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task", "inputs" ] }, { "properties": { "task": { "description": "[Deprecated] IIS Web App deployment\n\nDeploy using MSDeploy, then create/update websites and app pools", "ignoreCase": "value", "pattern": "^IISWebAppDeployment@1$" }, "inputs": { "description": "[Deprecated] IIS Web App deployment inputs", "properties": { "EnvironmentName": { "type": "string", "description": "Machines", "ignoreCase": "key" }, "AdminUserName": { "type": "string", "description": "Admin Login", "ignoreCase": "key" }, "AdminPassword": { "type": "string", "description": "Password", "ignoreCase": "key" }, "WinRMProtocol": { "description": "Protocol", "ignoreCase": "all", "enum": [ "Http", "Https" ] }, "TestCertificate": { "type": "boolean", "description": "Test Certificate", "ignoreCase": "key" }, "WebDeployPackage": { "type": "string", "description": "Web Deploy Package", "ignoreCase": "key" }, "WebDeployParamFile": { "type": "string", "description": "Web Deploy Parameter File", "ignoreCase": "key" }, "OverRideParams": { "type": "string", "description": "Override Parameters", "ignoreCase": "key" }, "CreateWebSite": { "type": "boolean", "description": "Create or Update Website", "ignoreCase": "key" }, "WebSiteName": { "type": "string", "description": "Website Name", "ignoreCase": "key" }, "WebSitePhysicalPath": { "type": "string", "description": "Physical Path", "ignoreCase": "key" }, "WebSitePhysicalPathAuth": { "description": "Physical Path Authentication", "ignoreCase": "all", "enum": [ "WebSiteUserPassThrough", "WebSiteWindowsAuth" ] }, "WebSiteAuthUserName": { "type": "string", "description": "User Name", "ignoreCase": "key" }, "WebSiteAuthUserPassword": { "type": "string", "description": "Password", "ignoreCase": "key" }, "AddBinding": { "type": "boolean", "description": "Add Binding", "ignoreCase": "key" }, "AssignDuplicateBinding": { "type": "boolean", "description": "Assign Duplicate Binding", "ignoreCase": "key" }, "Protocol": { "description": "Protocol", "ignoreCase": "all", "enum": [ "https", "http" ] }, "IPAddress": { "type": "string", "description": "IP Address", "ignoreCase": "key" }, "Port": { "type": "string", "description": "Port", "ignoreCase": "key" }, "ServerNameIndication": { "type": "boolean", "description": "Server Name Indication Required", "ignoreCase": "key" }, "HostNameWithOutSNI": { "type": "string", "description": "Host Name", "ignoreCase": "key" }, "HostNameWithHttp": { "type": "string", "description": "Host Name", "ignoreCase": "key" }, "HostNameWithSNI": { "type": "string", "description": "Host Name", "ignoreCase": "key" }, "SSLCertThumbPrint": { "type": "string", "description": "SSL Certificate Thumb Print", "ignoreCase": "key" }, "CreateAppPool": { "type": "boolean", "description": "Create or Update Application Pool", "ignoreCase": "key" }, "AppPoolName": { "type": "string", "description": "Name", "ignoreCase": "key" }, "DotNetVersion": { "description": ".NET Version", "ignoreCase": "all", "enum": [ "v4.0", "v2.0", "No Managed Code" ] }, "PipeLineMode": { "description": "Managed Pipeline Mode", "ignoreCase": "all", "enum": [ "Integrated", "Classic" ] }, "AppPoolIdentity": { "description": "Identity", "ignoreCase": "all", "enum": [ "ApplicationPoolIdentity", "LocalService", "LocalSystem", "NetworkService", "SpecificUser" ] }, "AppPoolUsername": { "type": "string", "description": "Username", "ignoreCase": "key" }, "AppPoolPassword": { "type": "string", "description": "Password", "ignoreCase": "key" }, "AppCmdCommands": { "type": "string", "description": "Additional AppCmd.exe Commands", "ignoreCase": "key" }, "DeployInParallel": { "type": "boolean", "description": "Deploy in Parallel", "ignoreCase": "key" }, "ResourceFilteringMethod": { "description": "Select Machines By", "ignoreCase": "all", "enum": [ "machineNames", "tags" ] }, "MachineFilter": { "type": "string", "description": "Deploy to Machines", "ignoreCase": "key" } }, "additionalProperties": false, "required": [ "EnvironmentName", "WebDeployPackage" ] } }, "deprecationMessage": "IISWebAppDeployment is deprecated - Deploy using MSDeploy, then create/update websites and app pools", "doNotSuggest": true, "firstProperty": [ "task" ], "required": [ "task", "inputs" ] }, { "properties": { "task": { "description": "Cloud-based load test\n\nRun a load test in the cloud with Azure Pipelines", "ignoreCase": "value", "pattern": "^CloudLoadTest@1$" }, "inputs": { "description": "Cloud-based load test inputs", "properties": { "connectedServiceName": { "type": "string", "description": "Azure Pipelines Connection", "ignoreCase": "key" }, "TestDrop": { "type": "string", "description": "Load test files folder", "ignoreCase": "key" }, "LoadTest": { "type": "string", "description": "Load test file", "ignoreCase": "key" }, "activeRunSettings": { "description": "Active Run Settings", "ignoreCase": "all", "enum": [ "useFile", "changeActive" ] }, "runSettingName": { "type": "string", "description": "Specify the name of the Run Settings", "ignoreCase": "key" }, "testContextParameters": { "type": "string", "description": "Override load test context parameters", "ignoreCase": "key" }, "TestSettings": { "type": "string", "description": "Test settings file", "ignoreCase": "key" }, "ThresholdLimit": { "type": "string", "description": "Number of permissible threshold violations", "ignoreCase": "key" }, "MachineType": { "description": "Run load test using", "ignoreCase": "all", "enum": [ "0", "2" ] }, "resourceGroupName": { "type": "string", "description": "Resource group rig", "ignoreCase": "key" }, "numOfSelfProvisionedAgents": { "type": "integer", "description": "Number of agents to use", "ignoreCase": "key" } }, "additionalProperties": false, "required": [ "LoadTest" ] } }, "deprecationMessage": "CloudLoadTest is deprecated - Run a load test in the cloud with Azure Pipelines", "doNotSuggest": true, "firstProperty": [ "task" ], "required": [ "task", "inputs" ] }, { "properties": { "task": { "description": "Kubectl tool installer\n\nInstall Kubectl on agent machine", "ignoreCase": "value", "pattern": "^KubectlInstaller@0$" }, "inputs": { "description": "Kubectl tool installer inputs", "properties": { "kubectlVersion": { "type": "string", "description": "Kubectl Version Spec", "ignoreCase": "key" } }, "additionalProperties": false, "required": [] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task" ] }, { "properties": { "task": { "description": "Command Line\n\nRun a command line with arguments", "ignoreCase": "value", "pattern": "^CmdLine@1$" }, "inputs": { "description": "Command Line inputs", "properties": { "filename": { "type": "string", "description": "Tool", "ignoreCase": "key" }, "arguments": { "type": "string", "description": "Arguments", "ignoreCase": "key" }, "workingFolder": { "type": "string", "description": "Working folder", "ignoreCase": "key" }, "failOnStandardError": { "type": "boolean", "description": "Fail on Standard Error", "ignoreCase": "key" } }, "additionalProperties": false, "required": [ "filename" ] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task", "inputs" ] }, { "properties": { "task": { "description": "Command line\n\nRun a command line script using Bash on Linux and macOS and cmd.exe on Windows", "ignoreCase": "value", "pattern": "^CmdLine@2$" }, "inputs": { "description": "Command line inputs", "properties": { "script": { "type": "string", "description": "Script", "ignoreCase": "key" }, "workingDirectory": { "type": "string", "description": "Working Directory", "ignoreCase": "key" }, "failOnStderr": { "type": "boolean", "description": "Fail on Standard Error", "ignoreCase": "key" } }, "additionalProperties": false, "required": [] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task" ] }, { "properties": { "task": { "description": "NuGet command\n\nDeprecated: use the “NuGet” task instead. It works with the new Tool Installer framework so you can easily use new versions of NuGet without waiting for a task update, provides better support for authenticated feeds outside this organization/collection, and uses NuGet 4 by default.", "ignoreCase": "value", "pattern": "^NuGet@0$" }, "inputs": { "description": "NuGet command inputs", "properties": { "command": { "type": "string", "description": "Command", "ignoreCase": "key" }, "arguments": { "type": "string", "description": "Arguments", "ignoreCase": "key" } }, "additionalProperties": false, "required": [ "command" ] } }, "deprecationMessage": "NuGet is deprecated - Deprecated: use the “NuGet” task instead. It works with the new Tool Installer framework so you can easily use new versions of NuGet without waiting for a task update, provides better support for authenticated feeds outside this organization/collection, and uses NuGet 4 by default.", "doNotSuggest": true, "firstProperty": [ "task" ], "required": [ "task", "inputs" ] }, { "properties": { "task": { "description": "Container Build\n\nContainer Build Task", "ignoreCase": "value", "pattern": "^ContainerBuild@0$" }, "inputs": { "description": "Container Build inputs", "properties": { "dockerRegistryServiceConnection": { "type": "string", "description": "Docker registry service connection", "ignoreCase": "key" }, "repository": { "type": "string", "description": "Container repository", "ignoreCase": "key" }, "Dockerfile": { "type": "string", "description": "Dockerfile", "ignoreCase": "key" }, "buildContext": { "type": "string", "description": "Build context", "ignoreCase": "key" }, "tags": { "type": "string", "description": "Tags", "ignoreCase": "key" } }, "additionalProperties": false, "required": [] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task" ] }, { "properties": { "task": { "description": "NuGet\n\nRestore, pack, or push NuGet packages, or run a NuGet command. Supports NuGet.org and authenticated feeds like Azure Artifacts and MyGet. Uses NuGet.exe and works with .NET Framework apps. For .NET Core and .NET Standard apps, use the .NET Core task.", "ignoreCase": "value", "pattern": "^NuGetCommand@2$" }, "inputs": { "description": "NuGet inputs", "properties": { "command": { "description": "Command", "ignoreCase": "all", "enum": [ "restore", "pack", "push", "custom" ] }, "restoreSolution": { "type": "string", "description": "Path to solution, packages.config, or project.json", "ignoreCase": "key", "aliases": [ "solution" ] }, "feedsToUse": { "description": "Feeds to use", "ignoreCase": "all", "enum": [ "select", "config" ], "aliases": [ "selectOrConfig" ] }, "vstsFeed": { "type": "string", "description": "Use packages from this Azure Artifacts/TFS feed", "ignoreCase": "key", "aliases": [ "feedRestore" ] }, "includeNuGetOrg": { "type": "boolean", "description": "Use packages from NuGet.org", "ignoreCase": "key" }, "nugetConfigPath": { "type": "string", "description": "Path to NuGet.config", "ignoreCase": "key" }, "externalFeedCredentials": { "type": "string", "description": "Credentials for feeds outside this organization/collection", "ignoreCase": "key", "aliases": [ "externalEndpoints" ] }, "noCache": { "type": "boolean", "description": "Disable local cache", "ignoreCase": "key" }, "disableParallelProcessing": { "type": "boolean", "description": "Disable parallel processing", "ignoreCase": "key" }, "restoreDirectory": { "type": "string", "description": "Destination directory", "ignoreCase": "key", "aliases": [ "packagesDirectory" ] }, "verbosityRestore": { "description": "Verbosity", "ignoreCase": "all", "enum": [ "Quiet", "Normal", "Detailed" ] }, "packagesToPush": { "type": "string", "description": "Path to NuGet package(s) to publish", "ignoreCase": "key", "aliases": [ "searchPatternPush" ] }, "nuGetFeedType": { "description": "Target feed location", "ignoreCase": "all", "enum": [ "internal", "external" ] }, "publishVstsFeed": { "type": "string", "description": "Target feed", "ignoreCase": "key", "aliases": [ "feedPublish" ] }, "publishPackageMetadata": { "type": "boolean", "description": "Publish pipeline metadata", "ignoreCase": "key" }, "allowPackageConflicts": { "type": "boolean", "description": "Allow duplicates to be skipped", "ignoreCase": "key" }, "publishFeedCredentials": { "type": "string", "description": "NuGet server", "ignoreCase": "key", "aliases": [ "externalEndpoint" ] }, "verbosityPush": { "description": "Verbosity", "ignoreCase": "all", "enum": [ "Quiet", "Normal", "Detailed" ] }, "packagesToPack": { "type": "string", "description": "Path to csproj or nuspec file(s) to pack", "ignoreCase": "key", "aliases": [ "searchPatternPack" ] }, "configuration": { "type": "string", "description": "Configuration to package", "ignoreCase": "key", "aliases": [ "configurationToPack" ] }, "packDestination": { "type": "string", "description": "Package folder", "ignoreCase": "key", "aliases": [ "outputDir" ] }, "versioningScheme": { "description": "Automatic package versioning", "ignoreCase": "all", "enum": [ "off", "byPrereleaseNumber", "byEnvVar", "byBuildNumber" ] }, "includeReferencedProjects": { "type": "boolean", "description": "Include referenced projects", "ignoreCase": "key" }, "versionEnvVar": { "type": "string", "description": "Environment variable", "ignoreCase": "key" }, "majorVersion": { "type": "string", "description": "Major", "ignoreCase": "key", "aliases": [ "requestedMajorVersion" ] }, "minorVersion": { "type": "string", "description": "Minor", "ignoreCase": "key", "aliases": [ "requestedMinorVersion" ] }, "patchVersion": { "type": "string", "description": "Patch", "ignoreCase": "key", "aliases": [ "requestedPatchVersion" ] }, "packTimezone": { "description": "Time zone", "ignoreCase": "all", "enum": [ "utc", "local" ] }, "includeSymbols": { "type": "boolean", "description": "Create symbols package", "ignoreCase": "key" }, "toolPackage": { "type": "boolean", "description": "Tool Package", "ignoreCase": "key" }, "buildProperties": { "type": "string", "description": "Additional build properties", "ignoreCase": "key" }, "basePath": { "type": "string", "description": "Base path", "ignoreCase": "key" }, "verbosityPack": { "description": "Verbosity", "ignoreCase": "all", "enum": [ "Quiet", "Normal", "Detailed" ] }, "arguments": { "type": "string", "description": "Command and arguments", "ignoreCase": "key" } }, "additionalProperties": false, "required": [] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task" ] }, { "properties": { "task": { "description": "NuGet Installer\n\nInstalls or restores missing NuGet packages. Use NuGetAuthenticate@0 task for latest capabilities.", "ignoreCase": "value", "pattern": "^NuGetInstaller@0$" }, "inputs": { "description": "NuGet Installer inputs", "properties": { "solution": { "type": "string", "description": "Path to solution or packages.config", "ignoreCase": "key" }, "nugetConfigPath": { "type": "string", "description": "Path to NuGet.config", "ignoreCase": "key" }, "restoreMode": { "description": "Installation type", "ignoreCase": "all", "enum": [ "restore", "install" ] }, "noCache": { "type": "boolean", "description": "Disable local cache", "ignoreCase": "key" }, "nuGetRestoreArgs": { "type": "string", "description": "NuGet arguments", "ignoreCase": "key" }, "verbosity": { "description": "Verbosity", "ignoreCase": "all", "enum": [ "-", "Quiet", "Normal", "Detailed" ] }, "nuGetVersion": { "description": "NuGet Version", "ignoreCase": "all", "enum": [ "3.3.0", "3.5.0.1829", "4.0.0.2283", "custom" ] }, "nuGetPath": { "type": "string", "description": "Path to NuGet.exe", "ignoreCase": "key" } }, "additionalProperties": false, "required": [] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task" ] }, { "properties": { "task": { "description": "NuGet Restore\n\nRestores NuGet packages in preparation for a Visual Studio Build step.", "ignoreCase": "value", "pattern": "^NuGetRestore@1$" }, "inputs": { "description": "NuGet Restore inputs", "properties": { "solution": { "type": "string", "description": "Path to solution, packages.config, or project.json", "ignoreCase": "key" }, "selectOrConfig": { "description": "Feeds to use", "ignoreCase": "all", "enum": [ "select", "config" ] }, "feed": { "type": "string", "description": "Use packages from this VSTS feed", "ignoreCase": "key" }, "includeNuGetOrg": { "type": "boolean", "description": "Use packages from NuGet.org", "ignoreCase": "key" }, "nugetConfigPath": { "type": "string", "description": "Path to NuGet.config", "ignoreCase": "key" }, "noCache": { "type": "boolean", "description": "Disable local cache", "ignoreCase": "key" }, "packagesDirectory": { "type": "string", "description": "Destination directory", "ignoreCase": "key" }, "verbosity": { "description": "Verbosity", "ignoreCase": "all", "enum": [ "-", "Quiet", "Normal", "Detailed" ] } }, "additionalProperties": false, "required": [] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task" ] }, { "properties": { "task": { "description": "Delay\n\nDelay further execution of a workflow by a fixed time", "ignoreCase": "value", "pattern": "^Delay@1$" }, "inputs": { "description": "Delay inputs", "properties": { "delayForMinutes": { "type": "string", "description": "Delay Time (minutes)", "ignoreCase": "key" } }, "additionalProperties": false, "required": [] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task" ] }, { "properties": { "task": { "description": "Xamarin.iOS\n\nBuild an iOS app with Xamarin on macOS", "ignoreCase": "value", "pattern": "^XamariniOS@2$" }, "inputs": { "description": "Xamarin.iOS inputs", "properties": { "solutionFile": { "type": "string", "description": "Solution", "ignoreCase": "key", "aliases": [ "solution" ] }, "configuration": { "type": "string", "description": "Configuration", "ignoreCase": "key" }, "clean": { "type": "boolean", "description": "Clean", "ignoreCase": "key" }, "packageApp": { "type": "boolean", "description": "Create app package", "ignoreCase": "key" }, "buildForSimulator": { "type": "boolean", "description": "Build for iOS Simulator", "ignoreCase": "key", "aliases": [ "forSimulator" ] }, "runNugetRestore": { "type": "boolean", "description": "Run NuGet restore", "ignoreCase": "key" }, "args": { "type": "string", "description": "Arguments", "ignoreCase": "key" }, "workingDirectory": { "type": "string", "description": "Working directory", "ignoreCase": "key", "aliases": [ "cwd" ] }, "mdtoolFile": { "type": "string", "description": "Build tool path", "ignoreCase": "key", "aliases": [ "buildToolLocation", "mdtoolLocation" ] }, "signingIdentity": { "type": "string", "description": "Signing identity", "ignoreCase": "key", "aliases": [ "iosSigningIdentity" ] }, "signingProvisioningProfileID": { "type": "string", "description": "Provisioning profile UUID", "ignoreCase": "key", "aliases": [ "provProfileUuid" ] } }, "additionalProperties": false, "required": [] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task" ] }, { "properties": { "task": { "description": "Xamarin.iOS\n\nBuild an iOS app with Xamarin on macOS", "ignoreCase": "value", "pattern": "^XamariniOS@1$" }, "inputs": { "description": "Xamarin.iOS inputs", "properties": { "solutionFile": { "type": "string", "description": "Solution", "ignoreCase": "key", "aliases": [ "solution" ] }, "configuration": { "type": "string", "description": "Configuration", "ignoreCase": "key" }, "clean": { "type": "boolean", "description": "Clean", "ignoreCase": "key" }, "packageApp": { "type": "boolean", "description": "Create app package", "ignoreCase": "key" }, "buildForSimulator": { "type": "boolean", "description": "Build for iOS Simulator", "ignoreCase": "key", "aliases": [ "forSimulator" ] }, "runNugetRestore": { "type": "boolean", "description": "Run NuGet restore", "ignoreCase": "key" }, "args": { "type": "string", "description": "Arguments", "ignoreCase": "key" }, "workingDirectory": { "type": "string", "description": "Working directory", "ignoreCase": "key", "aliases": [ "cwd" ] }, "buildToolOption": { "description": "Build tool", "ignoreCase": "all", "enum": [ "xbuild", "msbuild" ], "aliases": [ "buildTool" ] }, "mdtoolFile": { "type": "string", "description": "Build tool path", "ignoreCase": "key", "aliases": [ "mdtoolLocation" ] }, "signingOption": { "description": "Override using", "ignoreCase": "all", "enum": [ "file", "id" ], "aliases": [ "signMethod" ] }, "signingIdentity": { "type": "string", "description": "Signing identity", "ignoreCase": "key", "aliases": [ "iosSigningIdentity" ] }, "signingUnlockDefaultKeychain": { "type": "boolean", "description": "Unlock default keychain", "ignoreCase": "key", "aliases": [ "unlockDefaultKeychain" ] }, "signingDefaultKeychainPassword": { "type": "string", "description": "Default keychain password", "ignoreCase": "key", "aliases": [ "defaultKeychainPassword" ] }, "signingProvisioningProfileID": { "type": "string", "description": "Provisioning profile UUID", "ignoreCase": "key", "aliases": [ "provProfileUuid" ] }, "signingP12File": { "type": "string", "description": "P12 certificate file", "ignoreCase": "key", "aliases": [ "p12" ] }, "signingP12Password": { "type": "string", "description": "P12 password", "ignoreCase": "key", "aliases": [ "p12pwd" ] }, "signingProvisioningProfileFile": { "type": "string", "description": "Provisioning profile file", "ignoreCase": "key", "aliases": [ "provProfile" ] }, "signingRemoveProfile": { "type": "boolean", "description": "Remove profile after build", "ignoreCase": "key", "aliases": [ "removeProfile" ] } }, "additionalProperties": false, "required": [] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task" ] }, { "properties": { "task": { "description": "Publish test results\n\nPublish test results to Azure Pipelines", "ignoreCase": "value", "pattern": "^PublishTestResults@1$" }, "inputs": { "description": "Publish test results inputs", "properties": { "testRunner": { "description": "Test Result Format", "ignoreCase": "all", "enum": [ "JUnit", "NUnit", "VSTest", "XUnit" ] }, "testResultsFiles": { "type": "string", "description": "Test Results Files", "ignoreCase": "key" }, "mergeTestResults": { "type": "boolean", "description": "Merge Test Results", "ignoreCase": "key" }, "testRunTitle": { "type": "string", "description": "Test Run Title", "ignoreCase": "key" }, "platform": { "type": "string", "description": "Platform", "ignoreCase": "key" }, "configuration": { "type": "string", "description": "Configuration", "ignoreCase": "key" }, "publishRunAttachments": { "type": "boolean", "description": "Upload Test Attachments", "ignoreCase": "key" } }, "additionalProperties": false, "required": [] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task" ] }, { "properties": { "task": { "description": "Publish Test Results\n\nPublish test results to Azure Pipelines", "ignoreCase": "value", "pattern": "^PublishTestResults@2$" }, "inputs": { "description": "Publish Test Results inputs", "properties": { "testResultsFormat": { "description": "Test result format", "ignoreCase": "all", "enum": [ "JUnit", "NUnit", "VSTest", "XUnit", "CTest" ], "aliases": [ "testRunner" ] }, "testResultsFiles": { "type": "string", "description": "Test results files", "ignoreCase": "key" }, "searchFolder": { "type": "string", "description": "Search folder", "ignoreCase": "key" }, "mergeTestResults": { "type": "boolean", "description": "Merge test results", "ignoreCase": "key" }, "failTaskOnFailedTests": { "type": "boolean", "description": "Fail if there are test failures", "ignoreCase": "key" }, "testRunTitle": { "type": "string", "description": "Test run title", "ignoreCase": "key" }, "buildPlatform": { "type": "string", "description": "Build Platform", "ignoreCase": "key", "aliases": [ "platform" ] }, "buildConfiguration": { "type": "string", "description": "Build Configuration", "ignoreCase": "key", "aliases": [ "configuration" ] }, "publishRunAttachments": { "type": "boolean", "description": "Upload test results files", "ignoreCase": "key" } }, "additionalProperties": false, "required": [] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task" ] }, { "properties": { "task": { "description": "Azure file copy\n\nCopy files to Azure Blob Storage or virtual machines", "ignoreCase": "value", "pattern": "^AzureFileCopy@1$" }, "inputs": { "description": "Azure file copy inputs", "properties": { "SourcePath": { "type": "string", "description": "Source", "ignoreCase": "key" }, "azureConnectionType": { "description": "Azure Connection Type", "ignoreCase": "all", "enum": [ "ConnectedServiceName", "ConnectedServiceNameARM" ], "aliases": [ "ConnectedServiceNameSelector" ] }, "azureClassicSubscription": { "type": "string", "description": "Azure Classic Subscription", "ignoreCase": "key", "aliases": [ "ConnectedServiceName" ] }, "azureSubscription": { "type": "string", "description": "Azure Subscription", "ignoreCase": "key", "aliases": [ "ConnectedServiceNameARM" ] }, "Destination": { "description": "Destination Type", "ignoreCase": "all", "enum": [ "AzureBlob", "AzureVMs" ] }, "classicStorage": { "type": "string", "description": "Classic Storage Account", "ignoreCase": "key", "aliases": [ "StorageAccount" ] }, "storage": { "type": "string", "description": "RM Storage Account", "ignoreCase": "key", "aliases": [ "StorageAccountRM" ] }, "ContainerName": { "type": "string", "description": "Container Name", "ignoreCase": "key" }, "BlobPrefix": { "type": "string", "description": "Blob Prefix", "ignoreCase": "key" }, "cloudService": { "type": "string", "description": "Cloud Service", "ignoreCase": "key", "aliases": [ "EnvironmentName" ] }, "resourceGroup": { "type": "string", "description": "Resource Group", "ignoreCase": "key", "aliases": [ "EnvironmentNameRM" ] }, "ResourceFilteringMethod": { "description": "Select Machines By", "ignoreCase": "all", "enum": [ "machineNames", "tags" ] }, "MachineNames": { "type": "string", "description": "Filter Criteria", "ignoreCase": "key" }, "vmsAdminUserName": { "type": "string", "description": "Admin Login", "ignoreCase": "key" }, "vmsAdminPassword": { "type": "string", "description": "Password", "ignoreCase": "key" }, "TargetPath": { "type": "string", "description": "Destination Folder", "ignoreCase": "key" }, "AdditionalArguments": { "type": "string", "description": "Additional Arguments", "ignoreCase": "key" }, "enableCopyPrerequisites": { "type": "boolean", "description": "Enable Copy Prerequisites", "ignoreCase": "key" }, "CopyFilesInParallel": { "type": "boolean", "description": "Copy in Parallel", "ignoreCase": "key" }, "CleanTargetBeforeCopy": { "type": "boolean", "description": "Clean Target", "ignoreCase": "key" }, "skipCACheck": { "type": "boolean", "description": "Test Certificate", "ignoreCase": "key" }, "outputStorageUri": { "type": "string", "description": "Storage Container URI", "ignoreCase": "key" }, "outputStorageContainerSasToken": { "type": "string", "description": "Storage Container SAS Token", "ignoreCase": "key" } }, "additionalProperties": false, "required": [ "SourcePath", "Destination" ] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task", "inputs" ] }, { "properties": { "task": { "description": "Azure file copy\n\nCopy files to Azure Blob Storage or virtual machines", "ignoreCase": "value", "pattern": "^AzureFileCopy@4$" }, "inputs": { "description": "Azure file copy inputs", "properties": { "SourcePath": { "type": "string", "description": "Source", "ignoreCase": "key" }, "azureSubscription": { "type": "string", "description": "Azure Subscription", "ignoreCase": "key", "aliases": [ "ConnectedServiceNameARM" ] }, "Destination": { "description": "Destination Type", "ignoreCase": "all", "enum": [ "AzureBlob", "AzureVMs" ] }, "storage": { "type": "string", "description": "RM Storage Account", "ignoreCase": "key", "aliases": [ "StorageAccountRM" ] }, "ContainerName": { "type": "string", "description": "Container Name", "ignoreCase": "key" }, "BlobPrefix": { "type": "string", "description": "Blob Prefix", "ignoreCase": "key" }, "resourceGroup": { "type": "string", "description": "Resource Group", "ignoreCase": "key", "aliases": [ "EnvironmentNameRM" ] }, "ResourceFilteringMethod": { "description": "Select Machines By", "ignoreCase": "all", "enum": [ "machineNames", "tags" ] }, "MachineNames": { "type": "string", "description": "Filter Criteria", "ignoreCase": "key" }, "vmsAdminUserName": { "type": "string", "description": "Admin Login", "ignoreCase": "key" }, "vmsAdminPassword": { "type": "string", "description": "Password", "ignoreCase": "key" }, "TargetPath": { "type": "string", "description": "Destination Folder", "ignoreCase": "key" }, "AdditionalArgumentsForBlobCopy": { "type": "string", "description": "Optional Arguments (for uploading files to blob)", "ignoreCase": "key" }, "AdditionalArgumentsForVMCopy": { "type": "string", "description": "Optional Arguments (for downloading files to VM)", "ignoreCase": "key" }, "sasTokenTimeOutInMinutes": { "type": "string", "description": "SAS Token Expiration Period In Minutes", "ignoreCase": "key" }, "enableCopyPrerequisites": { "type": "boolean", "description": "Enable Copy Prerequisites", "ignoreCase": "key" }, "CopyFilesInParallel": { "type": "boolean", "description": "Copy in Parallel", "ignoreCase": "key" }, "CleanTargetBeforeCopy": { "type": "boolean", "description": "Clean Target", "ignoreCase": "key" }, "skipCACheck": { "type": "boolean", "description": "Test Certificate", "ignoreCase": "key" } }, "additionalProperties": false, "required": [ "SourcePath", "azureSubscription", "Destination", "storage" ] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task", "inputs" ] }, { "properties": { "task": { "description": "Azure file copy\n\nCopy files to Azure Blob Storage or virtual machines", "ignoreCase": "value", "pattern": "^AzureFileCopy@5$" }, "inputs": { "description": "Azure file copy inputs", "properties": { "SourcePath": { "type": "string", "description": "Source", "ignoreCase": "key" }, "azureSubscription": { "type": "string", "description": "Azure Subscription", "ignoreCase": "key", "aliases": [ "ConnectedServiceNameARM" ] }, "Destination": { "description": "Destination Type", "ignoreCase": "all", "enum": [ "AzureBlob", "AzureVMs" ] }, "storage": { "type": "string", "description": "RM Storage Account", "ignoreCase": "key", "aliases": [ "StorageAccountRM" ] }, "ContainerName": { "type": "string", "description": "Container Name", "ignoreCase": "key" }, "BlobPrefix": { "type": "string", "description": "Blob Prefix", "ignoreCase": "key" }, "resourceGroup": { "type": "string", "description": "Resource Group", "ignoreCase": "key", "aliases": [ "EnvironmentNameRM" ] }, "ResourceFilteringMethod": { "description": "Select Machines By", "ignoreCase": "all", "enum": [ "machineNames", "tags" ] }, "MachineNames": { "type": "string", "description": "Filter Criteria", "ignoreCase": "key" }, "vmsAdminUserName": { "type": "string", "description": "Admin Login", "ignoreCase": "key" }, "vmsAdminPassword": { "type": "string", "description": "Password", "ignoreCase": "key" }, "TargetPath": { "type": "string", "description": "Destination Folder", "ignoreCase": "key" }, "AdditionalArgumentsForBlobCopy": { "type": "string", "description": "Optional Arguments (for uploading files to blob)", "ignoreCase": "key" }, "AdditionalArgumentsForVMCopy": { "type": "string", "description": "Optional Arguments (for downloading files to VM)", "ignoreCase": "key" }, "sasTokenTimeOutInMinutes": { "type": "string", "description": "SAS Token Expiration Period In Minutes", "ignoreCase": "key" }, "enableCopyPrerequisites": { "type": "boolean", "description": "Enable Copy Prerequisites", "ignoreCase": "key" }, "CopyFilesInParallel": { "type": "boolean", "description": "Copy in Parallel", "ignoreCase": "key" }, "CleanTargetBeforeCopy": { "type": "boolean", "description": "Clean Target", "ignoreCase": "key" }, "skipCACheck": { "type": "boolean", "description": "Test Certificate", "ignoreCase": "key" } }, "additionalProperties": false, "required": [ "SourcePath", "azureSubscription", "Destination", "storage" ] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task", "inputs" ] }, { "properties": { "task": { "description": "Azure file copy\n\nCopy files to Azure Blob Storage or virtual machines", "ignoreCase": "value", "pattern": "^AzureFileCopy@2$" }, "inputs": { "description": "Azure file copy inputs", "properties": { "SourcePath": { "type": "string", "description": "Source", "ignoreCase": "key" }, "azureConnectionType": { "description": "Azure Connection Type", "ignoreCase": "all", "enum": [ "ConnectedServiceName", "ConnectedServiceNameARM" ], "aliases": [ "ConnectedServiceNameSelector" ] }, "azureClassicSubscription": { "type": "string", "description": "Azure Classic Subscription", "ignoreCase": "key", "aliases": [ "ConnectedServiceName" ] }, "azureSubscription": { "type": "string", "description": "Azure Subscription", "ignoreCase": "key", "aliases": [ "ConnectedServiceNameARM" ] }, "Destination": { "description": "Destination Type", "ignoreCase": "all", "enum": [ "AzureBlob", "AzureVMs" ] }, "classicStorage": { "type": "string", "description": "Classic Storage Account", "ignoreCase": "key", "aliases": [ "StorageAccount" ] }, "storage": { "type": "string", "description": "RM Storage Account", "ignoreCase": "key", "aliases": [ "StorageAccountRM" ] }, "ContainerName": { "type": "string", "description": "Container Name", "ignoreCase": "key" }, "BlobPrefix": { "type": "string", "description": "Blob Prefix", "ignoreCase": "key" }, "cloudService": { "type": "string", "description": "Cloud Service", "ignoreCase": "key", "aliases": [ "EnvironmentName" ] }, "resourceGroup": { "type": "string", "description": "Resource Group", "ignoreCase": "key", "aliases": [ "EnvironmentNameRM" ] }, "ResourceFilteringMethod": { "description": "Select Machines By", "ignoreCase": "all", "enum": [ "machineNames", "tags" ] }, "MachineNames": { "type": "string", "description": "Filter Criteria", "ignoreCase": "key" }, "vmsAdminUserName": { "type": "string", "description": "Admin Login", "ignoreCase": "key" }, "vmsAdminPassword": { "type": "string", "description": "Password", "ignoreCase": "key" }, "TargetPath": { "type": "string", "description": "Destination Folder", "ignoreCase": "key" }, "AdditionalArgumentsForBlobCopy": { "type": "string", "description": "Optional Arguments (for uploading files to blob)", "ignoreCase": "key" }, "AdditionalArgumentsForVMCopy": { "type": "string", "description": "Optional Arguments (for downloading files to VM)", "ignoreCase": "key" }, "enableCopyPrerequisites": { "type": "boolean", "description": "Enable Copy Prerequisites", "ignoreCase": "key" }, "CopyFilesInParallel": { "type": "boolean", "description": "Copy in Parallel", "ignoreCase": "key" }, "CleanTargetBeforeCopy": { "type": "boolean", "description": "Clean Target", "ignoreCase": "key" }, "skipCACheck": { "type": "boolean", "description": "Test Certificate", "ignoreCase": "key" }, "outputStorageUri": { "type": "string", "description": "Storage Container URI", "ignoreCase": "key" }, "outputStorageContainerSasToken": { "type": "string", "description": "Storage Container SAS Token", "ignoreCase": "key" } }, "additionalProperties": false, "required": [ "SourcePath", "Destination" ] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task", "inputs" ] }, { "properties": { "task": { "description": "Azure file copy\n\nCopy files to Azure Blob Storage or virtual machines", "ignoreCase": "value", "pattern": "^AzureFileCopy@3$" }, "inputs": { "description": "Azure file copy inputs", "properties": { "SourcePath": { "type": "string", "description": "Source", "ignoreCase": "key" }, "azureSubscription": { "type": "string", "description": "Azure Subscription", "ignoreCase": "key", "aliases": [ "ConnectedServiceNameARM" ] }, "Destination": { "description": "Destination Type", "ignoreCase": "all", "enum": [ "AzureBlob", "AzureVMs" ] }, "storage": { "type": "string", "description": "RM Storage Account", "ignoreCase": "key", "aliases": [ "StorageAccountRM" ] }, "ContainerName": { "type": "string", "description": "Container Name", "ignoreCase": "key" }, "BlobPrefix": { "type": "string", "description": "Blob Prefix", "ignoreCase": "key" }, "resourceGroup": { "type": "string", "description": "Resource Group", "ignoreCase": "key", "aliases": [ "EnvironmentNameRM" ] }, "ResourceFilteringMethod": { "description": "Select Machines By", "ignoreCase": "all", "enum": [ "machineNames", "tags" ] }, "MachineNames": { "type": "string", "description": "Filter Criteria", "ignoreCase": "key" }, "vmsAdminUserName": { "type": "string", "description": "Admin Login", "ignoreCase": "key" }, "vmsAdminPassword": { "type": "string", "description": "Password", "ignoreCase": "key" }, "TargetPath": { "type": "string", "description": "Destination Folder", "ignoreCase": "key" }, "AdditionalArgumentsForBlobCopy": { "type": "string", "description": "Optional Arguments (for uploading files to blob)", "ignoreCase": "key" }, "AdditionalArgumentsForVMCopy": { "type": "string", "description": "Optional Arguments (for downloading files to VM)", "ignoreCase": "key" }, "enableCopyPrerequisites": { "type": "boolean", "description": "Enable Copy Prerequisites", "ignoreCase": "key" }, "CopyFilesInParallel": { "type": "boolean", "description": "Copy in Parallel", "ignoreCase": "key" }, "CleanTargetBeforeCopy": { "type": "boolean", "description": "Clean Target", "ignoreCase": "key" }, "skipCACheck": { "type": "boolean", "description": "Test Certificate", "ignoreCase": "key" }, "outputStorageUri": { "type": "string", "description": "Storage Container URI", "ignoreCase": "key" }, "outputStorageContainerSasToken": { "type": "string", "description": "Storage Container SAS Token", "ignoreCase": "key" }, "sasTokenTimeOutInMinutes": { "type": "string", "description": "SAS Token Expiration Period In Minutes", "ignoreCase": "key" } }, "additionalProperties": false, "required": [ "SourcePath", "azureSubscription", "Destination", "storage" ] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task", "inputs" ] }, { "properties": { "task": { "description": "Index sources and publish symbols\n\nIndex your source code and publish symbols to a file share or Azure Artifacts symbol server", "ignoreCase": "value", "pattern": "^PublishSymbols@2$" }, "inputs": { "description": "Index sources and publish symbols inputs", "properties": { "SymbolsFolder": { "type": "string", "description": "Path to symbols folder", "ignoreCase": "key" }, "SearchPattern": { "type": "string", "description": "Search pattern", "ignoreCase": "key" }, "IndexSources": { "type": "boolean", "description": "Index sources", "ignoreCase": "key" }, "PublishSymbols": { "type": "boolean", "description": "Publish symbols", "ignoreCase": "key" }, "SymbolServerType": { "description": "Symbol server type", "ignoreCase": "all", "enum": [ " ", "TeamServices", "FileShare" ] }, "SymbolsPath": { "type": "string", "description": "Path to publish symbols", "ignoreCase": "key" }, "CompressSymbols": { "type": "boolean", "description": "Compress symbols", "ignoreCase": "key" }, "SymbolExpirationInDays": { "type": "string", "description": "Symbol Expiration (in days)", "ignoreCase": "key" }, "IndexableFileFormats": { "description": "Symbol file formats to publish", "ignoreCase": "all", "enum": [ "Default", "Pdb", "SourceMap", "All" ] }, "DetailedLog": { "type": "boolean", "description": "Verbose logging", "ignoreCase": "key" }, "TreatNotIndexedAsWarning": { "type": "boolean", "description": "Warn if not indexed", "ignoreCase": "key" }, "UseNetCoreClientTool": { "type": "boolean", "description": "Use NetCore client tool", "ignoreCase": "key" }, "SymbolsMaximumWaitTime": { "type": "string", "description": "Max wait time (min)", "ignoreCase": "key" }, "SymbolsProduct": { "type": "string", "description": "Product", "ignoreCase": "key" }, "SymbolsVersion": { "type": "string", "description": "Version", "ignoreCase": "key" }, "SymbolsArtifactName": { "type": "string", "description": "Artifact name", "ignoreCase": "key" } }, "additionalProperties": false, "required": [] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task" ] }, { "properties": { "task": { "description": "Index Sources & Publish Symbols\n\nIndex your source code and publish symbols to a file share", "ignoreCase": "value", "pattern": "^PublishSymbols@1$" }, "inputs": { "description": "Index Sources & Publish Symbols inputs", "properties": { "SymbolsPath": { "type": "string", "description": "Path to publish symbols", "ignoreCase": "key" }, "SearchPattern": { "type": "string", "description": "Search pattern", "ignoreCase": "key" }, "SymbolsFolder": { "type": "string", "description": "Path to symbols folder", "ignoreCase": "key" }, "SkipIndexing": { "type": "boolean", "description": "Skip indexing", "ignoreCase": "key" }, "TreatNotIndexedAsWarning": { "type": "boolean", "description": "Warn if not indexed", "ignoreCase": "key" }, "SymbolsMaximumWaitTime": { "type": "string", "description": "Max wait time (min)", "ignoreCase": "key" }, "SymbolsProduct": { "type": "string", "description": "Product", "ignoreCase": "key" }, "SymbolsVersion": { "type": "string", "description": "Version", "ignoreCase": "key" }, "SymbolsArtifactName": { "type": "string", "description": "Artifact name", "ignoreCase": "key" } }, "additionalProperties": false, "required": [] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task" ] }, { "properties": { "task": { "description": "Copy files over SSH\n\nCopy files or build artifacts to a remote machine over SSH", "ignoreCase": "value", "pattern": "^CopyFilesOverSSH@0$" }, "inputs": { "description": "Copy files over SSH inputs", "properties": { "sshEndpoint": { "type": "string", "description": "SSH service connection", "ignoreCase": "key" }, "sourceFolder": { "type": "string", "description": "Source folder", "ignoreCase": "key" }, "contents": { "type": "string", "description": "Contents", "ignoreCase": "key" }, "targetFolder": { "type": "string", "description": "Target folder", "ignoreCase": "key" }, "isWindowsOnTarget": { "type": "boolean", "description": "Target machine running Windows", "ignoreCase": "key" }, "cleanTargetFolder": { "type": "boolean", "description": "Clean target folder", "ignoreCase": "key" }, "cleanHiddenFilesInTarget": { "type": "boolean", "description": "Remove hidden files in target folder", "ignoreCase": "key" }, "readyTimeout": { "type": "string", "description": "SSH handshake timeout", "ignoreCase": "key" }, "overwrite": { "type": "boolean", "description": "Overwrite", "ignoreCase": "key" }, "failOnEmptySource": { "type": "boolean", "description": "Fail if no files found to copy", "ignoreCase": "key" }, "flattenFolders": { "type": "boolean", "description": "Flatten folders", "ignoreCase": "key" } }, "additionalProperties": false, "required": [ "sshEndpoint" ] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task", "inputs" ] }, { "properties": { "task": { "description": "Gradle\n\nBuild using a Gradle wrapper script", "ignoreCase": "value", "pattern": "^Gradle@2$" }, "inputs": { "description": "Gradle inputs", "properties": { "gradleWrapperFile": { "type": "string", "description": "Gradle wrapper", "ignoreCase": "key", "aliases": [ "wrapperScript" ] }, "workingDirectory": { "type": "string", "description": "Working directory", "ignoreCase": "key", "aliases": [ "cwd" ] }, "options": { "type": "string", "description": "Options", "ignoreCase": "key" }, "tasks": { "type": "string", "description": "Tasks", "ignoreCase": "key" }, "publishJUnitResults": { "type": "boolean", "description": "Publish to Azure Pipelines", "ignoreCase": "key" }, "testResultsFiles": { "type": "string", "description": "Test results files", "ignoreCase": "key" }, "testRunTitle": { "type": "string", "description": "Test run title", "ignoreCase": "key" }, "codeCoverageToolOption": { "description": "Code coverage tool", "ignoreCase": "all", "enum": [ "None", "Cobertura", "JaCoCo" ], "aliases": [ "codeCoverageTool" ] }, "codeCoverageClassFilesDirectories": { "type": "string", "description": "Class files directories", "ignoreCase": "key", "aliases": [ "classFilesDirectories" ] }, "codeCoverageClassFilter": { "type": "string", "description": "Class inclusion/exclusion filters", "ignoreCase": "key", "aliases": [ "classFilter" ] }, "codeCoverageFailIfEmpty": { "type": "boolean", "description": "Fail when code coverage results are missing", "ignoreCase": "key", "aliases": [ "failIfCoverageEmpty" ] }, "codeCoverageGradle5xOrHigher": { "type": "boolean", "description": "Gradle version >= 5.x", "ignoreCase": "key", "aliases": [ "gradle5xOrHigher" ] }, "javaHomeOption": { "description": "Set JAVA_HOME by", "ignoreCase": "all", "enum": [ "JDKVersion", "Path" ], "aliases": [ "javaHomeSelection" ] }, "jdkVersionOption": { "description": "JDK version", "ignoreCase": "all", "enum": [ "default", "1.17", "1.11", "1.10", "1.9", "1.8", "1.7", "1.6" ], "aliases": [ "jdkVersion" ] }, "jdkDirectory": { "type": "string", "description": "JDK path", "ignoreCase": "key", "aliases": [ "jdkUserInputPath" ] }, "jdkArchitectureOption": { "description": "JDK architecture", "ignoreCase": "all", "enum": [ "x86", "x64" ], "aliases": [ "jdkArchitecture" ] }, "gradleOptions": { "type": "string", "description": "Set GRADLE_OPTS", "ignoreCase": "key", "aliases": [ "gradleOpts" ] }, "sonarQubeRunAnalysis": { "type": "boolean", "description": "Run SonarQube or SonarCloud Analysis", "ignoreCase": "key", "aliases": [ "sqAnalysisEnabled" ] }, "sqGradlePluginVersionChoice": { "description": "SonarQube scanner for Gradle version", "ignoreCase": "all", "enum": [ "specify", "build" ] }, "sonarQubeGradlePluginVersion": { "type": "string", "description": "SonarQube scanner for Gradle plugin version", "ignoreCase": "key", "aliases": [ "sqGradlePluginVersion" ] }, "checkStyleRunAnalysis": { "type": "boolean", "description": "Run Checkstyle", "ignoreCase": "key", "aliases": [ "checkstyleAnalysisEnabled" ] }, "findBugsRunAnalysis": { "type": "boolean", "description": "Run FindBugs", "ignoreCase": "key", "aliases": [ "findbugsAnalysisEnabled" ] }, "pmdRunAnalysis": { "type": "boolean", "description": "Run PMD", "ignoreCase": "key", "aliases": [ "pmdAnalysisEnabled" ] }, "spotBugsAnalysis": { "type": "boolean", "description": "Run SpotBugs", "ignoreCase": "key", "aliases": [ "spotBugsAnalysisEnabled" ] }, "spotBugsGradlePluginVersionChoice": { "description": "Spotbugs plugin version", "ignoreCase": "all", "enum": [ "specify", "build" ] }, "spotbugsGradlePluginVersion": { "type": "string", "description": "Version number", "ignoreCase": "key", "aliases": [ "spotbugsGradlePluginVersion" ] } }, "additionalProperties": false, "required": [] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task" ] }, { "properties": { "task": { "description": "Gradle\n\nBuild using a Gradle wrapper script", "ignoreCase": "value", "pattern": "^Gradle@3$" }, "inputs": { "description": "Gradle inputs", "properties": { "gradleWrapperFile": { "type": "string", "description": "Gradle wrapper", "ignoreCase": "key", "aliases": [ "wrapperScript" ] }, "workingDirectory": { "type": "string", "description": "Working directory", "ignoreCase": "key", "aliases": [ "cwd" ] }, "options": { "type": "string", "description": "Options", "ignoreCase": "key" }, "tasks": { "type": "string", "description": "Tasks", "ignoreCase": "key" }, "publishJUnitResults": { "type": "boolean", "description": "Publish to Azure Pipelines", "ignoreCase": "key" }, "testResultsFiles": { "type": "string", "description": "Test results files", "ignoreCase": "key" }, "testRunTitle": { "type": "string", "description": "Test run title", "ignoreCase": "key" }, "codeCoverageToolOption": { "description": "Code coverage tool", "ignoreCase": "all", "enum": [ "None", "Cobertura", "JaCoCo" ], "aliases": [ "codeCoverageTool" ] }, "codeCoverageClassFilesDirectories": { "type": "string", "description": "Class files directories", "ignoreCase": "key", "aliases": [ "classFilesDirectories" ] }, "codeCoverageClassFilter": { "type": "string", "description": "Class inclusion/exclusion filters", "ignoreCase": "key", "aliases": [ "classFilter" ] }, "codeCoverageFailIfEmpty": { "type": "boolean", "description": "Fail when code coverage results are missing", "ignoreCase": "key", "aliases": [ "failIfCoverageEmpty" ] }, "codeCoverageGradle5xOrHigher": { "type": "boolean", "description": "Gradle version >= 5.x", "ignoreCase": "key", "aliases": [ "gradle5xOrHigher" ] }, "javaHomeOption": { "description": "Set JAVA_HOME by", "ignoreCase": "all", "enum": [ "JDKVersion", "Path" ], "aliases": [ "javaHomeSelection" ] }, "jdkVersionOption": { "description": "JDK version", "ignoreCase": "all", "enum": [ "default", "1.17", "1.11", "1.10", "1.9", "1.8", "1.7", "1.6" ], "aliases": [ "jdkVersion" ] }, "jdkDirectory": { "type": "string", "description": "JDK path", "ignoreCase": "key", "aliases": [ "jdkUserInputPath" ] }, "jdkArchitectureOption": { "description": "JDK architecture", "ignoreCase": "all", "enum": [ "x86", "x64" ], "aliases": [ "jdkArchitecture" ] }, "gradleOptions": { "type": "string", "description": "Set GRADLE_OPTS", "ignoreCase": "key", "aliases": [ "gradleOpts" ] }, "sonarQubeRunAnalysis": { "type": "boolean", "description": "Run SonarQube or SonarCloud Analysis", "ignoreCase": "key", "aliases": [ "sqAnalysisEnabled" ] }, "sqGradlePluginVersionChoice": { "description": "SonarQube scanner for Gradle version", "ignoreCase": "all", "enum": [ "specify", "build" ] }, "sonarQubeGradlePluginVersion": { "type": "string", "description": "SonarQube scanner for Gradle plugin version", "ignoreCase": "key", "aliases": [ "sqGradlePluginVersion" ] }, "checkStyleRunAnalysis": { "type": "boolean", "description": "Run Checkstyle", "ignoreCase": "key", "aliases": [ "checkstyleAnalysisEnabled" ] }, "findBugsRunAnalysis": { "type": "boolean", "description": "Run FindBugs", "ignoreCase": "key", "aliases": [ "findbugsAnalysisEnabled" ] }, "pmdRunAnalysis": { "type": "boolean", "description": "Run PMD", "ignoreCase": "key", "aliases": [ "pmdAnalysisEnabled" ] }, "spotBugsAnalysis": { "type": "boolean", "description": "Run SpotBugs", "ignoreCase": "key", "aliases": [ "spotBugsAnalysisEnabled" ] }, "spotBugsGradlePluginVersionChoice": { "description": "Spotbugs plugin version", "ignoreCase": "all", "enum": [ "specify", "build" ] }, "spotbugsGradlePluginVersion": { "type": "string", "description": "Version number", "ignoreCase": "key", "aliases": [ "spotbugsGradlePluginVersion" ] } }, "additionalProperties": false, "required": [] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task" ] }, { "properties": { "task": { "description": "Gradle\n\nBuild using a Gradle wrapper script", "ignoreCase": "value", "pattern": "^Gradle@1$" }, "inputs": { "description": "Gradle inputs", "properties": { "gradleWrapperFile": { "type": "string", "description": "Gradle Wrapper", "ignoreCase": "key", "aliases": [ "wrapperScript" ] }, "options": { "type": "string", "description": "Options", "ignoreCase": "key" }, "tasks": { "type": "string", "description": "Tasks", "ignoreCase": "key" }, "workingDirectory": { "type": "string", "description": "Working Directory", "ignoreCase": "key", "aliases": [ "cwd" ] }, "publishJUnitResults": { "type": "boolean", "description": "Publish to TFS/Team Services", "ignoreCase": "key" }, "testResultsFiles": { "type": "string", "description": "Test Results Files", "ignoreCase": "key" }, "testRunTitle": { "type": "string", "description": "Test Run Title", "ignoreCase": "key" }, "codeCoverageToolOption": { "description": "Code Coverage Tool", "ignoreCase": "all", "enum": [ "None", "Cobertura", "JaCoCo" ], "aliases": [ "codeCoverageTool" ] }, "codeCoverageClassFilesDirectories": { "type": "string", "description": "Class Files Directories", "ignoreCase": "key", "aliases": [ "classFilesDirectories" ] }, "codeCoverageClassFilter": { "type": "string", "description": "Class Inclusion/Exclusion Filters", "ignoreCase": "key", "aliases": [ "classFilter" ] }, "codeCoverageFailIfEmpty": { "type": "boolean", "description": "Fail When Code Coverage Results Are Missing", "ignoreCase": "key", "aliases": [ "failIfCoverageEmpty" ] }, "javaHomeOption": { "description": "Set JAVA_HOME by", "ignoreCase": "all", "enum": [ "JDKVersion", "Path" ], "aliases": [ "javaHomeSelection" ] }, "jdkVersionOption": { "description": "JDK Version", "ignoreCase": "all", "enum": [ "default", "1.9", "1.8", "1.7", "1.6" ], "aliases": [ "jdkVersion" ] }, "jdkDirectory": { "type": "string", "description": "JDK Path", "ignoreCase": "key", "aliases": [ "jdkUserInputPath" ] }, "jdkArchitectureOption": { "description": "JDK Architecture", "ignoreCase": "all", "enum": [ "x86", "x64" ], "aliases": [ "jdkArchitecture" ] }, "gradleOptions": { "type": "string", "description": "Set GRADLE_OPTS", "ignoreCase": "key", "aliases": [ "gradleOpts" ] }, "sonarQubeRunAnalysis": { "type": "boolean", "description": "Run SonarQube Analysis", "ignoreCase": "key", "aliases": [ "sqAnalysisEnabled" ] }, "sonarQubeServiceEndpoint": { "type": "string", "description": "SonarQube Endpoint", "ignoreCase": "key", "aliases": [ "sqConnectedServiceName" ] }, "sonarQubeProjectName": { "type": "string", "description": "SonarQube Project Name", "ignoreCase": "key", "aliases": [ "sqProjectName" ] }, "sonarQubeProjectKey": { "type": "string", "description": "SonarQube Project Key", "ignoreCase": "key", "aliases": [ "sqProjectKey" ] }, "sonarQubeProjectVersion": { "type": "string", "description": "SonarQube Project Version", "ignoreCase": "key", "aliases": [ "sqProjectVersion" ] }, "sonarQubeGradlePluginVersion": { "type": "string", "description": "SonarQube Gradle Plugin Version", "ignoreCase": "key", "aliases": [ "sqGradlePluginVersion" ] }, "sonarQubeSpecifyDB": { "type": "boolean", "description": "The SonarQube server version is lower than 5.2", "ignoreCase": "key", "aliases": [ "sqDbDetailsRequired" ] }, "sonarQubeDBUrl": { "type": "string", "description": "Db Connection String", "ignoreCase": "key", "aliases": [ "sqDbUrl" ] }, "sonarQubeDBUsername": { "type": "string", "description": "Db Username", "ignoreCase": "key", "aliases": [ "sqDbUsername" ] }, "sonarQubeDBPassword": { "type": "string", "description": "Db User Password", "ignoreCase": "key", "aliases": [ "sqDbPassword" ] }, "sonarQubeIncludeFullReport": { "type": "boolean", "description": "Include full analysis report in the build summary (SQ 5.3+)", "ignoreCase": "key", "aliases": [ "sqAnalysisIncludeFullReport" ] }, "sonarQubeFailWhenQualityGateFails": { "type": "boolean", "description": "Fail the build on quality gate failure (SQ 5.3+)", "ignoreCase": "key", "aliases": [ "sqAnalysisBreakBuildIfQualityGateFailed" ] }, "checkStyleRunAnalysis": { "type": "boolean", "description": "Run Checkstyle", "ignoreCase": "key", "aliases": [ "checkstyleAnalysisEnabled" ] }, "findBugsRunAnalysis": { "type": "boolean", "description": "Run FindBugs", "ignoreCase": "key", "aliases": [ "findbugsAnalysisEnabled" ] }, "pmdRunAnalysis": { "type": "boolean", "description": "Run PMD", "ignoreCase": "key", "aliases": [ "pmdAnalysisEnabled" ] } }, "additionalProperties": false, "required": [] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task" ] }, { "properties": { "task": { "description": "App Center distribute\n\nDistribute app builds to testers and users via Visual Studio App Center", "ignoreCase": "value", "pattern": "^AppCenterDistribute@2$" }, "inputs": { "description": "App Center distribute inputs", "properties": { "serverEndpoint": { "type": "string", "description": "App Center service connection", "ignoreCase": "key" }, "appSlug": { "type": "string", "description": "App slug", "ignoreCase": "key" }, "appFile": { "type": "string", "description": "Binary file path", "ignoreCase": "key", "aliases": [ "app" ] }, "symbolsOption": { "description": "Symbols type", "ignoreCase": "all", "enum": [ "Apple" ], "aliases": [ "symbolsType" ] }, "symbolsPath": { "type": "string", "description": "Symbols path", "ignoreCase": "key" }, "symbolsPdbFiles": { "type": "string", "description": "Symbols path (*.pdb)", "ignoreCase": "key", "aliases": [ "pdbPath" ] }, "symbolsDsymFiles": { "type": "string", "description": "dSYM path", "ignoreCase": "key", "aliases": [ "dsymPath" ] }, "symbolsMappingTxtFile": { "type": "string", "description": "Mapping file", "ignoreCase": "key", "aliases": [ "mappingTxtPath" ] }, "symbolsIncludeParentDirectory": { "type": "boolean", "description": "Include all items in parent folder", "ignoreCase": "key", "aliases": [ "packParentFolder" ] }, "releaseNotesOption": { "description": "Create release notes", "ignoreCase": "all", "enum": [ "input", "file" ], "aliases": [ "releaseNotesSelection" ] }, "releaseNotesInput": { "type": "string", "description": "Release notes", "ignoreCase": "key" }, "releaseNotesFile": { "type": "string", "description": "Release notes file", "ignoreCase": "key" }, "isMandatory": { "type": "boolean", "description": "Require users to update to this release", "ignoreCase": "key" }, "distributionGroupId": { "type": "string", "description": "Destination IDs", "ignoreCase": "key", "aliases": [ "destinationIds", "destinationId" ] } }, "additionalProperties": false, "required": [ "serverEndpoint", "appSlug", "appFile" ] } }, "deprecationMessage": "AppCenterDistribute is deprecated - Distribute app builds to testers and users via Visual Studio App Center", "doNotSuggest": true, "firstProperty": [ "task" ], "required": [ "task", "inputs" ] }, { "properties": { "task": { "description": "App Center distribute\n\nDistribute app builds to testers and users via Visual Studio App Center", "ignoreCase": "value", "pattern": "^AppCenterDistribute@1$" }, "inputs": { "description": "App Center distribute inputs", "properties": { "serverEndpoint": { "type": "string", "description": "App Center service connection", "ignoreCase": "key" }, "appSlug": { "type": "string", "description": "App slug", "ignoreCase": "key" }, "appFile": { "type": "string", "description": "Binary file path", "ignoreCase": "key", "aliases": [ "app" ] }, "symbolsOption": { "description": "Symbols type", "ignoreCase": "all", "enum": [ "Apple" ], "aliases": [ "symbolsType" ] }, "symbolsPath": { "type": "string", "description": "Symbols path", "ignoreCase": "key" }, "symbolsPdbFiles": { "type": "string", "description": "Symbols path (*.pdb)", "ignoreCase": "key", "aliases": [ "pdbPath" ] }, "symbolsDsymFiles": { "type": "string", "description": "dSYM path", "ignoreCase": "key", "aliases": [ "dsymPath" ] }, "symbolsMappingTxtFile": { "type": "string", "description": "Mapping file", "ignoreCase": "key", "aliases": [ "mappingTxtPath" ] }, "symbolsIncludeParentDirectory": { "type": "boolean", "description": "Include all items in parent folder", "ignoreCase": "key", "aliases": [ "packParentFolder" ] }, "releaseNotesOption": { "description": "Create release notes", "ignoreCase": "all", "enum": [ "input", "file" ], "aliases": [ "releaseNotesSelection" ] }, "releaseNotesInput": { "type": "string", "description": "Release notes", "ignoreCase": "key" }, "releaseNotesFile": { "type": "string", "description": "Release notes file", "ignoreCase": "key" }, "isMandatory": { "type": "boolean", "description": "Require users to update to this release", "ignoreCase": "key" }, "distributionGroupId": { "type": "string", "description": "Destination ID", "ignoreCase": "key", "aliases": [ "destinationId" ] } }, "additionalProperties": false, "required": [ "serverEndpoint", "appSlug", "appFile" ] } }, "deprecationMessage": "AppCenterDistribute is deprecated - Distribute app builds to testers and users via Visual Studio App Center", "doNotSuggest": true, "firstProperty": [ "task" ], "required": [ "task", "inputs" ] }, { "properties": { "task": { "description": "App Center distribute\n\nDistribute app builds to testers and users via Visual Studio App Center", "ignoreCase": "value", "pattern": "^AppCenterDistribute@3$" }, "inputs": { "description": "App Center distribute inputs", "properties": { "serverEndpoint": { "type": "string", "description": "App Center service connection", "ignoreCase": "key" }, "appSlug": { "type": "string", "description": "App slug", "ignoreCase": "key" }, "appFile": { "type": "string", "description": "Binary file path", "ignoreCase": "key", "aliases": [ "app" ] }, "buildVersion": { "type": "string", "description": "Build version", "ignoreCase": "key" }, "symbolsOption": { "description": "Symbols type", "ignoreCase": "all", "enum": [ "Apple", "Android", "UWP" ], "aliases": [ "symbolsType" ] }, "symbolsPath": { "type": "string", "description": "Symbols path", "ignoreCase": "key" }, "appxsymPath": { "type": "string", "description": "Symbols path (*.appxsym)", "ignoreCase": "key" }, "symbolsDsymFiles": { "type": "string", "description": "dSYM path", "ignoreCase": "key", "aliases": [ "dsymPath" ] }, "symbolsMappingTxtFile": { "type": "string", "description": "Mapping file", "ignoreCase": "key", "aliases": [ "mappingTxtPath" ] }, "nativeLibrariesPath": { "type": "string", "description": "Native Library File Path", "ignoreCase": "key" }, "symbolsIncludeParentDirectory": { "type": "boolean", "description": "Include all items in parent folder", "ignoreCase": "key", "aliases": [ "packParentFolder" ] }, "releaseNotesOption": { "description": "Create release notes", "ignoreCase": "all", "enum": [ "input", "file" ], "aliases": [ "releaseNotesSelection" ] }, "releaseNotesInput": { "type": "string", "description": "Release notes", "ignoreCase": "key" }, "releaseNotesFile": { "type": "string", "description": "Release notes file", "ignoreCase": "key" }, "isMandatory": { "type": "boolean", "description": "Require users to update to this release", "ignoreCase": "key" }, "destinationType": { "description": "Release destination", "ignoreCase": "all", "enum": [ "groups", "store" ] }, "distributionGroupId": { "type": "string", "description": "Destination IDs", "ignoreCase": "key", "aliases": [ "destinationGroupIds" ] }, "destinationStoreId": { "type": "string", "description": "Destination ID", "ignoreCase": "key" }, "isSilent": { "type": "boolean", "description": "Do not notify testers. Release will still be available to install.", "ignoreCase": "key" } }, "additionalProperties": false, "required": [ "serverEndpoint", "appSlug", "appFile" ] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task", "inputs" ] }, { "properties": { "task": { "description": "App Center Distribute\n\nDistribute app builds to testers and users via App Center", "ignoreCase": "value", "pattern": "^AppCenterDistribute@0$" }, "inputs": { "description": "App Center Distribute inputs", "properties": { "serverEndpoint": { "type": "string", "description": "App Center connection", "ignoreCase": "key" }, "appSlug": { "type": "string", "description": "App slug", "ignoreCase": "key" }, "appFile": { "type": "string", "description": "Binary file path", "ignoreCase": "key", "aliases": [ "app" ] }, "symbolsOption": { "description": "Symbols type", "ignoreCase": "all", "enum": [ "Apple" ], "aliases": [ "symbolsType" ] }, "symbolsPath": { "type": "string", "description": "Symbols path", "ignoreCase": "key" }, "symbolsPdbFiles": { "type": "string", "description": "Symbols path (*.pdb)", "ignoreCase": "key", "aliases": [ "pdbPath" ] }, "symbolsDsymFiles": { "type": "string", "description": "dSYM path", "ignoreCase": "key", "aliases": [ "dsymPath" ] }, "symbolsMappingTxtFile": { "type": "string", "description": "Mapping file", "ignoreCase": "key", "aliases": [ "mappingTxtPath" ] }, "symbolsIncludeParentDirectory": { "type": "boolean", "description": "Include all items in parent folder", "ignoreCase": "key", "aliases": [ "packParentFolder" ] }, "releaseNotesOption": { "description": "Create release notes", "ignoreCase": "all", "enum": [ "input", "file" ], "aliases": [ "releaseNotesSelection" ] }, "releaseNotesInput": { "type": "string", "description": "Release notes", "ignoreCase": "key" }, "releaseNotesFile": { "type": "string", "description": "Release notes file", "ignoreCase": "key" }, "distributionGroupId": { "type": "string", "description": "Distribution group ID", "ignoreCase": "key" } }, "additionalProperties": false, "required": [ "serverEndpoint", "appSlug", "appFile" ] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task", "inputs" ] }, { "properties": { "task": { "description": "NuGet tool installer\n\nAcquires a specific version of NuGet from the internet or the tools cache and adds it to the PATH. Use this task to change the version of NuGet used in the NuGet tasks.", "ignoreCase": "value", "pattern": "^NuGetToolInstaller@0$" }, "inputs": { "description": "NuGet tool installer inputs", "properties": { "versionSpec": { "type": "string", "description": "Version of NuGet.exe to install", "ignoreCase": "key" }, "checkLatest": { "type": "boolean", "description": "Always download the latest matching version", "ignoreCase": "key" } }, "additionalProperties": false, "required": [] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task" ] }, { "properties": { "task": { "description": "NuGet tool installer\n\nAcquires a specific version of NuGet from the internet or the tools cache and adds it to the PATH. Use this task to change the version of NuGet used in the NuGet tasks.", "ignoreCase": "value", "pattern": "^NuGetToolInstaller@1$" }, "inputs": { "description": "NuGet tool installer inputs", "properties": { "versionSpec": { "type": "string", "description": "Version of NuGet.exe to install", "ignoreCase": "key" }, "checkLatest": { "type": "boolean", "description": "Always check for new versions", "ignoreCase": "key" } }, "additionalProperties": false, "required": [] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task" ] }, { "properties": { "task": { "description": "Jenkins download artifacts\n\nDownload artifacts produced by a Jenkins job", "ignoreCase": "value", "pattern": "^JenkinsDownloadArtifacts@1$" }, "inputs": { "description": "Jenkins download artifacts inputs", "properties": { "jenkinsServerConnection": { "type": "string", "description": "Jenkins service connection", "ignoreCase": "key", "aliases": [ "serverEndpoint" ] }, "jobName": { "type": "string", "description": "Job name", "ignoreCase": "key" }, "jenkinsJobType": { "type": "string", "description": "Jenkins job type", "ignoreCase": "key" }, "saveTo": { "type": "string", "description": "Save to", "ignoreCase": "key" }, "jenkinsBuild": { "description": "Download artifacts produced by", "ignoreCase": "all", "enum": [ "LastSuccessfulBuild", "BuildNumber" ] }, "jenkinsBuildNumber": { "type": "string", "description": "Jenkins build number", "ignoreCase": "key" }, "itemPattern": { "type": "string", "description": "Item Pattern", "ignoreCase": "key" }, "downloadCommitsAndWorkItems": { "type": "boolean", "description": "Download Commits and WorkItems", "ignoreCase": "key" }, "startJenkinsBuildNumber": { "type": "string", "description": "Download commits and work items from", "ignoreCase": "key" }, "artifactDetailsFileNameSuffix": { "type": "string", "description": "Commit and WorkItem FileName", "ignoreCase": "key" }, "propagatedArtifacts": { "type": "boolean", "description": "Artifacts are propagated to Azure", "ignoreCase": "key" }, "artifactProvider": { "description": "Artifact Provider", "ignoreCase": "all", "enum": [ "azureStorage" ] }, "ConnectedServiceNameARM": { "type": "string", "description": "Azure Subscription", "ignoreCase": "key" }, "storageAccountName": { "type": "string", "description": "Storage Account Name", "ignoreCase": "key" }, "containerName": { "type": "string", "description": "Container Name", "ignoreCase": "key" }, "commonVirtualPath": { "type": "string", "description": "Common Virtual Path", "ignoreCase": "key" } }, "additionalProperties": false, "required": [ "jenkinsServerConnection", "jobName" ] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task", "inputs" ] }, { "properties": { "task": { "description": "Azure Functions for container\n\nUpdate a function app with a Docker container", "ignoreCase": "value", "pattern": "^AzureFunctionAppContainer@1$" }, "inputs": { "description": "Azure Functions for container inputs", "properties": { "azureSubscription": { "type": "string", "description": "Azure subscription", "ignoreCase": "key" }, "appName": { "type": "string", "description": "App name", "ignoreCase": "key" }, "deployToSlotOrASE": { "type": "boolean", "description": "Deploy to Slot or App Service Environment", "ignoreCase": "key" }, "resourceGroupName": { "type": "string", "description": "Resource group", "ignoreCase": "key" }, "slotName": { "type": "string", "description": "Slot", "ignoreCase": "key" }, "imageName": { "type": "string", "description": "Image name", "ignoreCase": "key" }, "containerCommand": { "type": "string", "description": "Startup command ", "ignoreCase": "key" }, "appSettings": { "type": "string", "description": "App settings", "ignoreCase": "key" }, "configurationStrings": { "type": "string", "description": "Configuration settings", "ignoreCase": "key" } }, "additionalProperties": false, "required": [ "azureSubscription", "appName", "imageName" ] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task", "inputs" ] }, { "properties": { "task": { "description": "Java tool installer test vuln 2\n\nAcquire a specific version of Java from a user-supplied Azure blob or the tool cache and sets JAVA_HOME", "ignoreCase": "value", "pattern": "^JavaToolInstallerTestVuln2@0$" }, "inputs": { "description": "Java tool installer test vuln 2 inputs", "properties": { "versionSpec": { "type": "string", "description": "JDK version", "ignoreCase": "key" }, "jdkArchitectureOption": { "description": "JDK architecture", "ignoreCase": "all", "enum": [ "x64", "x86" ] }, "jdkSourceOption": { "description": "JDK source", "ignoreCase": "all", "enum": [ "AzureStorage", "LocalDirectory", "PreInstalled" ] }, "jdkFile": { "type": "string", "description": "JDK file", "ignoreCase": "key" }, "azureResourceManagerEndpoint": { "type": "string", "description": "Azure subscription", "ignoreCase": "key" }, "azureStorageAccountName": { "type": "string", "description": "Storage account name", "ignoreCase": "key" }, "azureContainerName": { "type": "string", "description": "Container name", "ignoreCase": "key" }, "azureCommonVirtualFile": { "type": "string", "description": "Common virtual path", "ignoreCase": "key" }, "jdkDestinationDirectory": { "type": "string", "description": "Destination directory", "ignoreCase": "key" }, "cleanDestinationDirectory": { "type": "boolean", "description": "Clean destination directory", "ignoreCase": "key" }, "createExtractDirectory": { "type": "boolean", "description": "Create directory for extracting", "ignoreCase": "key" } }, "additionalProperties": false, "required": [ "jdkArchitectureOption", "jdkSourceOption" ] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task", "inputs" ] }, { "properties": { "task": { "description": "Decrypt file (OpenSSL)\n\nDecrypt a file using OpenSSL", "ignoreCase": "value", "pattern": "^DecryptFile@1$" }, "inputs": { "description": "Decrypt file (OpenSSL) inputs", "properties": { "cipher": { "type": "string", "description": "Cypher", "ignoreCase": "key" }, "inFile": { "type": "string", "description": "Encrypted file", "ignoreCase": "key" }, "passphrase": { "type": "string", "description": "Passphrase", "ignoreCase": "key" }, "outFile": { "type": "string", "description": "Decrypted file path", "ignoreCase": "key" }, "workingDirectory": { "type": "string", "description": "Working directory", "ignoreCase": "key", "aliases": [ "cwd" ] } }, "additionalProperties": false, "required": [ "inFile", "passphrase" ] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task", "inputs" ] }, { "properties": { "task": { "description": "Package and deploy Helm charts\n\nDeploy, configure, update a Kubernetes cluster in Azure Container Service by running helm commands", "ignoreCase": "value", "pattern": "^HelmDeploy@0$" }, "inputs": { "description": "Package and deploy Helm charts inputs", "properties": { "connectionType": { "description": "Connection Type", "ignoreCase": "all", "enum": [ "Azure Resource Manager", "Kubernetes Service Connection", "None" ] }, "azureSubscription": { "type": "string", "description": "Azure subscription", "ignoreCase": "key", "aliases": [ "azureSubscriptionEndpoint" ] }, "azureResourceGroup": { "type": "string", "description": "Resource group", "ignoreCase": "key" }, "kubernetesCluster": { "type": "string", "description": "Kubernetes cluster", "ignoreCase": "key" }, "useClusterAdmin": { "type": "boolean", "description": "Use cluster admin credentials", "ignoreCase": "key" }, "kubernetesServiceConnection": { "type": "string", "description": "Kubernetes Service Connection", "ignoreCase": "key", "aliases": [ "kubernetesServiceEndpoint" ] }, "namespace": { "type": "string", "description": "Namespace", "ignoreCase": "key" }, "azureSubscriptionForACR": { "type": "string", "description": "Azure subscription for Container Registry", "ignoreCase": "key", "aliases": [ "azureSubscriptionEndpointForACR" ] }, "azureResourceGroupForACR": { "type": "string", "description": "Resource group", "ignoreCase": "key" }, "azureContainerRegistry": { "type": "string", "description": "Azure Container Registry", "ignoreCase": "key" }, "command": { "description": "Command", "ignoreCase": "all", "enum": [ "create", "delete", "expose", "get", "init", "install", "login", "logout", "ls", "package", "rollback", "save", "upgrade", "uninstall" ] }, "chartType": { "description": "Chart Type", "ignoreCase": "all", "enum": [ "Name", "FilePath" ] }, "chartName": { "type": "string", "description": "Chart Name", "ignoreCase": "key" }, "chartPath": { "type": "string", "description": "Chart Path", "ignoreCase": "key" }, "chartVersion": { "type": "string", "description": "Version", "ignoreCase": "key", "aliases": [ "version" ] }, "releaseName": { "type": "string", "description": "Release Name", "ignoreCase": "key" }, "overrideValues": { "type": "string", "description": "Set Values", "ignoreCase": "key" }, "valueFile": { "type": "string", "description": "Value File", "ignoreCase": "key" }, "destination": { "type": "string", "description": "Destination", "ignoreCase": "key" }, "canaryImage": { "type": "boolean", "description": "Use canary image version.", "ignoreCase": "key", "aliases": [ "canaryimage" ] }, "upgradeTiller": { "type": "boolean", "description": "Upgrade Tiller", "ignoreCase": "key", "aliases": [ "upgradetiller" ] }, "updateDependency": { "type": "boolean", "description": "Update Dependency", "ignoreCase": "key", "aliases": [ "updatedependency" ] }, "save": { "type": "boolean", "description": "Save", "ignoreCase": "key" }, "install": { "type": "boolean", "description": "Install if release not present.", "ignoreCase": "key" }, "recreate": { "type": "boolean", "description": "Recreate Pods.", "ignoreCase": "key" }, "resetValues": { "type": "boolean", "description": "Reset Values.", "ignoreCase": "key" }, "force": { "type": "boolean", "description": "Force", "ignoreCase": "key" }, "waitForExecution": { "type": "boolean", "description": "Wait", "ignoreCase": "key" }, "arguments": { "type": "string", "description": "Arguments", "ignoreCase": "key" }, "enableTls": { "type": "boolean", "description": "Enable TLS", "ignoreCase": "key" }, "caCert": { "type": "string", "description": "CA certificate", "ignoreCase": "key" }, "certificate": { "type": "string", "description": "Certificate", "ignoreCase": "key" }, "privatekey": { "type": "string", "description": "Key", "ignoreCase": "key" }, "tillerNamespace": { "type": "string", "description": "Tiller namespace", "ignoreCase": "key", "aliases": [ "tillernamespace" ] }, "failOnStderr": { "type": "boolean", "description": "Fail on Standard Error", "ignoreCase": "key" }, "publishPipelineMetadata": { "type": "boolean", "description": "Publish pipeline metadata", "ignoreCase": "key" }, "chartNameForACR": { "type": "string", "description": "Chart Name For Azure Container Registry", "ignoreCase": "key" }, "chartPathForACR": { "type": "string", "description": "Chart Path for Azure Container Registry", "ignoreCase": "key" } }, "additionalProperties": false, "required": [ "azureSubscriptionForACR", "azureResourceGroupForACR", "azureContainerRegistry" ] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task", "inputs" ] }, { "properties": { "task": { "description": "Install Apple certificate\n\nInstall an Apple certificate required to build on a macOS agent machine", "ignoreCase": "value", "pattern": "^InstallAppleCertificate@2$" }, "inputs": { "description": "Install Apple certificate inputs", "properties": { "certSecureFile": { "type": "string", "description": "Certificate (P12)", "ignoreCase": "key" }, "certPwd": { "type": "string", "description": "Certificate (P12) password", "ignoreCase": "key" }, "keychain": { "description": "Keychain", "ignoreCase": "all", "enum": [ "default", "temp", "custom" ] }, "keychainPassword": { "type": "string", "description": "Keychain password", "ignoreCase": "key" }, "customKeychainPath": { "type": "string", "description": "Custom keychain path", "ignoreCase": "key" }, "deleteCert": { "type": "boolean", "description": "Delete certificate from keychain", "ignoreCase": "key" }, "deleteCustomKeychain": { "type": "boolean", "description": "Delete custom keychain", "ignoreCase": "key" }, "signingIdentity": { "type": "string", "description": "Certificate signing identity", "ignoreCase": "key" }, "setUpPartitionIdACLForPrivateKey": { "type": "boolean", "description": "Set up partition_id ACL for the imported private key", "ignoreCase": "key" } }, "additionalProperties": false, "required": [ "certSecureFile" ] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task", "inputs" ] }, { "properties": { "task": { "description": "Install Apple Certificate\n\nInstall an Apple certificate required to build on a macOS agent", "ignoreCase": "value", "pattern": "^InstallAppleCertificate@1$" }, "inputs": { "description": "Install Apple Certificate inputs", "properties": { "certSecureFile": { "type": "string", "description": "Certificate (P12)", "ignoreCase": "key" }, "certPwd": { "type": "string", "description": "Certificate (P12) password", "ignoreCase": "key" }, "keychain": { "description": "Keychain", "ignoreCase": "all", "enum": [ "default", "temp", "custom" ] }, "keychainPassword": { "type": "string", "description": "Keychain password", "ignoreCase": "key" }, "customKeychainPath": { "type": "string", "description": "Custom keychain path", "ignoreCase": "key" }, "deleteCert": { "type": "boolean", "description": "Delete certificate from keychain", "ignoreCase": "key" }, "deleteCustomKeychain": { "type": "boolean", "description": "Delete custom keychain", "ignoreCase": "key" }, "signingIdentity": { "type": "string", "description": "Certificate signing identity", "ignoreCase": "key" } }, "additionalProperties": false, "required": [ "certSecureFile" ] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task", "inputs" ] }, { "properties": { "task": { "description": "Install Apple Certificate\n\nInstall an Apple certificate required to build on a macOS agent", "ignoreCase": "value", "pattern": "^InstallAppleCertificate@0$" }, "inputs": { "description": "Install Apple Certificate inputs", "properties": { "certSecureFile": { "type": "string", "description": "Certificate (P12)", "ignoreCase": "key" }, "certPwd": { "type": "string", "description": "Certificate (P12) Password", "ignoreCase": "key" }, "keychain": { "description": "Keychain", "ignoreCase": "all", "enum": [ "default", "temp", "custom" ] }, "keychainPassword": { "type": "string", "description": "Keychain Password", "ignoreCase": "key" }, "customKeychainPath": { "type": "string", "description": "Custom Keychain Path", "ignoreCase": "key" }, "deleteCert": { "type": "boolean", "description": "Delete Certificate from Keychain", "ignoreCase": "key" }, "deleteCustomKeychain": { "type": "boolean", "description": "Delete Custom Keychain", "ignoreCase": "key" }, "signingIdentity": { "type": "string", "description": "Certificate Signing Identity", "ignoreCase": "key" } }, "additionalProperties": false, "required": [ "certSecureFile" ] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task", "inputs" ] }, { "properties": { "task": { "description": "Invoke Azure Function\n\nInvoke an Azure Function", "ignoreCase": "value", "pattern": "^AzureFunction@1$" }, "inputs": { "description": "Invoke Azure Function inputs", "properties": { "function": { "type": "string", "description": "Azure function URL", "ignoreCase": "key" }, "key": { "type": "string", "description": "Function key", "ignoreCase": "key" }, "method": { "description": "Method", "ignoreCase": "all", "enum": [ "OPTIONS", "GET", "HEAD", "POST", "PUT", "DELETE", "TRACE", "PATCH" ] }, "headers": { "type": "string", "description": "Headers", "ignoreCase": "key" }, "queryParameters": { "type": "string", "description": "Query parameters", "ignoreCase": "key" }, "body": { "type": "string", "description": "Body", "ignoreCase": "key" }, "waitForCompletion": { "description": "Completion event", "ignoreCase": "all", "enum": [ "true", "false" ] }, "successCriteria": { "type": "string", "description": "Success criteria", "ignoreCase": "key" } }, "additionalProperties": false, "required": [ "function", "key" ] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task", "inputs" ] }, { "properties": { "task": { "description": "Invoke Azure Function\n\nInvoke Azure function as a part of your process.", "ignoreCase": "value", "pattern": "^AzureFunction@0$" }, "inputs": { "description": "Invoke Azure Function inputs", "properties": { "function": { "type": "string", "description": "Azure function url", "ignoreCase": "key" }, "key": { "type": "string", "description": "Function key", "ignoreCase": "key" }, "method": { "description": "Method", "ignoreCase": "all", "enum": [ "OPTIONS", "GET", "HEAD", "POST", "PUT", "DELETE", "TRACE", "PATCH" ] }, "headers": { "type": "string", "description": "Headers", "ignoreCase": "key" }, "queryParameters": { "type": "string", "description": "Query parameters", "ignoreCase": "key" }, "body": { "type": "string", "description": "Body", "ignoreCase": "key" }, "waitForCompletion": { "description": "Complete based on", "ignoreCase": "all", "enum": [ "true", "false" ] }, "successCriteria": { "type": "string", "description": "Success criteria", "ignoreCase": "key" } }, "additionalProperties": false, "required": [ "function", "key" ] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task", "inputs" ] }, { "properties": { "task": { "description": "Download GitHub Release\n\nDownloads a GitHub Release from a repository", "ignoreCase": "value", "pattern": "^DownloadGitHubRelease@0$" }, "inputs": { "description": "Download GitHub Release inputs", "properties": { "connection": { "type": "string", "description": "GitHub Connection", "ignoreCase": "key" }, "userRepository": { "type": "string", "description": "Repository", "ignoreCase": "key" }, "defaultVersionType": { "description": "Default version", "ignoreCase": "all", "enum": [ "latest", "specificVersion", "specificTag" ] }, "version": { "type": "string", "description": "Release", "ignoreCase": "key" }, "itemPattern": { "type": "string", "description": "Item Pattern", "ignoreCase": "key" }, "downloadPath": { "type": "string", "description": "Destination directory", "ignoreCase": "key" } }, "additionalProperties": false, "required": [ "connection", "userRepository" ] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task", "inputs" ] }, { "properties": { "task": { "description": "SSH\n\nRun shell commands or a script on a remote machine using SSH", "ignoreCase": "value", "pattern": "^SSH@0$" }, "inputs": { "description": "SSH inputs", "properties": { "sshEndpoint": { "type": "string", "description": "SSH service connection", "ignoreCase": "key" }, "runOptions": { "description": "Run", "ignoreCase": "all", "enum": [ "commands", "script", "inline" ] }, "commands": { "type": "string", "description": "Commands", "ignoreCase": "key" }, "scriptPath": { "type": "string", "description": "Shell script path", "ignoreCase": "key" }, "inline": { "type": "string", "description": "Inline Script", "ignoreCase": "key" }, "interpreterCommand": { "type": "string", "description": "Interpreter command", "ignoreCase": "key" }, "args": { "type": "string", "description": "Arguments", "ignoreCase": "key" }, "failOnStdErr": { "type": "boolean", "description": "Fail on STDERR", "ignoreCase": "key" }, "interactiveSession": { "type": "boolean", "description": "Enable interactive session", "ignoreCase": "key" }, "readyTimeout": { "type": "string", "description": "SSH handshake timeout", "ignoreCase": "key" }, "interactiveKeyboardAuthentication": { "type": "boolean", "description": "Use interactive-keyboard authentication", "ignoreCase": "key" } }, "additionalProperties": false, "required": [ "sshEndpoint" ] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task", "inputs" ] }, { "properties": { "task": { "description": "Publish pipeline artifact\n\nPublish a local directory or file as a named artifact for the current pipeline", "ignoreCase": "value", "pattern": "^PublishPipelineArtifact@0$" }, "inputs": { "description": "Publish pipeline artifact inputs", "properties": { "artifactName": { "type": "string", "description": "The name of this artifact", "ignoreCase": "key" }, "targetPath": { "type": "string", "description": "Path to publish", "ignoreCase": "key" }, "properties": { "type": "string", "description": "Custom properties", "ignoreCase": "key" } }, "additionalProperties": false, "required": [ "targetPath" ] } }, "deprecationMessage": "PublishPipelineArtifact is deprecated - Publish a local directory or file as a named artifact for the current pipeline", "doNotSuggest": true, "firstProperty": [ "task" ], "required": [ "task", "inputs" ] }, { "properties": { "task": { "description": "Publish Pipeline Artifacts\n\nPublish (upload) a file or directory as a named artifact for the current run", "ignoreCase": "value", "pattern": "^PublishPipelineArtifact@1$" }, "inputs": { "description": "Publish Pipeline Artifacts inputs", "properties": { "targetPath": { "type": "string", "description": "File or directory path", "ignoreCase": "key", "aliases": [ "path" ] }, "artifact": { "type": "string", "description": "Artifact name", "ignoreCase": "key", "aliases": [ "artifactName" ] }, "publishLocation": { "description": "Artifact publish location", "ignoreCase": "all", "enum": [ "pipeline", "filepath" ], "aliases": [ "artifactType" ] }, "fileSharePath": { "type": "string", "description": "File share path", "ignoreCase": "key" }, "parallel": { "type": "boolean", "description": "Parallel copy", "ignoreCase": "key" }, "parallelCount": { "type": "integer", "description": "Parallel count", "ignoreCase": "key" }, "properties": { "type": "string", "description": "Custom properties", "ignoreCase": "key" } }, "additionalProperties": false, "required": [] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task" ] }, { "properties": { "task": { "description": "SonarQube for MSBuild - Begin Analysis\n\n[DEPRECATED] Fetch the Quality Profile from SonarQube to configure the analysis", "ignoreCase": "value", "pattern": "^SonarQubePreBuild@1$" }, "inputs": { "description": "SonarQube for MSBuild - Begin Analysis inputs", "properties": { "projectKey": { "type": "string", "description": "Project Key", "ignoreCase": "key" }, "projectName": { "type": "string", "description": "Project Name", "ignoreCase": "key" }, "projectVersion": { "type": "string", "description": "Project Version", "ignoreCase": "key" }, "connectedServiceName": { "type": "string", "description": "SonarQube Endpoint", "ignoreCase": "key" }, "dbUrl": { "type": "string", "description": "Db Connection String", "ignoreCase": "key" }, "dbUsername": { "type": "string", "description": "Db UserName", "ignoreCase": "key" }, "dbPassword": { "type": "string", "description": "Db User Password", "ignoreCase": "key" }, "cmdLineArgs": { "type": "string", "description": "Additional Settings", "ignoreCase": "key" }, "configFile": { "type": "string", "description": "Settings File", "ignoreCase": "key" }, "includeFullReport": { "type": "boolean", "description": "Include full analysis report in the build summary (SQ 5.3+)", "ignoreCase": "key" }, "breakBuild": { "type": "boolean", "description": "Fail the build on quality gate failure (SQ 5.3+)", "ignoreCase": "key" } }, "additionalProperties": false, "required": [ "projectKey", "projectName", "connectedServiceName" ] } }, "deprecationMessage": "SonarQubePreBuild is deprecated - [DEPRECATED] Fetch the Quality Profile from SonarQube to configure the analysis", "doNotSuggest": true, "firstProperty": [ "task" ], "required": [ "task", "inputs" ] }, { "properties": { "task": { "description": "Download artifacts from file share\n\nDownload artifacts from a file share, like \\\\share\\drop", "ignoreCase": "value", "pattern": "^DownloadFileshareArtifacts@1$" }, "inputs": { "description": "Download artifacts from file share inputs", "properties": { "filesharePath": { "type": "string", "description": "File share path", "ignoreCase": "key" }, "artifactName": { "type": "string", "description": "Artifact name", "ignoreCase": "key" }, "itemPattern": { "type": "string", "description": "Matching pattern", "ignoreCase": "key" }, "downloadPath": { "type": "string", "description": "Download path", "ignoreCase": "key" }, "parallelizationLimit": { "type": "string", "description": "Parallelization limit", "ignoreCase": "key" } }, "additionalProperties": false, "required": [ "filesharePath", "artifactName" ] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task", "inputs" ] }, { "properties": { "task": { "description": "Kubectl\n\nDeploy, configure, update a Kubernetes cluster in Azure Container Service by running kubectl commands", "ignoreCase": "value", "pattern": "^Kubernetes@0$" }, "inputs": { "description": "Kubectl inputs", "properties": { "kubernetesServiceConnection": { "type": "string", "description": "Kubernetes service connection", "ignoreCase": "key", "aliases": [ "kubernetesServiceEndpoint" ] }, "namespace": { "type": "string", "description": "Namespace", "ignoreCase": "key" }, "command": { "description": "Command", "ignoreCase": "all", "enum": [ "apply", "create", "delete", "exec", "expose", "get", "logs", "run", "set", "top" ] }, "useConfigurationFile": { "type": "boolean", "description": "Use Configuration files", "ignoreCase": "key" }, "configuration": { "type": "string", "description": "Configuration file", "ignoreCase": "key" }, "arguments": { "type": "string", "description": "Arguments", "ignoreCase": "key" }, "secretType": { "description": "Type of secret", "ignoreCase": "all", "enum": [ "dockerRegistry", "generic" ] }, "secretArguments": { "type": "string", "description": "Arguments", "ignoreCase": "key" }, "containerRegistryType": { "description": "Container Registry type", "ignoreCase": "all", "enum": [ "Azure Container Registry", "Container Registry" ] }, "dockerRegistryConnection": { "type": "string", "description": "Docker Registry service connection", "ignoreCase": "key", "aliases": [ "dockerRegistryEndpoint" ] }, "azureSubscription": { "type": "string", "description": "Azure subscription", "ignoreCase": "key", "aliases": [ "azureSubscriptionEndpoint" ] }, "azureContainerRegistry": { "type": "string", "description": "Azure Container Registry", "ignoreCase": "key" }, "secretName": { "type": "string", "description": "Secret name", "ignoreCase": "key" }, "forceUpdate": { "type": "boolean", "description": "Force update secret", "ignoreCase": "key" }, "configMapName": { "type": "string", "description": "ConfigMap name", "ignoreCase": "key" }, "forceUpdateConfigMap": { "type": "boolean", "description": "Force update configmap", "ignoreCase": "key" }, "useConfigMapFile": { "type": "boolean", "description": "Use file", "ignoreCase": "key" }, "configMapFile": { "type": "string", "description": "ConfigMap file", "ignoreCase": "key" }, "configMapArguments": { "type": "string", "description": "Arguments", "ignoreCase": "key" }, "versionOrLocation": { "description": "Kubectl", "ignoreCase": "all", "enum": [ "version", "location" ] }, "versionSpec": { "type": "string", "description": "Version spec", "ignoreCase": "key" }, "checkLatest": { "type": "boolean", "description": "Check for latest version", "ignoreCase": "key" }, "specifyLocation": { "type": "string", "description": "Path to Kubectl", "ignoreCase": "key" }, "workingDirectory": { "type": "string", "description": "Working directory", "ignoreCase": "key", "aliases": [ "cwd" ] }, "outputFormat": { "description": "Output format", "ignoreCase": "all", "enum": [ "json", "yaml" ] }, "kubectlOutput": { "type": "string", "description": "Output variable name", "ignoreCase": "key" } }, "additionalProperties": false, "required": [] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task" ] }, { "properties": { "task": { "description": "Kubectl\n\nDeploy, configure, update a Kubernetes cluster in Azure Container Service by running kubectl commands", "ignoreCase": "value", "pattern": "^Kubernetes@1$" }, "inputs": { "description": "Kubectl inputs", "properties": { "connectionType": { "description": "Service connection type", "ignoreCase": "all", "enum": [ "Azure Resource Manager", "Kubernetes Service Connection", "None" ] }, "kubernetesServiceEndpoint": { "type": "string", "description": "Kubernetes service connection", "ignoreCase": "key" }, "azureSubscriptionEndpoint": { "type": "string", "description": "Azure subscription", "ignoreCase": "key" }, "azureResourceGroup": { "type": "string", "description": "Resource group", "ignoreCase": "key" }, "kubernetesCluster": { "type": "string", "description": "Kubernetes cluster", "ignoreCase": "key" }, "useClusterAdmin": { "type": "boolean", "description": "Use cluster admin credentials", "ignoreCase": "key" }, "namespace": { "type": "string", "description": "Namespace", "ignoreCase": "key" }, "command": { "description": "Command", "ignoreCase": "all", "enum": [ "apply", "create", "delete", "exec", "expose", "get", "login", "logout", "logs", "run", "set", "top" ] }, "useConfigurationFile": { "type": "boolean", "description": "Use configuration", "ignoreCase": "key" }, "configurationType": { "description": "Configuration type", "ignoreCase": "all", "enum": [ "configuration", "inline" ] }, "configuration": { "type": "string", "description": "File path", "ignoreCase": "key" }, "inline": { "type": "string", "description": "Inline configuration", "ignoreCase": "key" }, "arguments": { "type": "string", "description": "Arguments", "ignoreCase": "key" }, "secretType": { "description": "Type of secret", "ignoreCase": "all", "enum": [ "dockerRegistry", "generic" ] }, "secretArguments": { "type": "string", "description": "Arguments", "ignoreCase": "key" }, "containerRegistryType": { "description": "Container registry type", "ignoreCase": "all", "enum": [ "Azure Container Registry", "Container Registry" ] }, "dockerRegistryEndpoint": { "type": "string", "description": "Docker registry service connection", "ignoreCase": "key" }, "azureSubscriptionEndpointForSecrets": { "type": "string", "description": "Azure subscription", "ignoreCase": "key" }, "azureContainerRegistry": { "type": "string", "description": "Azure container registry", "ignoreCase": "key" }, "secretName": { "type": "string", "description": "Secret name", "ignoreCase": "key" }, "forceUpdate": { "type": "boolean", "description": "Force update secret", "ignoreCase": "key" }, "configMapName": { "type": "string", "description": "ConfigMap name", "ignoreCase": "key" }, "forceUpdateConfigMap": { "type": "boolean", "description": "Force update configmap", "ignoreCase": "key" }, "useConfigMapFile": { "type": "boolean", "description": "Use file", "ignoreCase": "key" }, "configMapFile": { "type": "string", "description": "ConfigMap file", "ignoreCase": "key" }, "configMapArguments": { "type": "string", "description": "Arguments", "ignoreCase": "key" }, "versionOrLocation": { "description": "Kubectl", "ignoreCase": "all", "enum": [ "version", "location" ] }, "versionSpec": { "type": "string", "description": "Version spec", "ignoreCase": "key" }, "checkLatest": { "type": "boolean", "description": "Check for latest version", "ignoreCase": "key" }, "specifyLocation": { "type": "string", "description": "Path to kubectl", "ignoreCase": "key" }, "workingDirectory": { "type": "string", "description": "Working directory", "ignoreCase": "key", "aliases": [ "cwd" ] }, "outputFormat": { "description": "Output format", "ignoreCase": "all", "enum": [ "json", "yaml", "none" ] } }, "additionalProperties": false, "required": [] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task" ] }, { "properties": { "task": { "description": "Azure IoT Edge\n\nBuild and deploy an Azure IoT Edge image", "ignoreCase": "value", "pattern": "^AzureIoTEdge@2$" }, "inputs": { "description": "Azure IoT Edge inputs", "properties": { "action": { "description": "Action", "ignoreCase": "all", "enum": [ "Build module images", "Push module images", "Generate deployment manifest", "Deploy to IoT Edge devices" ] }, "deploymentFilePath": { "type": "string", "description": "Deployment file", "ignoreCase": "key" }, "azureSubscription": { "type": "string", "description": "Azure subscription contains IoT Hub", "ignoreCase": "key", "aliases": [ "connectedServiceNameARM" ] }, "iothubname": { "type": "string", "description": "IoT Hub name", "ignoreCase": "key" }, "deploymentid": { "type": "string", "description": "IoT Edge deployment ID", "ignoreCase": "key" }, "priority": { "type": "string", "description": "IoT Edge deployment priority", "ignoreCase": "key" }, "deviceOption": { "description": "Choose single/multiple device", "ignoreCase": "all", "enum": [ "Single Device", "Multiple Devices" ] }, "deviceId": { "type": "string", "description": "IoT Edge device ID", "ignoreCase": "key" }, "targetcondition": { "type": "string", "description": "IoT Edge device target condition", "ignoreCase": "key" }, "containerregistrytype": { "description": "Container registry type", "ignoreCase": "all", "enum": [ "Azure Container Registry", "Generic Container Registry" ] }, "dockerRegistryConnection": { "type": "string", "description": "Docker Registry Connection", "ignoreCase": "key", "aliases": [ "dockerRegistryEndpoint" ] }, "azureSubscriptionEndpoint": { "type": "string", "description": "Azure subscription", "ignoreCase": "key" }, "azureContainerRegistry": { "type": "string", "description": "Azure Container Registry", "ignoreCase": "key" }, "templateFilePath": { "type": "string", "description": ".template.json file", "ignoreCase": "key" }, "defaultPlatform": { "description": "Default platform", "ignoreCase": "all", "enum": [ "amd64", "windows-amd64", "arm32v7", "arm64v8" ] }, "fillRegistryCredential": { "description": "Add registry credential to deployment manifest", "ignoreCase": "all", "enum": [ "true", "false" ] }, "deploymentManifestOutputPath": { "type": "string", "description": "Output path", "ignoreCase": "key" }, "validateGeneratedDeploymentManifest": { "description": "Validate the schema of generated deployment manifest", "ignoreCase": "all", "enum": [ "true", "false" ] }, "bypassModules": { "type": "string", "description": "Bypass module(s)", "ignoreCase": "key" } }, "additionalProperties": false, "required": [] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task" ] }, { "properties": { "task": { "description": "Service Fabric Compose deploy\n\nDeploy a Docker Compose application to an Azure Service Fabric cluster", "ignoreCase": "value", "pattern": "^ServiceFabricComposeDeploy@0$" }, "inputs": { "description": "Service Fabric Compose deploy inputs", "properties": { "clusterConnection": { "type": "string", "description": "Cluster Service Connection", "ignoreCase": "key", "aliases": [ "serviceConnectionName" ] }, "composeFilePath": { "type": "string", "description": "Compose File Path", "ignoreCase": "key" }, "applicationName": { "type": "string", "description": "Application Name", "ignoreCase": "key" }, "registryCredentials": { "description": "Registry Credentials Source", "ignoreCase": "all", "enum": [ "AzureResourceManagerEndpoint", "ContainerRegistryEndpoint", "UsernamePassword", "None" ] }, "dockerRegistryConnection": { "type": "string", "description": "Docker Registry Service Connection", "ignoreCase": "key", "aliases": [ "dockerRegistryEndpointName" ] }, "azureSubscription": { "type": "string", "description": "Azure subscription", "ignoreCase": "key", "aliases": [ "azureSubscriptionEndpoint" ] }, "registryUserName": { "type": "string", "description": "Registry User Name", "ignoreCase": "key" }, "registryPassword": { "type": "string", "description": "Registry Password", "ignoreCase": "key" }, "passwordEncrypted": { "type": "boolean", "description": "Password Encrypted", "ignoreCase": "key" }, "upgrade": { "type": "boolean", "description": "Upgrade", "ignoreCase": "key" }, "deployTimeoutSec": { "type": "string", "description": "Deploy Timeout (s)", "ignoreCase": "key" }, "removeTimeoutSec": { "type": "string", "description": "Remove Timeout (s)", "ignoreCase": "key" }, "getStatusTimeoutSec": { "type": "string", "description": "Get Status Timeout (s)", "ignoreCase": "key" } }, "additionalProperties": false, "required": [ "clusterConnection" ] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task", "inputs" ] }, { "properties": { "task": { "description": "Android signing\n\nSign and align Android APK files", "ignoreCase": "value", "pattern": "^AndroidSigning@2$" }, "inputs": { "description": "Android signing inputs", "properties": { "apkFiles": { "type": "string", "description": "APK files", "ignoreCase": "key", "aliases": [ "files" ] }, "jarsign": { "type": "boolean", "description": "Sign the APK", "ignoreCase": "key" }, "jarsignerKeystoreFile": { "type": "string", "description": "Keystore file", "ignoreCase": "key", "aliases": [ "keystoreFile" ] }, "jarsignerKeystorePassword": { "type": "string", "description": "Keystore password", "ignoreCase": "key", "aliases": [ "keystorePass" ] }, "jarsignerKeystoreAlias": { "type": "string", "description": "Alias", "ignoreCase": "key", "aliases": [ "keystoreAlias" ] }, "jarsignerKeyPassword": { "type": "string", "description": "Key password", "ignoreCase": "key", "aliases": [ "keyPass" ] }, "jarsignerArguments": { "type": "string", "description": "Jarsigner arguments", "ignoreCase": "key" }, "zipalign": { "type": "boolean", "description": "Zipalign", "ignoreCase": "key" }, "zipalignFile": { "type": "string", "description": "Zipalign location", "ignoreCase": "key", "aliases": [ "zipalignLocation" ] } }, "additionalProperties": false, "required": [] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task" ] }, { "properties": { "task": { "description": "Android signing\n\nSign and align Android APK files", "ignoreCase": "value", "pattern": "^AndroidSigning@3$" }, "inputs": { "description": "Android signing inputs", "properties": { "apkFiles": { "type": "string", "description": "APK files", "ignoreCase": "key", "aliases": [ "files" ] }, "apksign": { "type": "boolean", "description": "Sign the APK", "ignoreCase": "key" }, "apksignerKeystoreFile": { "type": "string", "description": "Keystore file", "ignoreCase": "key", "aliases": [ "keystoreFile" ] }, "apksignerKeystorePassword": { "type": "string", "description": "Keystore password", "ignoreCase": "key", "aliases": [ "keystorePass" ] }, "apksignerKeystoreAlias": { "type": "string", "description": "Alias", "ignoreCase": "key", "aliases": [ "keystoreAlias" ] }, "apksignerKeyPassword": { "type": "string", "description": "Key password", "ignoreCase": "key", "aliases": [ "keyPass" ] }, "apksignerVersion": { "type": "string", "description": "apksigner version", "ignoreCase": "key" }, "apksignerArguments": { "type": "string", "description": "apksigner arguments", "ignoreCase": "key" }, "apksignerFile": { "type": "string", "description": "apksigner location", "ignoreCase": "key", "aliases": [ "apksignerLocation" ] }, "zipalign": { "type": "boolean", "description": "Zipalign", "ignoreCase": "key" }, "zipalignVersion": { "type": "string", "description": "Zipalign version", "ignoreCase": "key" }, "zipalignFile": { "type": "string", "description": "Zipalign location", "ignoreCase": "key", "aliases": [ "zipalignLocation" ] } }, "additionalProperties": false, "required": [] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task" ] }, { "properties": { "task": { "description": "Android Signing\n\nSign and align Android APK files", "ignoreCase": "value", "pattern": "^AndroidSigning@1$" }, "inputs": { "description": "Android Signing inputs", "properties": { "files": { "type": "string", "description": "APK Files", "ignoreCase": "key" }, "jarsign": { "type": "boolean", "description": "Sign the APK", "ignoreCase": "key" }, "keystoreFile": { "type": "string", "description": "Keystore File", "ignoreCase": "key" }, "keystorePass": { "type": "string", "description": "Keystore Password", "ignoreCase": "key" }, "keystoreAlias": { "type": "string", "description": "Alias", "ignoreCase": "key" }, "keyPass": { "type": "string", "description": "Key Password", "ignoreCase": "key" }, "jarsignerArguments": { "type": "string", "description": "Jarsigner Arguments", "ignoreCase": "key" }, "zipalign": { "type": "boolean", "description": "Zipalign", "ignoreCase": "key" }, "zipalignLocation": { "type": "string", "description": "Zipalign Location", "ignoreCase": "key" } }, "additionalProperties": false, "required": [ "files" ] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task", "inputs" ] }, { "properties": { "task": { "description": "Download pipeline artifact\n\nDownload a named artifact from a pipeline to a local path", "ignoreCase": "value", "pattern": "^DownloadPipelineArtifact@1$" }, "inputs": { "description": "Download pipeline artifact inputs", "properties": { "buildType": { "description": "Download artifacts produced by", "ignoreCase": "all", "enum": [ "current", "specific" ] }, "project": { "type": "string", "description": "Project", "ignoreCase": "key" }, "pipeline": { "type": "string", "description": "Build pipeline", "ignoreCase": "key", "aliases": [ "definition" ] }, "specificBuildWithTriggering": { "type": "boolean", "description": "When appropriate, download artifacts from the triggering build.", "ignoreCase": "key" }, "buildVersionToDownload": { "description": "Build version to download", "ignoreCase": "all", "enum": [ "latest", "latestFromBranch", "specific" ] }, "branchName": { "type": "string", "description": "Branch name", "ignoreCase": "key" }, "pipelineId": { "type": "string", "description": "Build", "ignoreCase": "key", "aliases": [ "buildId" ] }, "tags": { "type": "string", "description": "Build Tags", "ignoreCase": "key" }, "artifactName": { "type": "string", "description": "Artifact name", "ignoreCase": "key" }, "itemPattern": { "type": "string", "description": "Matching pattern", "ignoreCase": "key" }, "targetPath": { "type": "string", "description": "Destination directory", "ignoreCase": "key", "aliases": [ "downloadPath" ] } }, "additionalProperties": false, "required": [] } }, "deprecationMessage": "DownloadPipelineArtifact is deprecated - Download a named artifact from a pipeline to a local path", "doNotSuggest": true, "firstProperty": [ "task" ], "required": [ "task" ] }, { "properties": { "task": { "description": "Download pipeline artifact\n\nDownloads an artifact associated with a pipeline", "ignoreCase": "value", "pattern": "^DownloadPipelineArtifact@0$" }, "inputs": { "description": "Download pipeline artifact inputs", "properties": { "pipelineId": { "type": "string", "description": "The specific pipeline to download from", "ignoreCase": "key" }, "artifactName": { "type": "string", "description": "The name of artifact to download.", "ignoreCase": "key" }, "targetPath": { "type": "string", "description": "Path to download to", "ignoreCase": "key" } }, "additionalProperties": false, "required": [ "targetPath" ] } }, "deprecationMessage": "DownloadPipelineArtifact is deprecated - Downloads an artifact associated with a pipeline", "doNotSuggest": true, "firstProperty": [ "task" ], "required": [ "task", "inputs" ] }, { "properties": { "task": { "description": "Download Pipeline Artifacts\n\nDownload build and pipeline artifacts", "ignoreCase": "value", "pattern": "^DownloadPipelineArtifact@2$" }, "inputs": { "description": "Download Pipeline Artifacts inputs", "properties": { "buildType": { "description": "Download artifacts produced by", "ignoreCase": "all", "enum": [ "current", "specific" ], "aliases": [ "source" ] }, "project": { "type": "string", "description": "Project", "ignoreCase": "key" }, "definition": { "type": "string", "description": "Build pipeline", "ignoreCase": "key", "aliases": [ "pipeline" ] }, "specificBuildWithTriggering": { "type": "boolean", "description": "When appropriate, download artifacts from the triggering build.", "ignoreCase": "key", "aliases": [ "preferTriggeringPipeline" ] }, "buildVersionToDownload": { "description": "Build version to download", "ignoreCase": "all", "enum": [ "latest", "latestFromBranch", "specific" ], "aliases": [ "runVersion" ] }, "branchName": { "type": "string", "description": "Branch name", "ignoreCase": "key", "aliases": [ "runBranch" ] }, "pipelineId": { "type": "string", "description": "Build", "ignoreCase": "key", "aliases": [ "runId", "buildId" ] }, "tags": { "type": "string", "description": "Build Tags", "ignoreCase": "key" }, "allowPartiallySucceededBuilds": { "type": "boolean", "description": "Download artifacts from partially succeeded builds.", "ignoreCase": "key" }, "allowFailedBuilds": { "type": "boolean", "description": "Download artifacts from failed builds.", "ignoreCase": "key" }, "artifactName": { "type": "string", "description": "Artifact name", "ignoreCase": "key", "aliases": [ "artifact" ] }, "itemPattern": { "type": "string", "description": "Matching patterns", "ignoreCase": "key", "aliases": [ "patterns" ] }, "targetPath": { "type": "string", "description": "Destination directory", "ignoreCase": "key", "aliases": [ "path", "downloadPath" ] } }, "additionalProperties": false, "required": [] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task" ] }, { "properties": { "task": { "description": "Use Python version\n\nUse the specified version of Python from the tool cache, optionally adding it to the PATH", "ignoreCase": "value", "pattern": "^UsePythonVersion@0$" }, "inputs": { "description": "Use Python version inputs", "properties": { "versionSpec": { "type": "string", "description": "Version spec", "ignoreCase": "key" }, "disableDownloadFromRegistry": { "type": "boolean", "description": "Disable downloading releases from the GitHub registry", "ignoreCase": "key" }, "allowUnstable": { "type": "boolean", "description": "Allow downloading unstable releases", "ignoreCase": "key" }, "githubToken": { "type": "string", "description": "GitHub token for GitHub Actions python registry", "ignoreCase": "key" }, "addToPath": { "type": "boolean", "description": "Add to PATH", "ignoreCase": "key" }, "architecture": { "description": "Architecture", "ignoreCase": "all", "enum": [ "x86", "x64" ] } }, "additionalProperties": false, "required": [] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task" ] }, { "properties": { "task": { "description": "Service Fabric PowerShell\n\nRun a PowerShell script in the context of an Azure Service Fabric cluster connection", "ignoreCase": "value", "pattern": "^ServiceFabricPowerShell@1$" }, "inputs": { "description": "Service Fabric PowerShell inputs", "properties": { "clusterConnection": { "type": "string", "description": "Cluster Service Connection", "ignoreCase": "key", "aliases": [ "serviceConnectionName" ] }, "ScriptType": { "description": "Script Type", "ignoreCase": "all", "enum": [ "FilePath", "InlineScript" ] }, "ScriptPath": { "type": "string", "description": "Script Path", "ignoreCase": "key" }, "Inline": { "type": "string", "description": "Inline Script", "ignoreCase": "key" }, "ScriptArguments": { "type": "string", "description": "Script Arguments", "ignoreCase": "key" } }, "additionalProperties": false, "required": [ "clusterConnection" ] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task", "inputs" ] }, { "properties": { "task": { "description": "Visual Studio Test\n\nRun tests with Visual Studio test runner", "ignoreCase": "value", "pattern": "^VSTest@1$" }, "inputs": { "description": "Visual Studio Test inputs", "properties": { "testAssembly": { "type": "string", "description": "Test Assembly", "ignoreCase": "key" }, "testFiltercriteria": { "type": "string", "description": "Test Filter criteria", "ignoreCase": "key" }, "runSettingsFile": { "type": "string", "description": "Run Settings File", "ignoreCase": "key" }, "overrideTestrunParameters": { "type": "string", "description": "Override TestRun Parameters", "ignoreCase": "key" }, "codeCoverageEnabled": { "type": "boolean", "description": "Code Coverage Enabled", "ignoreCase": "key" }, "runInParallel": { "type": "boolean", "description": "Run In Parallel", "ignoreCase": "key" }, "vstestLocationMethod": { "description": "VSTest", "ignoreCase": "all", "enum": [ "version", "location" ] }, "vsTestVersion": { "description": "VSTest version", "ignoreCase": "all", "enum": [ "latest", "14.0", "12.0" ] }, "vstestLocation": { "type": "string", "description": "Path to vstest.console.exe", "ignoreCase": "key" }, "pathtoCustomTestAdapters": { "type": "string", "description": "Path to Custom Test Adapters", "ignoreCase": "key" }, "otherConsoleOptions": { "type": "string", "description": "Other console options", "ignoreCase": "key" }, "testRunTitle": { "type": "string", "description": "Test Run Title", "ignoreCase": "key" }, "platform": { "type": "string", "description": "Platform", "ignoreCase": "key" }, "configuration": { "type": "string", "description": "Configuration", "ignoreCase": "key" }, "publishRunAttachments": { "type": "boolean", "description": "Upload Test Attachments", "ignoreCase": "key" } }, "additionalProperties": false, "required": [] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task" ] }, { "properties": { "task": { "description": "Visual Studio Test\n\nRun unit and functional tests (Selenium, Appium, Coded UI test, etc.) using the Visual Studio Test (VsTest) runner. Test frameworks that have a Visual Studio test adapter such as MsTest, xUnit, NUnit, Chutzpah (for JavaScript tests using QUnit, Mocha and Jasmine), etc. can be run. Tests can be distributed on multiple agents using this task (version 2).", "ignoreCase": "value", "pattern": "^VSTest@2$" }, "inputs": { "description": "Visual Studio Test inputs", "properties": { "testSelector": { "description": "Select tests using", "ignoreCase": "all", "enum": [ "testAssemblies", "testPlan", "testRun" ] }, "testAssemblyVer2": { "type": "string", "description": "Test files", "ignoreCase": "key" }, "testPlan": { "type": "string", "description": "Test plan", "ignoreCase": "key" }, "testSuite": { "type": "string", "description": "Test suite", "ignoreCase": "key" }, "testConfiguration": { "type": "string", "description": "Test configuration", "ignoreCase": "key" }, "tcmTestRun": { "type": "string", "description": "Test Run", "ignoreCase": "key" }, "searchFolder": { "type": "string", "description": "Search folder", "ignoreCase": "key" }, "resultsFolder": { "type": "string", "description": "Test results folder", "ignoreCase": "key" }, "testFiltercriteria": { "type": "string", "description": "Test filter criteria", "ignoreCase": "key" }, "runOnlyImpactedTests": { "type": "boolean", "description": "Run only impacted tests", "ignoreCase": "key" }, "runAllTestsAfterXBuilds": { "type": "string", "description": "Number of builds after which all tests should be run", "ignoreCase": "key" }, "uiTests": { "type": "boolean", "description": "Test mix contains UI tests", "ignoreCase": "key" }, "vstestLocationMethod": { "description": "Select test platform using", "ignoreCase": "all", "enum": [ "version", "location" ] }, "vsTestVersion": { "description": "Test platform version", "ignoreCase": "all", "enum": [ "latest", "17.0", "16.0", "15.0", "14.0", "toolsInstaller" ] }, "vstestLocation": { "type": "string", "description": "Path to vstest.console.exe", "ignoreCase": "key" }, "runSettingsFile": { "type": "string", "description": "Settings file", "ignoreCase": "key" }, "overrideTestrunParameters": { "type": "string", "description": "Override test run parameters", "ignoreCase": "key" }, "pathtoCustomTestAdapters": { "type": "string", "description": "Path to custom test adapters", "ignoreCase": "key" }, "runInParallel": { "type": "boolean", "description": "Run tests in parallel on multi-core machines", "ignoreCase": "key" }, "runTestsInIsolation": { "type": "boolean", "description": "Run tests in isolation", "ignoreCase": "key" }, "codeCoverageEnabled": { "type": "boolean", "description": "Code coverage enabled", "ignoreCase": "key" }, "otherConsoleOptions": { "type": "string", "description": "Other console options", "ignoreCase": "key" }, "distributionBatchType": { "description": "Batch tests", "ignoreCase": "all", "enum": [ "basedOnTestCases", "basedOnExecutionTime", "basedOnAssembly" ] }, "batchingBasedOnAgentsOption": { "description": "Batch options", "ignoreCase": "all", "enum": [ "autoBatchSize", "customBatchSize" ] }, "customBatchSizeValue": { "type": "string", "description": "Number of tests per batch", "ignoreCase": "key" }, "batchingBasedOnExecutionTimeOption": { "description": "Batch options", "ignoreCase": "all", "enum": [ "autoBatchSize", "customTimeBatchSize" ] }, "customRunTimePerBatchValue": { "type": "string", "description": "Running time (sec) per batch", "ignoreCase": "key" }, "dontDistribute": { "type": "boolean", "description": "Replicate tests instead of distributing when multiple agents are used in the job", "ignoreCase": "key" }, "testRunTitle": { "type": "string", "description": "Test run title", "ignoreCase": "key" }, "platform": { "type": "string", "description": "Build platform", "ignoreCase": "key" }, "configuration": { "type": "string", "description": "Build configuration", "ignoreCase": "key" }, "publishRunAttachments": { "type": "boolean", "description": "Upload test attachments", "ignoreCase": "key" }, "failOnMinTestsNotRun": { "type": "boolean", "description": "Fail the task if a minimum number of tests are not run.", "ignoreCase": "key" }, "minimumExpectedTests": { "type": "string", "description": "Minimum # of tests", "ignoreCase": "key" }, "diagnosticsEnabled": { "type": "boolean", "description": "Collect advanced diagnostics in case of catastrophic failures", "ignoreCase": "key" }, "collectDumpOn": { "description": "Collect process dump and attach to test run report", "ignoreCase": "all", "enum": [ "onAbortOnly", "always", "never" ] }, "rerunFailedTests": { "type": "boolean", "description": "Rerun failed tests", "ignoreCase": "key" }, "rerunType": { "description": "Do not rerun if test failures exceed specified threshold", "ignoreCase": "all", "enum": [ "basedOnTestFailurePercentage", "basedOnTestFailureCount" ] }, "rerunFailedThreshold": { "type": "string", "description": "% failure", "ignoreCase": "key" }, "rerunFailedTestCasesMaxLimit": { "type": "string", "description": "# of failed tests", "ignoreCase": "key" }, "rerunMaxAttempts": { "type": "string", "description": "Maximum # of attempts", "ignoreCase": "key" } }, "additionalProperties": false, "required": [] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task" ] }, { "properties": { "task": { "description": "Manual validation\n\n[PREVIEW] Pause a pipeline run to wait for manual interaction. Works only with YAML pipelines.", "ignoreCase": "value", "pattern": "^ManualValidation@0$" }, "inputs": { "description": "Manual validation inputs", "properties": { "notifyUsers": { "type": "string", "description": "Notify users", "ignoreCase": "key" }, "instructions": { "type": "string", "description": "Instructions", "ignoreCase": "key" }, "onTimeout": { "description": "On timeout", "ignoreCase": "all", "enum": [ "reject", "resume" ] } }, "additionalProperties": false, "required": [ "notifyUsers" ] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task", "inputs" ] }, { "properties": { "task": { "description": "Ant\n\nBuild with Apache Ant", "ignoreCase": "value", "pattern": "^Ant@1$" }, "inputs": { "description": "Ant inputs", "properties": { "buildFile": { "type": "string", "description": "Ant build file", "ignoreCase": "key", "aliases": [ "antBuildFile" ] }, "options": { "type": "string", "description": "Options", "ignoreCase": "key" }, "targets": { "type": "string", "description": "Target(s)", "ignoreCase": "key" }, "publishJUnitResults": { "type": "boolean", "description": "Publish to Azure Pipelines", "ignoreCase": "key" }, "testResultsFiles": { "type": "string", "description": "Test results files", "ignoreCase": "key" }, "testRunTitle": { "type": "string", "description": "Test run title", "ignoreCase": "key" }, "codeCoverageToolOptions": { "description": "Code coverage tool", "ignoreCase": "all", "enum": [ "None", "Cobertura", "JaCoCo" ], "aliases": [ "codeCoverageTool" ] }, "codeCoverageClassFilesDirectories": { "type": "string", "description": "Class files directories", "ignoreCase": "key", "aliases": [ "classFilesDirectories" ] }, "codeCoverageClassFilter": { "type": "string", "description": "Class inclusion/exclusion filters", "ignoreCase": "key", "aliases": [ "classFilter" ] }, "codeCoverageSourceDirectories": { "type": "string", "description": "Source files directories", "ignoreCase": "key", "aliases": [ "srcDirectories" ] }, "codeCoverageFailIfEmpty": { "type": "boolean", "description": "Fail when code coverage results are missing", "ignoreCase": "key", "aliases": [ "failIfCoverageEmpty" ] }, "antHomeDirectory": { "type": "string", "description": "Set ANT_HOME path", "ignoreCase": "key", "aliases": [ "antHomeUserInputPath" ] }, "javaHomeOption": { "description": "Set JAVA_HOME by", "ignoreCase": "all", "enum": [ "JDKVersion", "Path" ], "aliases": [ "javaHomeSelection" ] }, "jdkVersionOption": { "description": "JDK version", "ignoreCase": "all", "enum": [ "default", "1.11", "1.10", "1.9", "1.8", "1.7", "1.6" ], "aliases": [ "jdkVersion" ] }, "jdkUserInputDirectory": { "type": "string", "description": "JDK path", "ignoreCase": "key", "aliases": [ "jdkUserInputPath" ] }, "jdkArchitectureOption": { "description": "JDK architecture", "ignoreCase": "all", "enum": [ "x86", "x64" ], "aliases": [ "jdkArchitecture" ] } }, "additionalProperties": false, "required": [] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task" ] }, { "properties": { "task": { "description": "Visual Studio test agent deployment\n\nDeprecated: Instead, use the 'Visual Studio Test' task to run unit and functional tests", "ignoreCase": "value", "pattern": "^DeployVisualStudioTestAgent@2$" }, "inputs": { "description": "Visual Studio test agent deployment inputs", "properties": { "testMachines": { "type": "string", "description": "Machines", "ignoreCase": "key" }, "adminUserName": { "type": "string", "description": "Admin login", "ignoreCase": "key" }, "adminPassword": { "type": "string", "description": "Admin password", "ignoreCase": "key" }, "winRmProtocol": { "description": "Protocol", "ignoreCase": "all", "enum": [ "Http", "Https" ] }, "testCertificate": { "type": "boolean", "description": "Test Certificate", "ignoreCase": "key" }, "machineUserName": { "type": "string", "description": "Username", "ignoreCase": "key" }, "machinePassword": { "type": "string", "description": "Password", "ignoreCase": "key" }, "runAsProcess": { "type": "boolean", "description": "Run UI tests", "ignoreCase": "key" }, "isDataCollectionOnly": { "type": "boolean", "description": "Enable data collection only", "ignoreCase": "key" }, "testPlatform": { "description": "Test agent version", "ignoreCase": "all", "enum": [ "15.0", "14.0" ] }, "agentLocation": { "type": "string", "description": "Test agent location", "ignoreCase": "key" }, "updateTestAgent": { "type": "boolean", "description": "Update test agent", "ignoreCase": "key" } }, "additionalProperties": false, "required": [ "testMachines", "adminUserName", "adminPassword", "machineUserName", "machinePassword" ] } }, "deprecationMessage": "DeployVisualStudioTestAgent is deprecated - Deprecated: Instead, use the 'Visual Studio Test' task to run unit and functional tests", "doNotSuggest": true, "firstProperty": [ "task" ], "required": [ "task", "inputs" ] }, { "properties": { "task": { "description": "Visual Studio Test Agent Deployment\n\nDeploy and configure Test Agent to run tests on a set of machines", "ignoreCase": "value", "pattern": "^DeployVisualStudioTestAgent@1$" }, "inputs": { "description": "Visual Studio Test Agent Deployment inputs", "properties": { "testMachineGroup": { "type": "string", "description": "Machines", "ignoreCase": "key" }, "adminUserName": { "type": "string", "description": "Admin Login", "ignoreCase": "key" }, "adminPassword": { "type": "string", "description": "Admin Password", "ignoreCase": "key" }, "winRmProtocol": { "description": "Protocol", "ignoreCase": "all", "enum": [ "Http", "Https" ] }, "testCertificate": { "type": "boolean", "description": "Test Certificate", "ignoreCase": "key" }, "resourceFilteringMethod": { "description": "Select Machines By", "ignoreCase": "all", "enum": [ "machineNames", "tags" ] }, "testMachines": { "type": "string", "description": "Filter Criteria", "ignoreCase": "key" }, "machineUserName": { "type": "string", "description": "Username", "ignoreCase": "key" }, "machinePassword": { "type": "string", "description": "Password", "ignoreCase": "key" }, "runAsProcess": { "type": "boolean", "description": "Interactive Process", "ignoreCase": "key" }, "agentLocation": { "type": "string", "description": "Test Agent Location", "ignoreCase": "key" }, "updateTestAgent": { "type": "boolean", "description": "Update Test Agent", "ignoreCase": "key" }, "isDataCollectionOnly": { "type": "boolean", "description": "Enable Data Collection Only", "ignoreCase": "key" } }, "additionalProperties": false, "required": [ "testMachineGroup", "machineUserName", "machinePassword" ] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task", "inputs" ] }, { "properties": { "task": { "description": "Conda environment\n\nCreate and activate a Conda environment", "ignoreCase": "value", "pattern": "^CondaEnvironment@0$" }, "inputs": { "description": "Conda environment inputs", "properties": { "environmentName": { "type": "string", "description": "Environment name", "ignoreCase": "key" }, "packageSpecs": { "type": "string", "description": "Package specs", "ignoreCase": "key" }, "updateConda": { "type": "boolean", "description": "Update to the latest Conda", "ignoreCase": "key" }, "createOptions": { "type": "string", "description": "Environment creation options", "ignoreCase": "key" }, "cleanEnvironment": { "type": "boolean", "description": "Clean the environment", "ignoreCase": "key" } }, "additionalProperties": false, "required": [ "environmentName" ] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task", "inputs" ] }, { "properties": { "task": { "description": "Conda environment\n\nThis task is deprecated. Use `conda` directly in script to work with Anaconda environments.", "ignoreCase": "value", "pattern": "^CondaEnvironment@1$" }, "inputs": { "description": "Conda environment inputs", "properties": { "createCustomEnvironment": { "type": "boolean", "description": "Create a custom environment", "ignoreCase": "key" }, "environmentName": { "type": "string", "description": "Environment name", "ignoreCase": "key" }, "packageSpecs": { "type": "string", "description": "Package specs", "ignoreCase": "key" }, "updateConda": { "type": "boolean", "description": "Update to the latest Conda", "ignoreCase": "key" }, "installOptions": { "type": "string", "description": "Other options for `conda install`", "ignoreCase": "key" }, "createOptions": { "type": "string", "description": "Other options for `conda create`", "ignoreCase": "key" }, "cleanEnvironment": { "type": "boolean", "description": "Clean the environment", "ignoreCase": "key" } }, "additionalProperties": false, "required": [] } }, "deprecationMessage": "CondaEnvironment is deprecated - This task is deprecated. Use `conda` directly in script to work with Anaconda environments.", "doNotSuggest": true, "firstProperty": [ "task" ], "required": [ "task" ] }, { "properties": { "task": { "description": "Batch script\n\nRun a Windows command or batch script and optionally allow it to change the environment", "ignoreCase": "value", "pattern": "^BatchScript@1$" }, "inputs": { "description": "Batch script inputs", "properties": { "filename": { "type": "string", "description": "Path", "ignoreCase": "key" }, "arguments": { "type": "string", "description": "Arguments", "ignoreCase": "key" }, "modifyEnvironment": { "type": "boolean", "description": "Modify Environment", "ignoreCase": "key" }, "workingFolder": { "type": "string", "description": "Working folder", "ignoreCase": "key" }, "failOnStandardError": { "type": "boolean", "description": "Fail on Standard Error", "ignoreCase": "key" } }, "additionalProperties": false, "required": [ "filename" ] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task", "inputs" ] }, { "properties": { "task": { "description": "Download Github Npm Package\n\nInstall npm packages from GitHub.", "ignoreCase": "value", "pattern": "^DownloadGithubNpmPackage@1$" }, "inputs": { "description": "Download Github Npm Package inputs", "properties": { "packageName": { "type": "string", "description": "Package Name", "ignoreCase": "key" }, "version": { "type": "string", "description": "Package Version", "ignoreCase": "key" }, "externalRegistryCredentials": { "type": "string", "description": "Credentials for registry from GitHub", "ignoreCase": "key", "aliases": [ "externalEndpoints" ] }, "installDirectory": { "type": "string", "description": "Destination directory", "ignoreCase": "key", "aliases": [ "packagesDirectory" ] } }, "additionalProperties": false, "required": [ "packageName", "version", "externalRegistryCredentials" ] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task", "inputs" ] }, { "properties": { "task": { "description": "Visual Studio build\n\nBuild with MSBuild and set the Visual Studio version property", "ignoreCase": "value", "pattern": "^VSBuild@1$" }, "inputs": { "description": "Visual Studio build inputs", "properties": { "solution": { "type": "string", "description": "Solution", "ignoreCase": "key" }, "vsVersion": { "description": "Visual Studio Version", "ignoreCase": "all", "enum": [ "latest", "17.0", "16.0", "15.0", "14.0", "12.0", "11.0" ] }, "msbuildArgs": { "type": "string", "description": "MSBuild Arguments", "ignoreCase": "key" }, "platform": { "type": "string", "description": "Platform", "ignoreCase": "key" }, "configuration": { "type": "string", "description": "Configuration", "ignoreCase": "key" }, "clean": { "type": "boolean", "description": "Clean", "ignoreCase": "key" }, "maximumCpuCount": { "type": "boolean", "description": "Build in Parallel", "ignoreCase": "key" }, "restoreNugetPackages": { "type": "boolean", "description": "Restore NuGet Packages", "ignoreCase": "key" }, "msbuildArchitecture": { "description": "MSBuild Architecture", "ignoreCase": "all", "enum": [ "x86", "x64" ] }, "logProjectEvents": { "type": "boolean", "description": "Record Project Details", "ignoreCase": "key" }, "createLogFile": { "type": "boolean", "description": "Create Log File", "ignoreCase": "key" }, "logFileVerbosity": { "description": "Log File Verbosity", "ignoreCase": "all", "enum": [ "quiet", "minimal", "normal", "detailed", "diagnostic" ] }, "enableDefaultLogger": { "type": "boolean", "description": "Enable Default Logger", "ignoreCase": "key" }, "customVersion": { "type": "string", "description": "Custom Version", "ignoreCase": "key" } }, "additionalProperties": false, "required": [] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task" ] }, { "properties": { "task": { "description": "Azure Key Vault\n\nDownload Azure Key Vault secrets", "ignoreCase": "value", "pattern": "^AzureKeyVault@2$" }, "inputs": { "description": "Azure Key Vault inputs", "properties": { "azureSubscription": { "type": "string", "description": "Azure subscription", "ignoreCase": "key", "aliases": [ "ConnectedServiceName" ] }, "KeyVaultName": { "type": "string", "description": "Key vault", "ignoreCase": "key" }, "SecretsFilter": { "type": "string", "description": "Secrets filter", "ignoreCase": "key" }, "RunAsPreJob": { "type": "boolean", "description": "Make secrets available to whole job", "ignoreCase": "key" } }, "additionalProperties": false, "required": [ "azureSubscription", "KeyVaultName" ] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task", "inputs" ] }, { "properties": { "task": { "description": "Azure Key Vault\n\nDownload Azure Key Vault secrets", "ignoreCase": "value", "pattern": "^AzureKeyVault@1$" }, "inputs": { "description": "Azure Key Vault inputs", "properties": { "azureSubscription": { "type": "string", "description": "Azure subscription", "ignoreCase": "key", "aliases": [ "ConnectedServiceName" ] }, "KeyVaultName": { "type": "string", "description": "Key vault", "ignoreCase": "key" }, "SecretsFilter": { "type": "string", "description": "Secrets filter", "ignoreCase": "key" }, "RunAsPreJob": { "type": "boolean", "description": "Make secrets available to whole job", "ignoreCase": "key" } }, "additionalProperties": false, "required": [ "azureSubscription", "KeyVaultName" ] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task", "inputs" ] }, { "properties": { "task": { "description": "Use .NET Core\n\nAcquires a specific version of the .NET Core SDK from the internet or the local cache and adds it to the PATH. Use this task to change the version of .NET Core used in subsequent tasks. Additionally provides proxy support.", "ignoreCase": "value", "pattern": "^UseDotNet@2$" }, "inputs": { "description": "Use .NET Core inputs", "properties": { "packageType": { "description": "Package to install", "ignoreCase": "all", "enum": [ "runtime", "sdk" ] }, "useGlobalJson": { "type": "boolean", "description": "Use global json", "ignoreCase": "key" }, "workingDirectory": { "type": "string", "description": "Working Directory", "ignoreCase": "key" }, "version": { "type": "string", "description": "Version", "ignoreCase": "key" }, "vsVersion": { "type": "string", "description": "Compatible Visual Studio version", "ignoreCase": "key" }, "includePreviewVersions": { "type": "boolean", "description": "Include Preview Versions", "ignoreCase": "key" }, "installationPath": { "type": "string", "description": "Path To Install .Net Core", "ignoreCase": "key" }, "performMultiLevelLookup": { "type": "boolean", "description": "Perform Multi Level Lookup", "ignoreCase": "key" } }, "additionalProperties": false, "required": [] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task" ] }, { "properties": { "task": { "description": ".NET Core SDK/runtime installer\n\nAcquire a specific version of the .NET Core SDK from the internet or local cache and add it to the PATH", "ignoreCase": "value", "pattern": "^DotNetCoreInstaller@0$" }, "inputs": { "description": ".NET Core SDK/runtime installer inputs", "properties": { "packageType": { "description": "Package to install", "ignoreCase": "all", "enum": [ "runtime", "sdk" ] }, "version": { "type": "string", "description": "Version", "ignoreCase": "key" } }, "additionalProperties": false, "required": [] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task" ] }, { "properties": { "task": { "description": ".NET Core sdk/runtime installer\n\nAcquire a specific version of the .NET Core SDK from the internet or local cache and add it to the PATH", "ignoreCase": "value", "pattern": "^DotNetCoreInstaller@1$" }, "inputs": { "description": ".NET Core sdk/runtime installer inputs", "properties": { "packageType": { "description": "Package to install", "ignoreCase": "all", "enum": [ "runtime", "sdk" ] }, "version": { "type": "string", "description": "Version", "ignoreCase": "key" }, "includePreviewVersions": { "type": "boolean", "description": "Include Preview Versions", "ignoreCase": "key" }, "installationPath": { "type": "string", "description": "Path To Install .Net Core", "ignoreCase": "key" }, "performMultiLevelLookup": { "type": "boolean", "description": "Perform Multi Level Lookup", "ignoreCase": "key" } }, "additionalProperties": false, "required": [] } }, "deprecationMessage": "DotNetCoreInstaller is deprecated - Acquire a specific version of the .NET Core SDK from the internet or local cache and add it to the PATH", "doNotSuggest": true, "firstProperty": [ "task" ], "required": [ "task" ] }, { "properties": { "task": { "description": "Azure App Service manage\n\nStart, stop, restart, slot swap, slot delete, install site extensions or enable continuous monitoring for an Azure App Service", "ignoreCase": "value", "pattern": "^AzureAppServiceManage@0$" }, "inputs": { "description": "Azure App Service manage inputs", "properties": { "azureSubscription": { "type": "string", "description": "Azure subscription", "ignoreCase": "key", "aliases": [ "ConnectedServiceName" ] }, "Action": { "description": "Action", "ignoreCase": "all", "enum": [ "Swap Slots", "Start Azure App Service", "Stop Azure App Service", "Restart Azure App Service", "Start Swap With Preview", "Complete Swap", "Cancel Swap", "Delete Slot", "Install Extensions", "Enable Continuous Monitoring", "Start all continuous webjobs", "Stop all continuous webjobs" ] }, "WebAppName": { "type": "string", "description": "App Service name", "ignoreCase": "key" }, "SpecifySlotOrASE": { "type": "boolean", "description": "Specify Slot or App Service Environment", "ignoreCase": "key", "aliases": [ "SpecifySlot" ] }, "ResourceGroupName": { "type": "string", "description": "Resource group", "ignoreCase": "key" }, "SourceSlot": { "type": "string", "description": "Source Slot", "ignoreCase": "key" }, "SwapWithProduction": { "type": "boolean", "description": "Swap with Production", "ignoreCase": "key" }, "TargetSlot": { "type": "string", "description": "Target Slot", "ignoreCase": "key" }, "PreserveVnet": { "type": "boolean", "description": "Preserve Vnet", "ignoreCase": "key" }, "Slot": { "type": "string", "description": "Slot", "ignoreCase": "key" }, "ExtensionsList": { "type": "string", "description": "Install Extensions", "ignoreCase": "key" }, "OutputVariable": { "type": "string", "description": "Output variable", "ignoreCase": "key" }, "AppInsightsResourceGroupName": { "type": "string", "description": "Resource Group name for Application Insights", "ignoreCase": "key" }, "ApplicationInsightsResourceName": { "type": "string", "description": "Application Insights resource name", "ignoreCase": "key" }, "ApplicationInsightsWebTestName": { "type": "string", "description": "Application Insights web test name", "ignoreCase": "key" } }, "additionalProperties": false, "required": [ "azureSubscription", "WebAppName" ] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task", "inputs" ] }, { "properties": { "task": { "description": "Install Azure Func Core Tools\n\nInstall Azure Func Core Tools", "ignoreCase": "value", "pattern": "^FuncToolsInstaller@0$" }, "inputs": { "description": "Install Azure Func Core Tools inputs", "properties": { "version": { "type": "string", "description": "Version", "ignoreCase": "key" } }, "additionalProperties": false, "required": [] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task" ] }, { "properties": { "task": { "description": "File transform\n\nReplace tokens with variable values in XML or JSON configuration files", "ignoreCase": "value", "pattern": "^FileTransform@2$" }, "inputs": { "description": "File transform inputs", "properties": { "folderPath": { "type": "string", "description": "Package or folder", "ignoreCase": "key" }, "xmlTransformationRules": { "type": "string", "description": "XML Transformation rules", "ignoreCase": "key" }, "jsonTargetFiles": { "type": "string", "description": "JSON target files", "ignoreCase": "key" }, "xmlTargetFiles": { "type": "string", "description": "XML target files", "ignoreCase": "key" } }, "additionalProperties": false, "required": [] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task" ] }, { "properties": { "task": { "description": "File transform\n\nReplace tokens with variable values in XML or JSON configuration files", "ignoreCase": "value", "pattern": "^FileTransform@1$" }, "inputs": { "description": "File transform inputs", "properties": { "folderPath": { "type": "string", "description": "Package or folder", "ignoreCase": "key" }, "enableXmlTransform": { "type": "boolean", "description": "XML transformation", "ignoreCase": "key" }, "xmlTransformationRules": { "type": "string", "description": "Transformation rules", "ignoreCase": "key" }, "fileType": { "description": "File format", "ignoreCase": "all", "enum": [ "xml", "json" ] }, "targetFiles": { "type": "string", "description": "Target files", "ignoreCase": "key" } }, "additionalProperties": false, "required": [] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task" ] }, { "properties": { "task": { "description": "Extract files\n\nExtract a variety of archive and compression files such as .7z, .rar, .tar.gz, and .zip", "ignoreCase": "value", "pattern": "^ExtractFiles@1$" }, "inputs": { "description": "Extract files inputs", "properties": { "archiveFilePatterns": { "type": "string", "description": "Archive file patterns", "ignoreCase": "key" }, "destinationFolder": { "type": "string", "description": "Destination folder", "ignoreCase": "key" }, "cleanDestinationFolder": { "type": "boolean", "description": "Clean destination folder before extracting", "ignoreCase": "key" }, "overwriteExistingFiles": { "type": "boolean", "description": "Overwrite existing files", "ignoreCase": "key" }, "pathToSevenZipTool": { "type": "string", "description": "Path to 7z utility", "ignoreCase": "key" } }, "additionalProperties": false, "required": [ "destinationFolder" ] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task", "inputs" ] }, { "properties": { "task": { "description": "Xamarin.Android\n\nBuild an Android app with Xamarin", "ignoreCase": "value", "pattern": "^XamarinAndroid@1$" }, "inputs": { "description": "Xamarin.Android inputs", "properties": { "projectFile": { "type": "string", "description": "Project", "ignoreCase": "key", "aliases": [ "project" ] }, "target": { "type": "string", "description": "Target", "ignoreCase": "key" }, "outputDirectory": { "type": "string", "description": "Output directory", "ignoreCase": "key", "aliases": [ "outputDir" ] }, "configuration": { "type": "string", "description": "Configuration", "ignoreCase": "key" }, "createAppPackage": { "type": "boolean", "description": "Create app package", "ignoreCase": "key" }, "clean": { "type": "boolean", "description": "Clean", "ignoreCase": "key" }, "msbuildLocationOption": { "description": "MSBuild", "ignoreCase": "all", "enum": [ "version", "location" ], "aliases": [ "msbuildLocationMethod" ] }, "msbuildVersionOption": { "description": "MSBuild version", "ignoreCase": "all", "enum": [ "latest", "17.0", "16.0", "15.0", "14.0", "12.0", "4.0" ], "aliases": [ "msbuildVersion" ] }, "msbuildFile": { "type": "string", "description": "MSBuild location", "ignoreCase": "key", "aliases": [ "msbuildLocation" ] }, "msbuildArchitectureOption": { "description": "MSBuild architecture", "ignoreCase": "all", "enum": [ "x86", "x64" ], "aliases": [ "msbuildArchitecture" ] }, "msbuildArguments": { "type": "string", "description": "Additional arguments", "ignoreCase": "key" }, "jdkOption": { "description": "Select JDK to use for the build", "ignoreCase": "all", "enum": [ "JDKVersion", "Path" ], "aliases": [ "jdkSelection" ] }, "jdkVersionOption": { "description": "JDK version", "ignoreCase": "all", "enum": [ "default", "1.11", "1.10", "1.9", "1.8", "1.7", "1.6" ], "aliases": [ "jdkVersion" ] }, "jdkDirectory": { "type": "string", "description": "JDK path", "ignoreCase": "key", "aliases": [ "jdkUserInputPath" ] }, "jdkArchitectureOption": { "description": "JDK architecture", "ignoreCase": "all", "enum": [ "x86", "x64" ], "aliases": [ "jdkArchitecture" ] } }, "additionalProperties": false, "required": [] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task" ] }, { "properties": { "task": { "description": "Copy and Publish Build Artifacts\n\n[DEPRECATED] Use the Copy Files task and the Publish Build Artifacts task instead", "ignoreCase": "value", "pattern": "^CopyPublishBuildArtifacts@1$" }, "inputs": { "description": "Copy and Publish Build Artifacts inputs", "properties": { "CopyRoot": { "type": "string", "description": "Copy Root", "ignoreCase": "key" }, "Contents": { "type": "string", "description": "Contents", "ignoreCase": "key" }, "ArtifactName": { "type": "string", "description": "Artifact Name", "ignoreCase": "key" }, "ArtifactType": { "description": "Artifact Type", "ignoreCase": "all", "enum": [ "Container", "FilePath" ] }, "TargetPath": { "type": "string", "description": "Path", "ignoreCase": "key" } }, "additionalProperties": false, "required": [ "Contents", "ArtifactName", "ArtifactType" ] } }, "deprecationMessage": "CopyPublishBuildArtifacts is deprecated - [DEPRECATED] Use the Copy Files task and the Publish Build Artifacts task instead", "doNotSuggest": true, "firstProperty": [ "task" ], "required": [ "task", "inputs" ] }, { "properties": { "task": { "description": "Download package\n\nDownload a package from a package management feed in Azure Artifacts", "ignoreCase": "value", "pattern": "^DownloadPackage@0$" }, "inputs": { "description": "Download package inputs", "properties": { "feed": { "type": "string", "description": "Feed", "ignoreCase": "key" }, "definition": { "type": "string", "description": "Package", "ignoreCase": "key" }, "version": { "type": "string", "description": "Version", "ignoreCase": "key" }, "downloadPath": { "type": "string", "description": "Destination directory", "ignoreCase": "key" } }, "additionalProperties": false, "required": [ "feed", "definition", "version" ] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task", "inputs" ] }, { "properties": { "task": { "description": "Download package\n\nDownload a package from a package management feed in Azure Artifacts", "ignoreCase": "value", "pattern": "^DownloadPackage@1$" }, "inputs": { "description": "Download package inputs", "properties": { "packageType": { "description": "Package Type", "ignoreCase": "all", "enum": [ "maven", "npm", "nuget", "pypi", "upack", "cargo" ] }, "feed": { "type": "string", "description": "Feed", "ignoreCase": "key" }, "view": { "type": "string", "description": "View", "ignoreCase": "key" }, "definition": { "type": "string", "description": "Package", "ignoreCase": "key" }, "version": { "type": "string", "description": "Version", "ignoreCase": "key" }, "files": { "type": "string", "description": "Files", "ignoreCase": "key" }, "extract": { "type": "boolean", "description": "Extract package contents", "ignoreCase": "key" }, "downloadPath": { "type": "string", "description": "Destination directory", "ignoreCase": "key" } }, "additionalProperties": false, "required": [ "feed", "definition", "version" ] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task", "inputs" ] }, { "properties": { "task": { "description": "ARM template deployment\n\nDeploy an Azure Resource Manager (ARM) template to all the deployment scopes", "ignoreCase": "value", "pattern": "^AzureResourceManagerTemplateDeployment@3$" }, "inputs": { "description": "ARM template deployment inputs", "properties": { "deploymentScope": { "description": "Deployment scope", "ignoreCase": "all", "enum": [ "Management Group", "Subscription", "Resource Group" ] }, "azureResourceManagerConnection": { "type": "string", "description": "Azure Resource Manager connection", "ignoreCase": "key", "aliases": [ "ConnectedServiceName" ] }, "subscriptionId": { "type": "string", "description": "Subscription", "ignoreCase": "key", "aliases": [ "subscriptionName" ] }, "action": { "description": "Action", "ignoreCase": "all", "enum": [ "Create Or Update Resource Group", "DeleteRG" ] }, "resourceGroupName": { "type": "string", "description": "Resource group", "ignoreCase": "key" }, "location": { "type": "string", "description": "Location", "ignoreCase": "key" }, "templateLocation": { "description": "Template location", "ignoreCase": "all", "enum": [ "Linked artifact", "URL of the file" ] }, "csmFileLink": { "type": "string", "description": "Template link", "ignoreCase": "key" }, "csmParametersFileLink": { "type": "string", "description": "Template parameters link", "ignoreCase": "key" }, "csmFile": { "type": "string", "description": "Template", "ignoreCase": "key" }, "csmParametersFile": { "type": "string", "description": "Template parameters", "ignoreCase": "key" }, "overrideParameters": { "type": "string", "description": "Override template parameters", "ignoreCase": "key" }, "deploymentMode": { "description": "Deployment mode", "ignoreCase": "all", "enum": [ "Incremental", "Complete", "Validation" ] }, "deploymentName": { "type": "string", "description": "Deployment name", "ignoreCase": "key" }, "deploymentOutputs": { "type": "string", "description": "Deployment outputs", "ignoreCase": "key" }, "addSpnToEnvironment": { "type": "boolean", "description": "Access service principal details in override parameters", "ignoreCase": "key" } }, "additionalProperties": false, "required": [ "azureResourceManagerConnection" ] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task", "inputs" ] }, { "properties": { "task": { "description": "Azure Resource Group Deployment\n\nDeploy, start, stop, delete Azure Resource Groups", "ignoreCase": "value", "pattern": "^AzureResourceGroupDeployment@1$" }, "inputs": { "description": "Azure Resource Group Deployment inputs", "properties": { "ConnectedServiceNameSelector": { "description": "Azure Connection Type", "ignoreCase": "all", "enum": [ "ConnectedServiceName", "ConnectedServiceNameClassic" ] }, "ConnectedServiceName": { "type": "string", "description": "Azure Subscription", "ignoreCase": "key" }, "ConnectedServiceNameClassic": { "type": "string", "description": "Azure Classic Subscription", "ignoreCase": "key" }, "action": { "description": "Action", "ignoreCase": "all", "enum": [ "Create Or Update Resource Group", "Select Resource Group", "Start", "Stop", "Restart", "Delete", "DeleteRG" ] }, "actionClassic": { "description": "Action", "ignoreCase": "all", "enum": [ "Select Resource Group" ] }, "resourceGroupName": { "type": "string", "description": "Resource Group", "ignoreCase": "key" }, "cloudService": { "type": "string", "description": "Cloud Service", "ignoreCase": "key" }, "location": { "description": "Location", "ignoreCase": "all", "enum": [ "Australia East", "Australia Southeast", "Brazil South", "Canada Central", "Canada East", "Central India", "Central US", "East Asia", "East US", "East US 2 ", "Japan East", "Japan West", "North Central US", "North Europe", "South Central US", "South India", "Southeast Asia", "UK South", "UK West", "West Central US", "West Europe", "West India", "West US", "West US 2" ] }, "csmFile": { "type": "string", "description": "Template", "ignoreCase": "key" }, "csmParametersFile": { "type": "string", "description": "Template Parameters", "ignoreCase": "key" }, "overrideParameters": { "type": "string", "description": "Override Template Parameters", "ignoreCase": "key" }, "deploymentMode": { "description": "Deployment Mode", "ignoreCase": "all", "enum": [ "Validation", "Incremental", "Complete" ] }, "enableDeploymentPrerequisitesForCreate": { "type": "boolean", "description": "Enable Deployment Prerequisites", "ignoreCase": "key" }, "enableDeploymentPrerequisitesForSelect": { "type": "boolean", "description": "Enable Deployment Prerequisites", "ignoreCase": "key" }, "outputVariable": { "type": "string", "description": "Resource Group", "ignoreCase": "key" } }, "additionalProperties": false, "required": [] } }, "deprecationMessage": "AzureResourceGroupDeployment is deprecated - Deploy, start, stop, delete Azure Resource Groups", "doNotSuggest": true, "firstProperty": [ "task" ], "required": [ "task" ] }, { "properties": { "task": { "description": "Azure resource group deployment\n\nDeploy an Azure Resource Manager (ARM) template to a resource group and manage virtual machines", "ignoreCase": "value", "pattern": "^AzureResourceGroupDeployment@2$" }, "inputs": { "description": "Azure resource group deployment inputs", "properties": { "azureSubscription": { "type": "string", "description": "Azure subscription", "ignoreCase": "key", "aliases": [ "ConnectedServiceName" ] }, "action": { "description": "Action", "ignoreCase": "all", "enum": [ "Create Or Update Resource Group", "Select Resource Group", "Start", "Stop", "StopWithDeallocate", "Restart", "Delete", "DeleteRG" ] }, "resourceGroupName": { "type": "string", "description": "Resource group", "ignoreCase": "key" }, "location": { "type": "string", "description": "Location", "ignoreCase": "key" }, "templateLocation": { "description": "Template location", "ignoreCase": "all", "enum": [ "Linked artifact", "URL of the file" ] }, "csmFileLink": { "type": "string", "description": "Template link", "ignoreCase": "key" }, "csmParametersFileLink": { "type": "string", "description": "Template parameters link", "ignoreCase": "key" }, "csmFile": { "type": "string", "description": "Template", "ignoreCase": "key" }, "csmParametersFile": { "type": "string", "description": "Template parameters", "ignoreCase": "key" }, "overrideParameters": { "type": "string", "description": "Override template parameters", "ignoreCase": "key" }, "deploymentMode": { "description": "Deployment mode", "ignoreCase": "all", "enum": [ "Incremental", "Complete", "Validation" ] }, "enableDeploymentPrerequisites": { "description": "Enable prerequisites", "ignoreCase": "all", "enum": [ "None", "ConfigureVMwithWinRM", "ConfigureVMWithDGAgent" ] }, "teamServicesConnection": { "type": "string", "description": "Azure Pipelines service connection", "ignoreCase": "key", "aliases": [ "deploymentGroupEndpoint" ] }, "teamProject": { "type": "string", "description": "Team project", "ignoreCase": "key", "aliases": [ "project" ] }, "deploymentGroupName": { "type": "string", "description": "Deployment Group", "ignoreCase": "key" }, "copyAzureVMTags": { "type": "boolean", "description": "Copy Azure VM tags to agents", "ignoreCase": "key" }, "runAgentServiceAsUser": { "type": "boolean", "description": "Run agent service as a user", "ignoreCase": "key" }, "userName": { "type": "string", "description": "User name", "ignoreCase": "key" }, "password": { "type": "string", "description": "Password", "ignoreCase": "key" }, "outputVariable": { "type": "string", "description": "VM details for WinRM", "ignoreCase": "key" }, "deploymentName": { "type": "string", "description": "Deployment name", "ignoreCase": "key" }, "deploymentOutputs": { "type": "string", "description": "Deployment outputs", "ignoreCase": "key" }, "addSpnToEnvironment": { "type": "boolean", "description": "Access service principal details in override parameters", "ignoreCase": "key" } }, "additionalProperties": false, "required": [ "azureSubscription", "resourceGroupName" ] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task", "inputs" ] }, { "properties": { "task": { "description": "Invoke REST API\n\nInvoke REST API as a part of your process.", "ignoreCase": "value", "pattern": "^InvokeRESTAPI@0$" }, "inputs": { "description": "Invoke REST API inputs", "properties": { "serviceConnection": { "type": "string", "description": "Generic endpoint", "ignoreCase": "key", "aliases": [ "connectedServiceName" ] }, "method": { "description": "Method", "ignoreCase": "all", "enum": [ "OPTIONS", "GET", "HEAD", "POST", "PUT", "DELETE", "TRACE", "PATCH" ] }, "headers": { "type": "string", "description": "Headers", "ignoreCase": "key" }, "body": { "type": "string", "description": "Body", "ignoreCase": "key" }, "urlSuffix": { "type": "string", "description": "Url suffix string", "ignoreCase": "key" }, "waitForCompletion": { "description": "Complete based on", "ignoreCase": "all", "enum": [ "true", "false" ] }, "successCriteria": { "type": "string", "description": "Success criteria", "ignoreCase": "key" } }, "additionalProperties": false, "required": [ "serviceConnection" ] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task", "inputs" ] }, { "properties": { "task": { "description": "Invoke REST API\n\nInvoke a REST API as a part of your pipeline.", "ignoreCase": "value", "pattern": "^InvokeRESTAPI@1$" }, "inputs": { "description": "Invoke REST API inputs", "properties": { "connectionType": { "description": "Connection type", "ignoreCase": "all", "enum": [ "connectedServiceName", "connectedServiceNameARM" ], "aliases": [ "connectedServiceNameSelector" ] }, "serviceConnection": { "type": "string", "description": "Generic service connection", "ignoreCase": "key", "aliases": [ "connectedServiceName", "genericService" ] }, "azureServiceConnection": { "type": "string", "description": "Azure subscription", "ignoreCase": "key", "aliases": [ "connectedServiceNameARM", "azureSubscription" ] }, "method": { "description": "Method", "ignoreCase": "all", "enum": [ "OPTIONS", "GET", "HEAD", "POST", "PUT", "DELETE", "TRACE", "PATCH" ] }, "headers": { "type": "string", "description": "Headers", "ignoreCase": "key" }, "body": { "type": "string", "description": "Body", "ignoreCase": "key" }, "urlSuffix": { "type": "string", "description": "URL suffix and parameters", "ignoreCase": "key" }, "waitForCompletion": { "description": "Completion event", "ignoreCase": "all", "enum": [ "true", "false" ] }, "successCriteria": { "type": "string", "description": "Success criteria", "ignoreCase": "key" } }, "additionalProperties": false, "required": [] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task" ] }, { "properties": { "task": { "description": "Archive Files\n\nArchive files using compression formats such as .7z, .rar, .tar.gz, and .zip.", "ignoreCase": "value", "pattern": "^ArchiveFiles@1$" }, "inputs": { "description": "Archive Files inputs", "properties": { "rootFolder": { "type": "string", "description": "Root folder (or file) to archive", "ignoreCase": "key" }, "includeRootFolder": { "type": "boolean", "description": "Prefix root folder name to archive paths", "ignoreCase": "key" }, "archiveType": { "description": "Archive type", "ignoreCase": "all", "enum": [ "default", "7z", "tar", "wim" ] }, "tarCompression": { "description": "Tar compression", "ignoreCase": "all", "enum": [ "gz", "bz2", "xz", "none" ] }, "archiveFile": { "type": "string", "description": "Archive file to create", "ignoreCase": "key" }, "replaceExistingArchive": { "type": "boolean", "description": "Replace existing archive", "ignoreCase": "key" } }, "additionalProperties": false, "required": [] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task" ] }, { "properties": { "task": { "description": "Archive files\n\nCompress files into .7z, .tar.gz, or .zip", "ignoreCase": "value", "pattern": "^ArchiveFiles@2$" }, "inputs": { "description": "Archive files inputs", "properties": { "rootFolderOrFile": { "type": "string", "description": "Root folder or file to archive", "ignoreCase": "key" }, "includeRootFolder": { "type": "boolean", "description": "Prepend root folder name to archive paths", "ignoreCase": "key" }, "archiveType": { "description": "Archive type", "ignoreCase": "all", "enum": [ "zip", "7z", "tar", "wim" ] }, "sevenZipCompression": { "description": "7z compression", "ignoreCase": "all", "enum": [ "ultra", "maximum", "normal", "fast", "fastest", "none" ] }, "tarCompression": { "description": "Tar compression", "ignoreCase": "all", "enum": [ "gz", "bz2", "xz", "none" ] }, "archiveFile": { "type": "string", "description": "Archive file to create", "ignoreCase": "key" }, "replaceExistingArchive": { "type": "boolean", "description": "Replace existing archive", "ignoreCase": "key" }, "verbose": { "type": "boolean", "description": "Force verbose output", "ignoreCase": "key" }, "quiet": { "type": "boolean", "description": "Force quiet output", "ignoreCase": "key" } }, "additionalProperties": false, "required": [] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task" ] }, { "properties": { "task": { "description": "GitHub Comment\n\nWrite a comment to your Github entity i.e. issue or a Pull Request (PR)", "ignoreCase": "value", "pattern": "^GitHubComment@0$" }, "inputs": { "description": "GitHub Comment inputs", "properties": { "gitHubConnection": { "type": "string", "description": "GitHub connection (OAuth or PAT)", "ignoreCase": "key" }, "repositoryName": { "type": "string", "description": "Repository", "ignoreCase": "key" }, "id": { "type": "string", "description": "ID of the github pr/issue", "ignoreCase": "key" }, "comment": { "type": "string", "description": "Comment", "ignoreCase": "key" } }, "additionalProperties": false, "required": [ "gitHubConnection" ] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task", "inputs" ] }, { "properties": { "task": { "description": "Copy Files\n\nCopy files from source folder to target folder using minimatch patterns (The minimatch patterns will only match file paths, not folder paths)", "ignoreCase": "value", "pattern": "^CopyFiles@1$" }, "inputs": { "description": "Copy Files inputs", "properties": { "SourceFolder": { "type": "string", "description": "Source Folder", "ignoreCase": "key" }, "Contents": { "type": "string", "description": "Contents", "ignoreCase": "key" }, "TargetFolder": { "type": "string", "description": "Target Folder", "ignoreCase": "key" }, "CleanTargetFolder": { "type": "boolean", "description": "Clean Target Folder", "ignoreCase": "key" }, "OverWrite": { "type": "boolean", "description": "Overwrite", "ignoreCase": "key" }, "flattenFolders": { "type": "boolean", "description": "Flatten Folders", "ignoreCase": "key" } }, "additionalProperties": false, "required": [ "TargetFolder" ] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task", "inputs" ] }, { "properties": { "task": { "description": "Copy files\n\nCopy files from a source folder to a target folder using patterns matching file paths (not folder paths)", "ignoreCase": "value", "pattern": "^CopyFiles@2$" }, "inputs": { "description": "Copy files inputs", "properties": { "SourceFolder": { "type": "string", "description": "Source Folder", "ignoreCase": "key" }, "Contents": { "type": "string", "description": "Contents", "ignoreCase": "key" }, "TargetFolder": { "type": "string", "description": "Target Folder", "ignoreCase": "key" }, "CleanTargetFolder": { "type": "boolean", "description": "Clean Target Folder", "ignoreCase": "key" }, "OverWrite": { "type": "boolean", "description": "Overwrite", "ignoreCase": "key" }, "flattenFolders": { "type": "boolean", "description": "Flatten Folders", "ignoreCase": "key" }, "preserveTimestamp": { "type": "boolean", "description": "Preserve Target Timestamp", "ignoreCase": "key" }, "retryCount": { "type": "string", "description": "Retry count to copy the file", "ignoreCase": "key" }, "delayBetweenRetries": { "type": "string", "description": "Delay between two retries.", "ignoreCase": "key" }, "ignoreMakeDirErrors": { "type": "boolean", "description": "Ignore errors during creation of target folder.", "ignoreCase": "key" } }, "additionalProperties": false, "required": [ "TargetFolder" ] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task", "inputs" ] }, { "properties": { "task": { "description": "Azure Database for MySQL deployment\n\nRun your scripts and make changes to your Azure Database for MySQL", "ignoreCase": "value", "pattern": "^AzureMysqlDeployment@1$" }, "inputs": { "description": "Azure Database for MySQL deployment inputs", "properties": { "azureSubscription": { "type": "string", "description": "Azure Subscription", "ignoreCase": "key", "aliases": [ "ConnectedServiceName" ] }, "ServerName": { "type": "string", "description": "Host Name", "ignoreCase": "key" }, "DatabaseName": { "type": "string", "description": "Database Name", "ignoreCase": "key" }, "SqlUsername": { "type": "string", "description": "Server Admin Login", "ignoreCase": "key" }, "SqlPassword": { "type": "string", "description": "Password", "ignoreCase": "key" }, "TaskNameSelector": { "description": "Type", "ignoreCase": "all", "enum": [ "SqlTaskFile", "InlineSqlTask" ] }, "SqlFile": { "type": "string", "description": "MySQL Script", "ignoreCase": "key" }, "SqlInline": { "type": "string", "description": "Inline MySQL Script", "ignoreCase": "key" }, "SqlAdditionalArguments": { "type": "string", "description": "Additional MySQL Arguments", "ignoreCase": "key" }, "IpDetectionMethod": { "description": "Specify Firewall Rules Using", "ignoreCase": "all", "enum": [ "AutoDetect", "IPAddressRange" ] }, "StartIpAddress": { "type": "string", "description": "Start IP Address", "ignoreCase": "key" }, "EndIpAddress": { "type": "string", "description": "End IP Address", "ignoreCase": "key" }, "DeleteFirewallRule": { "type": "boolean", "description": "Delete Rule After Task Ends", "ignoreCase": "key" } }, "additionalProperties": false, "required": [ "azureSubscription", "ServerName", "SqlUsername", "SqlPassword" ] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task", "inputs" ] }, { "properties": { "task": { "description": "npm\n\nRun an npm command. Use NpmAuthenticate@0 task for latest capabilities.", "ignoreCase": "value", "pattern": "^Npm@0$" }, "inputs": { "description": "npm inputs", "properties": { "cwd": { "type": "string", "description": "working folder", "ignoreCase": "key" }, "command": { "type": "string", "description": "npm command", "ignoreCase": "key" }, "arguments": { "type": "string", "description": "arguments", "ignoreCase": "key" } }, "additionalProperties": false, "required": [] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task" ] }, { "properties": { "task": { "description": "npm\n\nInstall and publish npm packages, or run an npm command. Supports npmjs.com and authenticated registries like Azure Artifacts.", "ignoreCase": "value", "pattern": "^Npm@1$" }, "inputs": { "description": "npm inputs", "properties": { "command": { "description": "Command", "ignoreCase": "all", "enum": [ "ci", "install", "publish", "custom" ] }, "workingDir": { "type": "string", "description": "Working folder that contains package.json", "ignoreCase": "key" }, "verbose": { "type": "boolean", "description": "Verbose logging", "ignoreCase": "key" }, "customCommand": { "type": "string", "description": "Command and arguments", "ignoreCase": "key" }, "customRegistry": { "description": "Registries to use", "ignoreCase": "all", "enum": [ "useNpmrc", "useFeed" ] }, "customFeed": { "type": "string", "description": "Use packages from this Azure Artifacts/TFS registry", "ignoreCase": "key" }, "customEndpoint": { "type": "string", "description": "Credentials for registries outside this organization/collection", "ignoreCase": "key" }, "publishRegistry": { "description": "Registry location", "ignoreCase": "all", "enum": [ "useExternalRegistry", "useFeed" ] }, "publishFeed": { "type": "string", "description": "Target registry", "ignoreCase": "key" }, "publishPackageMetadata": { "type": "boolean", "description": "Publish pipeline metadata", "ignoreCase": "key" }, "publishEndpoint": { "type": "string", "description": "External Registry", "ignoreCase": "key" } }, "additionalProperties": false, "required": [] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task" ] }, { "properties": { "task": { "description": "Deploy Azure Static Web App\n\n[PREVIEW] Build and deploy an Azure Static Web App", "ignoreCase": "value", "pattern": "^AzureStaticWebApp@0$" }, "inputs": { "description": "Deploy Azure Static Web App inputs", "properties": { "workingDirectory": { "type": "string", "description": "Working directory", "ignoreCase": "key", "aliases": [ "cwd", "rootDirectory" ] }, "app_location": { "type": "string", "description": "App location", "ignoreCase": "key" }, "app_build_command": { "type": "string", "description": "App build command", "ignoreCase": "key" }, "output_location": { "type": "string", "description": "Output location", "ignoreCase": "key" }, "api_location": { "type": "string", "description": "Api location", "ignoreCase": "key" }, "api_build_command": { "type": "string", "description": "Api build command", "ignoreCase": "key" }, "routes_location": { "type": "string", "description": "Routes location", "ignoreCase": "key" }, "config_file_location": { "type": "string", "description": "Config file location", "ignoreCase": "key" }, "skip_app_build": { "type": "boolean", "description": "Skip app build", "ignoreCase": "key" }, "skip_api_build": { "type": "boolean", "description": "Skip api build", "ignoreCase": "key" }, "is_static_export": { "type": "boolean", "description": "Set static export", "ignoreCase": "key" }, "verbose": { "type": "boolean", "description": "Verbose", "ignoreCase": "key" }, "build_timeout_in_minutes": { "type": "integer", "description": "Build timeout in minutes", "ignoreCase": "key" }, "azure_static_web_apps_api_token": { "type": "string", "description": "Azure Static Web Apps api token", "ignoreCase": "key" }, "deployment_environment": { "type": "string", "description": "Deployment Environment", "ignoreCase": "key" }, "production_branch": { "type": "string", "description": "Production Branch", "ignoreCase": "key" }, "data_api_location": { "type": "string", "description": "Data api location", "ignoreCase": "key" } }, "additionalProperties": false, "required": [] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task" ] }, { "properties": { "task": { "description": "Node.js tool installer\n\nFinds or downloads and caches the specified version spec of Node.js and adds it to the PATH", "ignoreCase": "value", "pattern": "^NodeTool@0$" }, "inputs": { "description": "Node.js tool installer inputs", "properties": { "versionSource": { "description": "Source of version", "ignoreCase": "all", "enum": [ "spec", "fromFile" ] }, "versionSpec": { "type": "string", "description": "Version Spec", "ignoreCase": "key" }, "versionFilePath": { "type": "string", "description": "Path to the .nvmrc file", "ignoreCase": "key" }, "checkLatest": { "type": "boolean", "description": "Check for Latest Version", "ignoreCase": "key" }, "force32bit": { "type": "boolean", "description": "Use 32 bit version on x64 agents", "ignoreCase": "key" }, "nodejsMirror": { "type": "string", "description": "Set source for Node.js binaries", "ignoreCase": "key" } }, "additionalProperties": false, "required": [] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task" ] }, { "properties": { "task": { "description": "Use Node.js ecosystem\n\nSet up a Node.js environment and add it to the PATH, additionally providing proxy support", "ignoreCase": "value", "pattern": "^UseNode@1$" }, "inputs": { "description": "Use Node.js ecosystem inputs", "properties": { "version": { "type": "string", "description": "Version", "ignoreCase": "key" }, "checkLatest": { "type": "boolean", "description": "Check for Latest Version", "ignoreCase": "key" }, "force32bit": { "type": "boolean", "description": "Use 32 bit version on x64 agents", "ignoreCase": "key" } }, "additionalProperties": false, "required": [] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task" ] }, { "properties": { "task": { "description": "[Deprecated] SQL Server database deploy\n\nDeploy a SQL Server database using DACPAC", "ignoreCase": "value", "pattern": "^SqlServerDacpacDeployment@1$" }, "inputs": { "description": "[Deprecated] SQL Server database deploy inputs", "properties": { "EnvironmentName": { "type": "string", "description": "Machines", "ignoreCase": "key" }, "AdminUserName": { "type": "string", "description": "Admin Login", "ignoreCase": "key" }, "AdminPassword": { "type": "string", "description": "Password", "ignoreCase": "key" }, "Protocol": { "description": "Protocol", "ignoreCase": "all", "enum": [ "Http", "Https" ] }, "TestCertificate": { "type": "boolean", "description": "Test Certificate", "ignoreCase": "key" }, "DacpacFile": { "type": "string", "description": "DACPAC File", "ignoreCase": "key" }, "TargetMethod": { "description": "Specify SQL Using", "ignoreCase": "all", "enum": [ "server", "connectionString", "publishProfile" ] }, "ServerName": { "type": "string", "description": "Server Name", "ignoreCase": "key" }, "DatabaseName": { "type": "string", "description": "Database Name", "ignoreCase": "key" }, "SqlUsername": { "type": "string", "description": "SQL Username", "ignoreCase": "key" }, "SqlPassword": { "type": "string", "description": "SQL Password", "ignoreCase": "key" }, "ConnectionString": { "type": "string", "description": "Connection String", "ignoreCase": "key" }, "PublishProfile": { "type": "string", "description": "Publish Profile", "ignoreCase": "key" }, "AdditionalArguments": { "type": "string", "description": "Additional Arguments", "ignoreCase": "key" }, "DeployInParallel": { "type": "boolean", "description": "Deploy in Parallel", "ignoreCase": "key" }, "ResourceFilteringMethod": { "description": "Select Machines By", "ignoreCase": "all", "enum": [ "machineNames", "tags" ] }, "MachineFilter": { "type": "string", "description": "Deploy to Machines", "ignoreCase": "key" } }, "additionalProperties": false, "required": [ "EnvironmentName", "DacpacFile" ] } }, "deprecationMessage": "SqlServerDacpacDeployment is deprecated - Deploy a SQL Server database using DACPAC", "doNotSuggest": true, "firstProperty": [ "task" ], "required": [ "task", "inputs" ] }, { "properties": { "task": { "description": "Visual Studio test platform installer\n\nAcquire the test platform from nuget.org or the tool cache. Satisfies the ‘vstest’ demand and can be used for running tests and collecting diagnostic data using the Visual Studio Test task.", "ignoreCase": "value", "pattern": "^VisualStudioTestPlatformInstaller@1$" }, "inputs": { "description": "Visual Studio test platform installer inputs", "properties": { "packageFeedSelector": { "description": "Package Feed", "ignoreCase": "all", "enum": [ "nugetOrg", "customFeed", "netShare" ] }, "versionSelector": { "description": "Version", "ignoreCase": "all", "enum": [ "latestPreRelease", "latestStable", "specificVersion" ] }, "testPlatformVersion": { "type": "string", "description": "Test Platform Version", "ignoreCase": "key" }, "customFeed": { "type": "string", "description": "Package Source", "ignoreCase": "key" }, "username": { "type": "string", "description": "User Name", "ignoreCase": "key" }, "password": { "type": "string", "description": "Password", "ignoreCase": "key" }, "netShare": { "type": "string", "description": "UNC Path", "ignoreCase": "key" } }, "additionalProperties": false, "required": [] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task" ] }, { "properties": { "task": { "description": "Publish To Azure Service Bus\n\nSends a message to Azure Service Bus using a service connection (no agent is required)", "ignoreCase": "value", "pattern": "^PublishToAzureServiceBus@1$" }, "inputs": { "description": "Publish To Azure Service Bus inputs", "properties": { "azureSubscription": { "type": "string", "description": "Azure Service Bus service connection", "ignoreCase": "key", "aliases": [ "connectedServiceName" ] }, "messageBody": { "type": "string", "description": "Message body", "ignoreCase": "key" }, "sessionId": { "type": "string", "description": "Session Id", "ignoreCase": "key" }, "signPayload": { "type": "boolean", "description": "Sign the Message", "ignoreCase": "key" }, "certificateString": { "type": "string", "description": "Certificate Variable", "ignoreCase": "key" }, "signatureKey": { "type": "string", "description": "Signature Property Key", "ignoreCase": "key" }, "waitForCompletion": { "type": "boolean", "description": "Wait for task completion", "ignoreCase": "key" }, "useDataContractSerializer": { "type": "boolean", "description": "Use .NET data contract serailizer", "ignoreCase": "key" } }, "additionalProperties": false, "required": [ "azureSubscription" ] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task", "inputs" ] }, { "properties": { "task": { "description": "Publish To Azure Service Bus\n\nSends a message to azure service bus using a service connection (no agent required).", "ignoreCase": "value", "pattern": "^PublishToAzureServiceBus@0$" }, "inputs": { "description": "Publish To Azure Service Bus inputs", "properties": { "azureSubscription": { "type": "string", "description": "Azure service bus connection", "ignoreCase": "key", "aliases": [ "connectedServiceName" ] }, "messageBody": { "type": "string", "description": "Message body", "ignoreCase": "key" }, "waitForCompletion": { "type": "boolean", "description": "Wait for task completion", "ignoreCase": "key" } }, "additionalProperties": false, "required": [ "azureSubscription" ] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task", "inputs" ] }, { "properties": { "task": { "description": "Deploy to Kubernetes\n\nUse Kubernetes manifest files to deploy to clusters or even bake the manifest files to be used for deployments using Helm charts", "ignoreCase": "value", "pattern": "^KubernetesManifest@0$" }, "inputs": { "description": "Deploy to Kubernetes inputs", "properties": { "action": { "description": "Action", "ignoreCase": "all", "enum": [ "bake", "createSecret", "delete", "deploy", "patch", "promote", "scale", "reject" ] }, "kubernetesServiceConnection": { "type": "string", "description": "Kubernetes service connection", "ignoreCase": "key" }, "namespace": { "type": "string", "description": "Namespace", "ignoreCase": "key" }, "strategy": { "description": "Strategy", "ignoreCase": "all", "enum": [ "canary", "none" ] }, "trafficSplitMethod": { "description": "Traffic split method", "ignoreCase": "all", "enum": [ "pod", "smi" ] }, "percentage": { "type": "string", "description": "Percentage", "ignoreCase": "key" }, "baselineAndCanaryReplicas": { "type": "string", "description": "Baseline and canary replicas", "ignoreCase": "key" }, "manifests": { "type": "string", "description": "Manifests", "ignoreCase": "key" }, "containers": { "type": "string", "description": "Containers", "ignoreCase": "key" }, "imagePullSecrets": { "type": "string", "description": "ImagePullSecrets", "ignoreCase": "key" }, "renderType": { "description": "Render Engine", "ignoreCase": "all", "enum": [ "helm", "kompose", "kustomize" ] }, "dockerComposeFile": { "type": "string", "description": "Path to docker compose file", "ignoreCase": "key" }, "helmChart": { "type": "string", "description": "Helm Chart", "ignoreCase": "key" }, "releaseName": { "type": "string", "description": "Helm Release Name", "ignoreCase": "key" }, "overrideFiles": { "type": "string", "description": "Override Files", "ignoreCase": "key" }, "overrides": { "type": "string", "description": "Overrides", "ignoreCase": "key" }, "kustomizationPath": { "type": "string", "description": "Kustomization Path", "ignoreCase": "key" }, "resourceToPatch": { "description": "Resource to patch", "ignoreCase": "all", "enum": [ "file", "name" ] }, "resourceFileToPatch": { "type": "string", "description": "File path", "ignoreCase": "key" }, "kind": { "description": "Kind", "ignoreCase": "all", "enum": [ "deployment", "replicaset", "statefulset" ] }, "name": { "type": "string", "description": "Name", "ignoreCase": "key" }, "replicas": { "type": "string", "description": "Replica count", "ignoreCase": "key" }, "mergeStrategy": { "description": "Merge Strategy", "ignoreCase": "all", "enum": [ "json", "merge", "strategic" ] }, "arguments": { "type": "string", "description": "Arguments", "ignoreCase": "key" }, "patch": { "type": "string", "description": "Patch", "ignoreCase": "key" }, "secretType": { "description": "Type of secret", "ignoreCase": "all", "enum": [ "dockerRegistry", "generic" ] }, "secretName": { "type": "string", "description": "Secret name", "ignoreCase": "key" }, "secretArguments": { "type": "string", "description": "Arguments", "ignoreCase": "key" }, "dockerRegistryEndpoint": { "type": "string", "description": "Docker registry service connection", "ignoreCase": "key" }, "rolloutStatusTimeout": { "type": "string", "description": "Timeout for rollout status", "ignoreCase": "key" } }, "additionalProperties": false, "required": [] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task" ] }, { "properties": { "task": { "description": "Deploy to Kubernetes\n\nUse Kubernetes manifest files to deploy to clusters or even bake the manifest files to be used for deployments using Helm charts", "ignoreCase": "value", "pattern": "^KubernetesManifest@1$" }, "inputs": { "description": "Deploy to Kubernetes inputs", "properties": { "action": { "description": "Action", "ignoreCase": "all", "enum": [ "bake", "createSecret", "delete", "deploy", "patch", "promote", "scale", "reject" ] }, "connectionType": { "description": "Service connection type", "ignoreCase": "all", "enum": [ "azureResourceManager", "kubernetesServiceConnection" ] }, "kubernetesServiceConnection": { "type": "string", "description": "Kubernetes service connection", "ignoreCase": "key", "aliases": [ "kubernetesServiceEndpoint" ] }, "azureSubscriptionConnection": { "type": "string", "description": "Azure subscription", "ignoreCase": "key", "aliases": [ "azureSubscriptionEndpoint" ] }, "azureResourceGroup": { "type": "string", "description": "Resource group", "ignoreCase": "key" }, "kubernetesCluster": { "type": "string", "description": "Kubernetes cluster", "ignoreCase": "key" }, "namespace": { "type": "string", "description": "Namespace", "ignoreCase": "key" }, "strategy": { "description": "Strategy", "ignoreCase": "all", "enum": [ "canary", "none" ] }, "trafficSplitMethod": { "description": "Traffic split method", "ignoreCase": "all", "enum": [ "pod", "smi" ] }, "percentage": { "type": "string", "description": "Percentage", "ignoreCase": "key" }, "baselineAndCanaryReplicas": { "type": "string", "description": "Baseline and canary replicas", "ignoreCase": "key" }, "manifests": { "type": "string", "description": "Manifests", "ignoreCase": "key" }, "containers": { "type": "string", "description": "Containers", "ignoreCase": "key" }, "imagePullSecrets": { "type": "string", "description": "ImagePullSecrets", "ignoreCase": "key" }, "renderType": { "description": "Render Engine", "ignoreCase": "all", "enum": [ "helm", "kompose", "kustomize" ] }, "dockerComposeFile": { "type": "string", "description": "Path to docker compose file", "ignoreCase": "key" }, "helmChart": { "type": "string", "description": "Helm Chart", "ignoreCase": "key" }, "releaseName": { "type": "string", "description": "Helm Release Name", "ignoreCase": "key" }, "overrideFiles": { "type": "string", "description": "Override Files", "ignoreCase": "key" }, "overrides": { "type": "string", "description": "Overrides", "ignoreCase": "key" }, "kustomizationPath": { "type": "string", "description": "Kustomization Path", "ignoreCase": "key" }, "resourceToPatch": { "description": "Resource to patch", "ignoreCase": "all", "enum": [ "file", "name" ] }, "resourceFileToPatch": { "type": "string", "description": "File path", "ignoreCase": "key" }, "kind": { "description": "Kind", "ignoreCase": "all", "enum": [ "deployment", "replicaset", "statefulset" ] }, "name": { "type": "string", "description": "Name", "ignoreCase": "key" }, "replicas": { "type": "string", "description": "Replica count", "ignoreCase": "key" }, "mergeStrategy": { "description": "Merge Strategy", "ignoreCase": "all", "enum": [ "json", "merge", "strategic" ] }, "arguments": { "type": "string", "description": "Arguments", "ignoreCase": "key" }, "patch": { "type": "string", "description": "Patch", "ignoreCase": "key" }, "secretType": { "description": "Type of secret", "ignoreCase": "all", "enum": [ "dockerRegistry", "generic" ] }, "secretName": { "type": "string", "description": "Secret name", "ignoreCase": "key" }, "secretArguments": { "type": "string", "description": "Arguments", "ignoreCase": "key" }, "dockerRegistryEndpoint": { "type": "string", "description": "Docker registry service connection", "ignoreCase": "key" }, "rolloutStatusTimeout": { "type": "string", "description": "Timeout for rollout status", "ignoreCase": "key" } }, "additionalProperties": false, "required": [] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task" ] }, { "properties": { "task": { "description": "Download build artifacts\n\nDownload files that were saved as artifacts of a completed build", "ignoreCase": "value", "pattern": "^DownloadBuildArtifacts@0$" }, "inputs": { "description": "Download build artifacts inputs", "properties": { "buildType": { "description": "Download artifacts produced by", "ignoreCase": "all", "enum": [ "current", "specific" ] }, "project": { "type": "string", "description": "Project", "ignoreCase": "key" }, "pipeline": { "type": "string", "description": "Build pipeline", "ignoreCase": "key", "aliases": [ "definition" ] }, "specificBuildWithTriggering": { "type": "boolean", "description": "When appropriate, download artifacts from the triggering build.", "ignoreCase": "key" }, "buildVersionToDownload": { "description": "Build version to download", "ignoreCase": "all", "enum": [ "latest", "latestFromBranch", "specific" ] }, "allowPartiallySucceededBuilds": { "type": "boolean", "description": "Download artifacts even from partially succeeded builds.", "ignoreCase": "key" }, "branchName": { "type": "string", "description": "Branch name", "ignoreCase": "key" }, "buildId": { "type": "string", "description": "Build", "ignoreCase": "key" }, "tags": { "type": "string", "description": "Build Tags", "ignoreCase": "key" }, "downloadType": { "description": "Download type", "ignoreCase": "all", "enum": [ "single", "specific" ] }, "artifactName": { "type": "string", "description": "Artifact name", "ignoreCase": "key" }, "itemPattern": { "type": "string", "description": "Matching pattern", "ignoreCase": "key" }, "downloadPath": { "type": "string", "description": "Destination directory", "ignoreCase": "key" }, "cleanDestinationFolder": { "type": "boolean", "description": "Clean destination folder", "ignoreCase": "key" }, "parallelizationLimit": { "type": "string", "description": "Parallelization limit", "ignoreCase": "key" }, "checkDownloadedFiles": { "type": "boolean", "description": "Check downloaded files", "ignoreCase": "key" }, "retryDownloadCount": { "type": "string", "description": "Retry count", "ignoreCase": "key" }, "extractTars": { "type": "boolean", "description": "Extract all files that are stored inside tar archives", "ignoreCase": "key" } }, "additionalProperties": false, "required": [] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task" ] }, { "properties": { "task": { "description": "Download build artifacts\n\nDownload files that were saved as artifacts of a completed build", "ignoreCase": "value", "pattern": "^DownloadBuildArtifacts@1$" }, "inputs": { "description": "Download build artifacts inputs", "properties": { "buildType": { "description": "Download artifacts produced by", "ignoreCase": "all", "enum": [ "current", "specific" ] }, "project": { "type": "string", "description": "Project", "ignoreCase": "key" }, "pipeline": { "type": "string", "description": "Build pipeline", "ignoreCase": "key", "aliases": [ "definition" ] }, "specificBuildWithTriggering": { "type": "boolean", "description": "When appropriate, download artifacts from the triggering build.", "ignoreCase": "key" }, "buildVersionToDownload": { "description": "Build version to download", "ignoreCase": "all", "enum": [ "latest", "latestFromBranch", "specific" ] }, "allowPartiallySucceededBuilds": { "type": "boolean", "description": "Download artifacts even from partially succeeded builds.", "ignoreCase": "key" }, "branchName": { "type": "string", "description": "Branch name", "ignoreCase": "key" }, "buildId": { "type": "string", "description": "Build", "ignoreCase": "key" }, "tags": { "type": "string", "description": "Build Tags", "ignoreCase": "key" }, "downloadType": { "description": "Download type", "ignoreCase": "all", "enum": [ "single", "specific" ] }, "artifactName": { "type": "string", "description": "Artifact name", "ignoreCase": "key" }, "itemPattern": { "type": "string", "description": "Matching pattern", "ignoreCase": "key" }, "downloadPath": { "type": "string", "description": "Destination directory", "ignoreCase": "key" }, "cleanDestinationFolder": { "type": "boolean", "description": "Clean destination folder", "ignoreCase": "key" }, "parallelizationLimit": { "type": "string", "description": "Parallelization limit", "ignoreCase": "key" }, "checkDownloadedFiles": { "type": "boolean", "description": "Check downloaded files", "ignoreCase": "key" }, "retryDownloadCount": { "type": "string", "description": "Retry count", "ignoreCase": "key" }, "extractTars": { "type": "boolean", "description": "Extract all files that are stored inside tar archives", "ignoreCase": "key" } }, "additionalProperties": false, "required": [] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task" ] }, { "properties": { "task": { "description": "CocoaPods\n\nInstall CocoaPods dependencies for Swift and Objective-C Cocoa projects", "ignoreCase": "value", "pattern": "^CocoaPods@0$" }, "inputs": { "description": "CocoaPods inputs", "properties": { "workingDirectory": { "type": "string", "description": "Working directory", "ignoreCase": "key", "aliases": [ "cwd" ] }, "forceRepoUpdate": { "type": "boolean", "description": "Force repo update", "ignoreCase": "key" }, "projectDirectory": { "type": "string", "description": "Project directory", "ignoreCase": "key" } }, "additionalProperties": false, "required": [] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task" ] }, { "properties": { "task": { "description": "Azure Spring Cloud\n\nDeploy applications to Azure Spring Cloud and manage deployments.", "ignoreCase": "value", "pattern": "^AzureSpringCloud@0$" }, "inputs": { "description": "Azure Spring Cloud inputs", "properties": { "azureSubscription": { "type": "string", "description": "Azure subscription", "ignoreCase": "key", "aliases": [ "ConnectedServiceName" ] }, "Action": { "description": "Action", "ignoreCase": "all", "enum": [ "Deploy", "Set Production", "Delete Staging Deployment" ] }, "AzureSpringCloud": { "type": "string", "description": "Azure Spring Cloud Name", "ignoreCase": "key" }, "AppName": { "type": "string", "description": "App", "ignoreCase": "key" }, "DeploymentType": { "description": "Deployment Type", "ignoreCase": "all", "enum": [ "Artifacts", "CustomContainer" ] }, "UseStagingDeployment": { "type": "boolean", "description": "Use Staging Deployment", "ignoreCase": "key" }, "CreateNewDeployment": { "type": "boolean", "description": "Create a new staging deployment if one does not exist.", "ignoreCase": "key" }, "DeploymentName": { "type": "string", "description": "Deployment", "ignoreCase": "key" }, "Package": { "type": "string", "description": "Package or folder", "ignoreCase": "key" }, "Builder": { "type": "string", "description": "Builder", "ignoreCase": "key" }, "RegistryServer": { "type": "string", "description": "Registry Server", "ignoreCase": "key" }, "RegistryUsername": { "type": "string", "description": "Registry Username", "ignoreCase": "key" }, "RegistryPassword": { "type": "string", "description": "Registry Password", "ignoreCase": "key" }, "ImageName": { "type": "string", "description": "Image Name and Tag", "ignoreCase": "key" }, "ImageCommand": { "type": "string", "description": "Image Command", "ignoreCase": "key" }, "ImageArgs": { "type": "string", "description": "Image Arguments", "ignoreCase": "key" }, "ImageLanguageFramework": { "description": "Language Framework", "ignoreCase": "all", "enum": [ "springboot", "" ] }, "EnvironmentVariables": { "type": "string", "description": "Environment Variables", "ignoreCase": "key" }, "JvmOptions": { "type": "string", "description": "JVM Options", "ignoreCase": "key" }, "RuntimeVersion": { "description": "Runtime Version", "ignoreCase": "all", "enum": [ "Java_8", "Java_11", "NetCore_31" ] }, "DotNetCoreMainEntryPath": { "type": "string", "description": "Main Entry Path", "ignoreCase": "key" }, "Version": { "type": "string", "description": "Version", "ignoreCase": "key" } }, "additionalProperties": false, "required": [ "azureSubscription", "AzureSpringCloud", "AppName" ] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task", "inputs" ] }, { "properties": { "task": { "description": "Azure Web App\n\nDeploy an Azure Web App for Linux or Windows", "ignoreCase": "value", "pattern": "^AzureWebApp@1$" }, "inputs": { "description": "Azure Web App inputs", "properties": { "azureSubscription": { "type": "string", "description": "Azure subscription", "ignoreCase": "key" }, "appType": { "description": "App type", "ignoreCase": "all", "enum": [ "webApp", "webAppLinux" ] }, "appName": { "type": "string", "description": "App name", "ignoreCase": "key" }, "deployToSlotOrASE": { "type": "boolean", "description": "Deploy to Slot or App Service Environment", "ignoreCase": "key" }, "resourceGroupName": { "type": "string", "description": "Resource group", "ignoreCase": "key" }, "slotName": { "type": "string", "description": "Slot", "ignoreCase": "key" }, "package": { "type": "string", "description": "Package or folder", "ignoreCase": "key" }, "customDeployFolder": { "type": "string", "description": "Custom Deploy Folder", "ignoreCase": "key" }, "runtimeStack": { "type": "string", "description": "Runtime stack", "ignoreCase": "key" }, "startUpCommand": { "type": "string", "description": "Startup command ", "ignoreCase": "key" }, "customWebConfig": { "type": "string", "description": "Generate web.config parameters for Python, Node.js, Go and Java apps", "ignoreCase": "key" }, "appSettings": { "type": "string", "description": "App settings", "ignoreCase": "key" }, "configurationStrings": { "type": "string", "description": "Configuration settings", "ignoreCase": "key" }, "deploymentMethod": { "description": "Deployment method", "ignoreCase": "all", "enum": [ "auto", "zipDeploy", "runFromPackage" ] } }, "additionalProperties": false, "required": [ "azureSubscription", "appType", "appName" ] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task", "inputs" ] }, { "properties": { "task": { "description": "Azure CLI\n\nRun Azure CLI commands against an Azure subscription in a Shell script when running on Linux agent or Batch script when running on Windows agent.", "ignoreCase": "value", "pattern": "^AzureCLI@1$" }, "inputs": { "description": "Azure CLI inputs", "properties": { "azureSubscription": { "type": "string", "description": "Azure subscription", "ignoreCase": "key", "aliases": [ "connectedServiceNameARM" ] }, "scriptLocation": { "description": "Script Location", "ignoreCase": "all", "enum": [ "inlineScript", "scriptPath" ] }, "scriptPath": { "type": "string", "description": "Script Path", "ignoreCase": "key" }, "inlineScript": { "type": "string", "description": "Inline Script", "ignoreCase": "key" }, "arguments": { "type": "string", "description": "Arguments", "ignoreCase": "key", "aliases": [ "args" ] }, "addSpnToEnvironment": { "type": "boolean", "description": "Access service principal details in script", "ignoreCase": "key" }, "useGlobalConfig": { "type": "boolean", "description": "Use global Azure CLI configuration", "ignoreCase": "key" }, "workingDirectory": { "type": "string", "description": "Working Directory", "ignoreCase": "key", "aliases": [ "cwd" ] }, "failOnStandardError": { "type": "boolean", "description": "Fail on Standard Error", "ignoreCase": "key" } }, "additionalProperties": false, "required": [ "azureSubscription" ] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task", "inputs" ] }, { "properties": { "task": { "description": "Azure CLI Preview\n\nRun a Shell or Batch script with Azure CLI commands against an azure subscription", "ignoreCase": "value", "pattern": "^AzureCLI@0$" }, "inputs": { "description": "Azure CLI Preview inputs", "properties": { "connectedServiceNameSelector": { "description": "Azure Connection Type", "ignoreCase": "all", "enum": [ "connectedServiceName", "connectedServiceNameARM" ] }, "connectedServiceNameARM": { "type": "string", "description": "AzureRM Subscription", "ignoreCase": "key" }, "connectedServiceName": { "type": "string", "description": "Azure Classic Subscription", "ignoreCase": "key" }, "scriptLocation": { "description": "Script Location", "ignoreCase": "all", "enum": [ "inlineScript", "scriptPath" ] }, "scriptPath": { "type": "string", "description": "Script Path", "ignoreCase": "key" }, "inlineScript": { "type": "string", "description": "Inline Script", "ignoreCase": "key" }, "args": { "type": "string", "description": "Arguments", "ignoreCase": "key" }, "cwd": { "type": "string", "description": "Working Directory", "ignoreCase": "key" }, "failOnStandardError": { "type": "boolean", "description": "Fail on Standard Error", "ignoreCase": "key" } }, "additionalProperties": false, "required": [] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task" ] }, { "properties": { "task": { "description": "Azure CLI\n\nRun Azure CLI commands against an Azure subscription in a PowerShell Core/Shell script when running on Linux agent or PowerShell/PowerShell Core/Batch script when running on Windows agent.", "ignoreCase": "value", "pattern": "^AzureCLI@2$" }, "inputs": { "description": "Azure CLI inputs", "properties": { "azureSubscription": { "type": "string", "description": "Azure Resource Manager connection", "ignoreCase": "key", "aliases": [ "connectedServiceNameARM" ] }, "scriptType": { "description": "Script Type", "ignoreCase": "all", "enum": [ "ps", "pscore", "batch", "bash" ] }, "scriptLocation": { "description": "Script Location", "ignoreCase": "all", "enum": [ "inlineScript", "scriptPath" ] }, "scriptPath": { "type": "string", "description": "Script Path", "ignoreCase": "key" }, "inlineScript": { "type": "string", "description": "Inline Script", "ignoreCase": "key" }, "arguments": { "type": "string", "description": "Script Arguments", "ignoreCase": "key", "aliases": [ "scriptArguments" ] }, "powerShellErrorActionPreference": { "description": "ErrorActionPreference", "ignoreCase": "all", "enum": [ "stop", "continue", "silentlyContinue" ] }, "addSpnToEnvironment": { "type": "boolean", "description": "Access service principal details in script", "ignoreCase": "key" }, "useGlobalConfig": { "type": "boolean", "description": "Use global Azure CLI configuration", "ignoreCase": "key" }, "workingDirectory": { "type": "string", "description": "Working Directory", "ignoreCase": "key", "aliases": [ "cwd" ] }, "failOnStandardError": { "type": "boolean", "description": "Fail on Standard Error", "ignoreCase": "key" }, "powerShellIgnoreLASTEXITCODE": { "type": "boolean", "description": "Ignore $LASTEXITCODE", "ignoreCase": "key" } }, "additionalProperties": false, "required": [ "azureSubscription", "scriptType" ] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task", "inputs" ] }, { "properties": { "task": { "description": "GitHub Release\n\nCreate, edit, or delete a GitHub release", "ignoreCase": "value", "pattern": "^GitHubRelease@1$" }, "inputs": { "description": "GitHub Release inputs", "properties": { "gitHubConnection": { "type": "string", "description": "GitHub connection (OAuth or PAT)", "ignoreCase": "key" }, "repositoryName": { "type": "string", "description": "Repository", "ignoreCase": "key" }, "action": { "description": "Action", "ignoreCase": "all", "enum": [ "create", "edit", "delete" ] }, "target": { "type": "string", "description": "Target", "ignoreCase": "key" }, "tagSource": { "description": "Tag source", "ignoreCase": "all", "enum": [ "gitTag", "userSpecifiedTag" ] }, "tagPattern": { "type": "string", "description": "Tag Pattern", "ignoreCase": "key" }, "tag": { "type": "string", "description": "Tag", "ignoreCase": "key" }, "title": { "type": "string", "description": "Release title", "ignoreCase": "key" }, "releaseNotesSource": { "description": "Release notes source", "ignoreCase": "all", "enum": [ "filePath", "inline" ] }, "releaseNotesFilePath": { "type": "string", "description": "Release notes file path", "ignoreCase": "key" }, "releaseNotesInline": { "type": "string", "description": "Release notes", "ignoreCase": "key" }, "assets": { "type": "string", "description": "Assets", "ignoreCase": "key" }, "assetUploadMode": { "description": "Asset upload mode", "ignoreCase": "all", "enum": [ "delete", "replace" ] }, "isDraft": { "type": "boolean", "description": "Draft release", "ignoreCase": "key" }, "isPreRelease": { "type": "boolean", "description": "Pre-release", "ignoreCase": "key" }, "addChangeLog": { "type": "boolean", "description": "Add changelog", "ignoreCase": "key" }, "changeLogCompareToRelease": { "description": "Compare to", "ignoreCase": "all", "enum": [ "lastFullRelease", "lastNonDraftRelease", "lastNonDraftReleaseByTag" ] }, "changeLogCompareToReleaseTag": { "type": "string", "description": "Release Tag", "ignoreCase": "key" }, "changeLogType": { "description": "Changelog type", "ignoreCase": "all", "enum": [ "commitBased", "issueBased" ] }, "changeLogLabels": { "type": "string", "description": "Categories", "ignoreCase": "key" } }, "additionalProperties": false, "required": [ "gitHubConnection" ] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task", "inputs" ] }, { "properties": { "task": { "description": "GitHub Release\n\nCreate, edit, or delete a GitHub release", "ignoreCase": "value", "pattern": "^GitHubRelease@0$" }, "inputs": { "description": "GitHub Release inputs", "properties": { "gitHubConnection": { "type": "string", "description": "GitHub connection (OAuth or PAT)", "ignoreCase": "key" }, "repositoryName": { "type": "string", "description": "Repository", "ignoreCase": "key" }, "action": { "description": "Action", "ignoreCase": "all", "enum": [ "create", "edit", "delete" ] }, "target": { "type": "string", "description": "Target", "ignoreCase": "key" }, "tagSource": { "description": "Tag source", "ignoreCase": "all", "enum": [ "auto", "manual" ] }, "tagPattern": { "type": "string", "description": "Tag Pattern", "ignoreCase": "key" }, "tag": { "type": "string", "description": "Tag", "ignoreCase": "key" }, "title": { "type": "string", "description": "Release title", "ignoreCase": "key" }, "releaseNotesSource": { "description": "Release notes source", "ignoreCase": "all", "enum": [ "file", "input" ] }, "releaseNotesFile": { "type": "string", "description": "Release notes file path", "ignoreCase": "key" }, "releaseNotes": { "type": "string", "description": "Release notes", "ignoreCase": "key" }, "assets": { "type": "string", "description": "Assets", "ignoreCase": "key" }, "assetUploadMode": { "description": "Asset upload mode", "ignoreCase": "all", "enum": [ "delete", "replace" ] }, "isDraft": { "type": "boolean", "description": "Draft release", "ignoreCase": "key" }, "isPreRelease": { "type": "boolean", "description": "Pre-release", "ignoreCase": "key" }, "addChangeLog": { "type": "boolean", "description": "Add changelog", "ignoreCase": "key" }, "changeLogCompareToRelease": { "description": "Compare to", "ignoreCase": "all", "enum": [ "lastFullRelease", "lastNonDraftRelease", "lastNonDraftReleaseByTag" ] }, "changeLogCompareToReleaseTag": { "type": "string", "description": "Release Tag", "ignoreCase": "key" }, "changeLogType": { "description": "Changelog type", "ignoreCase": "all", "enum": [ "commitBased", "issueBased" ] }, "changeLogLabels": { "type": "string", "description": "Categories", "ignoreCase": "key" } }, "additionalProperties": false, "required": [ "gitHubConnection" ] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task", "inputs" ] }, { "properties": { "task": { "description": "cURL Upload Files\n\nUse cURL to upload files with FTP, FTPS, SFTP, HTTP, and more.", "ignoreCase": "value", "pattern": "^cURLUploader@1$" }, "inputs": { "description": "cURL Upload Files inputs", "properties": { "files": { "type": "string", "description": "Files", "ignoreCase": "key" }, "username": { "type": "string", "description": "Username", "ignoreCase": "key" }, "password": { "type": "string", "description": "Password", "ignoreCase": "key" }, "url": { "type": "string", "description": "URL", "ignoreCase": "key" }, "options": { "type": "string", "description": "Optional Arguments", "ignoreCase": "key" }, "redirectStderr": { "type": "boolean", "description": "Redirect Standard Error to Standard Out", "ignoreCase": "key" } }, "additionalProperties": false, "required": [ "files", "url" ] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task", "inputs" ] }, { "properties": { "task": { "description": "cURL upload files\n\nUse cURL's supported protocols to upload files", "ignoreCase": "value", "pattern": "^cURLUploader@2$" }, "inputs": { "description": "cURL upload files inputs", "properties": { "files": { "type": "string", "description": "Files", "ignoreCase": "key" }, "authType": { "description": "Authentication Method", "ignoreCase": "all", "enum": [ "ServiceEndpoint", "UserAndPass" ] }, "serviceEndpoint": { "type": "string", "description": "Service Connection", "ignoreCase": "key" }, "username": { "type": "string", "description": "Username", "ignoreCase": "key" }, "password": { "type": "string", "description": "Password", "ignoreCase": "key" }, "url": { "type": "string", "description": "URL", "ignoreCase": "key" }, "remotePath": { "type": "string", "description": "Remote Directory", "ignoreCase": "key" }, "options": { "type": "string", "description": "Optional Arguments", "ignoreCase": "key" }, "redirectStderr": { "type": "boolean", "description": "Redirect Standard Error to Standard Out", "ignoreCase": "key" } }, "additionalProperties": false, "required": [ "files" ] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task", "inputs" ] }, { "properties": { "task": { "description": "Azure App Service Settings\n\nUpdate/Add App settings an Azure Web App for Linux or Windows", "ignoreCase": "value", "pattern": "^AzureAppServiceSettings@1$" }, "inputs": { "description": "Azure App Service Settings inputs", "properties": { "azureSubscription": { "type": "string", "description": "Azure subscription", "ignoreCase": "key", "aliases": [ "ConnectedServiceName" ] }, "appName": { "type": "string", "description": "App Service name", "ignoreCase": "key" }, "resourceGroupName": { "type": "string", "description": "Resource group", "ignoreCase": "key" }, "slotName": { "type": "string", "description": "Slot", "ignoreCase": "key" }, "appSettings": { "type": "string", "description": "App settings", "ignoreCase": "key" }, "generalSettings": { "type": "string", "description": "General settings", "ignoreCase": "key" }, "connectionStrings": { "type": "string", "description": "Connection Strings", "ignoreCase": "key" } }, "additionalProperties": false, "required": [ "azureSubscription", "appName", "resourceGroupName" ] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task", "inputs" ] }, { "properties": { "task": { "description": "Universal packages\n\nDownload or publish Universal Packages", "ignoreCase": "value", "pattern": "^UniversalPackages@0$" }, "inputs": { "description": "Universal packages inputs", "properties": { "command": { "description": "Command", "ignoreCase": "all", "enum": [ "download", "publish" ] }, "downloadDirectory": { "type": "string", "description": "Destination directory", "ignoreCase": "key", "aliases": [ "downloadDirectory" ] }, "feedsToUse": { "description": "Feed location", "ignoreCase": "all", "enum": [ "internal", "external" ], "aliases": [ "internalOrExternalDownload" ] }, "externalFeedCredentials": { "type": "string", "description": "organization/collection connection", "ignoreCase": "key", "aliases": [ "externalEndpoint" ] }, "vstsFeed": { "type": "string", "description": "Feed", "ignoreCase": "key", "aliases": [ "feedListDownload" ] }, "vstsFeedPackage": { "type": "string", "description": "Package name", "ignoreCase": "key", "aliases": [ "packageListDownload" ] }, "vstsPackageVersion": { "type": "string", "description": "Version", "ignoreCase": "key", "aliases": [ "versionListDownload" ] }, "feedDownloadExternal": { "type": "string", "description": "Feed (or Project/Feed if the feed was created in a project)", "ignoreCase": "key" }, "packageDownloadExternal": { "type": "string", "description": "Package name", "ignoreCase": "key" }, "versionDownloadExternal": { "type": "string", "description": "Version", "ignoreCase": "key" }, "publishDirectory": { "type": "string", "description": "Path to file(s) to publish", "ignoreCase": "key", "aliases": [ "publishDirectory" ] }, "feedsToUsePublish": { "description": "Feed location", "ignoreCase": "all", "enum": [ "internal", "external" ], "aliases": [ "internalOrExternalPublish" ] }, "publishFeedCredentials": { "type": "string", "description": "organization/collection connection", "ignoreCase": "key", "aliases": [ "externalEndpoints" ] }, "vstsFeedPublish": { "type": "string", "description": "Destination Feed", "ignoreCase": "key", "aliases": [ "feedListPublish" ] }, "publishPackageMetadata": { "type": "boolean", "description": "Publish pipeline metadata", "ignoreCase": "key" }, "vstsFeedPackagePublish": { "type": "string", "description": "Package name", "ignoreCase": "key", "aliases": [ "packageListPublish" ] }, "feedPublishExternal": { "type": "string", "description": "Feed (or Project/Feed if the feed was created in a project)", "ignoreCase": "key" }, "packagePublishExternal": { "type": "string", "description": "Package name", "ignoreCase": "key" }, "versionOption": { "description": "Version", "ignoreCase": "all", "enum": [ "major", "minor", "patch", "custom" ], "aliases": [ "versionPublishSelector" ] }, "versionPublish": { "type": "string", "description": "Custom version", "ignoreCase": "key" }, "packagePublishDescription": { "type": "string", "description": "Description", "ignoreCase": "key" }, "verbosity": { "description": "Verbosity", "ignoreCase": "all", "enum": [ "None", "Trace", "Debug", "Information", "Warning", "Error", "Critical" ] }, "publishedPackageVar": { "type": "string", "description": "Package Output Variable", "ignoreCase": "key" } }, "additionalProperties": false, "required": [] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task" ] }, { "properties": { "task": { "description": "Check Azure Policy compliance\n\nSecurity and compliance assessment for Azure Policy", "ignoreCase": "value", "pattern": "^AzurePolicyCheckGate@0$" }, "inputs": { "description": "Check Azure Policy compliance inputs", "properties": { "azureSubscription": { "type": "string", "description": "Azure subscription", "ignoreCase": "key", "aliases": [ "ConnectedServiceName" ] }, "ResourceGroupName": { "type": "string", "description": "Resource group", "ignoreCase": "key" }, "Resources": { "type": "string", "description": "Resource name", "ignoreCase": "key" } }, "additionalProperties": false, "required": [ "azureSubscription" ] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task", "inputs" ] }, { "properties": { "task": { "description": "Azure Function on Kubernetes\n\nDeploy Azure function to Kubernetes cluster.", "ignoreCase": "value", "pattern": "^AzureFunctionOnKubernetes@0$" }, "inputs": { "description": "Azure Function on Kubernetes inputs", "properties": { "dockerRegistryServiceConnection": { "type": "string", "description": "Docker registry service connection", "ignoreCase": "key" }, "kubernetesServiceConnection": { "type": "string", "description": "Kubernetes service connection", "ignoreCase": "key" }, "namespace": { "type": "string", "description": "Kubernetes namespace", "ignoreCase": "key" }, "secretName": { "type": "string", "description": "Secret Name", "ignoreCase": "key" }, "dockerHubNamespace": { "type": "string", "description": "Docker Hub namespace", "ignoreCase": "key" }, "appName": { "type": "string", "description": "Application Name", "ignoreCase": "key" }, "functionRootDirectory": { "type": "string", "description": "Function root directory", "ignoreCase": "key" }, "waitForStability": { "type": "boolean", "description": "Wait for stability", "ignoreCase": "key" }, "arguments": { "type": "string", "description": "Arguments", "ignoreCase": "key" } }, "additionalProperties": false, "required": [ "dockerRegistryServiceConnection", "kubernetesServiceConnection", "appName" ] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task", "inputs" ] }, { "properties": { "task": { "description": "Azure Function on Kubernetes\n\nDeploy Azure function to Kubernetes cluster.", "ignoreCase": "value", "pattern": "^AzureFunctionOnKubernetes@1$" }, "inputs": { "description": "Azure Function on Kubernetes inputs", "properties": { "connectionType": { "description": "Service connection type", "ignoreCase": "all", "enum": [ "Azure Resource Manager", "Kubernetes Service Connection" ] }, "dockerRegistryServiceConnection": { "type": "string", "description": "Docker registry service connection", "ignoreCase": "key" }, "kubernetesServiceConnection": { "type": "string", "description": "Kubernetes service connection", "ignoreCase": "key", "aliases": [ "kubernetesServiceEndpoint" ] }, "azureSubscriptionConnection": { "type": "string", "description": "Azure subscription", "ignoreCase": "key", "aliases": [ "azureSubscriptionEndpoint" ] }, "azureResourceGroup": { "type": "string", "description": "Resource group", "ignoreCase": "key" }, "kubernetesCluster": { "type": "string", "description": "Kubernetes cluster", "ignoreCase": "key" }, "namespace": { "type": "string", "description": "Kubernetes namespace", "ignoreCase": "key" }, "secretName": { "type": "string", "description": "Secret Name", "ignoreCase": "key" }, "dockerHubNamespace": { "type": "string", "description": "Docker Hub namespace", "ignoreCase": "key" }, "appName": { "type": "string", "description": "Application Name", "ignoreCase": "key" }, "functionRootDirectory": { "type": "string", "description": "Function root directory", "ignoreCase": "key" }, "waitForStability": { "type": "boolean", "description": "Wait for stability", "ignoreCase": "key" }, "arguments": { "type": "string", "description": "Arguments", "ignoreCase": "key" } }, "additionalProperties": false, "required": [ "dockerRegistryServiceConnection", "appName" ] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task", "inputs" ] }, { "properties": { "task": { "description": "Bash\n\nRun a Bash script on macOS, Linux, or Windows", "ignoreCase": "value", "pattern": "^Bash@3$" }, "inputs": { "description": "Bash inputs", "properties": { "targetType": { "description": "Type", "ignoreCase": "all", "enum": [ "filePath", "inline" ] }, "filePath": { "type": "string", "description": "Script Path", "ignoreCase": "key" }, "arguments": { "type": "string", "description": "Arguments", "ignoreCase": "key" }, "script": { "type": "string", "description": "Script", "ignoreCase": "key" }, "workingDirectory": { "type": "string", "description": "Working Directory", "ignoreCase": "key" }, "failOnStderr": { "type": "boolean", "description": "Fail on Standard Error", "ignoreCase": "key" }, "bashEnvValue": { "type": "string", "description": "Set value for BASH_ENV environment variable", "ignoreCase": "key" } }, "additionalProperties": false, "required": [] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task" ] }, { "properties": { "task": { "description": "Shell script\n\nRun a shell script using Bash", "ignoreCase": "value", "pattern": "^ShellScript@2$" }, "inputs": { "description": "Shell script inputs", "properties": { "scriptPath": { "type": "string", "description": "Script Path", "ignoreCase": "key" }, "args": { "type": "string", "description": "Arguments", "ignoreCase": "key" }, "disableAutoCwd": { "type": "boolean", "description": "Specify Working Directory", "ignoreCase": "key" }, "cwd": { "type": "string", "description": "Working Directory", "ignoreCase": "key" }, "failOnStandardError": { "type": "boolean", "description": "Fail on Standard Error", "ignoreCase": "key" } }, "additionalProperties": false, "required": [ "scriptPath" ] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task", "inputs" ] }, { "properties": { "task": { "description": "Publish build artifacts\n\nPublish build artifacts to Azure Pipelines or a Windows file share", "ignoreCase": "value", "pattern": "^PublishBuildArtifacts@1$" }, "inputs": { "description": "Publish build artifacts inputs", "properties": { "PathtoPublish": { "type": "string", "description": "Path to publish", "ignoreCase": "key" }, "ArtifactName": { "type": "string", "description": "Artifact name", "ignoreCase": "key" }, "publishLocation": { "description": "Artifact publish location", "ignoreCase": "all", "enum": [ "Container", "FilePath" ], "aliases": [ "ArtifactType" ] }, "TargetPath": { "type": "string", "description": "File share path", "ignoreCase": "key" }, "Parallel": { "type": "boolean", "description": "Parallel copy", "ignoreCase": "key" }, "ParallelCount": { "type": "integer", "description": "Parallel count", "ignoreCase": "key" }, "FileCopyOptions": { "type": "string", "description": "File copy options", "ignoreCase": "key" }, "StoreAsTar": { "type": "boolean", "description": "Tar the artifact before uploading", "ignoreCase": "key" } }, "additionalProperties": false, "required": [] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task" ] }, { "properties": { "task": { "description": "Install SSH key\n\nInstall an SSH key prior to a build or deployment", "ignoreCase": "value", "pattern": "^InstallSSHKey@0$" }, "inputs": { "description": "Install SSH key inputs", "properties": { "knownHostsEntry": { "type": "string", "description": "Known Hosts Entry", "ignoreCase": "key", "aliases": [ "hostName" ] }, "sshPublicKey": { "type": "string", "description": "SSH Public Key", "ignoreCase": "key" }, "sshPassphrase": { "type": "string", "description": "SSH Passphrase", "ignoreCase": "key" }, "sshKeySecureFile": { "type": "string", "description": "SSH Key", "ignoreCase": "key" }, "addEntryToConfig": { "type": "boolean", "description": "Add entry to SSH config", "ignoreCase": "key" }, "configHostAlias": { "type": "string", "description": "Alias", "ignoreCase": "key" }, "configHostname": { "type": "string", "description": "Host name", "ignoreCase": "key" }, "configUser": { "type": "string", "description": "User", "ignoreCase": "key" }, "configPort": { "type": "string", "description": "Port", "ignoreCase": "key" } }, "additionalProperties": false, "required": [ "knownHostsEntry", "sshKeySecureFile" ] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task", "inputs" ] }, { "properties": { "task": { "description": "Azure VM scale set deployment\n\nDeploy a virtual machine scale set image", "ignoreCase": "value", "pattern": "^AzureVmssDeployment@0$" }, "inputs": { "description": "Azure VM scale set deployment inputs", "properties": { "azureSubscription": { "type": "string", "description": "Azure subscription", "ignoreCase": "key", "aliases": [ "ConnectedServiceName" ] }, "action": { "description": "Action", "ignoreCase": "all", "enum": [ "Update image", "Configure application startup" ] }, "vmssName": { "type": "string", "description": "Virtual Machine scale set name", "ignoreCase": "key" }, "vmssOsType": { "description": "OS type", "ignoreCase": "all", "enum": [ "Windows", "Linux" ] }, "imageUrl": { "type": "string", "description": "Image URL", "ignoreCase": "key" }, "customScriptsDirectory": { "type": "string", "description": "Custom script directory", "ignoreCase": "key" }, "customScript": { "type": "string", "description": "Command", "ignoreCase": "key" }, "customScriptArguments": { "type": "string", "description": "Arguments", "ignoreCase": "key" }, "customScriptsStorageAccount": { "type": "string", "description": "Azure storage account where custom scripts will be uploaded", "ignoreCase": "key" }, "skipArchivingCustomScripts": { "type": "boolean", "description": "Skip Archiving custom scripts", "ignoreCase": "key" } }, "additionalProperties": false, "required": [ "azureSubscription", "vmssName", "vmssOsType", "imageUrl" ] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task", "inputs" ] }, { "properties": { "task": { "description": "Azure App Service: Classic (Deprecated)\n\nCreate or update Azure App Service using Azure PowerShell", "ignoreCase": "value", "pattern": "^AzureWebPowerShellDeployment@1$" }, "inputs": { "description": "Azure App Service: Classic (Deprecated) inputs", "properties": { "ConnectedServiceName": { "type": "string", "description": "Azure Subscription (Classic)", "ignoreCase": "key" }, "WebSiteLocation": { "type": "string", "description": "Web App Location", "ignoreCase": "key" }, "WebSiteName": { "type": "string", "description": "Web App Name", "ignoreCase": "key" }, "Slot": { "type": "string", "description": "Slot", "ignoreCase": "key" }, "Package": { "type": "string", "description": "Web Deploy Package", "ignoreCase": "key" }, "doNotDelete": { "type": "boolean", "description": "Set DoNotDelete flag", "ignoreCase": "key" }, "AdditionalArguments": { "type": "string", "description": "Additional Arguments", "ignoreCase": "key" } }, "additionalProperties": false, "required": [ "ConnectedServiceName", "WebSiteLocation", "WebSiteName", "Package" ] } }, "deprecationMessage": "AzureWebPowerShellDeployment is deprecated - Create or update Azure App Service using Azure PowerShell", "doNotSuggest": true, "firstProperty": [ "task" ], "required": [ "task", "inputs" ] }, { "properties": { "task": { "description": "Azure Cloud Service deployment\n\nDeploy an Azure Cloud Service", "ignoreCase": "value", "pattern": "^AzureCloudPowerShellDeployment@1$" }, "inputs": { "description": "Azure Cloud Service deployment inputs", "properties": { "azureClassicSubscription": { "type": "string", "description": "Azure subscription (Classic)", "ignoreCase": "key", "aliases": [ "ConnectedServiceName" ] }, "EnableAdvancedStorageOptions": { "type": "boolean", "description": "Enable ARM storage support", "ignoreCase": "key" }, "StorageAccount": { "type": "string", "description": "Storage account (Classic)", "ignoreCase": "key" }, "ARMConnectedServiceName": { "type": "string", "description": "Azure subscription (ARM)", "ignoreCase": "key" }, "ARMStorageAccount": { "type": "string", "description": "Storage account (ARM)", "ignoreCase": "key" }, "ServiceName": { "type": "string", "description": "Service name", "ignoreCase": "key" }, "ServiceLocation": { "type": "string", "description": "Service location", "ignoreCase": "key" }, "CsPkg": { "type": "string", "description": "CsPkg", "ignoreCase": "key" }, "CsCfg": { "type": "string", "description": "CsCfg", "ignoreCase": "key" }, "slotName": { "type": "string", "description": "Environment (Slot)", "ignoreCase": "key", "aliases": [ "Slot" ] }, "DeploymentLabel": { "type": "string", "description": "Deployment label", "ignoreCase": "key" }, "AppendDateTimeToLabel": { "type": "boolean", "description": "Append current date and time", "ignoreCase": "key" }, "AllowUpgrade": { "type": "boolean", "description": "Allow upgrade", "ignoreCase": "key" }, "SimultaneousUpgrade": { "type": "boolean", "description": "Simultaneous upgrade", "ignoreCase": "key" }, "ForceUpgrade": { "type": "boolean", "description": "Force upgrade", "ignoreCase": "key" }, "VerifyRoleInstanceStatus": { "type": "boolean", "description": "Verify role instance status", "ignoreCase": "key" }, "DiagnosticStorageAccountKeys": { "type": "string", "description": "Diagnostic storage account keys", "ignoreCase": "key" }, "NewServiceCustomCertificates": { "type": "string", "description": "Custom certificates to import", "ignoreCase": "key" }, "NewServiceAdditionalArguments": { "type": "string", "description": "Additional arguments", "ignoreCase": "key" }, "NewServiceAffinityGroup": { "type": "string", "description": "Affinity group", "ignoreCase": "key" } }, "additionalProperties": false, "required": [ "azureClassicSubscription", "ServiceName", "ServiceLocation", "CsPkg", "CsCfg" ] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task", "inputs" ] }, { "properties": { "task": { "description": "Cargo authenticate (for task runners)\n\nAuthentication task for the cargo client used for installing Cargo crates distribution", "ignoreCase": "value", "pattern": "^CargoAuthenticate@0$" }, "inputs": { "description": "Cargo authenticate (for task runners) inputs", "properties": { "configFile": { "type": "string", "description": "config.toml file to authenticate", "ignoreCase": "key" }, "cargoServiceConnections": { "type": "string", "description": "Credentials for registries outside this organization/collection", "ignoreCase": "key" } }, "additionalProperties": false, "required": [ "configFile" ] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task", "inputs" ] }, { "properties": { "task": { "description": "Delete files\n\nDelete folders, or files matching a pattern", "ignoreCase": "value", "pattern": "^DeleteFiles@1$" }, "inputs": { "description": "Delete files inputs", "properties": { "SourceFolder": { "type": "string", "description": "Source Folder", "ignoreCase": "key" }, "Contents": { "type": "string", "description": "Contents", "ignoreCase": "key" }, "RemoveSourceFolder": { "type": "boolean", "description": "Remove SourceFolder", "ignoreCase": "key" }, "RemoveDotFiles": { "type": "boolean", "description": "Remove files starting with a dot", "ignoreCase": "key" } }, "additionalProperties": false, "required": [] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task" ] }, { "properties": { "task": { "description": "gulp\n\nRun the gulp Node.js streaming task-based build system", "ignoreCase": "value", "pattern": "^gulp@0$" }, "inputs": { "description": "gulp inputs", "properties": { "gulpFile": { "type": "string", "description": "gulp File Path", "ignoreCase": "key" }, "targets": { "type": "string", "description": "gulp Task(s)", "ignoreCase": "key" }, "arguments": { "type": "string", "description": "Arguments", "ignoreCase": "key" }, "workingDirectory": { "type": "string", "description": "Working Directory", "ignoreCase": "key", "aliases": [ "cwd" ] }, "gulpjs": { "type": "string", "description": "gulp.js location", "ignoreCase": "key" }, "publishJUnitResults": { "type": "boolean", "description": "Publish to Azure Pipelines", "ignoreCase": "key" }, "testResultsFiles": { "type": "string", "description": "Test Results Files", "ignoreCase": "key" }, "testRunTitle": { "type": "string", "description": "Test Run Title", "ignoreCase": "key" }, "enableCodeCoverage": { "type": "boolean", "description": "Enable code Coverage", "ignoreCase": "key" }, "testFramework": { "description": "Test Framework", "ignoreCase": "all", "enum": [ "Mocha", "Jasmine" ] }, "srcFiles": { "type": "string", "description": "Source Files", "ignoreCase": "key" }, "testFiles": { "type": "string", "description": "Test Script Files", "ignoreCase": "key" } }, "additionalProperties": false, "required": [] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task" ] }, { "properties": { "task": { "description": "gulp\n\nRun the gulp Node.js streaming task-based build system", "ignoreCase": "value", "pattern": "^gulp@1$" }, "inputs": { "description": "gulp inputs", "properties": { "gulpFile": { "type": "string", "description": "gulp File Path", "ignoreCase": "key" }, "targets": { "type": "string", "description": "gulp Task(s)", "ignoreCase": "key" }, "arguments": { "type": "string", "description": "Arguments", "ignoreCase": "key" }, "workingDirectory": { "type": "string", "description": "Working Directory", "ignoreCase": "key", "aliases": [ "cwd" ] }, "gulpjs": { "type": "string", "description": "gulp.js location", "ignoreCase": "key" }, "publishJUnitResults": { "type": "boolean", "description": "Publish to Azure Pipelines", "ignoreCase": "key" }, "testResultsFiles": { "type": "string", "description": "Test Results Files", "ignoreCase": "key" }, "testRunTitle": { "type": "string", "description": "Test Run Title", "ignoreCase": "key" }, "enableCodeCoverage": { "type": "boolean", "description": "Enable code Coverage", "ignoreCase": "key" }, "testFramework": { "description": "Test Framework", "ignoreCase": "all", "enum": [ "Mocha", "Jasmine" ] }, "srcFiles": { "type": "string", "description": "Source Files", "ignoreCase": "key" }, "testFiles": { "type": "string", "description": "Test Script Files", "ignoreCase": "key" } }, "additionalProperties": false, "required": [] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task" ] }, { "properties": { "task": { "description": "Cloud-based web performance test\n\nRun a quick web performance test in the cloud with Azure Pipelines", "ignoreCase": "value", "pattern": "^QuickPerfTest@1$" }, "inputs": { "description": "Cloud-based web performance test inputs", "properties": { "connectedServiceName": { "type": "string", "description": "Azure Pipelines Connection", "ignoreCase": "key" }, "websiteUrl": { "type": "string", "description": "Website URL", "ignoreCase": "key" }, "testName": { "type": "string", "description": "Test Name", "ignoreCase": "key" }, "vuLoad": { "description": "User Load", "ignoreCase": "all", "enum": [ "25", "50", "100", "250" ] }, "runDuration": { "description": "Run Duration (sec)", "ignoreCase": "all", "enum": [ "60", "120", "180", "240", "300" ] }, "geoLocation": { "description": "Load Location", "ignoreCase": "all", "enum": [ "Default", "Australia East", "Australia Southeast", "Brazil South", "Central India", "Central US", "East Asia", "East US 2", "East US", "Japan East", "Japan West", "North Central US", "North Europe", "South Central US", "South India", "Southeast Asia", "West Europe", "West US" ] }, "machineType": { "description": "Run load test using", "ignoreCase": "all", "enum": [ "0", "2" ] }, "resourceGroupName": { "type": "string", "description": "Resource group rig", "ignoreCase": "key" }, "numOfSelfProvisionedAgents": { "type": "integer", "description": "No. of agents to use", "ignoreCase": "key" }, "avgResponseTimeThreshold": { "type": "string", "description": "Fail test if Avg.Response Time(ms) exceeds", "ignoreCase": "key" } }, "additionalProperties": false, "required": [ "websiteUrl", "testName" ] } }, "deprecationMessage": "QuickPerfTest is deprecated - Run a quick web performance test in the cloud with Azure Pipelines", "doNotSuggest": true, "firstProperty": [ "task" ], "required": [ "task", "inputs" ] }, { "properties": { "task": { "description": "IIS web app manage\n\nCreate or update websites, web apps, virtual directories, or application pools", "ignoreCase": "value", "pattern": "^IISWebAppManagementOnMachineGroup@0$" }, "inputs": { "description": "IIS web app manage inputs", "properties": { "EnableIIS": { "type": "boolean", "description": "Enable IIS", "ignoreCase": "key" }, "IISDeploymentType": { "description": "Configuration type", "ignoreCase": "all", "enum": [ "IISWebsite", "IISWebApplication", "IISVirtualDirectory", "IISApplicationPool" ] }, "ActionIISWebsite": { "description": "Action", "ignoreCase": "all", "enum": [ "CreateOrUpdateWebsite", "StartWebsite", "StopWebsite" ] }, "ActionIISApplicationPool": { "description": "Action", "ignoreCase": "all", "enum": [ "CreateOrUpdateAppPool", "StartAppPool", "StopAppPool", "RecycleAppPool" ] }, "StartStopWebsiteName": { "type": "string", "description": "Website name", "ignoreCase": "key" }, "WebsiteName": { "type": "string", "description": "Website name", "ignoreCase": "key" }, "WebsitePhysicalPath": { "type": "string", "description": "Physical path", "ignoreCase": "key" }, "WebsitePhysicalPathAuth": { "description": "Physical path authentication", "ignoreCase": "all", "enum": [ "WebsiteUserPassThrough", "WebsiteWindowsAuth" ] }, "WebsiteAuthUserName": { "type": "string", "description": "Username", "ignoreCase": "key" }, "WebsiteAuthUserPassword": { "type": "string", "description": "Password", "ignoreCase": "key" }, "AddBinding": { "type": "boolean", "description": "Add binding", "ignoreCase": "key" }, "Protocol": { "description": "Protocol", "ignoreCase": "all", "enum": [ "https", "http" ] }, "IPAddress": { "type": "string", "description": "IP address", "ignoreCase": "key" }, "Port": { "type": "string", "description": "Port", "ignoreCase": "key" }, "ServerNameIndication": { "type": "boolean", "description": "Server Name Indication required", "ignoreCase": "key" }, "HostNameWithOutSNI": { "type": "string", "description": "Host name", "ignoreCase": "key" }, "HostNameWithHttp": { "type": "string", "description": "Host name", "ignoreCase": "key" }, "HostNameWithSNI": { "type": "string", "description": "Host name", "ignoreCase": "key" }, "SSLCertThumbPrint": { "type": "string", "description": "SSL certificate thumbprint", "ignoreCase": "key" }, "Bindings": { "type": "string", "description": "Add bindings", "ignoreCase": "key" }, "CreateOrUpdateAppPoolForWebsite": { "type": "boolean", "description": "Create or update app pool", "ignoreCase": "key" }, "ConfigureAuthenticationForWebsite": { "type": "boolean", "description": "Configure authentication", "ignoreCase": "key" }, "AppPoolNameForWebsite": { "type": "string", "description": "Name", "ignoreCase": "key" }, "DotNetVersionForWebsite": { "description": ".NET version", "ignoreCase": "all", "enum": [ "v4.0", "v2.0", "No Managed Code" ] }, "PipeLineModeForWebsite": { "description": "Managed pipeline mode", "ignoreCase": "all", "enum": [ "Integrated", "Classic" ] }, "AppPoolIdentityForWebsite": { "description": "Identity", "ignoreCase": "all", "enum": [ "ApplicationPoolIdentity", "LocalService", "LocalSystem", "NetworkService", "SpecificUser" ] }, "AppPoolUsernameForWebsite": { "type": "string", "description": "Username", "ignoreCase": "key" }, "AppPoolPasswordForWebsite": { "type": "string", "description": "Password", "ignoreCase": "key" }, "AnonymousAuthenticationForWebsite": { "type": "boolean", "description": "Anonymous authentication", "ignoreCase": "key" }, "BasicAuthenticationForWebsite": { "type": "boolean", "description": "Basic authentication", "ignoreCase": "key" }, "WindowsAuthenticationForWebsite": { "type": "boolean", "description": "Windows authentication", "ignoreCase": "key" }, "ParentWebsiteNameForVD": { "type": "string", "description": "Parent website name", "ignoreCase": "key" }, "VirtualPathForVD": { "type": "string", "description": "Virtual path", "ignoreCase": "key" }, "PhysicalPathForVD": { "type": "string", "description": "Physical path", "ignoreCase": "key" }, "VDPhysicalPathAuth": { "description": "Physical path authentication", "ignoreCase": "all", "enum": [ "VDUserPassThrough", "VDWindowsAuth" ] }, "VDAuthUserName": { "type": "string", "description": "Username", "ignoreCase": "key" }, "VDAuthUserPassword": { "type": "string", "description": "Password", "ignoreCase": "key" }, "ParentWebsiteNameForApplication": { "type": "string", "description": "Parent website name", "ignoreCase": "key" }, "VirtualPathForApplication": { "type": "string", "description": "Virtual path", "ignoreCase": "key" }, "PhysicalPathForApplication": { "type": "string", "description": "Physical path", "ignoreCase": "key" }, "ApplicationPhysicalPathAuth": { "description": "Physical path authentication", "ignoreCase": "all", "enum": [ "ApplicationUserPassThrough", "ApplicationWindowsAuth" ] }, "ApplicationAuthUserName": { "type": "string", "description": "Username", "ignoreCase": "key" }, "ApplicationAuthUserPassword": { "type": "string", "description": "Password", "ignoreCase": "key" }, "CreateOrUpdateAppPoolForApplication": { "type": "boolean", "description": "Create or update app pool", "ignoreCase": "key" }, "AppPoolNameForApplication": { "type": "string", "description": "Name", "ignoreCase": "key" }, "DotNetVersionForApplication": { "description": ".NET version", "ignoreCase": "all", "enum": [ "v4.0", "v2.0", "No Managed Code" ] }, "PipeLineModeForApplication": { "description": "Managed pipeline mode", "ignoreCase": "all", "enum": [ "Integrated", "Classic" ] }, "AppPoolIdentityForApplication": { "description": "Identity", "ignoreCase": "all", "enum": [ "ApplicationPoolIdentity", "LocalService", "LocalSystem", "NetworkService", "SpecificUser" ] }, "AppPoolUsernameForApplication": { "type": "string", "description": "Username", "ignoreCase": "key" }, "AppPoolPasswordForApplication": { "type": "string", "description": "Password", "ignoreCase": "key" }, "AppPoolName": { "type": "string", "description": "Name", "ignoreCase": "key" }, "DotNetVersion": { "description": ".NET version", "ignoreCase": "all", "enum": [ "v4.0", "v2.0", "No Managed Code" ] }, "PipeLineMode": { "description": "Managed pipeline mode", "ignoreCase": "all", "enum": [ "Integrated", "Classic" ] }, "AppPoolIdentity": { "description": "Identity", "ignoreCase": "all", "enum": [ "ApplicationPoolIdentity", "LocalService", "LocalSystem", "NetworkService", "SpecificUser" ] }, "AppPoolUsername": { "type": "string", "description": "Username", "ignoreCase": "key" }, "AppPoolPassword": { "type": "string", "description": "Password", "ignoreCase": "key" }, "StartStopRecycleAppPoolName": { "type": "string", "description": "Application pool name", "ignoreCase": "key" }, "AppCmdCommands": { "type": "string", "description": "Additional appcmd.exe commands", "ignoreCase": "key" } }, "additionalProperties": false, "required": [ "WebsiteName", "Bindings", "AppPoolNameForWebsite", "ParentWebsiteNameForVD", "VirtualPathForVD", "ParentWebsiteNameForApplication", "VirtualPathForApplication", "AppPoolNameForApplication", "AppPoolName" ] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task", "inputs" ] }, { "properties": { "task": { "description": "Docker CLI installer\n\nInstall Docker CLI on agent machine.", "ignoreCase": "value", "pattern": "^DockerInstaller@0$" }, "inputs": { "description": "Docker CLI installer inputs", "properties": { "dockerVersion": { "type": "string", "description": "Docker Version", "ignoreCase": "key" }, "releaseType": { "description": "Release type", "ignoreCase": "all", "enum": [ "stable", "edge", "test", "nightly" ] } }, "additionalProperties": false, "required": [] } }, "doNotSuggest": false, "firstProperty": [ "task" ], "required": [ "task" ] } ] } } }
projektor.json
{ "$id": "https://json.schemastore.org/projektor.json", "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "description": "Global settings\nhttps://github.com/yamnikov-oleg/projektor#configuration", "properties": { "keybind": { "title": "keybinding", "description": "A daemon keybinding\nhttps://github.com/yamnikov-oleg/projektor#configuration", "type": "string", "minLength": 1, "default": "Mod4-q" }, "forcecacheinterval": { "title": "force cache interval", "description": "A delay between daemon run with '-dry' flag\nhttps://github.com/yamnikov-oleg/projektor#configuration", "type": "integer", "minimum": 0, "default": 60 }, "enabledcategories": { "title": "enabled categories", "description": "Global enabled category settings\nhttps://github.com/yamnikov-oleg/projektor#configuration", "type": "object", "properties": { "calc": { "title": "calculator", "description": "Whether to enable calculator\nhttps://github.com/yamnikov-oleg/projektor#configuration", "type": "string", "default": true }, "history": { "title": "history", "description": "Whether to show history\nhttps://github.com/yamnikov-oleg/projektor#configuration", "type": "string", "default": true }, "apps": { "title": "applications", "description": "Whether to show applications\nhttps://github.com/yamnikov-oleg/projektor#configuration", "type": "string", "default": true }, "url": { "title": "url", "description": "Whether to show urls\nhttps://github.com/yamnikov-oleg/projektor#configuration", "type": "string", "default": true }, "commands": { "title": "commands", "description": "Whether to show commands\nhttps://github.com/yamnikov-oleg/projektor#configuration", "type": "string", "default": true }, "files": { "title": "files", "description": "Whether to show files\nhttps://github.com/yamnikov-oleg/projektor#configuration", "type": "string", "default": true }, "websearch": { "title": "web search", "description": "Whether to allow web search\nhttps://github.com/yamnikov-oleg/projektor#configuration", "type": "string", "default": true } }, "additionalProperties": false }, "history": { "title": "history", "description": "Global history settings\nhttps://github.com/yamnikov-oleg/projektor#configuration", "type": "object", "properties": { "capacity": { "title": "capacity", "description": "A capacity\nhttps://github.com/yamnikov-oleg/projektor#configuration", "type": "integer", "minimum": 0, "default": 40 } }, "additionalProperties": false }, "url": { "title": "url", "description": "Global url settings\nhttps://github.com/yamnikov-oleg/projektor#configuration", "type": "object", "properties": { "capacity": { "title": "icon", "description": "An icon\nhttps://github.com/yamnikov-oleg/projektor#configuration", "type": "string", "minLength": 1, "default": "web-browser" } }, "additionalProperties": false }, "websearch": { "title": "websearch", "description": "Global web search settings\nhttps://github.com/yamnikov-oleg/projektor#configuration", "type": "object", "properties": { "engine": { "title": "engine", "description": "A url template\nhttps://github.com/yamnikov-oleg/projektor#configuration", "type": "string", "minLength": 1, "default": "https://google.com/search?q=%s" }, "icon": { "title": "icon", "description": "An entry icon\nhttps://github.com/yamnikov-oleg/projektor#configuration", "type": "string", "minLength": 1, "default": "web-browser" } }, "additionalProperties": false }, "ui": { "title": "ui", "description": "Global UI settings\nhttps://github.com/yamnikov-oleg/projektor#configuration", "type": "object", "properties": { "width": { "title": "width", "description": "A width\nhttps://github.com/yamnikov-oleg/projektor#configuration", "type": "string", "pattern": "^\\d+$", "default": "600" }, "height": { "title": "height", "description": "A height\nhttps://github.com/yamnikov-oleg/projektor#configuration", "type": "string", "pattern": "^\\d+$", "default": "300" } }, "additionalProperties": false } }, "title": "settings", "type": "object" }
npmpackagejsonlintrc.json
{ "$schema": "http://json-schema.org/draft-04/schema#", "definitions": { "rule": { "oneOf": [ { "description": "npm-package-json-lint rule\n\n\"off\" - turns the rule off\n\"warning\" - turns the rule on as a warning, which doesn't affect the exit code\n\"error\" - turns the rule on as an error, which when triggered generates an exit code of 2\n", "type": "string", "enum": ["off", "warning", "error"] }, { "type": "array" } ] }, "requiredNode": { "properties": { "require-author": { "$ref": "#/definitions/rule", "description": "Require author property." }, "require-bin": { "$ref": "#/definitions/rule", "description": "Require bin property." }, "require-bugs": { "$ref": "#/definitions/rule", "description": "Require bugs property." }, "require-bundledDependencies": { "$ref": "#/definitions/rule", "description": "Require bundledDependencies property." }, "require-config": { "$ref": "#/definitions/rule", "description": "Require config property." }, "require-contributors": { "$ref": "#/definitions/rule", "description": "Require contributors property." }, "require-cpu": { "$ref": "#/definitions/rule", "description": "Require cpu property." }, "require-dependencies": { "$ref": "#/definitions/rule", "description": "Require dependencies property." }, "require-description": { "$ref": "#/definitions/rule", "description": "Require description property." }, "require-devDependencies": { "$ref": "#/definitions/rule", "description": "Require devDependencies property." }, "require-directories": { "$ref": "#/definitions/rule", "description": "Require directories property." }, "require-engines": { "$ref": "#/definitions/rule", "description": "Require engines property." }, "require-files": { "$ref": "#/definitions/rule", "description": "Require files property." }, "require-homepage": { "$ref": "#/definitions/rule", "description": "Require homepage property." }, "require-keywords": { "$ref": "#/definitions/rule", "description": "Require keywords property." }, "require-license": { "$ref": "#/definitions/rule", "description": "Require license property." }, "require-main": { "$ref": "#/definitions/rule", "description": "Require main property." }, "require-man": { "$ref": "#/definitions/rule", "description": "Require man property." }, "require-module": { "$ref": "#/definitions/rule", "description": "Require module property." }, "require-name": { "$ref": "#/definitions/rule", "description": "Require name property." }, "require-optionalDependencies": { "$ref": "#/definitions/rule", "description": "Require optionalDependencies property." }, "require-os": { "$ref": "#/definitions/rule", "description": "Require os property." }, "require-peerDependencies": { "$ref": "#/definitions/rule", "description": "Require peerDependencies property." }, "require-preferGlobal": { "$ref": "#/definitions/rule", "description": "Require preferGlobal property." }, "require-private": { "$ref": "#/definitions/rule", "description": "Require private property." }, "require-publishConfig": { "$ref": "#/definitions/rule", "description": "Require publishConfig property." }, "require-repository": { "$ref": "#/definitions/rule", "description": "Require repository property." }, "require-scripts": { "$ref": "#/definitions/rule", "description": "Require scripts property." }, "require-version": { "$ref": "#/definitions/rule", "description": "Require version property." } } }, "dataType": { "properties": { "bin-type": { "$ref": "#/definitions/rule", "description": "Ensure the proper data type is used for bin." }, "bundledDependencies-type": { "$ref": "#/definitions/rule", "description": "Ensure the proper data type is used for bundledDependencies." }, "config-type": { "$ref": "#/definitions/rule", "description": "Ensure the proper data type is used for config." }, "cpu-type": { "$ref": "#/definitions/rule", "description": "Ensure the proper data type is used for cpu." }, "dependencies-type": { "$ref": "#/definitions/rule", "description": "Ensure the proper data type is used for dependencies." }, "description-type": { "$ref": "#/definitions/rule", "description": "Ensure the proper data type is used for description." }, "devDependencies-type": { "$ref": "#/definitions/rule", "description": "Ensure the proper data type is used for devDependencies." }, "directories-type": { "$ref": "#/definitions/rule", "description": "Ensure the proper data type is used for directories." }, "engines-type": { "$ref": "#/definitions/rule", "description": "Ensure the proper data type is used for engines." }, "files-type": { "$ref": "#/definitions/rule", "description": "Ensure the proper data type is used for files." }, "homepage-type": { "$ref": "#/definitions/rule", "description": "Ensure the proper data type is used for homepage." }, "keywords-type": { "$ref": "#/definitions/rule", "description": "Ensure the proper data type is used for keywords." }, "license-type": { "$ref": "#/definitions/rule", "description": "Ensure the proper data type is used for license." }, "main-type": { "$ref": "#/definitions/rule", "description": "Ensure the proper data type is used for main." }, "man-type": { "$ref": "#/definitions/rule", "description": "Ensure the proper data type is used for man." }, "name-type": { "$ref": "#/definitions/rule", "description": "Ensure the proper data type is used for name." }, "optionalDependencies-type": { "$ref": "#/definitions/rule", "description": "Ensure the proper data type is used for optionalDependencies." }, "os-type": { "$ref": "#/definitions/rule", "description": "Ensure the proper data type is used for os." }, "peerDependencies-type": { "$ref": "#/definitions/rule", "description": "Ensure the proper data type is used for peerDependencies." }, "preferGlobal-type": { "$ref": "#/definitions/rule", "description": "Ensure the proper data type is used for preferGlobal." }, "private-type": { "$ref": "#/definitions/rule", "description": "Ensure the proper data type is used for private." }, "repository-type": { "$ref": "#/definitions/rule", "description": "Ensure the proper data type is used for repository." }, "scripts-type": { "$ref": "#/definitions/rule", "description": "Ensure the proper data type is used for scripts." }, "version-type": { "$ref": "#/definitions/rule", "description": "Ensure the proper data type is used for version." } } }, "validValues": { "properties": { "valid-values-author": { "$ref": "#/definitions/rule", "description": "Requires author to equal one of the supplied values." }, "valid-values-engines": { "$ref": "#/definitions/rule", "description": "Requires engines to equal one of the supplied values." }, "valid-values-license": { "$ref": "#/definitions/rule", "description": "Requires license to equal one of the supplied values." }, "valid-values-name-scope": { "$ref": "#/definitions/rule", "description": "Requires the scope used for the name to equal one of the supplied values." }, "valid-values-private": { "$ref": "#/definitions/rule", "description": "Requires private to equal one of the supplied values." }, "valid-values-publishConfig": { "$ref": "#/definitions/rule", "description": "Requires publishConfig to equal one of the supplied values." } } }, "dependencies": { "properties": { "no-absolute-version-dependencies": { "$ref": "#/definitions/rule", "description": "Restrict dependencies from specifying an absolute version." }, "no-caret-version-dependencies": { "$ref": "#/definitions/rule", "description": "Restrict dependencies from using caret version syntax." }, "no-restricted-dependencies": { "$ref": "#/definitions/rule", "description": "Restrict a list of dependencies." }, "no-restricted-pre-release-dependencies": { "$ref": "#/definitions/rule", "description": "Restrict listed dependencies from using pre-release versions." }, "no-tilde-version-dependencies": { "$ref": "#/definitions/rule", "description": "Restrict dependencies from using tilde version syntax." }, "prefer-no-version-zero-dependencies": { "$ref": "#/definitions/rule", "description": "Restrict dependencies from specifying version 0.x.x modules." }, "prefer-absolute-version-dependencies": { "$ref": "#/definitions/rule", "description": "Require all dependencies to use absolute versions." }, "prefer-caret-version-dependencies": { "$ref": "#/definitions/rule", "description": "Require all dependencies to use caret version syntax." }, "prefer-tilde-version-dependencies": { "$ref": "#/definitions/rule", "description": "Require all dependencies to use tilde version syntax." }, "prefer-alphabetical-dependencies": { "$ref": "#/definitions/rule", "description": "Require dependencies to be listed in alphabetical order." }, "no-absolute-version-devDependencies": { "$ref": "#/definitions/rule", "description": "Restrict devDependencies from specifying an absolute version." }, "no-caret-version-devDependencies": { "$ref": "#/definitions/rule", "description": "Restrict devDependencies from using caret version syntax." }, "no-restricted-devDependencies": { "$ref": "#/definitions/rule", "description": "Restrict a list of devDependencies." }, "no-restricted-pre-release-devDependencies": { "$ref": "#/definitions/rule", "description": "Restrict listed devDependencies from using pre-release versions." }, "no-tilde-version-devDependencies": { "$ref": "#/definitions/rule", "description": "Restrict devDependencies from using tilde version syntax." }, "prefer-no-version-zero-devDependencies": { "$ref": "#/definitions/rule", "description": "Restrict devDependencies from specifying version 0.x.x modules." }, "prefer-absolute-version-devDependencies": { "$ref": "#/definitions/rule", "description": "Require all devDependencies to use absolute versions." }, "prefer-caret-version-devDependencies": { "$ref": "#/definitions/rule", "description": "Require all devDependencies to use caret version syntax." }, "prefer-tilde-version-devDependencies": { "$ref": "#/definitions/rule", "description": "Require all devDependencies to use tilde version syntax." }, "prefer-alphabetical-devDependencies": { "$ref": "#/definitions/rule", "description": "Require devDependencies to be listed in alphabetical order." }, "prefer-alphabetical-bundledDependencies": { "$ref": "#/definitions/rule", "description": "Require bundledDependencies to be listed in alphabetical order." }, "prefer-alphabetical-optionalDependencies": { "$ref": "#/definitions/rule", "description": "Require optionalDependencies to be listed in alphabetical order." }, "prefer-alphabetical-peerDependencies": { "$ref": "#/definitions/rule", "description": "Require peerDependencies to be listed in alphabetical order." } } }, "format": { "properties": { "description-format": { "$ref": "#/definitions/rule", "description": "Require description formatting rules, such as: requiring the first letter be capitalized and/or ending with a period." }, "name-format": { "$ref": "#/definitions/rule", "description": "Require name to be lowercase." }, "version-format": { "$ref": "#/definitions/rule", "description": "Require version to follow semver." } } }, "packageJsonProperties": { "properties": { "prefer-property-order": { "$ref": "#/definitions/rule", "description": "Require all package.json properties to be in a specified order." } } }, "deprecated": { "properties": { "prefer-no-engineStrict": { "$ref": "#/definitions/rule", "description": "Ensure engineStrict is not present in package.json file." } } } }, "id": "https://json.schemastore.org/npmpackagejsonlintrc.json", "properties": { "extends": { "description": "Use the extends property to inherit rules from a shared configuration file/module.", "type": ["string", "array"], "items": { "type": "string" } }, "rules": { "description": "npm-package-json-lint rules are configurable. Use the rules object to specify what rules should be used and what severity level they should follow.", "type": "object", "allOf": [ { "$ref": "#/definitions/requiredNode" }, { "$ref": "#/definitions/dataType" }, { "$ref": "#/definitions/validValues" }, { "$ref": "#/definitions/dependencies" }, { "$ref": "#/definitions/format" }, { "$ref": "#/definitions/packageJsonProperties" }, { "$ref": "#/definitions/deprecated" } ] } }, "title": "JSON schema for npm-package-json-lint configuration files", "type": "object" }
bowerrc.json
{ "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": true, "id": "https://json.schemastore.org/bowerrc.json", "properties": { "analytics": { "type": "boolean", "default": true }, "cwd": { "type": "string", "description": "The directory from which bower should run. All relative paths will be calculated according to this setting." }, "directory": { "type": "string", "description": "The directory from which bower should run. All relative paths will be calculated according to this setting.", "default": "bower_components" }, "json": { "type": "string", "description": "A file path to the Bower configuration file", "default": "bower.json" }, "registry": { "type": ["string", "object"], "description": "The registry config", "format": "uri", "properties": { "search": { "type": ["array", "string"], "description": "An array of URLs pointing to read-only Bower registries. A string means only one. When looking into the registry for an endpoint, Bower will query these registries by the specified order.", "format": "uri" }, "register": { "type": "string", "description": "The URL to use when registering packages.", "format": "uri" }, "publish": { "type": "string", "description": "The URL to use when publishing packages.", "format": "uri" } } }, "proxy": { "type": "string", "description": "The proxy to use for http requests.", "format": "uri" }, "https-proxy": { "type": "string", "description": "The proxy to use for https requests.", "format": "uri" }, "user-agent": { "type": "string", "description": "Sets the User-Agent for each request made." }, "timeout": { "type": "number", "description": "The timeout to be used when making requests in milliseconds.", "default": 60000 }, "strict-ssl": { "type": "boolean", "description": "Whether or not to do SSL key validation when making requests via https." }, "ca": { "type": ["object", "string"], "description": "The CA certificates to be used, defaults to null. This is similar to the registry key, specifying each CA to use for each registry endpoint." }, "color": { "type": "boolean", "description": "Enable or disable use of colors in the CLI output.", "default": true }, "storage": { "type": "object", "description": "Where to store persistent data, such as cache, needed by bower.", "properties": { "packages": { "type": "string" }, "registry": { "type": "string" }, "links": { "type": "string" } } }, "tmp": { "type": "string", "description": "Where to store temporary files and folders" }, "interactive": { "type": "boolean", "description": "Makes bower interactive, prompting whenever necessary" }, "resolvers": { "type": "array", "description": "Identifies pluggable resolvers to be used for locating and fetching packages", "items": { "type": "string" } }, "shallowCloneHosts": { "type": "array", "description": "Whitelists hosts which are known to support shallow cloning", "items": { "type": "string" } }, "scripts": { "description": "Contains custom hooks used to trigger other automated tools", "type": "object", "properties": { "preinstall": { "type": "string", "description": "A script to run before install" }, "postinstall": { "type": "string", "description": "A script to run after install" }, "preuninstall": { "type": "string", "description": "A script to run before uninstall" } } }, "ignoredDependencies": { "type": "array", "description": "Bower will ignore these dependencies when resolving packages", "items": { "type": "string" } } }, "title": "JSON schema for .bowerrc files", "type": "object" }
first-timers.json
{ "$comment": "https://github.com/hoodiehq/first-timers-bot", "$id": "https://json.schemastore.org/first-timers.json", "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "description": "A bot that helps onboarding new open-source contributors.", "properties": { "labels": { "title": "Labels", "description": "Sets the labels if \"first-timers-only\" is not what you are looking for.", "type": "array", "items": { "title": "Label", "type": "string" } }, "template": { "title": "Template", "description": "The path to your template, relative from the repository root.", "type": "string" }, "repository": { "title": "Repository", "description": "Specify a different repository than where the problem is. The bot must be installed on the configured repository.", "type": "string" } }, "title": "first-timers-bot", "type": "object" }
esquio.json
{ "$schema": "http://json-schema.org/draft-04/schema#", "definitions": { "Esquio": { "type": ["object", "null"], "properties": { "Products": { "type": ["array", "null"], "items": { "$ref": "#/definitions/Product" } } }, "required": ["Products"] }, "Feature": { "type": ["object", "null"], "properties": { "Name": { "type": ["string", "null"] }, "Enabled": { "type": "boolean" }, "Toggles": { "type": ["array", "null"], "items": { "$ref": "#/definitions/Toggle" } } }, "required": ["Name", "Enabled", "Toggles"] }, "Product": { "type": ["object", "null"], "properties": { "Name": { "type": ["string", "null"] }, "Features": { "type": ["array", "null"], "items": { "$ref": "#/definitions/Feature" } } }, "required": ["Name", "Features"] }, "Toggle": { "type": ["object", "null"], "properties": { "Type": { "type": ["string", "null"] }, "Parameters": {} }, "required": ["Type", "Parameters"] } }, "id": "https://json.schemastore.org/esquio.json", "properties": { "Esquio": { "$ref": "#/definitions/Esquio" } }, "required": ["Esquio"], "title": "JSON schema for Esquio configuration files", "type": "object" }
tye-schema.json
{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "http://microsoft.com/dotnet/tye.schema.json", "title": "Tye Configuration", "description": "Configuration file schema for Tye.", "type": "object", "properties": { "name": { "description": "The application name.", "type": "string" }, "registry": { "description": "Dockerhub username or hostname of remote registry. Used for tagging images.", "type": "string" }, "containerEngine": { "description": "Container engine.", "type": "string", "enum": ["docker", "podman"] }, "namespace": { "description": "The Kubernetes namespace to use.", "type": "string" }, "network": { "description": "The Docker network to use.", "type": "string" }, "dashboardPort": { "description": "Configure the dashboard port used for `tye run`. Can be overridden using the `--port` CLI argument, and falls back to port 8000 if free, or a random port if 8000 is in use.", "type": "integer" }, "ingress": { "description": "The application's ingresses.", "type": "array", "minItems": 1, "items": { "$ref": "#/definitions/ingress" } }, "extensions": { "description": "Extensions to be added to tye.", "type": "array", "items": { "$ref": "#/definitions/extension" } }, "solution": { "description": "Indicates the solution file (.sln) or filter (.slnf) to use when building project-based services in watch mode. If omitted, those services will be built individually. Specifying the solution [filter] can help reduce repeated builds of shared libraries when in watch mode.", "type": "string" }, "services": { "description": "The application's services.", "type": "array", "minItems": 1, "items": { "type": "object", "oneOf": [ { "$ref": "#/definitions/executable" }, { "$ref": "#/definitions/external" }, { "$ref": "#/definitions/azureFunction" }, { "$ref": "#/definitions/image" }, { "$ref": "#/definitions/dockerFile" }, { "$ref": "#/definitions/project" }, { "$ref": "#/definitions/repository" }, { "$ref": "#/definitions/include" } ] } } }, "required": [ "services" ], "definitions": { "binding": { "type": "object", "properties": { "name": { "description": "The binding name.", "type": "string" }, "port": { "description": "The binding port.", "type": "integer" }, "containerPort": { "description": "The port used when running inside a container.", "type": "integer" }, "host": { "description": "The hostname for the binding.", "type": "string" }, "protocol": { "description": "The protocol used by the binding", "type": "string" }, "autoAssignPort": { "description": "Whether to auto-assign a port value.", "type": "boolean", "default": false }, "connectionString": { "description": "The connection string.", "type": "string" } }, "additionalProperties": false }, "env-var": { "type": "object", "properties": { "name": { "description": "Environment variable name.", "type": "string" }, "value": { "description": "Environment variable value.", "type": "string" } }, "required": [ "name", "value" ], "additionalProperties": false }, "build-property": { "type": "object", "properties": { "name": { "description": "Build property name.", "type": "string" }, "value": { "description": "Build property name.", "type": "string" } }, "required": [ "name", "value" ], "additionalProperties": false }, "volume": { "type": "object", "properties": { "name": { "description": "A named volume.", "type": "string" }, "source": { "description": "The local path.", "type": "string" }, "target": { "description": "The destination path within the container.", "type": "string" } }, "required": [ "target" ], "additionalProperties": false }, "azureFunction": { "type": "object", "properties": { "name": { "description": "The service name. Must be unique per-application.", "type": "string" }, "azureFunction": { "description": "The directory path to the azure function.", "type": "string" }, "env": { "description": "Environment variables to use when launching.", "type": "array", "items": { "$ref": "#/definitions/env-var" } }, "args": { "description": "Command-line arguments to use when launching.", "type": "string" }, "replicas": { "description": "Number of service replicas to create.", "type": "integer" }, "bindings": { "description": "The bindings provided by the service.", "type": "array", "items": { "$ref": "#/definitions/binding" } }, "pathToFunc": { "description": "Optional path to the function host to be used when launching functions. Can point to either func.dll or the binary.", "type": "string" } }, "required": [ "name", "azureFunction" ] }, "executable": { "type": "object", "properties": { "name": { "description": "The service name. Must be unique per-application.", "type": "string" }, "executable": { "description": "The file path (or file name if on the system path) of an executable.", "type": "string" }, "workingDirectory": { "description": "The working directory to use when launching.", "type": "string" }, "env": { "description": "Environment variables to use when launching.", "type": "array", "items": { "$ref": "#/definitions/env-var" } }, "args": { "description": "Command-line arguments to use when launching.", "type": "string" }, "replicas": { "description": "Number of service replicas to create.", "type": "integer" }, "bindings": { "description": "The bindings provided by the service.", "type": "array", "items": { "$ref": "#/definitions/binding" } } }, "required": [ "name", "executable" ] }, "external": { "properties": { "name": { "description": "The service name. Must be unique per-application.", "type": "string" }, "external": { "description": "Designates as service as external. External services will not be launched and can only provide bindings.", "type": "boolean", "const": true }, "bindings": { "description": "The bindings provided by the service.", "type": "array", "items": { "$ref": "#/definitions/binding" } } }, "additionalProperties": false }, "repository": { "properties": { "name": { "description": "The service name. Must be unique per-application.", "type": "string" }, "repository": { "description": "The repository url which will be cloned.", "type": "string" }, "cloneDirectory": { "description": "The directory to clone the repository into.", "type": "string" } }, "required": [ "name", "repository" ] }, "include": { "properties": { "name": { "description": "The service name. Must be unique per-application.", "type": "string" }, "include": { "description": "Path to tye.yaml file which will be used in the application.", "type": "string" } }, "required": [ "name", "include" ] }, "image": { "type": "object", "properties": { "name": { "description": "The service name. Must be unique per-application.", "type": "string" }, "volumes": { "description": "Volumes to mount to the container.", "type": "array", "items": { "$ref": "#/definitions/volume" } }, "image": { "description": "The name of a Docker image.", "type": "string" }, "env": { "description": "Environment variables to use when launching.", "type": "array", "items": { "$ref": "#/definitions/env-var" } }, "args": { "description": "Command-line arguments to use when launching.", "type": "string" }, "replicas": { "description": "Number of service replicas to create.", "type": "integer" }, "bindings": { "description": "The bindings provided by the service.", "type": "array", "items": { "$ref": "#/definitions/binding" } } }, "required": [ "name", "image" ] }, "dockerFile": { "type": "object", "properties": { "name": { "description": "The service name. Must be unique per-application.", "type": "string" }, "volumes": { "description": "Volumes to mount to the container.", "type": "array", "items": { "$ref": "#/definitions/volume" } }, "dockerFile": { "description": "The Dockerfile to use.", "type": "string" }, "dockerFileArgs": { "description": "Build arguments to use when building the image.", "type": "array", "items": { "type": "object" } }, "dockerFileContext": { "description": "The Dockerfile context to run docker build on.", "type": "string" }, "env": { "description": "Environment variables to use when launching.", "type": "array", "items": { "$ref": "#/definitions/env-var" } }, "args": { "description": "Command-line arguments to use when launching.", "type": "string" }, "replicas": { "description": "Number of service replicas to create.", "type": "integer" }, "bindings": { "description": "The bindings provided by the service.", "type": "array", "items": { "$ref": "#/definitions/binding" } } }, "required": [ "name", "dockerFile" ] }, "ingress": { "type": "object", "properties": { "name": { "description": "The ingress name.", "type": "string" }, "bindings": { "description": "Bindings for the ingress in local development.", "type": "array", "items": { "$ref": "#/definitions/ingress-binding" } }, "rules": { "description": "Rules for ingress routing.", "type": "array", "items": { "$ref": "#/definitions/ingress-rule" } } } }, "ingress-binding": { "type": "object", "properties": { "name": { "description": "The binding name.", "type": "string" }, "port": { "description": "The binding port.", "type": "integer" }, "protocol": { "description": "The protocol used by the binding", "type": "string" }, "ip": { "description": "The ip address the ingress listens on.", "type": "string" } } }, "ingress-rule": { "type": "object", "properties": { "service": { "description": "The service to route traffic when the rule matches.", "type": "string" }, "path": { "description": "The path prefix to match.", "type": "string" }, "host": { "description": "The hostname to match.", "type": "string" }, "preservePath": { "description": "Whether to keep the path that was originally present or not after a prefix match.", "type": "boolean" } }, "required": [ "service" ] }, "project": { "type": "object", "properties": { "name": { "description": "The service name. Must be unique per-application.", "type": "string" }, "project": { "description": "The relative path to a .NET project file.", "type": "string" }, "env": { "description": "Environment variables to use when launching.", "type": "array", "items": { "$ref": "#/definitions/env-var" } }, "buildProperties": { "description": "Build properties to use when launching or building a project.", "type": "array", "items": { "$ref": "#/definitions/build-property" } }, "args": { "description": "Command-line arguments to use when launching.", "type": "string" }, "build": { "description": "Whether to build the project.", "type": "boolean" }, "replicas": { "description": "Number of service replicas to create.", "type": "integer" }, "bindings": { "description": "The bindings provided by the service.", "type": "array", "items": { "$ref": "#/definitions/binding" } } }, "required": [ "name", "project" ] }, "extension": { "type": "object", "properties": { "name": { "description": "Extension name.", "type": "string" } }, "required": [ "name" ] } } }
devContainer.schema.json
{ "allOf": [ { "$ref": "./devContainer.base.schema.json" }, { "$ref": "https://raw.githubusercontent.com/microsoft/vscode/main/extensions/configuration-editing/schemas/devContainer.codespaces.schema.json" }, { "$ref": "https://raw.githubusercontent.com/microsoft/vscode/main/extensions/configuration-editing/schemas/devContainer.vscode.schema.json" } ] }
imgbotconfig.json
{ "$schema": "http://json-schema.org/draft-04/schema#", "default": {}, "id": "https://json.schemastore.org/imgbotconfig.json", "properties": { "schedule": { "title": "Limits the PRs from Imgbot to once a day, once a week, or once a month respectively. The default behavior is to receive Imgbot PRs as images require optimization.", "type": "string", "enum": ["daily", "weekly", "monthly"], "default": "" }, "ignoredFiles": { "title": "Limits the images optimized by Imgbot by essentially ignoring them", "type": "array", "items": { "title": "Accepts the syntax for searchPattern on Directory.EnumerateFiles()", "type": "string", "pattern": "^/?([^/]+/)*[^/]+/?$", "default": "" }, "default": [] }, "aggressiveCompression": { "title": "Opt in to use lossy compression algorithms. The default behaviour without this setting is loss less compression.", "oneOf": [ { "type": "boolean" }, { "type": "string", "enum": ["true", "false"] } ], "default": false }, "compressWiki": { "title": "Opt in to also compress wiki repo. The default behaviour is opt out.", "oneOf": [ { "type": "boolean" }, { "type": "string", "enum": ["true", "false"] } ], "default": false }, "minKBReduced": { "title": "Can be used to limit the frequency of PRs Imgbot will open over time", "type": "number", "default": 10 } }, "title": "JSON Schema for configuration for ImgBot", "type": "object" }
sdf-schema-1.1.json
{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "Definition", "type": "object", "properties": { "workspace": { "description": "A workspace definition", "anyOf": [ { "$ref": "#/definitions/Workspace" }, { "type": "null" } ] }, "profile": { "description": "A profile definition", "anyOf": [ { "$ref": "#/definitions/Profile" }, { "type": "null" } ] }, "table": { "description": "A table definition", "anyOf": [ { "$ref": "#/definitions/Table" }, { "type": "null" } ] }, "classifier": { "description": "A classifier definition", "anyOf": [ { "$ref": "#/definitions/Classifier" }, { "type": "null" } ] }, "function": { "description": "A function definition", "anyOf": [ { "$ref": "#/definitions/Function" }, { "type": "null" } ] }, "plugin": { "description": "A plugin definition", "anyOf": [ { "$ref": "#/definitions/Plugin" }, { "type": "null" } ] } }, "additionalProperties": false, "definitions": { "Workspace": { "description": "A workspace is a collection of one or more catalogs, schemas, tables, and resources, called workspace members, that are managed together.", "type": "object", "required": [ "edition", "name" ], "properties": { "edition": { "description": "The SDF edition, should always be 1 (for now)", "type": "string" }, "name": { "description": "The name of this workspace (defaults to the workspace directory name if not given) Name must be set for deployment.", "type": "string" }, "description": { "description": "A description of this workspace", "type": [ "string", "null" ] }, "repository": { "description": "The URL of the workspace source repository [defaults to 'none' if no repository is given]", "type": [ "string", "null" ] }, "remote-location": { "description": "The default output object store location, e.g. 's3://bucket/key/' where key is optional", "type": [ "string", "null" ] }, "includes": { "description": "An array of directories and filenames containing .sql and .sdf.yml files", "type": [ "array", "null" ], "items": { "$ref": "#/definitions/IncludePath" } }, "excludes": { "description": "An array of directories and filenames to be skipped when resolving includes", "type": [ "array", "null" ], "items": { "$ref": "#/definitions/FilePath" } }, "references": { "description": "An array of paths to other workspaces, i.e. .sql and .yml files", "writeOnly": true, "type": [ "array", "null" ], "items": { "$ref": "#/definitions/WorkspacePath" } }, "dialect": { "description": "The dialect of this workspace. If not set, defaults to sdf dialect", "anyOf": [ { "$ref": "#/definitions/Dialect" }, { "type": "null" } ] }, "resources": { "description": "An array of paths to directories and files, which will be copied to the SDF service on deployment", "type": [ "array", "null" ], "items": { "$ref": "#/definitions/FilePath" } }, "default-catalog": { "description": "Defines a default catalog [If not set, defaults to the directory of the workspace]", "type": [ "string", "null" ] }, "default-schema": { "description": "Defines a default schema [If not set, defaults to 'pub']", "type": [ "string", "null" ] }, "default-profile": { "description": "Defines the default profile [if not set, defaults to 'dbg']", "type": [ "string", "null" ] }, "source-locations": { "description": "Workspace defined by these set of files", "anyOf": [ { "$ref": "#/definitions/FilePath" }, { "type": "null" } ] }, "variables": { "description": "An array of named values for setting SQL variables from your environment Ex. -dt: dt, used in SQL as @dt", "type": [ "array", "null" ], "items": { "$ref": "#/definitions/Variable" } }, "code-reports": { "description": "An array of queries over the information schema that will be run on sdf describe and sdf deploy", "type": [ "array", "null" ], "items": { "$ref": "#/definitions/CodeReportPath" } }, "code-checks": { "description": "An array of queries over the information schema that will be run on sdf describe and sdf deploy", "type": [ "array", "null" ], "items": { "$ref": "#/definitions/CodeCheckPath" } }, "access-control": { "description": "An array of attribute based access control queries over the information schema, current user and current job, that will be run on sdf build and sdf deploy", "type": [ "array", "null" ], "items": { "$ref": "#/definitions/AccessControlPath" } } }, "additionalProperties": false }, "IncludePath": { "description": "All file path should either be relative to the workspace, or absolute for an object store like AWS s3:// Note that an [IncludePath] specifies a catalog and schema scope for unqualified names (in effect for both creating and querying tables). See [IncludePath::default_catalog] and [IncludePath::default_schema].", "type": "object", "required": [ "path" ], "properties": { "path": { "description": "A filepath", "type": "string" }, "default-catalog": { "description": "Defines a default catalog for unqualified names. If not set, defaults to the [Workspace] catalog.", "type": [ "string", "null" ] }, "default-schema": { "description": "Defines a default schema for unqualified names. If not set, defaults to the [Workspace] schema.", "type": [ "string", "null" ] }, "dialect": { "description": "The dialect of the included files. If not set, defaults to the [Workspace] dialect.", "anyOf": [ { "$ref": "#/definitions/Dialect" }, { "type": "null" } ] }, "time": { "description": "Last modified of the file", "writeOnly": true, "anyOf": [ { "$ref": "#/definitions/SystemTime" }, { "type": "null" } ] } }, "additionalProperties": false }, "Dialect": { "type": "string", "enum": [ "sdf", "presto", "bigquery", "redshift" ] }, "SystemTime": { "type": "object", "required": [ "nanos_since_epoch", "secs_since_epoch" ], "properties": { "secs_since_epoch": { "type": "integer", "format": "uint64", "minimum": 0.0 }, "nanos_since_epoch": { "type": "integer", "format": "uint32", "minimum": 0.0 } } }, "FilePath": { "description": "All file path should either be relative to the workspace, or absolute for an object store like AWS s3://", "type": "object", "required": [ "path" ], "properties": { "path": { "description": "A filepath", "type": "string" }, "time": { "description": "Last modified of the file", "writeOnly": true, "anyOf": [ { "$ref": "#/definitions/SystemTime" }, { "type": "null" } ] } }, "additionalProperties": false }, "WorkspacePath": { "type": "object", "required": [ "branch", "git", "path", "rev" ], "properties": { "path": { "description": "The relative path from this workspace to the referenced workspace, for a Git repo, from the root of the depot to the workspace", "type": "string" }, "git": { "description": "The Git repo", "type": "string" }, "rev": { "description": "the Git revision", "type": "string" }, "branch": { "description": "the Git branch", "type": "string" } }, "additionalProperties": false }, "Variable": { "description": "SQL queries can be parameterized via variables of type varchar. A variable definition binds the variable to the provided value.", "type": "object", "required": [ "name" ], "properties": { "name": { "description": "The name of the variable", "type": "string" }, "description": { "type": [ "string", "null" ] }, "value": { "description": "The value of this variable (using sql/yaml literals)", "type": [ "string", "null" ] } }, "additionalProperties": false }, "CodeReportPath": { "type": "object", "required": [ "name", "path" ], "properties": { "path": { "description": "A filepath", "type": "string" }, "name": { "description": "Name of check (default filestem of path)", "type": "string" }, "description": { "description": "A description of this report", "type": [ "string", "null" ] }, "dialect": { "description": "dialect", "anyOf": [ { "$ref": "#/definitions/Dialect" }, { "type": "null" } ] } }, "additionalProperties": false }, "CodeCheckPath": { "type": "object", "required": [ "assert", "path" ], "properties": { "assert": { "description": "Assertion", "allOf": [ { "$ref": "#/definitions/CodeAssertion" } ] }, "name": { "description": "Name of check (default filestem of path)", "type": [ "string", "null" ] }, "path": { "description": "A filepath", "type": "string" }, "description": { "description": "A description of this assertion", "type": [ "string", "null" ] }, "dialect": { "description": "dialect", "anyOf": [ { "$ref": "#/definitions/Dialect" }, { "type": "null" } ] } }, "additionalProperties": false }, "CodeAssertion": { "type": "string", "enum": [ "exists", "not-exists" ] }, "AccessControlPath": { "type": "object", "required": [ "access", "name", "path" ], "properties": { "access": { "description": "Grant access", "allOf": [ { "$ref": "#/definitions/Grant" } ] }, "name": { "description": "Name of check (default filestem of path)", "type": "string" }, "description": { "description": "A description of this access control rule", "type": [ "string", "null" ] }, "path": { "description": "A filepath to a policy authored in .sql", "type": "string" }, "time": { "writeOnly": true, "anyOf": [ { "$ref": "#/definitions/SystemTime" }, { "type": "null" } ] } }, "additionalProperties": false }, "Grant": { "type": "string", "enum": [ "deny", "allow" ] }, "Profile": { "description": "Profiles provide a way to override the fields of a workspace, i.e. if a profile has set field X, then the workspace field X will be overridden by the profile field X.", "type": "object", "required": [ "name" ], "properties": { "name": { "type": "string" }, "description": { "description": "A description of this workspace", "type": [ "string", "null" ] }, "remote-location": { "description": "The default output object store location, e.g. 's3://bucket/key/' where key is optional", "type": [ "string", "null" ] }, "includes": { "description": "An array of directories and filenames containing .sql and .sdf.yml files", "type": [ "array", "null" ], "items": { "$ref": "#/definitions/IncludePath" } }, "excludes": { "description": "An array of directories and filenames to be skipped when resolving includes", "type": [ "array", "null" ], "items": { "$ref": "#/definitions/FilePath" } }, "references": { "description": "An array of paths to other workspaces, i.e. .sql and .yml files", "writeOnly": true, "type": [ "array", "null" ], "items": { "$ref": "#/definitions/WorkspacePath" } }, "dialect": { "description": "The default dialect of this workspace. If not set, defaults to sdf dialect", "anyOf": [ { "$ref": "#/definitions/Dialect" }, { "type": "null" } ] }, "resources": { "description": "An array of paths to directories and files, which will be copied to the SDF service on deployment", "type": [ "array", "null" ], "items": { "$ref": "#/definitions/FilePath" } }, "default-catalog": { "description": "Defines a default catalog [If not set, defaults to the directory of the workspace]", "type": [ "string", "null" ] }, "default-schema": { "description": "Defines a default schema [If not set, defaults to 'pub']", "type": [ "string", "null" ] }, "source-locations": { "description": "Workspace defined by these set of files", "anyOf": [ { "$ref": "#/definitions/FilePath" }, { "type": "null" } ] }, "variables": { "description": "An array of named values for setting SQL variables from your environment Ex. -dt: dt, used in SQL as @dt", "type": [ "array", "null" ], "items": { "$ref": "#/definitions/Variable" } }, "code-reports": { "description": "An array of queries over the information schema that will be run on sdf describe and sdf deploy", "type": [ "array", "null" ], "items": { "$ref": "#/definitions/CodeReportPath" } }, "code-checks": { "description": "An array of queries over the information schema that will be run on sdf describe and sdf deploy", "type": [ "array", "null" ], "items": { "$ref": "#/definitions/CodeCheckPath" } }, "access-control": { "description": "An array of attribute based access control queries over the information schema, current user and current job, that will be run on sdf build and sdf deploy", "type": [ "array", "null" ], "items": { "$ref": "#/definitions/AccessControlPath" } } }, "additionalProperties": false }, "Table": { "description": "A tables is either defined by given data (also called external table) or defined via a query.", "type": "object", "required": [ "name" ], "properties": { "name": { "type": "string" }, "description": { "type": [ "string", "null" ] }, "dialect": { "description": "An array of sql file names [Typically inferred]", "anyOf": [ { "$ref": "#/definitions/Dialect" }, { "type": "null" } ] }, "dependencies": { "description": "ALl table dependencies (syntax: catalog.schema.table)", "type": [ "array", "null" ], "items": { "type": "string" } }, "columns": { "description": "The columns of the schema: name, type, metadata", "type": [ "array", "null" ], "items": { "$ref": "#/definitions/Column" } }, "partitioned-by": { "description": "The partitioning format of the table", "type": [ "array", "null" ], "items": { "$ref": "#/definitions/Partition" } }, "schedule": { "description": "The schedule of the table [expressed as cron]", "type": [ "string", "null" ] }, "starting": { "description": "The first date of the table [expressed by prefixes of RFC 33]", "type": [ "string", "null" ] }, "classifiers": { "description": "An array of classifier references", "type": [ "array", "null" ], "items": { "type": "string" } }, "reclassify": { "description": "Array of reclassify instructions for changing the attached classifier labels", "type": [ "array", "null" ], "items": { "$ref": "#/definitions/Reclassify" } }, "lineage": { "description": "Lineage, a tagged array of column references", "anyOf": [ { "$ref": "#/definitions/Lineage" }, { "type": "null" } ] }, "materialization": { "description": "The materialization scheme of this table", "anyOf": [ { "$ref": "#/definitions/Materialization" }, { "type": "null" } ] }, "insert-into": { "description": "Store data under this catalog.schema.table instead of the original name", "type": [ "string", "null" ] }, "location": { "description": "Data is at this location", "type": [ "string", "null" ] }, "file-format": { "description": "Store table in this format [only for external tables]", "anyOf": [ { "$ref": "#/definitions/FileFormat" }, { "type": "null" } ] }, "with-header": { "description": "CSV data has a header [only for external tables]", "type": [ "boolean", "null" ] }, "delimiter": { "description": "CSV data is separated by this delimiter [only for external tables]", "type": [ "string", "null" ] }, "compression": { "description": "Json or CSV data is compressed with this method [only for external tables]", "anyOf": [ { "$ref": "#/definitions/CompressionType" }, { "type": "null" } ] }, "source-locations": { "description": "Table is defined by these .sql and/or .sdf files", "type": [ "array", "null" ], "items": { "$ref": "#/definitions/FilePath" } } }, "additionalProperties": false }, "Column": { "type": "object", "required": [ "name" ], "properties": { "name": { "description": "The name of the column", "type": "string" }, "description": { "description": "A description of this column", "type": [ "string", "null" ] }, "datatype": { "description": "The type of this column", "type": [ "string", "null" ] }, "nullable": { "description": "The type of this column", "type": [ "boolean", "null" ] }, "classifiers": { "description": "An array of classifier references", "type": [ "array", "null" ], "items": { "type": "string" } }, "lineage": { "description": "Lineage, a tagged array of column references", "anyOf": [ { "$ref": "#/definitions/Lineage" }, { "type": "null" } ] }, "reclassify": { "description": "Array of reclassify instructions for changing the attached classifier labels", "type": [ "array", "null" ], "items": { "$ref": "#/definitions/Reclassify" } } }, "additionalProperties": false }, "Lineage": { "type": "object", "properties": { "copy": { "description": "The output column is computed by copying these upstream columns", "type": [ "array", "null" ], "items": { "type": "string" } }, "modify": { "description": "The output column is computed by transforming these upstream columns", "type": [ "array", "null" ], "items": { "type": "string" } }, "scan": { "description": "These upstream columns are indirectly used to produce the output (e.g. in WHERE or GROUP BY)", "type": [ "array", "null" ], "items": { "type": "string" } }, "apply": { "description": "These functions were used to produce the output column", "type": [ "array", "null" ], "items": { "type": "string" } } }, "additionalProperties": false }, "Reclassify": { "type": "object", "properties": { "to": { "description": "Target classifier", "type": [ "string", "null" ] }, "from": { "description": "Expected source classifier", "type": [ "string", "null" ] } }, "additionalProperties": false }, "Partition": { "description": "A partition is a table column, used to describe to which partition this row belongs to", "type": "object", "required": [ "name" ], "properties": { "name": { "description": "The name of the partition column", "type": "string" }, "description": { "description": "A description of the partition column", "type": [ "string", "null" ] }, "format": { "description": "The format of the partition column [use strftime format for date/time] See (guide)[https://docs.sdf.com/guide/schedules]", "type": [ "string", "null" ] } }, "additionalProperties": false }, "Materialization": { "oneOf": [ { "description": "All derived tables are cached by default", "type": "string", "enum": [ "cached" ] }, { "description": "External tables must be explicitly marked When using 'Create external table` SQL syntax", "type": "string", "enum": [ "external" ] }, { "description": "View", "type": "string", "enum": [ "view" ] }, { "description": "Ephemeral", "type": "string", "enum": [ "ephemeral" ] }, { "description": "Recursive warehouse tables must be explicitly marked", "type": "string", "enum": [ "recursive" ] } ] }, "FileFormat": { "description": "Store table data in these formats", "type": "string", "enum": [ "parquet", "csv", "json" ] }, "CompressionType": { "description": "Compress table data using these methods", "oneOf": [ { "type": "string", "enum": [ "tar", "zstd" ] }, { "description": "BZIP2 Compression (.bz2)", "type": "string", "enum": [ "bzip2" ] }, { "description": "GZIP Compression (.gzip)", "type": "string", "enum": [ "gzip" ] }, { "description": "None, (default)", "type": "string", "enum": [ "none" ] } ] }, "Classifier": { "description": "A classifier defines the labels that can be attached to columns or a table.", "type": "object", "required": [ "name" ], "properties": { "name": { "description": "The name of the classifier type", "type": "string" }, "description": { "description": "A description of this classifier type", "type": [ "string", "null" ] }, "labels": { "description": "Named classifier labels", "type": [ "array", "null" ], "items": { "$ref": "#/definitions/Label" } }, "scope": { "description": "scope of the classifier: table or column", "anyOf": [ { "$ref": "#/definitions/Scope" }, { "type": "null" } ] }, "cardinality": { "description": "cardinality of the classifier: zero-or-one, one or zero-or-many", "anyOf": [ { "$ref": "#/definitions/Cardinality" }, { "type": "null" } ] }, "propagate": { "description": "does the classifier propagate from scope to scope or is it a one scope marker", "type": [ "boolean", "null" ] }, "source-locations": { "description": "Classifier defined by these set of .sdf files", "anyOf": [ { "$ref": "#/definitions/FilePath" }, { "type": "null" } ] } }, "additionalProperties": false }, "Label": { "description": "A classifier element is a scoped classifier label (e.g. the element PII belongs to the classifier scope data)", "type": "object", "required": [ "name" ], "properties": { "name": { "description": "The name of the label, use \"*\" to allow arbitrary strings as labels", "type": "string" }, "description": { "description": "A description of this classifier element", "type": [ "string", "null" ] } }, "additionalProperties": false }, "Scope": { "type": "string", "enum": [ "column", "table" ] }, "Cardinality": { "type": "string", "enum": [ "zero-or-one", "one", "zero-or-more" ] }, "Function": { "description": "A function block defines the signature for user defined", "type": "object", "required": [ "name" ], "properties": { "name": { "description": "The name of the function [syntax: [[catalog.]schema].function]", "type": "string" }, "section": { "description": "The generic type bounds", "type": [ "string", "null" ] }, "dialect": { "description": "The dialect that provides this function", "anyOf": [ { "$ref": "#/definitions/Dialect" }, { "type": "null" } ] }, "description": { "description": "A description of this function", "type": [ "string", "null" ] }, "variadic": { "description": "Arbitrary number of arguments of an common type out of a list of valid types", "anyOf": [ { "$ref": "#/definitions/Variadic" }, { "type": "null" } ] }, "kind": { "description": "The function kind", "anyOf": [ { "$ref": "#/definitions/FunctionKind" }, { "type": "null" } ] }, "parameters": { "description": "The arguments of this function", "type": [ "array", "null" ], "items": { "$ref": "#/definitions/Parameter" } }, "optional-parameters": { "description": "The arguments of this function", "type": [ "array", "null" ], "items": { "$ref": "#/definitions/OptionalParameter" } }, "returns": { "description": "The results of this function (can be a tuple)", "anyOf": [ { "$ref": "#/definitions/Parameter" }, { "type": "null" } ] }, "binds": { "description": "The generic type bounds", "type": [ "array", "null" ], "items": { "$ref": "#/definitions/TypeBound" } }, "volatility": { "description": "volatility - The volatility of the function.", "anyOf": [ { "$ref": "#/definitions/Volatility" }, { "type": "null" } ] }, "examples": { "description": "example - Example use of the function (tuple with input/output)", "type": [ "array", "null" ], "items": { "$ref": "#/definitions/Example" } }, "cross-link": { "description": "cross-link - link to existing documentation, for example: https://prestodb.io/docs/current/functions/datetime.html#truncation-function", "type": [ "string", "null" ] }, "reclassify": { "description": "Array of reclassify instructions for changing the attached classifier labels", "type": [ "array", "null" ], "items": { "$ref": "#/definitions/Reclassify" } }, "source-locations": { "description": "Function defined by these set of .sdf files", "type": [ "array", "null" ], "items": { "$ref": "#/definitions/FilePath" } } }, "additionalProperties": false }, "Variadic": { "description": "Arbitrary number of arguments of an common type out of a list of valid types", "oneOf": [ { "description": "All arguments have the same types", "type": "string", "enum": [ "uniform" ] }, { "description": "All even arguments have one type, odd arguments have another type", "type": "string", "enum": [ "even-odd" ] } ] }, "FunctionKind": { "type": "string", "enum": [ "scalar", "aggregate", "window" ] }, "Parameter": { "description": "A function parameter", "type": "object", "properties": { "name": { "description": "The name of the parameter", "type": [ "string", "null" ] }, "description": { "description": "A description of this parameter", "type": [ "string", "null" ] }, "datatype": { "description": "The datatype of this parameter", "type": [ "string", "null" ] }, "nullable": { "description": "The nullability of this column", "type": [ "boolean", "null" ] }, "classifier": { "description": "An array of classifier references", "type": [ "array", "null" ], "items": { "type": "string" } }, "constant": { "description": "The required constant value of this parameter", "type": [ "string", "null" ] }, "identifiers": { "description": "The parameter may appear as identifier, without quote", "type": [ "array", "null" ], "items": { "type": "string" } } }, "additionalProperties": false }, "OptionalParameter": { "description": "A function parameter", "type": "object", "required": [ "datatype", "name" ], "properties": { "name": { "description": "The name of the parameter", "type": "string" }, "description": { "description": "A description of this parameter", "type": [ "string", "null" ] }, "datatype": { "description": "The datatype of this parameter", "type": "string" }, "classifier": { "description": "An array of classifier references", "type": [ "array", "null" ], "items": { "type": "string" } }, "constant": { "description": "The required constant value of this parameter", "type": [ "string", "null" ] }, "identifiers": { "description": "The parameter may appear as identifier, without quote", "type": [ "array", "null" ], "items": { "type": "string" } } }, "additionalProperties": false }, "TypeBound": { "type": "object", "required": [ "datatypes", "type-variable" ], "properties": { "type-variable": { "type": "string" }, "datatypes": { "type": "array", "items": { "type": "string" } } }, "additionalProperties": false }, "Volatility": { "description": "A function's volatility, which defines the functions eligibility for certain optimizations", "oneOf": [ { "description": "Pure - An pure function will always return the same output when given the same input.", "type": "string", "enum": [ "pure" ] }, { "description": "Stable - A stable function may return different values given the same input across different queries but must return the same value for a given input within a query.", "type": "string", "enum": [ "stable" ] }, { "description": "Volatile - A volatile function may change the return value from evaluation to evaluation. Multiple invocations of a volatile function may return different results when used in the same query.", "type": "string", "enum": [ "volatile" ] } ] }, "Example": { "type": "object", "required": [ "input", "output" ], "properties": { "input": { "description": "The sql string corresponding to the input of this example", "type": "string" }, "output": { "description": "The output corresponding to running the input string", "type": "string" } }, "additionalProperties": false }, "Plugin": { "description": "A function block defines the signature for user defined", "type": "object", "required": [ "binary", "extension", "format", "name" ], "properties": { "name": { "description": "The name of the plugin [e.g.: pyspark]", "type": "string" }, "binary": { "description": "Full path to the binary [e.g.: /usr/bin/python3]", "type": "string" }, "extension": { "description": "File extension to scan in the includes directories; must be unique [e.g.: .py]", "type": "string" }, "format": { "description": "Format of the output files; must be known to SDF [e.g.: spark-lp-json]", "type": "string" } }, "additionalProperties": false } } }
role-arg-spec.json
{ "$defs": { "datatype": { "enum": [ "str", "list", "dict", "bool", "int", "float", "path", "raw", "jsonarg", "json", "bytes", "bits" ], "type": "string" }, "deprecated_alias": { "properties": { "collection_name": { "type": "string" }, "date": { "type": "string" }, "name": { "type": "string" }, "version": { "type": "string" } }, "required": ["name"], "type": "object" }, "entry_point": { "additionalProperties": false, "properties": { "author": { "oneOf": [ { "type": "string" }, { "items": { "type": "string" }, "type": "array" } ] }, "description": { "oneOf": [ { "type": "string" }, { "items": { "type": "string" }, "type": "array" } ] }, "options": { "additionalProperties": { "$ref": "#/$defs/option" }, "type": "object" }, "seealso": { "items": { "oneOf": [ { "additionalProperties": false, "properties": { "description": { "type": "string" }, "module": { "type": "string" } }, "required": ["module"], "type": "object" }, { "additionalProperties": false, "properties": { "description": { "type": "string" }, "plugin": { "type": "string" }, "plugin_type": { "type": "string" } }, "required": ["plugin", "plugin_type"], "type": "object" }, { "additionalProperties": false, "properties": { "description": { "type": "string" }, "ref": { "type": "string" } }, "required": ["description", "ref"], "type": "object" }, { "additionalProperties": false, "properties": { "description": { "type": "string" }, "link": { "type": "string" }, "name": { "type": "string" } }, "required": ["description", "link", "name"], "type": "object" } ] }, "type": "array" }, "short_description": { "type": "string" }, "version_added": { "type": "string" } }, "required": ["options"], "title": "Entry Point", "type": "object" }, "option": { "additionalProperties": false, "aliases": { "items": { "type": "string" }, "type": "array" }, "apply_defaults": { "type": "string" }, "deprecated_aliases": { "items": { "$ref": "#/$defs/deprecated_alias" }, "type": "array" }, "markdownDescription": "xxx", "options": { "$ref": "#/$defs/option" }, "properties": { "choices": { "type": "array" }, "default": { "default": "None" }, "description": { "description": "Detailed explanation of what this option does. It should be written in full sentences.", "oneOf": [ { "type": "string" }, { "items": { "type": "string" }, "type": "array" } ] }, "elements": { "$ref": "#/$defs/datatype" }, "fallback": { "default": "None", "type": "string" }, "no_log": { "default": false, "type": "boolean" }, "option-name": { "description": "The name of the option/argument.", "type": "string" }, "options": { "additionalProperties": { "$ref": "#/$defs/option" }, "type": "object" }, "required": { "default": false, "type": "boolean" }, "type": { "$ref": "#/$defs/datatype", "markdownDescription": "See [argument-spec](https://docs.ansible.com/ansible/latest/dev_guide/developing_program_flow_modules.html#argument-spec" }, "version_added": { "type": "string" } }, "removed_at_date": { "type": "string" }, "removed_from_collection": { "type": "string" }, "removed_in_version": { "type": "string" }, "title": "Option" } }, "$id": "https://raw.githubusercontent.com/ansible/ansible-lint/main/src/ansiblelint/schemas/role-arg-spec.json", "$schema": "http://json-schema.org/draft-07/schema", "additionalProperties": false, "examples": ["meta/argument_specs.yml"], "markdownDescription": "Add entry point, usually `main`.\nSee [role-argument-validation](https://docs.ansible.com/ansible/latest/user_guide/playbooks_reuse_roles.html#role-argument-validation)", "properties": { "argument_specs": { "additionalProperties": { "$ref": "#/$defs/entry_point" }, "markdownDescription": "Add entry point, usually `main`.\nSee [role-argument-validation](https://docs.ansible.com/ansible/latest/user_guide/playbooks_reuse_roles.html#role-argument-validation)" } }, "title": "Ansible Role Argument Specs Schema" }
stryker-core.json
{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "StrykerOptions", "description": "JSON schema for the Stryker Mutator configuration file", "type": "object", "definitions": { "commandRunnerOptions": { "title": "CommandRunnerOptions", "type": "object", "properties": { "command": { "description": "The command to test each mutant. For example \"npm run mocha\". Defaults to \"npm test\".", "type": "string", "default": "npm test" } } }, "logLevel": { "title": "LogLevel", "type": "string", "enum": [ "off", "fatal", "error", "warn", "info", "debug", "trace" ], "tsEnumNames": [ "Off", "Fatal", "Error", "Warning", "Information", "Debug", "Trace" ] }, "coverageAnalysis": { "title": "CoverageAnalysis", "type": "string", "enum": [ "off", "all", "perTest" ] }, "reportType": { "title": "ReportType", "type": "string", "enum": [ "full", "mutationScore" ], "tsEnumNames": [ "Full", "MutationScore" ] }, "clearTextReporterOptions": { "title": "ClearTextReporterOptions", "type": "object", "properties": { "allowColor": { "description": "Indicates whether or not to use color coding in output.", "type": "boolean", "default": true }, "allowEmojis": { "description": "Enable emojis in your clear text report (experimental).", "type": "boolean", "default": false }, "logTests": { "description": "Indicates whether or not to log which tests were executed for a given mutant.", "type": "boolean", "default": true }, "maxTestsToLog": { "description": "Indicates the maximum amount of test to log when `logTests` is enabled", "type": "integer", "minimum": 0, "default": 3 } } }, "dashboardOptions": { "title": "DashboardOptions", "additionalProperties": false, "type": "object", "properties": { "project": { "description": "Indicates which project to use if the \"dashboard\" reporter is enabled.", "type": "string" }, "version": { "description": "Indicates which version to use if the \"dashboard\" reporter is enabled.", "type": "string" }, "module": { "description": "Indicates which module to use if the \"dashboard\" reporter is enabled.", "type": "string" }, "baseUrl": { "description": "Indicates the base url of the stryker dashboard.", "type": "string", "default": "https://dashboard.stryker-mutator.io/api/reports" }, "reportType": { "description": "Indicates wether to send a full report (inc. source code and mutant results) or only the mutation score.", "$ref": "#/definitions/reportType", "default": "full" } } }, "eventRecorderOptions": { "title": "EventRecorderOptions", "additionalProperties": false, "type": "object", "properties": { "baseDir": { "description": "The base dir to write the events to", "type": "string", "default": "reports/mutation/events" } } }, "htmlReporterOptions": { "title": "HtmlReporterOptions", "additionalProperties": false, "type": "object", "properties": { "fileName": { "description": "The `fileName` of the html report.", "type": "string", "default": "reports/mutation/mutation.html" } } }, "jsonReporterOptions": { "title": "JsonReporterOptions", "additionalProperties": false, "type": "object", "properties": { "fileName": { "description": "The relative filename for the json report.", "type": "string", "default": "reports/mutation/mutation.json" } } }, "mutationScoreThresholds": { "title": "MutationScoreThresholds", "additionalProperties": false, "type": "object", "properties": { "high": { "$ref": "#/definitions/percentage", "default": 80 }, "low": { "$ref": "#/definitions/percentage", "default": 60 }, "break": { "oneOf": [ { "type": "null" }, { "$ref": "#/definitions/percentage" } ], "default": null } } }, "percentage": { "type": "number", "minimum": 0, "maximum": 100 }, "mutatorDescriptor": { "type": "object", "additionalProperties": false, "properties": { "plugins": { "description": "Override the default babel plugins Stryker uses to parse your JavaScript files. The default list of plugins is extensive and normally doesn't need overriding. Stryker also loads your babel plugins by default (if you have them). If Stryker's default babel plugins conflicts with your plugins, try to override this list with an empty array.", "anyOf": [ { "type": "array", "items": { "type": [ "string", "array" ] } }, { "type": "null" } ], "default": null }, "excludedMutations": { "type": "array", "items": { "type": "string" }, "default": [] } } }, "warningOptions": { "title": "WarningOptions", "type": "object", "default": {}, "properties": { "unknownOptions": { "description": "decide whether or not to log warnings when additional stryker options are configured", "type": "boolean", "default": true }, "preprocessorErrors": { "description": "decide whether or not to log warnings when a preprocessor error occurs. For example, when the disabling of type errors fails.", "type": "boolean", "default": true }, "unserializableOptions": { "description": "decide whether or not to log warnings when a configuration options are unserializable. For example, using a `/regex/` or `function` in your configuration options.", "type": "boolean", "default": true }, "slow": { "description": "decide whether or not to log warnings when Stryker detects a slow part of mutation that can be sped up by changing some configuration. For example using `--ignoreStatic`.", "type": "boolean", "default": true } } } }, "properties": { "allowConsoleColors": { "description": "The 'allowConsoleColors' value indicates whether Stryker should use colors in console.", "type": "boolean", "default": true }, "buildCommand": { "type": "string", "description": "Configure a build command to run after mutating the code, but before mutants are tested. This is generally used to transpile your code before testing. Only configure this if your test runner doesn't take care of this already and you're not using just-in-time transpiler like `babel/register` or `ts-node`.", "examples": [ "tsc -b", "babel src --out-dir lib", "npm run build" ] }, "checkers": { "description": "Enable checker plugins here. A checker plugin will be invoked for each mutant before it is run in a test runner. It can check to see of a given mutant is valid, by for example validate that it won't result in a type error", "type": "array", "items": { "type": "string" }, "default": [] }, "checkerNodeArgs": { "description": "Configure arguments to be passed as exec arguments to the checker child process(es). For example, running Stryker with `--concurrency 1 --checkerNodeArgs --inspect-brk` will allow you to debug the checker child process. See `execArgv` of [`child_process.fork`](https://nodejs.org/api/child_process.html#child_process_child_process_fork_modulepath_args_options)", "type": "array", "default": [], "items": { "type": "string" } }, "concurrency": { "description": "Set the concurrency of workers. Stryker will always run checkers and test runners in parallel by creating worker processes (note, not `worker_threads`). This defaults to `n-1` where `n` is the number of logical CPU cores available on your machine, unless `n <= 4`, in that case it uses `n`. This is a sane default for most use cases.", "type": "number" }, "commandRunner": { "description": "Options used by the command test runner. Note: these options will only be used when the command test runner is activated (this is the default)", "$ref": "#/definitions/commandRunnerOptions", "default": {} }, "coverageAnalysis": { "$ref": "#/definitions/coverageAnalysis", "description": "Indicates which coverage analysis strategy to use. During mutation testing, Stryker will try to only run the tests that cover a particular mutant.\n\n'perTest': Analyse coverage per test.\n'all': Analyse the coverage for the entire test suite.\n'off' (default): Don't use coverage analysis", "default": "perTest" }, "clearTextReporter": { "description": "The options for the clear text reporter.", "$ref": "#/definitions/clearTextReporterOptions", "default": {} }, "dashboard": { "description": "The options for the dashboard reporter.", "$ref": "#/definitions/dashboardOptions", "default": {} }, "dryRunOnly": { "description": "Execute the initial test run only without doing actual mutation testing. Dry run only will still mutate your code before doing the dry run without those mutants being active, thus can be used to test that StrykerJS can run your test setup. This can be useful, for example, in CI pipelines.", "type":"boolean", "default": false }, "eventReporter": { "description": "The options for the event recorder reporter.", "$ref": "#/definitions/eventRecorderOptions", "default": {} }, "ignorePatterns": { "description": "A comma separated list of patterns used for specifying which files need to be ignored. This should only be used in cases where you experience a slow Stryker startup, because too many (or too large) files are copied to the sandbox that are not needed to run the tests. For example, image or movie directories. Note: This option will have NO effect when using the `--inPlace` option. The directories `node_modules`, `.git` and some others are always ignored. Example: `--ignorePatterns dist`. These patterns are ALWAYS ignored: [`node_modules`, `.git`, `/reports`, `*.tsbuildinfo`, `/stryker.log`, `.stryker-tmp`]. Because Stryker always ignores these, you should rarely have to adjust the `ignorePatterns` setting at all. This is useful to speed up Stryker by ignoring big directories/files you might have in your repo that has nothing to do with your code. For example, 1.5GB of movie/image files. Specify the patterns to all files or directories that are not used to run your tests and thus should NOT be copied to the sandbox directory for mutation testing. Each patterns in this array should be a [glob pattern](#usage-of-globbing-expressions-on-options). If a glob pattern starts with `/`, the pattern is relative to the current working directory. For example, `/foo.js` matches to `foo.js` but not `subdir/foo.js`. However to SELECT specific files TO BE mutated, you better use `--mutate`.", "type": "array", "items": { "type": "string" }, "default": [] }, "ignoreStatic": { "description": "Ignore static mutants. Static mutants are mutants which are only executed during the loading of a file. This means that Stryker has to reload the entire environment in order to test the mutant AND has to run all tests. Therefore, it might make sense to ignore static mutants.", "type": "boolean", "default": false }, "incremental": { "description": "Enable 'incremental mode'. Stryker will store results in a file and use that file to speed up the next --incremental run", "type": "boolean", "default": false }, "incrementalFile": { "description": "Specify the file to use for incremental mode.", "type": "string", "default": "reports/stryker-incremental.json" }, "force": { "description": "Run all mutants, even if --incremental is provided and an incremental file exists. Can be used to force a rebuild of the incremental file.", "type": "boolean", "default": false }, "fileLogLevel": { "description": "Set the log level that Stryker uses to write to the \"stryker.log\" file", "$ref": "#/definitions/logLevel", "default": "off" }, "inPlace": { "type": "boolean", "description": "Determines whether or not Stryker should mutate your files in place. Note: mutating your files in place is generally not needed for mutation testing, unless you have a dependency in your project that is really dependent on the file locations (like \"app-root-path\" for example).\n\nWhen `true`, Stryker will override your files, but it will keep a copy of the originals in the temp directory (using `tempDirName`) and it will place the originals back after it is done. Also with `true` the `ignorePatterns` has no effect any more.\n\nWhen `false` (default) Stryker will work in the copy of your code inside the temp directory.", "default": false }, "logLevel": { "description": "Set the log level that Stryker uses to write to the console.", "$ref": "#/definitions/logLevel", "default": "info" }, "maxConcurrentTestRunners": { "description": "[DEPRECATED please use \"concurrency\" instead]. Specifies the maximum number of concurrent test runners to spawn. Mutation testing is time consuming. By default, Stryker tries to make the most of your CPU's, by spawning as many test runners as you have CPU cores (`Number.MAX_SAFE_INTEGER`).", "type": "number", "default": 9007199254740991 }, "maxTestRunnerReuse": { "description": "Restart each test runner worker process after `n` runs. Not recommended unless you are experiencing memory leaks that you are unable to resolve. Configuring `0` here means infinite reuse.", "type": "number", "default": 0 }, "mutate": { "description": "With `mutate` you configure the subset of files or just one specific file to be mutated. These should be your _production code files_, and definitely not your test files.\n(Whereas with `ignorePatterns` you prevent non-relevant files from being copied to the sandbox directory in the first place)\nThe default will try to guess your production code files based on sane defaults. It reads like this:\n- Include all js-like files inside the `src` or `lib` dir\n- Except files inside `__tests__` directories and file names ending with `test` or `spec`.\nIf the defaults are not sufficient for you, for example in a angular project you might want to\n **exclude** not only the `*.spec.ts` files but other files too, just like the default already does.\nIt is possible to specify exactly which code blocks to mutate by means of a _mutation range_. This can be done postfixing your file with `:startLine[:startColumn]-endLine[:endColumn]`. Example: src/index.js:1:3-1:5", "type": "array", "items": { "type": "string" }, "default": [ "{src,lib}/**/!(*.+(s|S)pec|*.+(t|T)est).+(cjs|mjs|js|ts|jsx|tsx|html|vue)", "!{src,lib}/**/__tests__/**/*.+(cjs|mjs|js|ts|jsx|tsx|html|vue)" ] }, "mutator": { "description": "Configure how Stryker mutates your code.", "$ref": "#/definitions/mutatorDescriptor", "default": {} }, "packageManager": { "enum": [ "npm", "yarn", "pnpm" ], "description": "The package manager Stryker can use to install missing dependencies." }, "plugins": { "description": "With 'plugins', you can add additional Node modules for Stryker to load (or require). By default, all node_modules starting with @stryker-mutator/* will be loaded, so you would normally not need to specify this option. These modules should be installed right next to stryker. For a current list of plugins, you can consult 'npm' or 'stryker-mutator.io.'", "type": "array", "items": { "type": "string" }, "default": [ "@stryker-mutator/*" ] }, "appendPlugins": { "description": "A list of additional plugins you want Stryker to load (`require`) without overwriting the (default) `plugins`.", "type": "array", "items": { "type": "string" }, "default": [] }, "reporters": { "description": "With reporters, you can set the reporters for stryker to use.", "type": "array", "items": { "type": "string" }, "default": [ "clear-text", "progress", "html" ] }, "htmlReporter": { "description": "The options for the html reporter", "$ref": "#/definitions/htmlReporterOptions", "default": {} }, "jsonReporter": { "description": "The options for the json reporter", "$ref": "#/definitions/jsonReporterOptions", "default": {} }, "disableTypeChecks": { "description": "Set to 'true' to disable type checking, or 'false' to enable it. For more control, configure a pattern that matches the files of which type checking has to be disabled. This is needed because Stryker will create (typescript) type errors when inserting the mutants in your code. Stryker disables type checking by inserting `// @ts-nocheck` atop those files and removing other `// @ts-xxx` directives (so they won't interfere with `@ts-nocheck`). The default setting allows these directives to be stripped from all JavaScript and friend files in `lib`, `src` and `test` directories.", "oneOf": [ { "type": "boolean" }, { "type": "string" } ], "examples": [ "{test,src,lib}/**/*.{js,ts,jsx,tsx,html,vue,cts,mts}" ], "default": true }, "symlinkNodeModules": { "description": "The 'symlinkNodeModules' value indicates whether Stryker should create a symbolic link to your current node_modules directory in the sandbox directories. This makes running your tests by Stryker behave more like your would run the tests yourself in your project directory. Only disable this setting if you really know what you are doing.", "type": "boolean", "default": true }, "tempDirName": { "description": "Choose a different temp dir that Stryker uses for mutation testing. This directory will contain copies of your source code during a mutation test run. It will be created if it not exists and is *entirely deleted* after a successful run, so change this with caution.", "type": "string", "default": ".stryker-tmp" }, "cleanTempDir": { "description": "Choose whether or not to clean the temp dir (which is \".stryker-tmp\" inside the current working directory by default).\n - false: Never delete the temp dir;\n - true: Delete the tmp dir after a successful run;\n - \"always\": Always delete the temp dir, regardless of whether the run was successful.", "enum": [ "always", false, true ], "default": true }, "testRunner": { "description": "With 'testRunner' you specify the test runner that Stryker uses to run your tests. The default value is command. The command runner runs a configurable bash/cmd command and bases the result on the exit code of that program (0 for success, otherwise failed). You can configure this command via the config file using the 'commandRunner: { command: 'npm run mocha' }'. It uses 'npm test' as the command by default.", "type": "string", "default": "command" }, "testRunnerNodeArgs": { "description": "Configure arguments to be passed as exec arguments to the test runner child process. For example, running Stryker with `--timeoutMS 9999999 --concurrency 1 --testRunnerNodeArgs --inspect-brk` will allow you to debug the test runner child process. See `execArgv` of [`child_process.fork`](https://nodejs.org/api/child_process.html#child_process_child_process_fork_modulepath_args_options)", "type": "array", "default": [], "items": { "type": "string" } }, "thresholds": { "description": "Specify the thresholds for mutation score.", "$ref": "#/definitions/mutationScoreThresholds", "default": {} }, "timeoutFactor": { "description": "Configure the allowed timeout deviation relative to the time of a normal test run. Tweak this if you notice that mutants are prone to creating slower code, but not infinite loops (for that, use `timeoutMS`)", "type": "number", "default": 1.5 }, "timeoutMS": { "description": "Configure an absolute timeout deviation. Tweak this if you run Stryker on a busy machine and you need to wait longer to make sure that the code indeed entered an infinite loop.", "type": "number", "default": 5000 }, "dryRunTimeoutMinutes": { "description": "Configure an absolute timeout for the initial test run. (It can take a while, therefore we use minutes as time unit.)", "type": "number", "minimum": 0, "default": 5 }, "tsconfigFile": { "description": "Configure the (root) tsconfig file for typescript projects. This will allow Stryker to rewrite the `extends` and `references` settings in this and related tsconfig files in your sandbox. Defaults to `tsconfig.json`. This setting is also used when you enable the `@stryker-mutator/typescript-checker plugin", "type": "string", "default": "tsconfig.json" }, "warnings": { "default": true, "oneOf": [ { "type": "boolean" }, { "$ref": "#/definitions/warningOptions" } ], "description": "Enable or disable certain warnings" }, "disableBail": { "description": "Disables the default of bailing after first failing test. When true runs all tests covering a mutant. Useful when the subject under test is not completely isolated by mocks and you want to know which tests are killing the mutants. This will impact performance.", "type": "boolean", "default": false }, "allowEmpty": { "description": "Allows stryker to exit without any errors in cases where no tests are found", "type": "boolean", "default": false } } }
drupal-links-action.json
{ "$id": "https://json.schemastore.org/drupal-links-action.json", "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": { "type": "object", "properties": { "title": { "title": "The static title for the local action", "type": "string" }, "title_context": { "title": "The translation context for the title value.", "type": "string" }, "route_name": { "title": "The route name used to generate a link", "type": "string" }, "route_parameters": { "title": "Route parameters for generating a link", "type": "object" }, "weight": { "title": "The weight of the local action", "type": "integer" }, "options": { "title": "Array of link options", "type": "object" }, "appears_on": { "title": "The route names where this local action appears", "type": "array", "items": { "type": "string" } }, "class": { "title": "Class for local action implementations", "type": "string" }, "deriver": { "title": "Deriver class", "type": "string" }, "cache_tags": { "title": "Cache tags", "type": "array", "items": { "type": "string" } } } }, "title": "JSON schema for Drupal action links file", "type": "object" }
sprite.json
{ "$schema": "http://json-schema.org/draft-04/schema#", "description": "Schema for image sprite generation files", "id": "https://json.schemastore.org/sprite.json", "properties": { "customstyles": { "description": "Define custom CSS declarations to inject into the generated stylesheet.", "type": "object", "additionalProperties": { "description": "A custom CSS declaration (property: value).", "type": ["string", "number"] } }, "dpi": { "description": "The image resolution of the generated image sprite", "type": "integer", "default": 96 }, "images": { "description": "An array of file paths relative to this document. The name must be unique.", "type": "object", "additionalProperties": { "description": "A source image for the sprite.", "type": "string" } }, "optimize": { "description": "Optimizes the generated image either lossy or lossless. Requires the \"Image Optimizer\" extension for Visual Studio", "enum": ["lossless", "lossy", "none"], "default": "lossless" }, "orientation": { "description": "The orientation of the individual images inside the generated sprite.", "enum": ["horizontal", "vertical"], "default": "vertical" }, "output": { "description": "Output format of the generated image sprite.", "enum": ["png", "jpg", "gif"], "default": "png" }, "padding": { "description": "The padding arround each individual image in the sprite. The value is in pixels.", "type": "integer", "default": 10 }, "pathprefix": { "description": "Add any path root in front of the generated. Example: \"/images/\"", "type": "string", "default": "" }, "stylesheet": { "description": "Define stylesheets (css, less, sass) to be generated as part of the sprite generation process.", "enum": ["none", "css", "less", "scss", "styl"], "default": "none" } }, "required": ["images"], "type": "object" }
0.5.2.json
{ "$schema": "http://json-schema.org/draft-07/schema", "description": "Freifunk Community API 0.5.2", "type": "object", "definitions": { "city": { "type": "string", "title": "City", "description": "Name of the city" }, "country": { "type": "string", "title": "Country", "description": "Your country, list has been taken from http://countrylist.net/de/", "enum": ["", "AF","AX","AL","DZ","AS","AD","AO","AI","AQ","AG","AR","AM","AW","AC","AU","AT","AZ","BS","BH","BD","BB","BY","BE","BZ","BJ","BM","BT","BO","BA","BW","BV","BR","IO","BN","BG","BF","BI","KH","CM","CA","IC","CV","KY","CF","TD","CL","CN","CX","CC","CO","KM","CG","CD","CK","CR","CI","HR","CU","CY","CZ","DK","DG","DJ","DM","DO","EC","EG","SV","GQ","ER","EE","ET","EU","FK","FO","FJ","FI","FR","GF","PF","TF","GA","GM","GE","DE","GH","GI","GR","GL","GD","GP","GU","GT","GG","GN","GW","GY","HT","HM","VA","HN","HK","HU","IS","IN","ID","IR","IQ","IE","IM","IL","IT","JM","JP","JE","JO","KZ","KE","KI","KP","KR","KW","KG","LA","LV","LB","LS","LR","LY","LI","LT","LU","MO","MK","MG","MW","MY","MV","ML","MT","MH","MQ","MR","MU","YT","MX","FM","MD","MC","MN","ME","MS","MA","MZ","MM","NA","NR","NP","NL","AN","NC","NZ","NI","NE","NG","NU","NF","MP","NO","OM","PK","PW","PS","PA","PG","PY","PE","PH","PN","PL","PT","PR","QA","RE","RO","RU","RW","SH","KN","LC","PM","VC","WS","SM","ST","SA","NT","SN","CS","SC","SL","SG","SK","SI","SB","SO","ZA","GS","SU","ES","LK","SD","SR","SJ","SZ","SE","CH","SY","TW","TJ","TZ","TH","TL","TG","TK","TO","TT","TA","TN","TR","TM","TC","TV","UG","UA","AE","GB","US","UY","UZ","VU","VE","VN","VG","VI","WF","EH","YE","ZM","ZW"] }, "address": { "type":"object", "description": "The address of the place you meet", "properties": { "name": { "type": "string", "title": "Name of your place", "description": "The name of the place you meet" }, "street": { "type": "string", "title": "Street", "description": "The street address of your meeting place" }, "zipcode": { "type": "string", "title": "ZIP", "description": "The zip code of your meeting place" } }, "additionalProperties": false }, "geoCode" :{ "type": "object", "properties":{ "lat": { "type": "number", "title": "Latitude", "description": "Lattitude of your city in decimal degrees" }, "lon": { "type": "number", "title": "Longitude", "description": "Longitude of your city in decimal degrees" } }, "required": ["lat", "lon"], "additionalProperties": false }, "email": { "type": "string", "title": "Email", "format": "email", "pattern": "^[A-Za-z0-9äöüÄÖUß_\\-\\.]+@[A-Za-z0-9äöüÄÖUß_\\-\\.]+\\.[A-Za-z]{2,}$" }, "url": { "type": "string", "pattern": "^(http|https)://[A-Za-z0-9ÄÖÜäöüß\\-_\\./]+" }, "phone": { "type": "string", "title": "Phone" } }, "properties": { "api": { "type": "string", "title": "API", "description": "The Freifunk Community API version you use", "enum": ["0.1", "0.2.0", "0.2.1", "0.3.0", "0.3.1", "0.3.2", "0.4.0", "0.4.1", "0.4.2", "0.4.3", "0.4.4", "0.4.5", "0.4.6", "0.4.7", "0.4.8", "0.4.9", "0.4.10", "0.4.11", "0.4.12", "0.4.13", "0.4.14", "0.4.15", "0.4.16", "0.5.0", "0.5.1", "0.5.2"], "default": "0.5.2" }, "name": { "type": "string", "title": "Name", "description": "The name of your community" }, "metacommunity": { "type": "string", "title": "Metacommunity", "description": "The name of your metacommunity, if your local community belongs to a bigger one" }, "location": { "title": "Primary Location", "type": "object", "description": "Position data such as a postal address or geographic coordinates", "properties": { "city": { "$ref": "#/definitions/city" }, "country": { "$ref": "#/definitions/country" }, "address": { "$ref": "#/definitions/address" }, "geoCode": { "$ref": "#/definitions/geoCode" }, "additionalLocations": { "type": "array", "title": "Additional Locations", "description": "Add some more locations where your community is active.", "items": { "title": "Location", "type": "object", "properties": { "city": { "$ref": "#/definitions/city" }, "country": { "$ref": "#/definitions/country" }, "address": { "$ref": "#/definitions/address" }, "geoCode": { "$ref": "#/definitions/geoCode" } }, "required": ["city", "geoCode"], "additionalProperties": false } } }, "required": ["city", "geoCode"], "additionalProperties": false }, "contact": { "type": "object", "minProperties": 1, "properties": { "email": { "$ref": "#/definitions/email", "title": "Email", "description": "Email address to which other people can contact your community ([email protected])" }, "facebook": { "type": "string", "title": "facebook", "description": "URL to your community's facebook account (https://facebook.com/...)", "pattern": "^(http|https)://([a-z\\-]*\\.|)facebook\\.com/[A-Za-z0-9ÄÖÜäöüß\\-_\\.]+" }, "identica": { "type": "string", "title": "identica", "description": "URL to your community's identica account (https://identi.ca/...)", "pattern": "^(http|https)://([a-z\\-]*\\.|)identi\\.ca/[A-Za-z0-9ÄÖÜäöüß\\-_\\.]+" }, "irc": { "type":"string", "title": "IRC", "description": "Your community's ICR channel; starts with irc://", "pattern": "^(irc|ircs)://.*" }, "jabber": { "type": "string", "title": "Jabber", "description": "A jabber account someone reads ([email protected])", "pattern": "^[A-Za-z0-9äöüÄÖUß_\\-\\.]+@[A-Za-z0-9äöüÄÖUß_\\-\\.]+\\.[A-Za-z]{2,}(\\?join){0,1}$" }, "ml": { "type": "string", "title": "Mailinglist", "description": "The email address ([email protected]) of your mailing list or a link to the mailinglist info page (http{s}://...)", "pattern": "^([A-Za-z0-9äöüÄÖUß_\\-\\.]+@[A-Za-z0-9äöüÄÖUß_\\-\\.]+\\.[A-Za-z]{2,}|(http|https)://[A-Za-z0-9ÄÖÜäöüß\\-_\\./]+)$" }, "googleplus": { "type": "string", "title": "Google+", "description": "URL to your community's g+ account (https://plus.google.com/...)", "pattern": "^(http|https)://plus\\.google\\.com/[A-Za-z0-9ÄÖÜäöüß\\+\\-\\./_]+" }, "matrix": { "type": "string", "title": "Matrix", "description": "URL to your community's matrix channel (https://matrix.to/#/!...)", "pattern": "^https://matrix\\.to/#/" }, "mastodon": { "title": "Mastodon", "$ref": "#/definitions/url", "description": "URL to your community's mastodon profile (https://...)" }, "twitter": { "type": "string", "title": "Twitter", "description": "Your community's Twitter name (starts with @)", "pattern": "^@[A-Za-z0-9_\\-]{1,15}" }, "webform": { "$ref": "#/definitions/url", "title": "Webform", "description": "URL to your community's contact form (http{s}://...)" }, "phone": { "$ref": "#/definitions/phone", "title": "Phone", "description": "If your community has a phone number (e.g. +49 1234 567890 based on the E.123 notation)" } }, "additionalProperties": false }, "url": { "title": "HomePage", "$ref": "#/definitions/url", "description": "The main website (http{s}://...)" }, "timeline": { "type": "array", "description": "These are lifetime events something like date of birth (and rebirth :-) of your community or other important milestones", "items": { "type": "object", "properties": { "description": { "type": "string", "title": "Description", "description": "Description of your lifetime event" }, "timestamp": { "type": "string", "title": "Timestamp", "format": "date", "description": "ISO 8601 timestamp of the event's date (format yyyy-mm-dd)", "pattern": "^([0-9]{4})(?:-?W([0-9]+)(?:-?([0-9]+)D?)?|(?:-([0-9]+))?-([0-9]+))(?:[T ]([0-9]+):([0-9]+)(?::([0-9]+)(?:\\.([0-9]+))?)?)?(?:Z(-?[0-9]*))?" }, "url": { "$ref": "#/definitions/url", "title": "URL", "description": "URL to details of this timeline-element" } }, "additionalProperties": false } }, "feeds": { "type": "array", "title": "Feeds", "description": "Feeds you provide your community", "items": { "type": "object", "properties": { "name": { "type": "string", "title": "Feed name", "description": "Name of the feed" }, "category": { "type": "string", "title": "Feed category", "description": "Category of the feed like blog entries, calendars, forum messages, wiki articles, ...", "enum": ["blog", "forum", "ics", "podcast", "wiki", "others", ""], "default": "" }, "type": { "type": "string", "title": "Feed Type", "description": "Type of the feed like RSS, Atom, XML" }, "url": { "$ref": "#/definitions/url", "title": "URL", "description": "URL of the feed" } }, "additionalProperties": false } }, "state": { "type": "object", "title": "States", "description": "A collection of status-related data. Actual open/closed status, icons, last change timestamp etc.", "properties": { "nodes": { "type": "integer", "minimum": 0, "title": "Active Nodes", "description": "Number of active nodes. This field is predestined to be updated regularly, please see sample solutions for <a href=\"https://github.com/Freifunk-Mainz/changeffapi\" target=\"_blank\">Gluon</a> or <a href=\"https://github.com/freifunk/common.api.freifunk.net/blob/master/contrib/ffapi-update-nodes.py\" target=\"_blank\">OLSR</a>" }, "lastchange": { "type":"string", "title": "Last Change", "format": "date-time", "description": "At what ISO 8601 timestamp has your community status lastly changed?", "default": 0 }, "message": { "type": "string", "title": "Message", "description": "A free-form string something like 'open for public', 'members only' or whatever you want it to be)" }, "description": { "type":"string", "title": "Description", "description": "Describe your community in a few lines" }, "focus": { "type": "array", "title": "Focus", "description": "What's the focus of your local community?", "items": { "type": "string", "title": "option", "enum": ["infrastructure/backbone", "Public Free Wifi", "Social Community Building", "Local services and content", "Free internet access" ] } } }, "required": [ "lastchange" ], "additionalProperties": false }, "nodeMaps": { "type": "array", "title": "Nodes", "description": "Maps of nodes or topology your community provides", "items": { "type": "object", "title": "node", "properties": { "url": { "$ref": "#/definitions/url", "title": "URL of the map", "description": "The URL where the map is located" }, "interval": { "type": "string", "title": "interval", "description": "How often the map will be refreshed" }, "technicalType": { "type": "string", "title": "map techincal type", "description": "The kind of map is used", "enum": [ "", "ffmap", "ffsomething", "olsr-dot", "openwifimap", "netmon", "libremap", "nodewatcher", "kml", "nodelist", "meshviewer", "hopglass" ], "default": "" }, "mapType": { "type": "string", "title": "Maptype", "description": "", "enum": [ "", "geographical", "structural", "list/status" ], "default": "" } }, "additionalProperties": false } }, "services": { "type": "array", "title": "Services", "description": "Services Provided by your community", "items": { "type": "object", "properties": { "serviceName": { "type": "string", "title": "Service Name", "description": "Name of your service (e.g. jabber...)" }, "serviceDescription": { "type": "string", "title": "Service Description", "description": "Describe your service" }, "externalUri": { "type": "string", "title": "External URI", "description": "URI to use your service from the internet" }, "internalUri": { "type": "string", "title": "Internal URI", "description": "URI to use your service from Freifunk or icvpn-networks" } }, "additionalProperties": false } }, "support": { "type": "object", "title": "Support for your community", "properties": { "club": { "type": "object", "title": "Supporting Club", "properties": { "name": { "type": "string", "title": "Club Name", "description": "Name of the Club" }, "street": { "type": "string", "title": "Street", "description": "Address - Street" }, "zip": { "type": "string", "title": "ZIP", "description": "Address - ZIP" }, "city": { "$ref": "#/definitions/city" }, "url": { "$ref": "#/definitions/url", "title": "HomePage", "description": "The club's website (http{s}://...)" }, "email": { "$ref": "#/definitions/email", "description": "Email address to contact the club ([email protected])" }, "board": { "type": "array", "title": "Board Members", "description": "Who are the board members of the club?", "items": { "type": "string", "title": "Name" } } }, "additionalProperties": false }, "donations": { "type": "object", "title": "Donations", "properties": { "bankaccount": { "type": "object", "title": "Bank Account", "properties": { "IBAN": { "type": "string", "title": "IBAN" }, "BIC": { "type": "string", "title": "BIC" }, "usage": { "type": "string", "title": "Usage of the donations", "description": "Please use this string as transfer-purpose to define a special usage of your donation." } }, "additionalProperties": false }, "campaigns": { "type": "array", "title": "Campaigns", "items": { "type": "object", "title": "campaign", "properties": { "provider": { "type": "string", "title": "Campaign Providers", "description": "Where do you host your donations?", "enum": [ "", "betterplace", "boost" ], "default": "" }, "projectid": { "type": "string", "title": "Project ID", "description": "ID of your project, Betterplace-IDs are multiple digits and can be found within the URL" } }, "additionalProperties": false } } }, "additionalProperties": false } }, "additionalProperties": false }, "socialprojects": { "type": "object", "title": "", "properties": { "number": { "type": "integer", "mininum": 0, "title": "Number of Projects", "description": "Number of projects supported by your Community" }, "website": { "$ref": "#/definitions/url", "title": "URL of your page", "description": "A link to a web site where people can find an overview over your projects" }, "contact": { "$ref": "#/definitions/email", "title": "Contact Email", "description": "Please provide an email address to contact you on refugees and social projects" } }, "additionalProperties": false }, "privacy": { "type": "object", "title": "Privacy Policy", "properties": { "policyurl": { "$ref": "#/definitions/url", "title": "Privacy Policy URL", "description": "URL to your privacy policy description" } }, "additionalProperties": false }, "techDetails": { "type": "object", "description": "Technical details of your community's Freifunk implementation", "properties": { "firmware": { "type": "object", "properties": { "url": { "$ref": "#/definitions/url", "title": "Firmware download", "description": "Link to your firmware images" }, "docs": { "$ref" : "#/definitions/url", "title": "Firmware Document", "description": "Link to your firmware docs" }, "vpnaccess": { "type": "string", "title": "VPN Access", "description": "How to access your VPN services", "enum": [ "", "automatic", "fwimage", "mail", "webform", "else" ], "default": "" }, "registrationurl": { "$ref": "#/definitions/url", "title": "VPN Registration URL", "description": "link to your website to request a new VPN key" }, "orgrestrictions": { "type": "string", "title": "Organizational Restrictions", "description": "Are there any organizational restrictions when using/installing your firmware?" }, "techrestrictions": { "type": "string", "title": "Technical Restriction", "description": "Are there any technical restrictions like hardware?" }, "name": { "type":"string", "title": "Firmware Name", "description": "Name of your firmware" } }, "additionalProperties": false }, "dns": { "type": "array", "title": "DNS Servers", "description": "DNS servers for domains used by your community", "items": { "type": "object", "title": "dns", "properties": { "domainname": { "type": "string", "title": "Domain Name", "description": "The domain name (e.g. ffhh, ffol)", "pattern": "^[A-Za-z0-9äöüÄÖÜß\\.\\-\\_]{2,}$" }, "nameserver": { "type": "array", "title": "Nameserver", "description": "Nameservers servings zones of your domain", "items": { "type": "string", "pattern": "^[A-Za-z0-9äöüÄÖÜß_\\-\\.:]*$" } } }, "additionalProperties": false } }, "networks": { "type": "object", "description": "Networks used by your community", "properties": { "ipv6": { "type": "array", "title": "IPv6 networks", "description": "IPv6 networks used by your community", "items": { "type": "object", "title": "ipv6 network object", "properties": { "network": { "type": "string", "description": "IPv6 network network (e.g.2620:0:2d0:200::7/32) in CIDR notation", "pattern": "^\\s*((([0-9A-Fa-f]{1,4}:){7}([0-9A-Fa-f]{1,4}|:))|(([0-9A-Fa-f]{1,4}:){6}(:[0-9A-Fa-f]{1,4}|((25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)(\\.(25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)){3})|:))|(([0-9A-Fa-f]{1,4}:){5}(((:[0-9A-Fa-f]{1,4}){1,2})|:((25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)(\\.(25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)){3})|:))|(([0-9A-Fa-f]{1,4}:){4}(((:[0-9A-Fa-f]{1,4}){1,3})|((:[0-9A-Fa-f]{1,4})?:((25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)(\\.(25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)){3}))|:))|(([0-9A-Fa-f]{1,4}:){3}(((:[0-9A-Fa-f]{1,4}){1,4})|((:[0-9A-Fa-f]{1,4}){0,2}:((25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)(\\.(25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)){3}))|:))|(([0-9A-Fa-f]{1,4}:){2}(((:[0-9A-Fa-f]{1,4}){1,5})|((:[0-9A-Fa-f]{1,4}){0,3}:((25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)(\\.(25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)){3}))|:))|(([0-9A-Fa-f]{1,4}:){1}(((:[0-9A-Fa-f]{1,4}){1,6})|((:[0-9A-Fa-f]{1,4}){0,4}:((25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)(\\.(25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)){3}))|:))|(:(((:[0-9A-Fa-f]{1,4}){1,7})|((:[0-9A-Fa-f]{1,4}){0,5}:((25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)(\\.(25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)){3}))|:)))(%.+)?\\s*(\\/(\\d|\\d\\d|1[0-1]\\d|12[0-8]))$" } }, "additionalProperties": false } }, "ipv4": { "type": "array", "description": "IPv4 networks used by your community", "items": { "type": "object", "title": "ipv4 network object", "properties": { "network": { "type": "string", "description": "IPv4 network name (e.g. 10.w.x.y/z) in CIDR notation", "pattern": "^(([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])(\\/(\\d|[1-2]\\d|3[0-2]))$" } }, "additionalProperties": false } } }, "additionalProperties": false }, "routing": { "type": "array", "title": "Routing protocols", "description": "Routing protocols used within your community", "items": { "type": "string", "title": "option", "enum": [ "802.11s", "Babel", "batman-adv", "bmx6", "bmxd", "cjdns", "OLSR", "OLSRv2" ] } }, "legals": { "type": "array", "title": "Legal Issues", "description": "What do you use to handle legal issues, e.g. the German Störerhaftung or restrictions in your country?", "items": { "type": "string", "title": "option", "enum": [ "nothing", "vpnnational", "vpninternational", "zappscript", "p2pblock", "splashpage", "termsconditions", "anonymizer", "institutions" ] } }, "updatemode": { "type": "array", "title": "Updatemode", "description": "How do you deploy firmware updates?", "items": { "type": "string", "title": "option", "enum": [ "none", "manual", "autoupdate" ] } } }, "additionalProperties": false } }, "required": ["name", "location", "contact", "url", "state", "techDetails" ], "additionalProperties": false }
nswag.json
{ "$schema": "http://json-schema.org/draft-04/schema#", "definitions": { "swaggerGenerator": { "type": "object", "properties": { "webApiToSwagger": { "$ref": "#/definitions/webApiToSwagger" } } }, "codeGenerators": { "type": "object", "properties": { "swaggerToTypeScriptClient": { "$ref": "#/definitions/swaggerToTypeScriptClient" }, "swaggerToCSharpClient": { "$ref": "#/definitions/swaggerToCSharpClient" }, "swaggerToCSharpController": { "$ref": "#/definitions/swaggerToCSharpController" } } }, "webApiToSwagger": { "type": "object", "properties": { "assemblyPaths": { "type": "array", "items": { "type": "string" } }, "referencePaths": { "type": "array", "items": { "type": "string" } }, "useNuGetCache": { "type": "boolean" }, "isAspNetCore": { "type": "boolean" }, "controllerNames": { "type": "array", "items": { "type": "string" } }, "defaultUrlTemplate": { "type": "string" }, "defaultPropertyNameHandling": { "type": "string", "enum": ["Default", "CamelCase", "SnakeCase"] }, "defaultEnumHandling": { "type": "string", "enum": ["Integer", "String", "CamelCaseString"] }, "flattenInheritanceHierarchy": { "type": "boolean" }, "generateKnownTypes": { "type": "boolean" }, "generateXmlObjects": { "type": "boolean" }, "addMissingPathParameters": { "type": "boolean" }, "infoTitle": { "type": "string" }, "infoVersion": { "type": "string" }, "output": { "type": "null" } } }, "clientGenerator": { "type": "object", "properties": { "namespace": { "type": "string" }, "dateTimeType": { "type": "string" }, "wrapDtoExceptions": { "type": "boolean" }, "operationGenerationMode": { "type": "string", "enum": [ "MultipleClientsFromOperationId", "MultipleClientsFromPathSegments", "SingleClientFromOperationId", "SingleClientFromPathSegments" ] }, "generateCloneMethod": { "type": "boolean" }, "generateDefaultValues": { "type": "boolean" }, "excludedTypeNames": { "type": "array", "items": { "type": "string" } }, "handleReferences": { "type": "boolean" }, "generateConstructorInterface": { "type": "boolean" }, "importRequiredTypes": { "type": "string" }, "baseUrlTokenName": { "type": "string" }, "output": {}, "className": { "type": "string" }, "generateDtoTypes": { "type": "boolean" }, "generateClientInterfaces": { "type": "boolean" }, "generateClientClasses": { "type": "boolean" }, "generateOptionalParameters": { "type": "boolean" }, "wrapResponses": { "type": "boolean" }, "wrapResponseMethods": { "type": "array", "items": { "type": "string" } }, "generateResponseClasses": { "type": "boolean" }, "responseClass": { "type": "string" } } }, "swaggerToCSharpClient": { "type": "object", "allOf": [ { "$ref": "#/definitions/clientGenerator" } ], "properties": {} }, "swaggerToTypeScriptClient": { "type": "object", "allOf": [ { "$ref": "#/definitions/clientGenerator" } ], "properties": { "template": { "type": "string", "enum": [ "JQueryCallbacks", "JQueryPromises", "AngularJS", "Angular", "Fetch", "Aurelia" ] }, "promiseType": { "type": "string", "enum": ["Promise", "QPromise"] }, "wrapDtoExceptions": { "type": "boolean" }, "clientBaseClass": { "type": "string" }, "configurationClass": { "type": "string" }, "useTransformOptionsMethod": { "type": "boolean" }, "useTransformResultMethod": { "type": "boolean" }, "baseUrlTokenName": { "type": "string" }, "protectedMethods": { "type": "array", "items": { "type": "string" } }, "importRequiredTypes": { "type": "boolean" }, "useGetBaseUrlMethod": { "type": "boolean" }, "queryNullValue": { "type": "string" }, "httpClass": { "type": "string", "enum": ["Http", "HttpClient"] }, "rxJsVersion": { "type": "number" }, "useSingletonProvider": { "type": "boolean" }, "injectionTokenType": { "type": "string", "enum": ["OpaqueToken", "InjectionToken"] }, "markOptionalProperties": { "type": "boolean" }, "typeScriptVersion": { "type": "number" }, "moduleName": { "type": "string" }, "nullValue": { "type": "string" }, "typeStyle": { "type": "string", "enum": ["Interface", "Class", "KnockoutClass"] } } }, "swaggerToCSharpController": {} }, "id": "https://json.schemastore.org/nswag.json", "properties": { "swaggerGenerator": { "$ref": "#/definitions/swaggerGenerator" }, "codeGenerators": { "$ref": "#/definitions/codeGenerators" } } }
sourcery_yaml_schema.json
{ "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "definitions": { "RuleType": { "title": "RuleType", "description": "An enumeration.", "enum": ["refactoring", "suggestion", "comment", "hover"] }, "PythonVersion": { "title": "PythonVersion", "type": "object", "properties": { "major": { "title": "Major", "type": "integer" }, "minor": { "title": "Minor", "type": "integer" } }, "required": ["major", "minor"] }, "RuleSettingsConfig": { "title": "RuleSettingsConfig", "type": "object", "properties": { "enable": { "title": "Enable", "default": ["default"], "type": "array", "items": { "type": "string" } }, "disable": { "title": "Disable", "description": "A list of rule IDs Sourcery will never suggest.", "default": [], "type": "array", "items": { "type": "string" } }, "rule_types": { "default": ["refactoring", "suggestion", "comment"], "type": "array", "items": { "$ref": "#/definitions/RuleType" } }, "python_version": { "title": "Python Version", "description": "A string specifying the lowest Python version your project supports. Sourcery will not suggest refactorings requiring a higher Python version.", "anyOf": [ { "type": "string" }, { "$ref": "#/definitions/PythonVersion" } ] } }, "additionalProperties": false }, "RuleLanguage": { "title": "RuleLanguage", "description": "An enumeration.", "enum": ["python", "java", "javascript", "typescript"], "type": "string" }, "PathsConfig": { "title": "PathsConfig", "type": "object", "properties": { "include": { "title": "Include", "type": "array", "items": { "type": "string" } }, "exclude": { "title": "Exclude", "type": "array", "items": { "type": "string" } } }, "additionalProperties": false }, "MatchRuleTestConfig": { "title": "MatchRuleTestConfig", "type": "object", "properties": { "match": { "title": "Match", "type": "string" }, "expect": { "title": "Expect", "type": "string" } }, "required": ["match"], "additionalProperties": false }, "NoMatchRuleTestConfig": { "title": "NoMatchRuleTestConfig", "type": "object", "properties": { "no-match": { "title": "No-Match", "type": "string" } }, "required": ["no-match"], "additionalProperties": false }, "RuleConfig": { "title": "RuleConfig", "type": "object", "properties": { "id": { "title": "Id", "maxLength": 88, "pattern": "^[A-Za-z][A-Za-z0-9-_/:]*$", "type": "string" }, "description": { "title": "Description", "type": "string" }, "pattern": { "title": "Pattern", "type": "string" }, "language": { "default": "python", "allOf": [ { "$ref": "#/definitions/RuleLanguage" } ] }, "replacement": { "title": "Replacement", "type": "string" }, "condition": { "title": "Condition", "type": "string" }, "explanation": { "title": "Explanation", "type": "string" }, "paths": { "$ref": "#/definitions/PathsConfig" }, "tests": { "title": "Tests", "default": [], "type": "array", "items": { "anyOf": [ { "$ref": "#/definitions/MatchRuleTestConfig" }, { "$ref": "#/definitions/NoMatchRuleTestConfig" } ] } }, "tags": { "title": "Tags", "default": [], "type": "array", "items": { "type": "string", "maxLength": 88, "pattern": "^[A-Za-z][A-Za-z0-9-_/:]*$" } } }, "required": ["id", "description", "pattern"], "additionalProperties": false }, "MetricsConfig": { "title": "MetricsConfig", "type": "object", "properties": { "quality_threshold": { "title": "Quality Threshold", "default": 25.0, "type": "number" } }, "additionalProperties": false }, "RequestReview": { "title": "RequestReview", "type": "object", "properties": { "origin": { "title": "Origin", "default": "", "type": "string" }, "forked": { "title": "Forked", "default": "", "type": "string" } }, "additionalProperties": false }, "GitHubConfig": { "title": "GitHubConfig", "type": "object", "properties": { "labels": { "title": "Labels", "default": [], "type": "array", "items": { "type": "string" } }, "ignore_labels": { "title": "Ignore Labels", "default": ["sourcery-ignore"], "type": "array", "items": { "type": "string" } }, "request_review": { "title": "Request Review", "default": "author", "anyOf": [ { "type": "string" }, { "$ref": "#/definitions/RequestReview" } ] }, "sourcery_branch": { "title": "Sourcery Branch", "default": "sourcery-dev/{base_branch}", "type": "string" } }, "additionalProperties": false }, "CloneDetectionConfig": { "title": "CloneDetectionConfig", "type": "object", "properties": { "min_lines": { "title": "Min Lines", "default": 3, "type": "integer" }, "min_duplicates": { "title": "Min Duplicates", "default": 2, "type": "integer" }, "identical_clones_only": { "title": "Identical Clones Only", "default": false, "type": "boolean" } }, "additionalProperties": false }, "ProxyConfig": { "title": "ProxyConfig", "type": "object", "properties": { "url": { "title": "Url", "minLength": 1, "maxLength": 65536, "format": "uri", "type": "string" }, "ssl_certs_file": { "title": "Ssl Certs File", "type": "string" }, "no_ssl_verify": { "title": "No Ssl Verify", "default": false, "type": "boolean" } }, "additionalProperties": false } }, "id": "https://json.schemastore.org/sourcery_yaml_schema.json", "properties": { "version": { "title": "Version", "description": "The schema version of this config file", "default": "1", "type": "string" }, "ignore": { "title": "Ignore", "description": "A list of paths or files which Sourcery will ignore.", "default": [], "type": "array", "items": { "type": "string" } }, "rule_settings": { "title": "Rule Settings", "default": { "enable": ["default"], "disable": [], "include": [], "skip": [], "rule_types": ["refactoring", "suggestion", "comment"], "python_version": null, "allow_adding_imports": false }, "allOf": [ { "$ref": "#/definitions/RuleSettingsConfig" } ] }, "rules": { "title": "Rules", "description": "A list of custom rules Sourcery will include in its analysis.", "default": [], "type": "array", "items": { "$ref": "#/definitions/RuleConfig" } }, "rule_tags": { "title": "Rule Tags", "description": "Additional rule tags.", "default": {}, "type": "object", "additionalProperties": { "type": "array", "items": { "type": "string" } } }, "metrics": { "title": "Metrics", "default": { "quality_threshold": 25 }, "allOf": [ { "$ref": "#/definitions/MetricsConfig" } ] }, "github": { "title": "Github", "default": { "labels": [], "ignore_labels": ["sourcery-ignore"], "review_or_request_review": "author", "sourcery_branch": "sourcery-dev/{base_branch}" }, "allOf": [ { "$ref": "#/definitions/GitHubConfig" } ] }, "clone_detection": { "title": "Clone Detection", "default": { "min_lines": 3, "min_duplicates": 2, "identical_clones_only": false }, "allOf": [ { "$ref": "#/definitions/CloneDetectionConfig" } ] }, "proxy": { "title": "Proxy", "default": { "url": null, "ssl_certs_file": null, "no_ssl_verify": false }, "allOf": [ { "$ref": "#/definitions/ProxyConfig" } ] } }, "title": "Sourcery YAML Schema", "type": "object" }
catalog-info.json
{ "$id": "https://json.schemastore.org/catalog-info.json", "$schema": "http://json-schema.org/draft-07/schema#", "anyOf": [ { "$schema": "http://json-schema.org/draft-07/schema#", "$id": "ApiV1alpha1", "description": "An API describes an interface that can be exposed by a component. The API can be defined in different formats, like OpenAPI, AsyncAPI, GraphQL, gRPC, or other formats.", "examples": [ { "apiVersion": "backstage.io/v1alpha1", "kind": "API", "metadata": { "name": "artist-api", "description": "Retrieve artist details", "labels": { "product_name": "Random value Generator" }, "annotations": { "docs": "https://github.com/..../tree/develop/doc" } }, "spec": { "type": "openapi", "lifecycle": "production", "owner": "artist-relations-team", "system": "artist-engagement-portal", "definition": "openapi: \"3.0.0\"\ninfo:..." } } ], "allOf": [ { "$ref": "https://json.schemastore.org/catalog-info.json#/definitions/entity" }, { "type": "object", "required": ["spec"], "properties": { "apiVersion": { "enum": ["backstage.io/v1alpha1", "backstage.io/v1beta1"] }, "kind": { "enum": ["API"] }, "spec": { "type": "object", "required": ["type", "lifecycle", "owner", "definition"], "properties": { "type": { "type": "string", "description": "The type of the API definition.", "examples": ["openapi", "asyncapi", "graphql", "grpc"], "minLength": 1 }, "lifecycle": { "type": "string", "description": "The lifecycle state of the API.", "examples": ["experimental", "production", "deprecated"], "minLength": 1 }, "owner": { "type": "string", "description": "An entity reference to the owner of the API.", "examples": ["artist-relations-team", "user:john.johnson"], "minLength": 1 }, "system": { "type": "string", "description": "An entity reference to the system that the API belongs to.", "minLength": 1 }, "definition": { "type": ["string", "object"], "description": "The definition of the API, based on the format defined by the type.", "minLength": 1, "properties": { "$text": { "type": "string", "description": "Interprets the contents of the referenced file as plain text and embeds it as a string.", "minLength": 1 }, "$json": { "type": "string", "description": "Interprets the contents of the referenced file as JSON and embeds the parsed structure.", "minLength": 1 }, "$yaml": { "type": "string", "description": "Interprets the contents of the referenced file as YAML and embeds the parsed structure.", "minLength": 1 } }, "minProperties": 1, "maxProperties": 1 } } } } } ] }, { "$schema": "http://json-schema.org/draft-07/schema#", "$id": "ComponentV1alpha1", "description": "A Component describes a software component. It is typically intimately linked to the source code that constitutes the component, and should be what a developer may regard a \"unit of software\", usually with a distinct deployable or linkable artifact.", "examples": [ { "apiVersion": "backstage.io/v1alpha1", "kind": "Component", "metadata": { "name": "LoremService", "description": "Creates Lorems like a pro.", "labels": { "product_name": "Random value Generator" }, "annotations": { "docs": "https://github.com/..../tree/develop/doc" } }, "spec": { "type": "service", "lifecycle": "production", "owner": "tools" } } ], "allOf": [ { "$ref": "https://json.schemastore.org/catalog-info.json#/definitions/entity" }, { "type": "object", "required": ["spec"], "properties": { "apiVersion": { "enum": ["backstage.io/v1alpha1", "backstage.io/v1beta1"] }, "kind": { "enum": ["Component"] }, "spec": { "type": "object", "required": ["type", "lifecycle", "owner"], "properties": { "type": { "type": "string", "description": "The type of component.", "examples": ["service", "website", "library"], "minLength": 1 }, "lifecycle": { "type": "string", "description": "The lifecycle state of the component.", "examples": ["experimental", "production", "deprecated"], "minLength": 1 }, "owner": { "type": "string", "description": "An entity reference to the owner of the component.", "examples": ["artist-relations-team", "user:john.johnson"], "minLength": 1 }, "system": { "type": "string", "description": "An entity reference to the system that the component belongs to.", "minLength": 1 }, "subcomponentOf": { "type": "string", "description": "An entity reference to another component of which the component is a part.", "minLength": 1 }, "providesApis": { "type": "array", "description": "An array of entity references to the APIs that are provided by the component.", "items": { "type": "string", "minLength": 1 } }, "consumesApis": { "type": "array", "description": "An array of entity references to the APIs that are consumed by the component.", "items": { "type": "string", "minLength": 1 } }, "dependsOn": { "type": "array", "description": "An array of references to other entities that the component depends on to function.", "items": { "type": "string", "minLength": 1 } } } } } } ] }, { "$schema": "http://json-schema.org/draft-07/schema#", "$id": "DomainV1alpha1", "description": "A Domain groups a collection of systems that share terminology, domain models, business purpose, or documentation, i.e. form a bounded context.", "examples": [ { "apiVersion": "backstage.io/v1alpha1", "kind": "Domain", "metadata": { "name": "artists", "description": "Everything about artists" }, "spec": { "owner": "artist-relations-team" } } ], "allOf": [ { "$ref": "https://json.schemastore.org/catalog-info.json#/definitions/entity" }, { "type": "object", "required": ["spec"], "properties": { "apiVersion": { "enum": ["backstage.io/v1alpha1", "backstage.io/v1beta1"] }, "kind": { "enum": ["Domain"] }, "spec": { "type": "object", "required": ["owner"], "properties": { "owner": { "type": "string", "description": "An entity reference to the owner of the component.", "examples": ["artist-relations-team", "user:john.johnson"], "minLength": 1 } } } } } ] }, { "$schema": "http://json-schema.org/draft-07/schema#", "$id": "GroupV1alpha1", "description": "A group describes an organizational entity, such as for example a team, a business unit, or a loose collection of people in an interest group. Members of these groups are modeled in the catalog as kind User.", "examples": [ { "apiVersion": "backstage.io/v1alpha1", "kind": "Group", "metadata": { "name": "infrastructure", "description": "The infra business unit" }, "spec": { "type": "business-unit", "profile": { "displayName": "Infrastructure", "email": "[email protected]", "picture": "https://example.com/groups/bu-infrastructure.jpeg" }, "parent": "ops", "children": ["backstage", "other"] } } ], "allOf": [ { "$ref": "https://json.schemastore.org/catalog-info.json#/definitions/entity" }, { "type": "object", "required": ["spec"], "properties": { "apiVersion": { "enum": ["backstage.io/v1alpha1", "backstage.io/v1beta1"] }, "kind": { "enum": ["Group"] }, "spec": { "type": "object", "required": ["type", "children"], "properties": { "type": { "type": "string", "description": "The type of group. There is currently no enforced set of values for this field, so it is left up to the adopting organization to choose a nomenclature that matches their org hierarchy.", "examples": ["team", "business-unit", "product-area", "root"], "minLength": 1 }, "profile": { "type": "object", "description": "Optional profile information about the group, mainly for display purposes. All fields of this structure are also optional. The email would be a group email of some form, that the group may wish to be used for contacting them. The picture is expected to be a URL pointing to an image that's representative of the group, and that a browser could fetch and render on a group page or similar.", "properties": { "displayName": { "type": "string", "description": "A simple display name to present to users.", "examples": ["Infrastructure"], "minLength": 1 }, "email": { "type": "string", "description": "An email where this entity can be reached.", "examples": ["[email protected]"], "minLength": 1 }, "picture": { "type": "string", "description": "The URL of an image that represents this entity.", "examples": [ "https://example.com/groups/bu-infrastructure.jpeg" ], "minLength": 1 } } }, "parent": { "type": "string", "description": "The immediate parent group in the hierarchy, if any. Not all groups must have a parent; the catalog supports multi-root hierarchies. Groups may however not have more than one parent. This field is an entity reference.", "examples": ["ops"], "minLength": 1 }, "children": { "type": "array", "description": "The immediate child groups of this group in the hierarchy (whose parent field points to this group). The list must be present, but may be empty if there are no child groups. The items are not guaranteed to be ordered in any particular way. The entries of this array are entity references.", "items": { "type": "string", "examples": ["backstage", "other"], "minLength": 1 } }, "members": { "type": "array", "description": "The users that are members of this group. The entries of this array are entity references.", "items": { "type": "string", "examples": ["jdoe"], "minLength": 1 } } } } } } ] }, { "$schema": "http://json-schema.org/draft-07/schema#", "$id": "LocationV1alpha1", "description": "A location is a marker that references other places to look for catalog data.", "examples": [ { "apiVersion": "backstage.io/v1alpha1", "kind": "Location", "metadata": { "name": "org-data" }, "spec": { "type": "url", "targets": [ "http://github.com/myorg/myproject/org-data-dump/catalog-info-staff.yaml", "http://github.com/myorg/myproject/org-data-dump/catalog-info-consultants.yaml" ] } } ], "allOf": [ { "$ref": "https://json.schemastore.org/catalog-info.json#/definitions/entity" }, { "type": "object", "required": ["spec"], "properties": { "apiVersion": { "enum": ["backstage.io/v1alpha1", "backstage.io/v1beta1"] }, "kind": { "enum": ["Location"] }, "spec": { "type": "object", "required": [], "properties": { "type": { "type": "string", "description": "The single location type, that's common to the targets specified in the spec. If it is left out, it is inherited from the location type that originally read the entity data.", "examples": ["url"], "minLength": 1 }, "target": { "type": "string", "description": "A single target as a string. Can be either an absolute path/URL (depending on the type), or a relative path such as ./details/catalog-info.yaml which is resolved relative to the location of this Location entity itself.", "examples": ["./details/catalog-info.yaml"], "minLength": 1 }, "targets": { "type": "array", "description": "A list of targets as strings. They can all be either absolute paths/URLs (depending on the type), or relative paths such as ./details/catalog-info.yaml which are resolved relative to the location of this Location entity itself.", "items": { "type": "string", "examples": [ "./details/catalog-info.yaml", "http://github.com/myorg/myproject/org-data-dump/catalog-info-staff.yaml" ], "minLength": 1 } } } } } } ] }, { "$schema": "http://json-schema.org/draft-07/schema#", "$id": "ResourceV1alpha1", "description": "A resource describes the infrastructure a system needs to operate, like BigTable databases, Pub/Sub topics, S3 buckets or CDNs. Modelling them together with components and systems allows to visualize resource footprint, and create tooling around them.", "examples": [ { "apiVersion": "backstage.io/v1alpha1", "kind": "Resource", "metadata": { "name": "artists-db", "description": "Stores artist details" }, "spec": { "type": "database", "owner": "artist-relations-team", "system": "artist-engagement-portal" } } ], "allOf": [ { "$ref": "https://json.schemastore.org/catalog-info.json#/definitions/entity" }, { "type": "object", "required": ["spec"], "properties": { "apiVersion": { "enum": ["backstage.io/v1alpha1", "backstage.io/v1beta1"] }, "kind": { "enum": ["Resource"] }, "spec": { "type": "object", "required": ["type", "owner"], "properties": { "type": { "type": "string", "description": "The type of resource.", "examples": ["database", "s3-bucket", "cluster"], "minLength": 1 }, "owner": { "type": "string", "description": "An entity reference to the owner of the resource.", "examples": ["artist-relations-team", "user:john.johnson"], "minLength": 1 }, "dependsOn": { "type": "array", "description": "An array of references to other entities that the resource depends on to function.", "items": { "type": "string", "minLength": 1 } }, "system": { "type": "string", "description": "An entity reference to the system that the resource belongs to.", "minLength": 1 } } } } } ] }, { "$schema": "http://json-schema.org/draft-07/schema#", "$id": "SystemV1alpha1", "description": "A system is a collection of resources and components. The system may expose or consume one or several APIs. It is viewed as abstraction level that provides potential consumers insights into exposed features without needing a too detailed view into the details of all components. This also gives the owning team the possibility to decide about published artifacts and APIs.", "examples": [ { "apiVersion": "backstage.io/v1alpha1", "kind": "System", "metadata": { "name": "artist-engagement-portal", "description": "Handy tools to keep artists in the loop" }, "spec": { "owner": "artist-relations-team", "domain": "artists" } } ], "allOf": [ { "$ref": "https://json.schemastore.org/catalog-info.json#/definitions/entity" }, { "type": "object", "required": ["spec"], "properties": { "apiVersion": { "enum": ["backstage.io/v1alpha1", "backstage.io/v1beta1"] }, "kind": { "enum": ["System"] }, "spec": { "type": "object", "required": ["owner"], "properties": { "owner": { "type": "string", "description": "An entity reference to the owner of the component.", "examples": ["artist-relations-team", "user:john.johnson"], "minLength": 1 }, "domain": { "type": "string", "description": "An entity reference to the domain that the system belongs to.", "examples": ["artists"], "minLength": 1 } } } } } ] }, { "$schema": "http://json-schema.org/draft-07/schema#", "$id": "TemplateV1beta2", "description": "A Template describes a scaffolding task for use with the Scaffolder. It describes the required parameters as well as a series of steps that will be taken to execute the scaffolding task.", "examples": [ { "apiVersion": "backstage.io/v1beta2", "kind": "Template", "metadata": { "name": "react-ssr-template", "title": "React SSR Template", "description": "Next.js application skeleton for creating isomorphic web applications.", "tags": ["recommended", "react"] }, "spec": { "owner": "artist-relations-team", "type": "website", "parameters": { "required": ["name", "description"], "properties": { "name": { "title": "Name", "type": "string", "description": "Unique name of the component" }, "description": { "title": "Description", "type": "string", "description": "Description of the component" } } }, "steps": [ { "id": "fetch", "name": "Fetch", "action": "fetch:plain", "parameters": { "url": "./template" } }, { "id": "publish", "name": "Publish to GitHub", "action": "publish:github", "parameters": { "repoUrl": "{{ parameters.repoUrl }}" }, "if": "{{ parameters.repoUrl }}" } ], "output": { "catalogInfoUrl": "{{ steps.publish.output.catalogInfoUrl }}" } } } ], "allOf": [ { "$ref": "https://json.schemastore.org/catalog-info.json#/definitions/entity" }, { "type": "object", "required": ["spec"], "properties": { "apiVersion": { "enum": ["backstage.io/v1beta2"] }, "kind": { "enum": ["Template"] }, "spec": { "type": "object", "required": ["type", "steps"], "properties": { "type": { "type": "string", "description": "The type of component created by the template. The software catalog accepts any type value, but an organization should take great care to establish a proper taxonomy for these. Tools including Backstage itself may read this field and behave differently depending on its value. For example, a website type component may present tooling in the Backstage interface that is specific to just websites.", "examples": ["service", "website", "library"], "minLength": 1 }, "parameters": { "oneOf": [ { "type": "object", "description": "The JSONSchema describing the inputs for the template." }, { "type": "array", "description": "A list of separate forms to collect parameters.", "items": { "type": "object", "description": "The JSONSchema describing the inputs for the template." } } ] }, "steps": { "type": "array", "description": "A list of steps to execute.", "items": { "type": "object", "description": "A description of the step to execute.", "required": ["action"], "properties": { "id": { "type": "string", "description": "The ID of the step, which can be used to refer to its outputs." }, "name": { "type": "string", "description": "The name of the step, which will be displayed in the UI during the scaffolding process." }, "action": { "type": "string", "description": "The name of the action to execute." }, "input": { "type": "object", "description": "A templated object describing the inputs to the action." }, "if": { "type": ["string", "boolean"], "description": "A templated condition that skips the step when evaluated to false. If the condition is true or not defined, the step is executed. The condition is true, if the input is not `false`, `undefined`, `null`, `\"\"`, `0`, or `[]`." } } } }, "output": { "type": "object", "description": "A templated object describing the outputs of the scaffolding task.", "properties": { "links": { "type": "array", "description": "A list of external hyperlinks, typically pointing to resources created or updated by the template", "items": { "type": "object", "required": [], "properties": { "url": { "type": "string", "description": "A url in a standard uri format.", "examples": [ "https://github.com/my-org/my-new-repo" ], "minLength": 1 }, "entityRef": { "type": "string", "description": "An entity reference to an entity in the catalog.", "examples": ["Component:default/my-app"], "minLength": 1 }, "title": { "type": "string", "description": "A user friendly display name for the link.", "examples": ["View new repo"], "minLength": 1 }, "icon": { "type": "string", "description": "A key representing a visual icon to be displayed in the UI.", "examples": ["dashboard"], "minLength": 1 } } } } }, "additionalProperties": { "type": "string" } }, "owner": { "type": "string", "description": "The user (or group) owner of the template", "minLength": 1 } } } } } ] }, { "$schema": "http://json-schema.org/draft-07/schema#", "$id": "UserV1alpha1", "description": "A user describes a person, such as an employee, a contractor, or similar. Users belong to Group entities in the catalog. These catalog user entries are connected to the way that authentication within the Backstage ecosystem works. See the auth section of the docs for a discussion of these concepts.", "examples": [ { "apiVersion": "backstage.io/v1alpha1", "kind": "User", "metadata": { "name": "jdoe" }, "spec": { "profile": { "displayName": "Jenny Doe", "email": "[email protected]", "picture": "https://example.com/staff/jenny-with-party-hat.jpeg" }, "memberOf": ["team-b", "employees"] } } ], "allOf": [ { "$ref": "https://json.schemastore.org/catalog-info.json#/definitions/entity" }, { "type": "object", "required": ["spec"], "properties": { "apiVersion": { "enum": ["backstage.io/v1alpha1", "backstage.io/v1beta1"] }, "kind": { "enum": ["User"] }, "spec": { "type": "object", "required": ["memberOf"], "properties": { "profile": { "type": "object", "description": "Optional profile information about the user, mainly for display purposes. All fields of this structure are also optional. The email would be a primary email of some form, that the user may wish to be used for contacting them. The picture is expected to be a URL pointing to an image that's representative of the user, and that a browser could fetch and render on a profile page or similar.", "properties": { "displayName": { "type": "string", "description": "A simple display name to present to users.", "examples": ["Jenny Doe"], "minLength": 1 }, "email": { "type": "string", "description": "An email where this user can be reached.", "examples": ["[email protected]"], "minLength": 1 }, "picture": { "type": "string", "description": "The URL of an image that represents this user.", "examples": [ "https://example.com/staff/jenny-with-party-hat.jpeg" ], "minLength": 1 } } }, "memberOf": { "type": "array", "description": "The list of groups that the user is a direct member of (i.e., no transitive memberships are listed here). The list must be present, but may be empty if the user is not member of any groups. The items are not guaranteed to be ordered in any particular way. The entries of this array are entity references.", "items": { "type": "string", "examples": ["team-b", "employees"], "minLength": 1 } } } } } } ] } ], "definitions": { "entity": { "$schema": "http://json-schema.org/draft-07/schema#", "$id": "Entity", "description": "The parts of the format that's common to all versions/kinds of entity.", "examples": [ { "apiVersion": "backstage.io/v1alpha1", "kind": "Component", "metadata": { "name": "LoremService", "description": "Creates Lorems like a pro.", "labels": { "product_name": "Random value Generator" }, "annotations": { "docs": "https://github.com/..../tree/develop/doc" } }, "spec": { "type": "service", "lifecycle": "production", "owner": "tools" } } ], "type": "object", "required": ["apiVersion", "kind", "metadata"], "additionalProperties": false, "properties": { "apiVersion": { "type": "string", "description": "The version of specification format for this particular entity that this is written against.", "minLength": 1, "examples": ["backstage.io/v1alpha1", "my-company.net/v1", "1.0"] }, "kind": { "type": "string", "description": "The high level entity type being described.", "minLength": 1, "examples": [ "API", "Component", "Domain", "Group", "Location", "Resource", "System", "Template", "User" ] }, "metadata": { "$schema": "http://json-schema.org/draft-07/schema#", "$id": "EntityMeta", "description": "Metadata fields common to all versions/kinds of entity.", "examples": [ { "uid": "e01199ab-08cc-44c2-8e19-5c29ded82521", "etag": "lsndfkjsndfkjnsdfkjnsd==", "generation": 13, "name": "my-component-yay", "namespace": "the-namespace", "labels": { "backstage.io/custom": "ValueStuff" }, "annotations": { "example.com/bindings": "are-secret" }, "tags": ["java", "data"] } ], "type": "object", "required": ["name"], "additionalProperties": true, "properties": { "uid": { "type": "string", "description": "A globally unique ID for the entity. This field can not be set by the user at creation time, and the server will reject an attempt to do so. The field will be populated in read operations. The field can (optionally) be specified when performing update or delete operations, but the server is free to reject requests that do so in such a way that it breaks semantics.", "examples": ["e01199ab-08cc-44c2-8e19-5c29ded82521"], "minLength": 1 }, "etag": { "type": "string", "description": "An opaque string that changes for each update operation to any part of the entity, including metadata. This field can not be set by the user at creation time, and the server will reject an attempt to do so. The field will be populated in read operations. The field can (optionally) be specified when performing update or delete operations, and the server will then reject the operation if it does not match the current stored value.", "examples": ["lsndfkjsndfkjnsdfkjnsd=="], "minLength": 1 }, "generation": { "type": "integer", "description": "A positive nonzero number that indicates the current generation of data for this entity; the value is incremented each time the spec changes. This field can not be set by the user at creation time, and the server will reject an attempt to do so. The field will be populated in read operations.", "examples": [1], "minimum": 1 }, "name": { "type": "string", "description": "The name of the entity. Must be unique within the catalog at any given point in time, for any given namespace + kind pair.", "examples": ["metadata-proxy"], "minLength": 1 }, "namespace": { "type": "string", "description": "The namespace that the entity belongs to.", "default": "default", "examples": ["default", "admin"], "minLength": 1 }, "title": { "type": "string", "description": "A display name of the entity, to be presented in user interfaces instead of the name property, when available.", "examples": ["React SSR Template"], "minLength": 1 }, "description": { "type": "string", "description": "A short (typically relatively few words, on one line) description of the entity." }, "labels": { "type": "object", "description": "Key/value pairs of identifying information attached to the entity.", "additionalProperties": true, "patternProperties": { "^.+$": { "type": "string" } } }, "annotations": { "type": "object", "description": "Key/value pairs of non-identifying auxiliary information attached to the entity.", "additionalProperties": true, "patternProperties": { "^.+$": { "type": "string" } } }, "tags": { "type": "array", "description": "A list of single-valued strings, to for example classify catalog entities in various ways.", "items": { "type": "string", "minLength": 1 } }, "links": { "type": "array", "description": "A list of external hyperlinks related to the entity. Links can provide additional contextual information that may be located outside of Backstage itself. For example, an admin dashboard or external CMS page.", "items": { "type": "object", "required": ["url"], "properties": { "url": { "type": "string", "description": "A url in a standard uri format.", "examples": ["https://admin.example-org.com"], "minLength": 1 }, "title": { "type": "string", "description": "A user friendly display name for the link.", "examples": ["Admin Dashboard"], "minLength": 1 }, "icon": { "type": "string", "description": "A key representing a visual icon to be displayed in the UI.", "examples": ["dashboard"], "minLength": 1 } } } } } }, "spec": { "type": "object", "description": "The specification data describing the entity itself." }, "relations": { "type": "array", "description": "The relations that this entity has with other entities.", "items": { "$ref": "https://json.schemastore.org/catalog-info.json#/definitions/common/definitions/relation" } }, "status": { "$ref": "https://json.schemastore.org/catalog-info.json#/definitions/common/definitions/status" } } }, "common": { "$schema": "http://json-schema.org/draft-07/schema#", "$id": "common", "type": "object", "description": "Common definitions to import from other schemas", "definitions": { "reference": { "$id": "#reference", "type": "object", "description": "A reference by name to another entity.", "required": ["kind", "namespace", "name"], "additionalProperties": false, "properties": { "kind": { "type": "string", "description": "The kind field of the entity.", "minLength": 1 }, "namespace": { "type": "string", "description": "The metadata.namespace field of the entity.", "minLength": 1 }, "name": { "type": "string", "description": "The metadata.name field of the entity.", "minLength": 1 } } }, "relation": { "$id": "#relation", "type": "object", "description": "A directed relation from one entity to another.", "required": ["type", "target"], "additionalProperties": false, "properties": { "type": { "type": "string", "minLength": 1, "pattern": "^\\w+$", "description": "The type of relation." }, "target": { "$ref": "https://json.schemastore.org/catalog-info.json#/definitions/common/definitions/reference" } } }, "status": { "$id": "#status", "type": "object", "description": "The current status of the entity, as claimed by various sources.", "required": [], "additionalProperties": true, "properties": { "items": { "type": "array", "items": { "$ref": "https://json.schemastore.org/catalog-info.json#/definitions/common/definitions/statusItem" } } } }, "statusItem": { "$id": "#statusItem", "type": "object", "description": "A specific status item on a well known format.", "required": ["type", "level", "message"], "additionalProperties": true, "properties": { "type": { "type": "string", "minLength": 1 }, "level": { "$ref": "https://json.schemastore.org/catalog-info.json#/definitions/common/definitions/statusLevel", "description": "The status level / severity of the status item." }, "message": { "type": "string", "description": "A brief message describing the status, intended for human consumption." }, "error": { "$ref": "https://json.schemastore.org/catalog-info.json#/definitions/common/definitions/error", "description": "An optional serialized error object related to the status." } } }, "statusLevel": { "$id": "#statusLevel", "type": "string", "description": "A status level / severity.", "enum": ["info", "warning", "error"] }, "error": { "$id": "#error", "type": "object", "description": "A serialized error object.", "required": ["name", "message"], "additionalProperties": true, "properties": { "name": { "type": "string", "examples": ["Error", "InputError"], "description": "The type name of the error", "minLength": 1 }, "message": { "type": "string", "description": "The message of the error" }, "code": { "type": "string", "description": "An error code associated with the error" }, "stack": { "type": "string", "description": "An error stack trace" } } } } } }, "type": "object" }
nuget-project.json
{ "$schema": "http://json-schema.org/draft-04/schema#", "definitions": { "configType": { "type": "object", "properties": { "dependencies": { "$ref": "#/definitions/dependencies" }, "imports": { "type": "string" } } }, "dependencies": { "description": "A list of dependencies.", "type": "object", "additionalProperties": { "type": ["string", "object"], "properties": { "version": { "type": "string" }, "type": { "type": "string", "default": "default", "enum": ["default", "build"] } } } } }, "id": "https://json.schemastore.org/nuget-project.json", "properties": { "dependencies": { "$ref": "#/definitions/dependencies" }, "frameworks": { "type": "object", "description": "The frameworks on which your project will run.", "additionalProperties": { "$ref": "#/definitions/configType" } }, "runtimes": { "type": "object", "description": "The Operating System and Architectures on which your application will be running.", "properties": { "centos.7-x64": { "type": "object" }, "debian.8-x64": { "type": "object" }, "fedora.23-x64": { "type": "object" }, "fedora.24-x64": { "type": "object" }, "linuxmint.17-x64": { "type": "object" }, "linuxmint.17.1-x64": { "type": "object" }, "linuxmint.17.2-x64": { "type": "object" }, "linuxmint.17.3-x64": { "type": "object" }, "linuxmint.18-x64": { "type": "object" }, "ol.7.0-x64": { "type": "object" }, "ol.7.1-x64": { "type": "object" }, "ol.7.2-x64": { "type": "object" }, "opensuse.13.2-x64": { "type": "object" }, "opensuse.42.1-x64": { "type": "object" }, "osx.10.10-x64": { "type": "object" }, "osx.10.11-x64": { "type": "object" }, "osx.10.12-x64": { "type": "object" }, "rhel.7.0-x64": { "type": "object" }, "rhel.7.1-x64": { "type": "object" }, "rhel.7.2-x64": { "type": "object" }, "ubuntu.14.04-x64": { "type": "object" }, "ubuntu.14.10-x64": { "type": "object" }, "ubuntu.15.04-x64": { "type": "object" }, "ubuntu.15.10-x64": { "type": "object" }, "ubuntu.16.04-x64": { "type": "object" }, "ubuntu.16.10-x64": { "type": "object" }, "win": { "type": "object" }, "win-x86": { "type": "object" }, "win-x64": { "type": "object" }, "win7": { "type": "object" }, "win7-x86": { "type": "object" }, "win7-x64": { "type": "object" }, "win8": { "type": "object" }, "win8-x86": { "type": "object" }, "win8-x64": { "type": "object" }, "win8-arm": { "type": "object" }, "win81": { "type": "object" }, "win81-x86": { "type": "object" }, "win81-x64": { "type": "object" }, "win81-arm": { "type": "object" }, "win10-arm": { "type": "object" }, "win10-arm-aot": { "type": "object" }, "win10-x86": { "type": "object" }, "win10-x86-aot": { "type": "object" }, "win10-x64": { "type": "object" }, "win10-x64-aot": { "type": "object" } } }, "supports": { "type": "object", "description": "A list of supported target frameworks.", "additionalProperties": { "type": "object", "description": "A supported target framework." } } }, "title": "JSON schema for NuGet project.json files", "type": "object" }
as-code.latest.schema.json
{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://neotys.com/schemas/as-code/v3", "title": "JSON Schema for NeoLoad as-code files", "fileMatch": [ "*.nl.yaml", "*.neoload.yaml", "neoload*.yaml", "*.nl.yml", "*.neoload.yml", "neoload*.yml", "*.nl.json", "*.neoload.json", "neoload*.json" ], "type": "object", "additionalProperties": false, "minProperties": 1, "xrequired": ["name","because neoload files can be partial"], "properties": { "$schema": { "$ref": "#/definitions/common/full_url" }, "name": { "$ref": "#/definitions/common/name" }, "includes": { "$id":"#root/includes", "title":"Includes", "type":"array", "minItems":1, "additionalProperties":false, "items": { "$ref": "#/definitions/common/text" } }, "variables": { "$id":"#root/variables", "title":"Variables", "type":"array", "additionalItems": false, "minItems":1, "additionalProperties":false, "items": { "anyOf": [ { "$ref": "#/definitions/variables/constant" }, { "$ref": "#/definitions/variables/file" }, { "$ref": "#/definitions/variables/counter" }, { "$ref": "#/definitions/variables/random_number" }, { "$ref": "#/definitions/variables/javascript" } ] } }, "servers": { "$id":"#root/servers", "title":"Servers", "type":"array", "minItems": 1, "items": { "$ref": "#/definitions/server" } }, "sla_profiles":{ "$id":"#root/sla_profiles", "title":"SLA Profiles", "type":"array", "minItems": 1, "items": { "$ref": "#/definitions/sla" } }, "populations":{ "$id":"#root/populations", "title":"Populations", "type":"array", "minItems": 1, "items": { "$ref": "#/definitions/populations/population" } }, "scenarios":{ "$id":"#root/scenarios", "title":"Scenarios", "type":"array", "minItems": 1, "items": { "$ref": "#/definitions/scenario" } }, "user_paths":{ "$id":"#root/user_paths", "title":"User_paths", "type":"array", "minItems": 1, "items": { "$ref": "#/definitions/user_paths/user_path" } } }, "definitions":{ "common": { "text":{ "$id":"#/definitions/common/text", "title":"Text", "type":"string", "pattern":".*" }, "positive_number":{ "$id":"#/definitions/common/positive_number", "title":"Positive Number", "type":"integer", "minimum": 0 }, "duration":{ "$id":"#/definitions/common/duration", "title":"Duration", "anyOf": [ { "$ref": "#/definitions/common/time" }, { "$ref": "#/definitions/common/iterations" } ] }, "stop_after_options":{ "$id":"#/definitions/common/stop_after_options", "title":"variation_policy.stop_after values", "anyOf": [ { "$ref": "#/definitions/common/time" }, { "type": "string", "enum": ["current_iteration"] } ] }, "start_after_options":{ "$id":"#/definitions/common/start_after", "title":"Start after", "anyOf":[ { "$ref": "#/definitions/common/time" }, { "$ref": "#/definitions/common/text" } ] }, "time":{ "$id":"#/definitions/common/time", "title":"Time", "type": "string", "pattern": "^((\\d{1,2}[hms]{1}){1,3})+$" }, "iterations":{ "$id":"#/definitions/common/iterations", "title":"Iterations", "type": "string", "pattern": "^(\\d+ iterations)$" }, "name":{ "title":"Name", "type":"string", "pattern":"^.*$" }, "full_url": { "title":"Url", "type":"string", "pattern": "https?:\\/\\/(www\\.)?[-a-zA-Z0-9@:%._\\+~#=]{1,256}\\.[a-zA-Z0-9()]{1,6}\\b([-a-zA-Z0-9()@:%_\\+.~#?&//=]*)" }, "var_change_policy": { "type":"string", "default": "each_iteration", "enum": ["each_use", "each_request", "each_page", "each_iteration", "each_user"] }, "var_scope": { "type":"string", "default": "global", "enum": ["local", "global", "unique"] }, "var_order": { "type":"string", "default": "global", "enum": ["sequential", "random", "any"] }, "var_out_of_value": { "type":"string", "default": "global", "enum": ["cycle", "stop_test", "no_value_code"] } }, "variables": { "generic": { "$id":"#/definitions/variables/generic", "type":"object", "xrequired": ["name"], "properties":{ "name": { "$ref": "#/definitions/common/name" }, "descrption": { "$ref": "#/definitions/common/text" }, "change_policy": { "$ref": "#/definitions/common/var_change_policy" } } }, "constant":{ "$id":"#/definitions/variables/constant", "title":"Constant", "type":"object", "xrequired": ["value"], "allOf": [ { "$ref": "#/definitions/variables/generic" }, { "properties":{ "value": { "$ref": "#/definitions/common/text" } } } ], "x-d7nosupport-additionalProperties": false }, "file":{ "$id":"#/definitions/variables/file", "title":"File", "type":"object", "xrequired": ["path"], "allOf": [ { "$ref": "#/definitions/variables/generic" }, { "properties":{ "column_names": { "type": "array", "items": [ { "type": "string" } ] }, "is_first_line_column_names": { "type": "boolean", "default": false }, "start_from_line": { "type": "integer", "default": 1 }, "delimiter": { "$ref": "#/definitions/common/text", "default": "," }, "path": { "$ref": "#/definitions/common/text" }, "scope": { "$ref": "#/definitions/common/var_scope" }, "order": { "$ref": "#/definitions/common/var_order" }, "out_of_value": { "$ref": "#/definitions/common/var_out_of_value" } } } ], "x-d7nosupport-additionalProperties": false }, "counter":{ "$id":"#/definitions/variables/counter", "title":"Counter", "type":"object", "xrequired": ["start", "end", "increment"], "allOf": [ { "$ref": "#/definitions/variables/generic" }, { "properties":{ "start": { "type": "number" }, "end": { "type": "number" }, "increment": { "type": "number" }, "scope": { "$ref": "#/definitions/common/var_scope" }, "out_of_value": { "$ref": "#/definitions/common/var_out_of_value" } } } ], "x-d7nosupport-additionalProperties": false }, "random_number":{ "$id":"#/definitions/variables/random_number", "title":"Random Number", "type":"object", "xrequired": ["min", "max"], "allOf": [ { "$ref": "#/definitions/variables/generic" }, { "properties":{ "min": { "type": "number" }, "max": { "type": "number" }, "predictable": { "type": "boolean" } } } ], "x-d7nosupport-additionalProperties": false }, "javascript":{ "$id":"#/definitions/variables/javascript", "title":"Javascript", "type":"object", "xrequired": ["script"], "allOf": [ { "$ref": "#/definitions/variables/generic" }, { "properties":{ "script": { "$ref": "#/definitions/common/text" } } } ], "x-d7nosupport-additionalProperties": false } }, "server": { "$id":"#/definitions/server", "title":"Server", "type":"object", "xrequired": ["name","host"], "additionalProperties": false, "properties":{ "name":{ "$ref": "#/definitions/common/text" }, "host":{ "$ref": "#/definitions/common/text" }, "scheme":{ "$id":"#root/servers/items/scheme", "type":"string", "enum": ["http", "https"] }, "port": { "type": "integer" }, "basic_authentication": { "$ref": "#/definitions/authentication/basic" }, "ntlm_authentication": { "$ref": "#/definitions/authentication/ntlm" }, "negotiate_authentication": { "$ref": "#/definitions/authentication/basic" } } }, "authentication": { "auth-generic": { "$id":"#/definitions/authentication/auth-generic", "type":"object", "xrequired": ["login","password"], "properties":{ "login":{ "$ref": "#/definitions/common/text" }, "password":{ "$ref": "#/definitions/common/text" } } }, "auth-generic-domain": { "$id":"#/definitions/authentication/auth-generic-domain", "type":"object", "allOf": [ { "$ref": "#/definitions/authentication/auth-generic" }, { "properties":{ "domain": { "$ref": "#/definitions/common/text" } } } ] }, "basic": { "$id":"#/definitions/authentication/basic", "title":"Basic Authentication", "type":"object", "allOf": [ { "$ref": "#/definitions/authentication/auth-generic" }, { "properties":{ "realm": { "$ref": "#/definitions/common/text" } } } ] }, "ntlm": { "$id":"#/definitions/authentication/ntlm", "title":"NTLM Authentication", "type":"object", "allOf": [ { "$ref": "#/definitions/authentication/auth-generic-domain" } ] }, "negotiate": { "$id":"#/definitions/authentication/negotiate", "title":"Negotiate Authentication", "type":"object", "allOf": [ { "$ref": "#/definitions/authentication/auth-generic-domain" } ] } }, "sla": { "$id":"#/definitions/sla", "title":"SLA Profile", "type": "object", "xrequired": ["name","thresholds"], "properties": { "name": { "$ref": "#/definitions/common/text" }, "description": { "$ref": "#/definitions/common/text" }, "thresholds": { "$id":"#/definitions/sla/thresholds", "title":"Thresholds", "type":"array", "minItems":1, "additionalProperties":false, "items": { "$ref": "#/definitions/sla/threshold" } } }, "threshold":{ "$id":"#/definitions/sla/threshold", "title":"Threshold", "type":"string", "pattern":"^(.*?)\\s(warn\\s(>=|==|<=|>|<))(?=\\s)(.*?)per\\s(test|interval)$" } }, "populations": { "population":{ "$id":"#/definitions/population", "title":"Population", "type":"object", "properties":{ "name":{ "$ref": "#/definitions/common/text" }, "description":{ "$ref": "#/definitions/common/text" }, "xcomments": { "value": "why do we need the substructure 'name' to denote a string list?" }, "user_paths":{ "type":"array", "minItems":1, "additionalProperties":false, "additionalItems": false, "items": { "type": "object", "properties": { "name": { "$ref": "#/definitions/common/text" } } } } } }, "constant_load":{ "$id":"#/definitions/populations/constant_load", "title":"Constant Load", "type":"object", "required": ["users"], "properties":{ "duration":{ "$ref": "#/definitions/common/duration"}, "start_after":{ "$ref": "#/definitions/common/start_after_options" }, "stop_after":{ "$ref": "#/definitions/common/stop_after_options" }, "users":{ "type":"integer", "default":1 }, "rampup": { "$ref": "#/definitions/common/time" } } }, "rampup_load":{ "$id":"#/definitions/populations/rampup_load", "title":"Ramp-up Load", "type":"object", "required": ["min_users","increment_users","increment_every"], "properties":{ "duration":{ "$ref": "#/definitions/common/duration" }, "start_after":{ "$ref": "#/definitions/common/start_after_options" }, "stop_after":{ "$ref": "#/definitions/common/stop_after_options" }, "min_users": { "$ref": "#/definitions/common/positive_number" }, "max_users": { "$ref": "#/definitions/common/positive_number" }, "increment_users":{ "type": "integer", "default": 1 }, "increment_every": { "$ref": "#/definitions/common/duration" }, "increment_rampup": { "$ref": "#/definitions/common/time" } }, "additionalProperties": false }, "peaks_load":{ "$id":"#/definitions/populations/peaks_load", "title":"Peaks Load", "type":"object", "required": ["minimum","maximum","start"], "properties":{ "minimum":{ "$ref": "#/definitions/populations/peaks_phase" }, "maximum":{ "$ref": "#/definitions/populations/peaks_phase" }, "start": { "type": "string", "enum": ["minimum","maximum"] }, "duration":{ "$ref": "#/definitions/common/duration" }, "start_after":{ "$ref": "#/definitions/common/start_after_options" }, "step_rampup": { "$ref": "#/definitions/common/text" }, "stop_after":{ "$ref": "#/definitions/common/stop_after_options" } }, "additionalProperties": false }, "peaks_phase":{ "$id":"#/definitions/populations/peaks_phase", "title":"Peak Phase", "type":"object", "required": ["users","duration"], "properties":{ "users": { "$ref": "#/definitions/common/positive_number" }, "duration": { "$ref": "#/definitions/common/duration" } } } }, "scenario":{ "$id":"#/definitions/scenario", "title":"Scenario", "type":"object", "properties":{ "name":{ "$ref": "#/definitions/common/text" }, "description":{ "$ref": "#/definitions/common/text" }, "populations":{ "$id":"#/definitions/scenario/populations", "title":"Scenario Populations", "type":"array", "minItems": 1, "additionalItems": false, "additionalProperties": false, "items":{ "$id":"#/definitions/scenario/populations/items", "type":"object", "required": ["name"], "properties":{ "name":{ "$ref": "#/definitions/common/text" }, "constant_load": { "$ref": "#/definitions/populations/constant_load" }, "rampup_load": { "$ref": "#/definitions/populations/rampup_load" }, "peaks_load": { "$ref": "#/definitions/populations/peaks_load" } } } } } }, "user_paths": { "user_path":{ "$id":"#/definitions/user_paths/user_path", "title":"User Path", "type":"object", "required": ["name","actions"], "properties":{ "name":{ "$ref": "#/definitions/common/text" }, "description":{ "$ref": "#/definitions/common/text" }, "user_session": { "type": "string", "enum": ["reset_on","reset_off","reset_auto"] }, "init": { "$ref": "#/definitions/user_paths/container" }, "actions": { "$ref": "#/definitions/user_paths/container" }, "end": { "$ref": "#/definitions/user_paths/container" } } }, "container":{ "$id":"#/definitions/user_paths/container", "title":"Containers", "type":"object", "required": ["steps"], "properties":{ "sla_profile": { "type": "string" }, "steps":{ "title":"Steps", "type":"array", "minItems": 1, "items": { "type": "object", "properties": { "transaction": { "$ref": "#/definitions/user_paths/actions/transaction" }, "request": { "$ref": "#/definitions/user_paths/actions/request" }, "delay": { "$ref": "#/definitions/user_paths/actions/delay" }, "think_time": { "$ref": "#/definitions/user_paths/actions/think_time" }, "javascript": { "$ref": "#/definitions/user_paths/actions/javascript" }, "if": { "$ref": "#/definitions/user_paths/actions/if" } }, "additionalProperties": false } } } }, "actions": { "transaction":{ "$id":"#/definitions/user_paths/actions/transaction", "name": "transaction", "title":"Action: Transaction", "type":"object", "required": ["name","steps"], "properties":{ "name": { "$ref": "#/definitions/common/text" }, "description": { "$ref": "#/definitions/common/text" }, "steps":{ "title":"Steps", "type":"array", "minItems": 1, "items": { "type": "object", "properties": { "transaction": { "$ref": "#/definitions/user_paths/actions/transaction" }, "request": { "$ref": "#/definitions/user_paths/actions/request" }, "delay": { "$ref": "#/definitions/user_paths/actions/delay" }, "think_time": { "$ref": "#/definitions/user_paths/actions/think_time" }, "javascript": { "$ref": "#/definitions/user_paths/actions/javascript" }, "if": { "$ref": "#/definitions/user_paths/actions/if" } }, "additionalProperties": false } } }, "additionalProperties": false }, "request": { "$id":"#/definitions/user_paths/actions/request", "title":"Action: HTTP/s Request", "type":"object", "required": ["url"], "properties":{ "url": { "$ref": "#/definitions/common/text" }, "server": { "$ref": "#/definitions/common/text" }, "method": { "type": "string", "enum": [ "GET","POST","HEAD","PUT","DELETE","OPTIONS","TRACE" ] }, "headers": { "type": "array", "items": { "type": "object", "properties": { "name": { "type": "string" }, "value": { "type": "string" } } } }, "sla_profile": { "$ref": "#/definitions/common/text" }, "body": { "$ref": "#/definitions/common/text" }, "extractors": { "type": "array", "items": { "$ref": "#/definitions/user_paths/extractor" } } } }, "delay": { "$id":"#/definitions/user_paths/actions/delay", "title":"Action: Delay", "type":"string", "allOf": [ { "$ref": "#/definitions/common/text" } ] }, "think_time": { "$id":"#/definitions/user_paths/actions/think_time", "title":"Action: Think Time", "type":"string", "allOf": [ { "$ref": "#/definitions/common/text" } ] }, "javascript": { "$id":"#/definitions/user_paths/actions/javascript", "title":"Action: Javascript", "type": "object", "xrequired": ["name","script"], "properties": { "name": { "$ref": "#/definitions/common/text" }, "description": { "$ref": "#/definitions/common/text" }, "script": { "$ref": "#/definitions/common/text" } } }, "if": { "$id":"#/definitions/user_paths/actions/if", "title":"Action: If", "type": "object", "xrequired": ["conditions","then"], "properties": { "name": { "$ref": "#/definitions/common/text" }, "description": { "$ref": "#/definitions/common/text" }, "conditions": { "type": "array", "xcomments": "like GWBSR said: 'aint gonna do it', at least not this commit", "items": { "$ref": "#/definitions/common/text" } }, "match": { "type": "string", "enum": ["any","all"], "default": "any" }, "then": { "$ref": "#/definitions/user_paths/container" }, "else": { "$ref": "#/definitions/user_paths/container" } } } }, "extractor": { "type": "object", "xrequired": ["name"], "properties": { "name":{ "$ref": "#/definitions/common/text" }, "from": { "type": "string", "default": "body", "enum": [ "header","body","both" ] }, "xpath":{ "$ref": "#/definitions/common/text" }, "jsonpath":{ "$ref": "#/definitions/common/text" }, "regexp":{ "$ref": "#/definitions/common/text" }, "match_number": { "type": "integer", "default": 1 }, "template":{ "$ref": "#/definitions/common/text" }, "decode": { "type": "string", "enum": [ "html","url" ] }, "extract_once": { "type": "boolean", "default": false }, "default": { "type": "string", "default": "" }, "throw_assertion_error": { "type": "boolean", "default": true } } } } } }
component-detection-manifest.json
{ "$ref": "#/definitions/CGManifest", "$schema": "http://json-schema.org/draft-04/schema#", "definitions": { "CGManifest": { "properties": { "registrations": { "items": { "$ref": "#/definitions/Registration" }, "type": "array" }, "version": { "type": "integer" } }, "required": ["registrations", "version"], "title": "CGManifest", "type": "object" }, "Registration": { "title": "Registration", "type": "object", "properties": { "component": { "$ref": "#/definitions/Component" }, "dependencyRoots": { "items": { "$ref": "#/definitions/Component" }, "type": "array" }, "developmentDependency": { "type": "boolean" } }, "required": ["component"] }, "Component": { "title": "Component", "type": "object", "oneOf": [ { "$ref": "#/definitions/Cargo" }, { "$ref": "#/definitions/Git" }, { "$ref": "#/definitions/Go" }, { "$ref": "#/definitions/Linux" }, { "$ref": "#/definitions/Maven" }, { "$ref": "#/definitions/Npm" }, { "$ref": "#/definitions/NuGet" }, { "$ref": "#/definitions/Other" }, { "$ref": "#/definitions/Pip" }, { "$ref": "#/definitions/Pod" }, { "$ref": "#/definitions/RubyGems" }, { "$ref": "#/definitions/VCPKG" } ] }, "Cargo": { "title": "Cargo", "type": "object", "properties": { "type": { "type": "string", "enum": ["cargo"] }, "cargo": { "type": "object", "properties": { "name": { "type": "string" }, "version": { "type": "string" } }, "required": ["name", "version"] } }, "required": ["type", "cargo"] }, "Git": { "title": "Git", "type": "object", "properties": { "type": { "type": "string", "enum": ["git"] }, "git": { "type": "object", "properties": { "commitHash": { "type": "string" }, "repositoryUrl": { "type": "string", "format": "uri" } }, "required": ["commitHash", "repositoryUrl"] } }, "required": ["type", "git"] }, "Go": { "title": "Go", "type": "object", "properties": { "type": { "type": "string", "enum": ["go"] }, "go": { "type": "object", "properties": { "name": { "type": "string" }, "version": { "type": "string" } }, "required": ["name", "version"] } }, "required": ["type", "go"] }, "Linux": { "title": "Linux", "type": "object", "properties": { "type": { "type": "string", "enum": ["linux"] }, "linux": { "type": "object", "properties": { "name": { "type": "string" }, "version": { "type": "string" }, "distribution": { "type": "string" }, "release": { "type": "string" }, "key-URL": { "type": "string", "format": "uri" }, "pool-URL": { "type": "string", "format": "uri" } }, "required": ["name", "version", "distribution", "release"] } }, "required": ["type", "linux"] }, "Maven": { "title": "Maven", "type": "object", "properties": { "type": { "type": "string", "enum": ["maven"] }, "maven": { "type": "object", "properties": { "groupId": { "type": "string" }, "artifactId": { "type": "string" }, "version": { "type": "string" } }, "required": ["groupId", "artifactId", "version"] } }, "required": ["type", "maven"] }, "Npm": { "title": "Npm", "type": "object", "properties": { "type": { "type": "string", "enum": ["npm"] }, "npm": { "type": "object", "properties": { "name": { "type": "string" }, "version": { "type": "string" } }, "required": ["name", "version"] } }, "required": ["type", "npm"] }, "NuGet": { "title": "NuGet", "type": "object", "properties": { "type": { "type": "string", "enum": ["nuget"] }, "nuget": { "type": "object", "properties": { "name": { "type": "string" }, "version": { "type": "string" } }, "required": ["name", "version"] } }, "required": ["type", "nuget"] }, "Other": { "title": "Other", "type": "object", "properties": { "type": { "type": "string", "enum": ["other"] }, "other": { "title": "Other", "type": "object", "properties": { "name": { "type": "string" }, "version": { "type": "string" }, "downloadUrl": { "format": "uri", "type": "string" }, "hash": { "type": "string" } }, "required": ["name", "version", "downloadUrl", "hash"] } }, "required": ["type", "other"] }, "Pip": { "title": "Pip", "type": "object", "properties": { "type": { "type": "string", "enum": ["pip"] }, "pip": { "type": "object", "properties": { "name": { "type": "string" }, "version": { "type": "string" } }, "required": ["name", "version"] } }, "required": ["type", "pip"] }, "Pod": { "title": "Pod", "type": "object", "properties": { "type": { "type": "string", "enum": ["pod"] }, "pod": { "type": "object", "properties": { "name": { "type": "string" }, "version": { "type": "string" } }, "required": ["name", "version"] } }, "required": ["type", "pod"] }, "RubyGems": { "title": "RubyGems", "type": "object", "properties": { "type": { "type": "string", "enum": ["rubygems"] }, "rubygems": { "type": "object", "properties": { "name": { "type": "string" }, "version": { "type": "string" } }, "required": ["name", "version"] } }, "required": ["type", "rubygems"] }, "VCPKG": { "title": "VCPKG", "type": "object", "properties": { "type": { "type": "string", "enum": ["vcpkg"] }, "vcpkg": { "type": "object", "properties": { "spdxId": { "type": "string" }, "name": { "type": "string" }, "version": { "type": "string" }, "downloadLocation": { "type": "string" }, "triplet": { "type": "string" }, "description": { "type": "string" }, "portVersion": { "type": "integer" } }, "required": ["spdxId", "name"] } }, "required": ["type", "vcpkg"] } }, "id": "https://json.schemastore.org/component-detection-manifest.json", "title": "Component Detection manifest" }
sarif-2.1.0-rtm.5.json
{ "$id": "https://json.schemastore.org/sarif-2.1.0-rtm.5.json", "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "definitions": { "address": { "description": "A physical or virtual address, or a range of addresses, in an 'addressable region' (memory or a binary file).", "additionalProperties": false, "type": "object", "properties": { "absoluteAddress": { "description": "The address expressed as a byte offset from the start of the addressable region.", "type": "integer", "minimum": -1, "default": -1 }, "relativeAddress": { "description": "The address expressed as a byte offset from the absolute address of the top-most parent object.", "type": "integer" }, "length": { "description": "The number of bytes in this range of addresses.", "type": "integer" }, "kind": { "description": "An open-ended string that identifies the address kind. 'data', 'function', 'header','instruction', 'module', 'page', 'section', 'segment', 'stack', 'stackFrame', 'table' are well-known values.", "type": "string" }, "name": { "description": "A name that is associated with the address, e.g., '.text'.", "type": "string" }, "fullyQualifiedName": { "description": "A human-readable fully qualified name that is associated with the address.", "type": "string" }, "offsetFromParent": { "description": "The byte offset of this address from the absolute or relative address of the parent object.", "type": "integer" }, "index": { "description": "The index within run.addresses of the cached object for this address.", "type": "integer", "default": -1, "minimum": -1 }, "parentIndex": { "description": "The index within run.addresses of the parent object.", "type": "integer", "default": -1, "minimum": -1 }, "properties": { "description": "Key/value pairs that provide additional information about the address.", "$ref": "#/definitions/propertyBag" } } }, "artifact": { "description": "A single artifact. In some cases, this artifact might be nested within another artifact.", "additionalProperties": false, "type": "object", "properties": { "description": { "description": "A short description of the artifact.", "$ref": "#/definitions/message" }, "location": { "description": "The location of the artifact.", "$ref": "#/definitions/artifactLocation" }, "parentIndex": { "description": "Identifies the index of the immediate parent of the artifact, if this artifact is nested.", "type": "integer", "default": -1, "minimum": -1 }, "offset": { "description": "The offset in bytes of the artifact within its containing artifact.", "type": "integer", "minimum": 0 }, "length": { "description": "The length of the artifact in bytes.", "type": "integer", "default": -1, "minimum": -1 }, "roles": { "description": "The role or roles played by the artifact in the analysis.", "type": "array", "minItems": 0, "uniqueItems": true, "default": [], "items": { "enum": [ "analysisTarget", "attachment", "responseFile", "resultFile", "standardStream", "tracedFile", "unmodified", "modified", "added", "deleted", "renamed", "uncontrolled", "driver", "extension", "translation", "taxonomy", "policy", "referencedOnCommandLine", "memoryContents", "directory", "userSpecifiedConfiguration", "toolSpecifiedConfiguration", "debugOutputFile" ] } }, "mimeType": { "description": "The MIME type (RFC 2045) of the artifact.", "type": "string", "pattern": "[^/]+/.+" }, "contents": { "description": "The contents of the artifact.", "$ref": "#/definitions/artifactContent" }, "encoding": { "description": "Specifies the encoding for an artifact object that refers to a text file.", "type": "string" }, "sourceLanguage": { "description": "Specifies the source language for any artifact object that refers to a text file that contains source code.", "type": "string" }, "hashes": { "description": "A dictionary, each of whose keys is the name of a hash function and each of whose values is the hashed value of the artifact produced by the specified hash function.", "type": "object", "additionalProperties": { "type": "string" } }, "lastModifiedTimeUtc": { "description": "The Coordinated Universal Time (UTC) date and time at which the artifact was most recently modified. See \"Date/time properties\" in the SARIF spec for the required format.", "type": "string", "format": "date-time" }, "properties": { "description": "Key/value pairs that provide additional information about the artifact.", "$ref": "#/definitions/propertyBag" } } }, "artifactChange": { "description": "A change to a single artifact.", "additionalProperties": false, "type": "object", "properties": { "artifactLocation": { "description": "The location of the artifact to change.", "$ref": "#/definitions/artifactLocation" }, "replacements": { "description": "An array of replacement objects, each of which represents the replacement of a single region in a single artifact specified by 'artifactLocation'.", "type": "array", "minItems": 1, "uniqueItems": false, "items": { "$ref": "#/definitions/replacement" } }, "properties": { "description": "Key/value pairs that provide additional information about the change.", "$ref": "#/definitions/propertyBag" } }, "required": ["artifactLocation", "replacements"] }, "artifactContent": { "description": "Represents the contents of an artifact.", "type": "object", "additionalProperties": false, "properties": { "text": { "description": "UTF-8-encoded content from a text artifact.", "type": "string" }, "binary": { "description": "MIME Base64-encoded content from a binary artifact, or from a text artifact in its original encoding.", "type": "string" }, "rendered": { "description": "An alternate rendered representation of the artifact (e.g., a decompiled representation of a binary region).", "$ref": "#/definitions/multiformatMessageString" }, "properties": { "description": "Key/value pairs that provide additional information about the artifact content.", "$ref": "#/definitions/propertyBag" } } }, "artifactLocation": { "description": "Specifies the location of an artifact.", "additionalProperties": false, "type": "object", "properties": { "uri": { "description": "A string containing a valid relative or absolute URI.", "type": "string", "format": "uri-reference" }, "uriBaseId": { "description": "A string which indirectly specifies the absolute URI with respect to which a relative URI in the \"uri\" property is interpreted.", "type": "string" }, "index": { "description": "The index within the run artifacts array of the artifact object associated with the artifact location.", "type": "integer", "default": -1, "minimum": -1 }, "description": { "description": "A short description of the artifact location.", "$ref": "#/definitions/message" }, "properties": { "description": "Key/value pairs that provide additional information about the artifact location.", "$ref": "#/definitions/propertyBag" } } }, "attachment": { "description": "An artifact relevant to a result.", "type": "object", "additionalProperties": false, "properties": { "description": { "description": "A message describing the role played by the attachment.", "$ref": "#/definitions/message" }, "artifactLocation": { "description": "The location of the attachment.", "$ref": "#/definitions/artifactLocation" }, "regions": { "description": "An array of regions of interest within the attachment.", "type": "array", "minItems": 0, "uniqueItems": true, "default": [], "items": { "$ref": "#/definitions/region" } }, "rectangles": { "description": "An array of rectangles specifying areas of interest within the image.", "type": "array", "minItems": 0, "uniqueItems": true, "default": [], "items": { "$ref": "#/definitions/rectangle" } }, "properties": { "description": "Key/value pairs that provide additional information about the attachment.", "$ref": "#/definitions/propertyBag" } }, "required": ["artifactLocation"] }, "codeFlow": { "description": "A set of threadFlows which together describe a pattern of code execution relevant to detecting a result.", "additionalProperties": false, "type": "object", "properties": { "message": { "description": "A message relevant to the code flow.", "$ref": "#/definitions/message" }, "threadFlows": { "description": "An array of one or more unique threadFlow objects, each of which describes the progress of a program through a thread of execution.", "type": "array", "minItems": 1, "uniqueItems": false, "items": { "$ref": "#/definitions/threadFlow" } }, "properties": { "description": "Key/value pairs that provide additional information about the code flow.", "$ref": "#/definitions/propertyBag" } }, "required": ["threadFlows"] }, "configurationOverride": { "description": "Information about how a specific rule or notification was reconfigured at runtime.", "type": "object", "additionalProperties": false, "properties": { "configuration": { "description": "Specifies how the rule or notification was configured during the scan.", "$ref": "#/definitions/reportingConfiguration" }, "descriptor": { "description": "A reference used to locate the descriptor whose configuration was overridden.", "$ref": "#/definitions/reportingDescriptorReference" }, "properties": { "description": "Key/value pairs that provide additional information about the configuration override.", "$ref": "#/definitions/propertyBag" } }, "required": ["configuration", "descriptor"] }, "conversion": { "description": "Describes how a converter transformed the output of a static analysis tool from the analysis tool's native output format into the SARIF format.", "additionalProperties": false, "type": "object", "properties": { "tool": { "description": "A tool object that describes the converter.", "$ref": "#/definitions/tool" }, "invocation": { "description": "An invocation object that describes the invocation of the converter.", "$ref": "#/definitions/invocation" }, "analysisToolLogFiles": { "description": "The locations of the analysis tool's per-run log files.", "type": "array", "minItems": 0, "uniqueItems": true, "default": [], "items": { "$ref": "#/definitions/artifactLocation" } }, "properties": { "description": "Key/value pairs that provide additional information about the conversion.", "$ref": "#/definitions/propertyBag" } }, "required": ["tool"] }, "edge": { "description": "Represents a directed edge in a graph.", "type": "object", "additionalProperties": false, "properties": { "id": { "description": "A string that uniquely identifies the edge within its graph.", "type": "string" }, "label": { "description": "A short description of the edge.", "$ref": "#/definitions/message" }, "sourceNodeId": { "description": "Identifies the source node (the node at which the edge starts).", "type": "string" }, "targetNodeId": { "description": "Identifies the target node (the node at which the edge ends).", "type": "string" }, "properties": { "description": "Key/value pairs that provide additional information about the edge.", "$ref": "#/definitions/propertyBag" } }, "required": ["id", "sourceNodeId", "targetNodeId"] }, "edgeTraversal": { "description": "Represents the traversal of a single edge during a graph traversal.", "type": "object", "additionalProperties": false, "properties": { "edgeId": { "description": "Identifies the edge being traversed.", "type": "string" }, "message": { "description": "A message to display to the user as the edge is traversed.", "$ref": "#/definitions/message" }, "finalState": { "description": "The values of relevant expressions after the edge has been traversed.", "type": "object", "additionalProperties": { "$ref": "#/definitions/multiformatMessageString" } }, "stepOverEdgeCount": { "description": "The number of edge traversals necessary to return from a nested graph.", "type": "integer", "minimum": 0 }, "properties": { "description": "Key/value pairs that provide additional information about the edge traversal.", "$ref": "#/definitions/propertyBag" } }, "required": ["edgeId"] }, "exception": { "description": "Describes a runtime exception encountered during the execution of an analysis tool.", "type": "object", "additionalProperties": false, "properties": { "kind": { "type": "string", "description": "A string that identifies the kind of exception, for example, the fully qualified type name of an object that was thrown, or the symbolic name of a signal." }, "message": { "description": "A message that describes the exception.", "type": "string" }, "stack": { "description": "The sequence of function calls leading to the exception.", "$ref": "#/definitions/stack" }, "innerExceptions": { "description": "An array of exception objects each of which is considered a cause of this exception.", "type": "array", "minItems": 0, "uniqueItems": false, "default": [], "items": { "$ref": "#/definitions/exception" } }, "properties": { "description": "Key/value pairs that provide additional information about the exception.", "$ref": "#/definitions/propertyBag" } } }, "externalProperties": { "description": "The top-level element of an external property file.", "type": "object", "additionalProperties": false, "properties": { "schema": { "description": "The URI of the JSON schema corresponding to the version of the external property file format.", "type": "string", "format": "uri" }, "version": { "description": "The SARIF format version of this external properties object.", "enum": ["2.1.0"] }, "guid": { "description": "A stable, unique identifier for this external properties object, in the form of a GUID.", "type": "string", "pattern": "^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-5][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}$" }, "runGuid": { "description": "A stable, unique identifier for the run associated with this external properties object, in the form of a GUID.", "type": "string", "pattern": "^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-5][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}$" }, "conversion": { "description": "A conversion object that will be merged with a separate run.", "$ref": "#/definitions/conversion" }, "graphs": { "description": "An array of graph objects that will be merged with a separate run.", "type": "array", "minItems": 0, "default": [], "uniqueItems": true, "items": { "$ref": "#/definitions/graph" } }, "externalizedProperties": { "description": "Key/value pairs that provide additional information that will be merged with a separate run.", "$ref": "#/definitions/propertyBag" }, "artifacts": { "description": "An array of artifact objects that will be merged with a separate run.", "type": "array", "minItems": 0, "uniqueItems": true, "items": { "$ref": "#/definitions/artifact" } }, "invocations": { "description": "Describes the invocation of the analysis tool that will be merged with a separate run.", "type": "array", "minItems": 0, "uniqueItems": false, "default": [], "items": { "$ref": "#/definitions/invocation" } }, "logicalLocations": { "description": "An array of logical locations such as namespaces, types or functions that will be merged with a separate run.", "type": "array", "minItems": 0, "uniqueItems": true, "default": [], "items": { "$ref": "#/definitions/logicalLocation" } }, "threadFlowLocations": { "description": "An array of threadFlowLocation objects that will be merged with a separate run.", "type": "array", "minItems": 0, "uniqueItems": true, "default": [], "items": { "$ref": "#/definitions/threadFlowLocation" } }, "results": { "description": "An array of result objects that will be merged with a separate run.", "type": "array", "minItems": 0, "uniqueItems": false, "default": [], "items": { "$ref": "#/definitions/result" } }, "taxonomies": { "description": "Tool taxonomies that will be merged with a separate run.", "type": "array", "minItems": 0, "uniqueItems": true, "default": [], "items": { "$ref": "#/definitions/toolComponent" } }, "driver": { "description": "The analysis tool object that will be merged with a separate run.", "$ref": "#/definitions/toolComponent" }, "extensions": { "description": "Tool extensions that will be merged with a separate run.", "type": "array", "minItems": 0, "uniqueItems": true, "default": [], "items": { "$ref": "#/definitions/toolComponent" } }, "policies": { "description": "Tool policies that will be merged with a separate run.", "type": "array", "minItems": 0, "uniqueItems": true, "default": [], "items": { "$ref": "#/definitions/toolComponent" } }, "translations": { "description": "Tool translations that will be merged with a separate run.", "type": "array", "minItems": 0, "uniqueItems": true, "default": [], "items": { "$ref": "#/definitions/toolComponent" } }, "addresses": { "description": "Addresses that will be merged with a separate run.", "type": "array", "minItems": 0, "uniqueItems": false, "default": [], "items": { "$ref": "#/definitions/address" } }, "webRequests": { "description": "Requests that will be merged with a separate run.", "type": "array", "minItems": 0, "uniqueItems": true, "default": [], "items": { "$ref": "#/definitions/webRequest" } }, "webResponses": { "description": "Responses that will be merged with a separate run.", "type": "array", "minItems": 0, "uniqueItems": true, "default": [], "items": { "$ref": "#/definitions/webResponse" } }, "properties": { "description": "Key/value pairs that provide additional information about the external properties.", "$ref": "#/definitions/propertyBag" } } }, "externalPropertyFileReference": { "description": "Contains information that enables a SARIF consumer to locate the external property file that contains the value of an externalized property associated with the run.", "type": "object", "additionalProperties": false, "properties": { "location": { "description": "The location of the external property file.", "$ref": "#/definitions/artifactLocation" }, "guid": { "description": "A stable, unique identifier for the external property file in the form of a GUID.", "type": "string", "pattern": "^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-5][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}$" }, "itemCount": { "description": "A non-negative integer specifying the number of items contained in the external property file.", "type": "integer", "default": -1, "minimum": -1 }, "properties": { "description": "Key/value pairs that provide additional information about the external property file.", "$ref": "#/definitions/propertyBag" } }, "anyOf": [ { "required": ["location"] }, { "required": ["guid"] } ] }, "externalPropertyFileReferences": { "description": "References to external property files that should be inlined with the content of a root log file.", "additionalProperties": false, "type": "object", "properties": { "conversion": { "description": "An external property file containing a run.conversion object to be merged with the root log file.", "$ref": "#/definitions/externalPropertyFileReference" }, "graphs": { "description": "An array of external property files containing a run.graphs object to be merged with the root log file.", "type": "array", "minItems": 0, "uniqueItems": true, "default": [], "items": { "$ref": "#/definitions/externalPropertyFileReference" } }, "externalizedProperties": { "description": "An external property file containing a run.properties object to be merged with the root log file.", "$ref": "#/definitions/externalPropertyFileReference" }, "artifacts": { "description": "An array of external property files containing run.artifacts arrays to be merged with the root log file.", "type": "array", "minItems": 0, "uniqueItems": true, "default": [], "items": { "$ref": "#/definitions/externalPropertyFileReference" } }, "invocations": { "description": "An array of external property files containing run.invocations arrays to be merged with the root log file.", "type": "array", "minItems": 0, "uniqueItems": true, "default": [], "items": { "$ref": "#/definitions/externalPropertyFileReference" } }, "logicalLocations": { "description": "An array of external property files containing run.logicalLocations arrays to be merged with the root log file.", "type": "array", "minItems": 0, "uniqueItems": true, "default": [], "items": { "$ref": "#/definitions/externalPropertyFileReference" } }, "threadFlowLocations": { "description": "An array of external property files containing run.threadFlowLocations arrays to be merged with the root log file.", "type": "array", "minItems": 0, "uniqueItems": true, "default": [], "items": { "$ref": "#/definitions/externalPropertyFileReference" } }, "results": { "description": "An array of external property files containing run.results arrays to be merged with the root log file.", "type": "array", "minItems": 0, "uniqueItems": true, "default": [], "items": { "$ref": "#/definitions/externalPropertyFileReference" } }, "taxonomies": { "description": "An array of external property files containing run.taxonomies arrays to be merged with the root log file.", "type": "array", "minItems": 0, "uniqueItems": true, "default": [], "items": { "$ref": "#/definitions/externalPropertyFileReference" } }, "addresses": { "description": "An array of external property files containing run.addresses arrays to be merged with the root log file.", "type": "array", "minItems": 0, "uniqueItems": true, "default": [], "items": { "$ref": "#/definitions/externalPropertyFileReference" } }, "driver": { "description": "An external property file containing a run.driver object to be merged with the root log file.", "$ref": "#/definitions/externalPropertyFileReference" }, "extensions": { "description": "An array of external property files containing run.extensions arrays to be merged with the root log file.", "type": "array", "minItems": 0, "uniqueItems": true, "default": [], "items": { "$ref": "#/definitions/externalPropertyFileReference" } }, "policies": { "description": "An array of external property files containing run.policies arrays to be merged with the root log file.", "type": "array", "minItems": 0, "uniqueItems": true, "default": [], "items": { "$ref": "#/definitions/externalPropertyFileReference" } }, "translations": { "description": "An array of external property files containing run.translations arrays to be merged with the root log file.", "type": "array", "minItems": 0, "uniqueItems": true, "default": [], "items": { "$ref": "#/definitions/externalPropertyFileReference" } }, "webRequests": { "description": "An array of external property files containing run.requests arrays to be merged with the root log file.", "type": "array", "minItems": 0, "uniqueItems": true, "default": [], "items": { "$ref": "#/definitions/externalPropertyFileReference" } }, "webResponses": { "description": "An array of external property files containing run.responses arrays to be merged with the root log file.", "type": "array", "minItems": 0, "uniqueItems": true, "default": [], "items": { "$ref": "#/definitions/externalPropertyFileReference" } }, "properties": { "description": "Key/value pairs that provide additional information about the external property files.", "$ref": "#/definitions/propertyBag" } } }, "fix": { "description": "A proposed fix for the problem represented by a result object. A fix specifies a set of artifacts to modify. For each artifact, it specifies a set of bytes to remove, and provides a set of new bytes to replace them.", "additionalProperties": false, "type": "object", "properties": { "description": { "description": "A message that describes the proposed fix, enabling viewers to present the proposed change to an end user.", "$ref": "#/definitions/message" }, "artifactChanges": { "description": "One or more artifact changes that comprise a fix for a result.", "type": "array", "minItems": 1, "uniqueItems": true, "items": { "$ref": "#/definitions/artifactChange" } }, "properties": { "description": "Key/value pairs that provide additional information about the fix.", "$ref": "#/definitions/propertyBag" } }, "required": ["artifactChanges"] }, "graph": { "description": "A network of nodes and directed edges that describes some aspect of the structure of the code (for example, a call graph).", "type": "object", "additionalProperties": false, "properties": { "description": { "description": "A description of the graph.", "$ref": "#/definitions/message" }, "nodes": { "description": "An array of node objects representing the nodes of the graph.", "type": "array", "minItems": 0, "uniqueItems": true, "default": [], "items": { "$ref": "#/definitions/node" } }, "edges": { "description": "An array of edge objects representing the edges of the graph.", "type": "array", "minItems": 0, "uniqueItems": true, "default": [], "items": { "$ref": "#/definitions/edge" } }, "properties": { "description": "Key/value pairs that provide additional information about the graph.", "$ref": "#/definitions/propertyBag" } } }, "graphTraversal": { "description": "Represents a path through a graph.", "type": "object", "additionalProperties": false, "properties": { "runGraphIndex": { "description": "The index within the run.graphs to be associated with the result.", "type": "integer", "default": -1, "minimum": -1 }, "resultGraphIndex": { "description": "The index within the result.graphs to be associated with the result.", "type": "integer", "default": -1, "minimum": -1 }, "description": { "description": "A description of this graph traversal.", "$ref": "#/definitions/message" }, "initialState": { "description": "Values of relevant expressions at the start of the graph traversal that may change during graph traversal.", "type": "object", "additionalProperties": { "$ref": "#/definitions/multiformatMessageString" } }, "immutableState": { "description": "Values of relevant expressions at the start of the graph traversal that remain constant for the graph traversal.", "type": "object", "additionalProperties": { "$ref": "#/definitions/multiformatMessageString" } }, "edgeTraversals": { "description": "The sequences of edges traversed by this graph traversal.", "type": "array", "minItems": 0, "uniqueItems": false, "default": [], "items": { "$ref": "#/definitions/edgeTraversal" } }, "properties": { "description": "Key/value pairs that provide additional information about the graph traversal.", "$ref": "#/definitions/propertyBag" } }, "oneOf": [ { "required": ["runGraphIndex"] }, { "required": ["resultGraphIndex"] } ] }, "invocation": { "description": "The runtime environment of the analysis tool run.", "additionalProperties": false, "type": "object", "properties": { "commandLine": { "description": "The command line used to invoke the tool.", "type": "string" }, "arguments": { "description": "An array of strings, containing in order the command line arguments passed to the tool from the operating system.", "type": "array", "minItems": 0, "uniqueItems": false, "items": { "type": "string" } }, "responseFiles": { "description": "The locations of any response files specified on the tool's command line.", "type": "array", "minItems": 0, "uniqueItems": true, "items": { "$ref": "#/definitions/artifactLocation" } }, "startTimeUtc": { "description": "The Coordinated Universal Time (UTC) date and time at which the invocation started. See \"Date/time properties\" in the SARIF spec for the required format.", "type": "string", "format": "date-time" }, "endTimeUtc": { "description": "The Coordinated Universal Time (UTC) date and time at which the invocation ended. See \"Date/time properties\" in the SARIF spec for the required format.", "type": "string", "format": "date-time" }, "exitCode": { "description": "The process exit code.", "type": "integer" }, "ruleConfigurationOverrides": { "description": "An array of configurationOverride objects that describe rules related runtime overrides.", "type": "array", "minItems": 0, "default": [], "uniqueItems": true, "items": { "$ref": "#/definitions/configurationOverride" } }, "notificationConfigurationOverrides": { "description": "An array of configurationOverride objects that describe notifications related runtime overrides.", "type": "array", "minItems": 0, "default": [], "uniqueItems": true, "items": { "$ref": "#/definitions/configurationOverride" } }, "toolExecutionNotifications": { "description": "A list of runtime conditions detected by the tool during the analysis.", "type": "array", "minItems": 0, "uniqueItems": false, "default": [], "items": { "$ref": "#/definitions/notification" } }, "toolConfigurationNotifications": { "description": "A list of conditions detected by the tool that are relevant to the tool's configuration.", "type": "array", "minItems": 0, "uniqueItems": false, "default": [], "items": { "$ref": "#/definitions/notification" } }, "exitCodeDescription": { "description": "The reason for the process exit.", "type": "string" }, "exitSignalName": { "description": "The name of the signal that caused the process to exit.", "type": "string" }, "exitSignalNumber": { "description": "The numeric value of the signal that caused the process to exit.", "type": "integer" }, "processStartFailureMessage": { "description": "The reason given by the operating system that the process failed to start.", "type": "string" }, "executionSuccessful": { "description": "Specifies whether the tool's execution completed successfully.", "type": "boolean" }, "machine": { "description": "The machine on which the invocation occurred.", "type": "string" }, "account": { "description": "The account under which the invocation occurred.", "type": "string" }, "processId": { "description": "The id of the process in which the invocation occurred.", "type": "integer" }, "executableLocation": { "description": "An absolute URI specifying the location of the executable that was invoked.", "$ref": "#/definitions/artifactLocation" }, "workingDirectory": { "description": "The working directory for the invocation.", "$ref": "#/definitions/artifactLocation" }, "environmentVariables": { "description": "The environment variables associated with the analysis tool process, expressed as key/value pairs.", "type": "object", "additionalProperties": { "type": "string" } }, "stdin": { "description": "A file containing the standard input stream to the process that was invoked.", "$ref": "#/definitions/artifactLocation" }, "stdout": { "description": "A file containing the standard output stream from the process that was invoked.", "$ref": "#/definitions/artifactLocation" }, "stderr": { "description": "A file containing the standard error stream from the process that was invoked.", "$ref": "#/definitions/artifactLocation" }, "stdoutStderr": { "description": "A file containing the interleaved standard output and standard error stream from the process that was invoked.", "$ref": "#/definitions/artifactLocation" }, "properties": { "description": "Key/value pairs that provide additional information about the invocation.", "$ref": "#/definitions/propertyBag" } }, "required": ["executionSuccessful"] }, "location": { "description": "A location within a programming artifact.", "additionalProperties": false, "type": "object", "properties": { "id": { "description": "Value that distinguishes this location from all other locations within a single result object.", "type": "integer", "minimum": -1, "default": -1 }, "physicalLocation": { "description": "Identifies the artifact and region.", "$ref": "#/definitions/physicalLocation" }, "logicalLocations": { "description": "The logical locations associated with the result.", "type": "array", "minItems": 0, "uniqueItems": true, "default": [], "items": { "$ref": "#/definitions/logicalLocation" } }, "message": { "description": "A message relevant to the location.", "$ref": "#/definitions/message" }, "annotations": { "description": "A set of regions relevant to the location.", "type": "array", "minItems": 0, "uniqueItems": true, "default": [], "items": { "$ref": "#/definitions/region" } }, "relationships": { "description": "An array of objects that describe relationships between this location and others.", "type": "array", "default": [], "minItems": 0, "uniqueItems": true, "items": { "$ref": "#/definitions/locationRelationship" } }, "properties": { "description": "Key/value pairs that provide additional information about the location.", "$ref": "#/definitions/propertyBag" } } }, "locationRelationship": { "description": "Information about the relation of one location to another.", "type": "object", "additionalProperties": false, "properties": { "target": { "description": "A reference to the related location.", "type": "integer", "minimum": 0 }, "kinds": { "description": "A set of distinct strings that categorize the relationship. Well-known kinds include 'includes', 'isIncludedBy' and 'relevant'.", "type": "array", "default": ["relevant"], "uniqueItems": true, "items": { "type": "string" } }, "description": { "description": "A description of the location relationship.", "$ref": "#/definitions/message" }, "properties": { "description": "Key/value pairs that provide additional information about the location relationship.", "$ref": "#/definitions/propertyBag" } }, "required": ["target"] }, "logicalLocation": { "description": "A logical location of a construct that produced a result.", "additionalProperties": false, "type": "object", "properties": { "name": { "description": "Identifies the construct in which the result occurred. For example, this property might contain the name of a class or a method.", "type": "string" }, "index": { "description": "The index within the logical locations array.", "type": "integer", "default": -1, "minimum": -1 }, "fullyQualifiedName": { "description": "The human-readable fully qualified name of the logical location.", "type": "string" }, "decoratedName": { "description": "The machine-readable name for the logical location, such as a mangled function name provided by a C++ compiler that encodes calling convention, return type and other details along with the function name.", "type": "string" }, "parentIndex": { "description": "Identifies the index of the immediate parent of the construct in which the result was detected. For example, this property might point to a logical location that represents the namespace that holds a type.", "type": "integer", "default": -1, "minimum": -1 }, "kind": { "description": "The type of construct this logical location component refers to. Should be one of 'function', 'member', 'module', 'namespace', 'parameter', 'resource', 'returnType', 'type', 'variable', 'object', 'array', 'property', 'value', 'element', 'text', 'attribute', 'comment', 'declaration', 'dtd' or 'processingInstruction', if any of those accurately describe the construct.", "type": "string" }, "properties": { "description": "Key/value pairs that provide additional information about the logical location.", "$ref": "#/definitions/propertyBag" } } }, "message": { "description": "Encapsulates a message intended to be read by the end user.", "type": "object", "additionalProperties": false, "properties": { "text": { "description": "A plain text message string.", "type": "string" }, "markdown": { "description": "A Markdown message string.", "type": "string" }, "id": { "description": "The identifier for this message.", "type": "string" }, "arguments": { "description": "An array of strings to substitute into the message string.", "type": "array", "minItems": 0, "uniqueItems": false, "default": [], "items": { "type": "string" } }, "properties": { "description": "Key/value pairs that provide additional information about the message.", "$ref": "#/definitions/propertyBag" } }, "anyOf": [ { "required": ["text"] }, { "required": ["id"] } ] }, "multiformatMessageString": { "description": "A message string or message format string rendered in multiple formats.", "type": "object", "additionalProperties": false, "properties": { "text": { "description": "A plain text message string or format string.", "type": "string" }, "markdown": { "description": "A Markdown message string or format string.", "type": "string" }, "properties": { "description": "Key/value pairs that provide additional information about the message.", "$ref": "#/definitions/propertyBag" } }, "required": ["text"] }, "node": { "description": "Represents a node in a graph.", "type": "object", "additionalProperties": false, "properties": { "id": { "description": "A string that uniquely identifies the node within its graph.", "type": "string" }, "label": { "description": "A short description of the node.", "$ref": "#/definitions/message" }, "location": { "description": "A code location associated with the node.", "$ref": "#/definitions/location" }, "children": { "description": "Array of child nodes.", "type": "array", "minItems": 0, "uniqueItems": true, "default": [], "items": { "$ref": "#/definitions/node" } }, "properties": { "description": "Key/value pairs that provide additional information about the node.", "$ref": "#/definitions/propertyBag" } }, "required": ["id"] }, "notification": { "description": "Describes a condition relevant to the tool itself, as opposed to being relevant to a target being analyzed by the tool.", "type": "object", "additionalProperties": false, "properties": { "locations": { "description": "The locations relevant to this notification.", "type": "array", "minItems": 0, "uniqueItems": true, "default": [], "items": { "$ref": "#/definitions/location" } }, "message": { "description": "A message that describes the condition that was encountered.", "$ref": "#/definitions/message" }, "level": { "description": "A value specifying the severity level of the notification.", "default": "warning", "enum": ["none", "note", "warning", "error"] }, "threadId": { "description": "The thread identifier of the code that generated the notification.", "type": "integer" }, "timeUtc": { "description": "The Coordinated Universal Time (UTC) date and time at which the analysis tool generated the notification.", "type": "string", "format": "date-time" }, "exception": { "description": "The runtime exception, if any, relevant to this notification.", "$ref": "#/definitions/exception" }, "descriptor": { "description": "A reference used to locate the descriptor relevant to this notification.", "$ref": "#/definitions/reportingDescriptorReference" }, "associatedRule": { "description": "A reference used to locate the rule descriptor associated with this notification.", "$ref": "#/definitions/reportingDescriptorReference" }, "properties": { "description": "Key/value pairs that provide additional information about the notification.", "$ref": "#/definitions/propertyBag" } }, "required": ["message"] }, "physicalLocation": { "description": "A physical location relevant to a result. Specifies a reference to a programming artifact together with a range of bytes or characters within that artifact.", "additionalProperties": false, "type": "object", "properties": { "address": { "description": "The address of the location.", "$ref": "#/definitions/address" }, "artifactLocation": { "description": "The location of the artifact.", "$ref": "#/definitions/artifactLocation" }, "region": { "description": "Specifies a portion of the artifact.", "$ref": "#/definitions/region" }, "contextRegion": { "description": "Specifies a portion of the artifact that encloses the region. Allows a viewer to display additional context around the region.", "$ref": "#/definitions/region" }, "properties": { "description": "Key/value pairs that provide additional information about the physical location.", "$ref": "#/definitions/propertyBag" } }, "anyOf": [ { "required": ["address"] }, { "required": ["artifactLocation"] } ] }, "propertyBag": { "description": "Key/value pairs that provide additional information about the object.", "type": "object", "additionalProperties": true, "properties": { "tags": { "description": "A set of distinct strings that provide additional information.", "type": "array", "minItems": 0, "uniqueItems": true, "default": [], "items": { "type": "string" } } } }, "rectangle": { "description": "An area within an image.", "additionalProperties": false, "type": "object", "properties": { "top": { "description": "The Y coordinate of the top edge of the rectangle, measured in the image's natural units.", "type": "number" }, "left": { "description": "The X coordinate of the left edge of the rectangle, measured in the image's natural units.", "type": "number" }, "bottom": { "description": "The Y coordinate of the bottom edge of the rectangle, measured in the image's natural units.", "type": "number" }, "right": { "description": "The X coordinate of the right edge of the rectangle, measured in the image's natural units.", "type": "number" }, "message": { "description": "A message relevant to the rectangle.", "$ref": "#/definitions/message" }, "properties": { "description": "Key/value pairs that provide additional information about the rectangle.", "$ref": "#/definitions/propertyBag" } } }, "region": { "description": "A region within an artifact where a result was detected.", "additionalProperties": false, "type": "object", "properties": { "startLine": { "description": "The line number of the first character in the region.", "type": "integer", "minimum": 1 }, "startColumn": { "description": "The column number of the first character in the region.", "type": "integer", "minimum": 1 }, "endLine": { "description": "The line number of the last character in the region.", "type": "integer", "minimum": 1 }, "endColumn": { "description": "The column number of the character following the end of the region.", "type": "integer", "minimum": 1 }, "charOffset": { "description": "The zero-based offset from the beginning of the artifact of the first character in the region.", "type": "integer", "default": -1, "minimum": -1 }, "charLength": { "description": "The length of the region in characters.", "type": "integer", "minimum": 0 }, "byteOffset": { "description": "The zero-based offset from the beginning of the artifact of the first byte in the region.", "type": "integer", "default": -1, "minimum": -1 }, "byteLength": { "description": "The length of the region in bytes.", "type": "integer", "minimum": 0 }, "snippet": { "description": "The portion of the artifact contents within the specified region.", "$ref": "#/definitions/artifactContent" }, "message": { "description": "A message relevant to the region.", "$ref": "#/definitions/message" }, "sourceLanguage": { "description": "Specifies the source language, if any, of the portion of the artifact specified by the region object.", "type": "string" }, "properties": { "description": "Key/value pairs that provide additional information about the region.", "$ref": "#/definitions/propertyBag" } } }, "replacement": { "description": "The replacement of a single region of an artifact.", "additionalProperties": false, "type": "object", "properties": { "deletedRegion": { "description": "The region of the artifact to delete.", "$ref": "#/definitions/region" }, "insertedContent": { "description": "The content to insert at the location specified by the 'deletedRegion' property.", "$ref": "#/definitions/artifactContent" }, "properties": { "description": "Key/value pairs that provide additional information about the replacement.", "$ref": "#/definitions/propertyBag" } }, "required": ["deletedRegion"] }, "reportingDescriptor": { "description": "Metadata that describes a specific report produced by the tool, as part of the analysis it provides or its runtime reporting.", "additionalProperties": false, "type": "object", "properties": { "id": { "description": "A stable, opaque identifier for the report.", "type": "string" }, "deprecatedIds": { "description": "An array of stable, opaque identifiers by which this report was known in some previous version of the analysis tool.", "type": "array", "minItems": 0, "uniqueItems": true, "items": { "type": "string" } }, "guid": { "description": "A unique identifier for the reporting descriptor in the form of a GUID.", "type": "string", "pattern": "^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-5][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}$" }, "deprecatedGuids": { "description": "An array of unique identifies in the form of a GUID by which this report was known in some previous version of the analysis tool.", "type": "array", "minItems": 0, "uniqueItems": true, "items": { "type": "string", "pattern": "^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-5][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}$" } }, "name": { "description": "A report identifier that is understandable to an end user.", "type": "string" }, "deprecatedNames": { "description": "An array of readable identifiers by which this report was known in some previous version of the analysis tool.", "type": "array", "minItems": 0, "uniqueItems": true, "items": { "type": "string" } }, "shortDescription": { "description": "A concise description of the report. Should be a single sentence that is understandable when visible space is limited to a single line of text.", "$ref": "#/definitions/multiformatMessageString" }, "fullDescription": { "description": "A description of the report. Should, as far as possible, provide details sufficient to enable resolution of any problem indicated by the result.", "$ref": "#/definitions/multiformatMessageString" }, "messageStrings": { "description": "A set of name/value pairs with arbitrary names. Each value is a multiformatMessageString object, which holds message strings in plain text and (optionally) Markdown format. The strings can include placeholders, which can be used to construct a message in combination with an arbitrary number of additional string arguments.", "type": "object", "additionalProperties": { "$ref": "#/definitions/multiformatMessageString" } }, "defaultConfiguration": { "description": "Default reporting configuration information.", "$ref": "#/definitions/reportingConfiguration" }, "helpUri": { "description": "A URI where the primary documentation for the report can be found.", "type": "string", "format": "uri" }, "help": { "description": "Provides the primary documentation for the report, useful when there is no online documentation.", "$ref": "#/definitions/multiformatMessageString" }, "relationships": { "description": "An array of objects that describe relationships between this reporting descriptor and others.", "type": "array", "default": [], "minItems": 0, "uniqueItems": true, "items": { "$ref": "#/definitions/reportingDescriptorRelationship" } }, "properties": { "description": "Key/value pairs that provide additional information about the report.", "$ref": "#/definitions/propertyBag" } }, "required": ["id"] }, "reportingConfiguration": { "description": "Information about a rule or notification that can be configured at runtime.", "type": "object", "additionalProperties": false, "properties": { "enabled": { "description": "Specifies whether the report may be produced during the scan.", "type": "boolean", "default": true }, "level": { "description": "Specifies the failure level for the report.", "default": "warning", "enum": ["none", "note", "warning", "error"] }, "rank": { "description": "Specifies the relative priority of the report. Used for analysis output only.", "type": "number", "default": -1, "minimum": -1, "maximum": 100 }, "parameters": { "description": "Contains configuration information specific to a report.", "$ref": "#/definitions/propertyBag" }, "properties": { "description": "Key/value pairs that provide additional information about the reporting configuration.", "$ref": "#/definitions/propertyBag" } } }, "reportingDescriptorReference": { "description": "Information about how to locate a relevant reporting descriptor.", "type": "object", "additionalProperties": false, "properties": { "id": { "description": "The id of the descriptor.", "type": "string" }, "index": { "description": "The index into an array of descriptors in toolComponent.ruleDescriptors, toolComponent.notificationDescriptors, or toolComponent.taxonomyDescriptors, depending on context.", "type": "integer", "default": -1, "minimum": -1 }, "guid": { "description": "A guid that uniquely identifies the descriptor.", "type": "string", "pattern": "^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-5][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}$" }, "toolComponent": { "description": "A reference used to locate the toolComponent associated with the descriptor.", "$ref": "#/definitions/toolComponentReference" }, "properties": { "description": "Key/value pairs that provide additional information about the reporting descriptor reference.", "$ref": "#/definitions/propertyBag" } }, "anyOf": [ { "required": ["index"] }, { "required": ["guid"] }, { "required": ["id"] } ] }, "reportingDescriptorRelationship": { "description": "Information about the relation of one reporting descriptor to another.", "type": "object", "additionalProperties": false, "properties": { "target": { "description": "A reference to the related reporting descriptor.", "$ref": "#/definitions/reportingDescriptorReference" }, "kinds": { "description": "A set of distinct strings that categorize the relationship. Well-known kinds include 'canPrecede', 'canFollow', 'willPrecede', 'willFollow', 'superset', 'subset', 'equal', 'disjoint', 'relevant', and 'incomparable'.", "type": "array", "default": ["relevant"], "uniqueItems": true, "items": { "type": "string" } }, "description": { "description": "A description of the reporting descriptor relationship.", "$ref": "#/definitions/message" }, "properties": { "description": "Key/value pairs that provide additional information about the reporting descriptor reference.", "$ref": "#/definitions/propertyBag" } }, "required": ["target"] }, "result": { "description": "A result produced by an analysis tool.", "additionalProperties": false, "type": "object", "properties": { "ruleId": { "description": "The stable, unique identifier of the rule, if any, to which this result is relevant.", "type": "string" }, "ruleIndex": { "description": "The index within the tool component rules array of the rule object associated with this result.", "type": "integer", "default": -1, "minimum": -1 }, "rule": { "description": "A reference used to locate the rule descriptor relevant to this result.", "$ref": "#/definitions/reportingDescriptorReference" }, "kind": { "description": "A value that categorizes results by evaluation state.", "default": "fail", "enum": [ "notApplicable", "pass", "fail", "review", "open", "informational" ] }, "level": { "description": "A value specifying the severity level of the result.", "default": "warning", "enum": ["none", "note", "warning", "error"] }, "message": { "description": "A message that describes the result. The first sentence of the message only will be displayed when visible space is limited.", "$ref": "#/definitions/message" }, "analysisTarget": { "description": "Identifies the artifact that the analysis tool was instructed to scan. This need not be the same as the artifact where the result actually occurred.", "$ref": "#/definitions/artifactLocation" }, "locations": { "description": "The set of locations where the result was detected. Specify only one location unless the problem indicated by the result can only be corrected by making a change at every specified location.", "type": "array", "minItems": 0, "uniqueItems": false, "default": [], "items": { "$ref": "#/definitions/location" } }, "guid": { "description": "A stable, unique identifier for the result in the form of a GUID.", "type": "string", "pattern": "^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-5][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}$" }, "correlationGuid": { "description": "A stable, unique identifier for the equivalence class of logically identical results to which this result belongs, in the form of a GUID.", "type": "string", "pattern": "^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-5][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}$" }, "occurrenceCount": { "description": "A positive integer specifying the number of times this logically unique result was observed in this run.", "type": "integer", "minimum": 1 }, "partialFingerprints": { "description": "A set of strings that contribute to the stable, unique identity of the result.", "type": "object", "additionalProperties": { "type": "string" } }, "fingerprints": { "description": "A set of strings each of which individually defines a stable, unique identity for the result.", "type": "object", "additionalProperties": { "type": "string" } }, "stacks": { "description": "An array of 'stack' objects relevant to the result.", "type": "array", "minItems": 0, "uniqueItems": true, "default": [], "items": { "$ref": "#/definitions/stack" } }, "codeFlows": { "description": "An array of 'codeFlow' objects relevant to the result.", "type": "array", "minItems": 0, "uniqueItems": false, "default": [], "items": { "$ref": "#/definitions/codeFlow" } }, "graphs": { "description": "An array of zero or more unique graph objects associated with the result.", "type": "array", "minItems": 0, "uniqueItems": true, "default": [], "items": { "$ref": "#/definitions/graph" } }, "graphTraversals": { "description": "An array of one or more unique 'graphTraversal' objects.", "type": "array", "minItems": 0, "uniqueItems": true, "default": [], "items": { "$ref": "#/definitions/graphTraversal" } }, "relatedLocations": { "description": "A set of locations relevant to this result.", "type": "array", "minItems": 0, "uniqueItems": true, "default": [], "items": { "$ref": "#/definitions/location" } }, "suppressions": { "description": "A set of suppressions relevant to this result.", "type": "array", "minItems": 0, "uniqueItems": true, "items": { "$ref": "#/definitions/suppression" } }, "baselineState": { "description": "The state of a result relative to a baseline of a previous run.", "enum": ["new", "unchanged", "updated", "absent"] }, "rank": { "description": "A number representing the priority or importance of the result.", "type": "number", "default": -1, "minimum": -1, "maximum": 100 }, "attachments": { "description": "A set of artifacts relevant to the result.", "type": "array", "minItems": 0, "uniqueItems": true, "default": [], "items": { "$ref": "#/definitions/attachment" } }, "hostedViewerUri": { "description": "An absolute URI at which the result can be viewed.", "type": "string", "format": "uri" }, "workItemUris": { "description": "The URIs of the work items associated with this result.", "type": "array", "minItems": 0, "uniqueItems": true, "items": { "type": "string", "format": "uri" } }, "provenance": { "description": "Information about how and when the result was detected.", "$ref": "#/definitions/resultProvenance" }, "fixes": { "description": "An array of 'fix' objects, each of which represents a proposed fix to the problem indicated by the result.", "type": "array", "minItems": 0, "uniqueItems": true, "default": [], "items": { "$ref": "#/definitions/fix" } }, "taxa": { "description": "An array of references to taxonomy reporting descriptors that are applicable to the result.", "type": "array", "default": [], "minItems": 0, "uniqueItems": true, "items": { "$ref": "#/definitions/reportingDescriptorReference" } }, "webRequest": { "description": "A web request associated with this result.", "$ref": "#/definitions/webRequest" }, "webResponse": { "description": "A web response associated with this result.", "$ref": "#/definitions/webResponse" }, "properties": { "description": "Key/value pairs that provide additional information about the result.", "$ref": "#/definitions/propertyBag" } }, "required": ["message"] }, "resultProvenance": { "description": "Contains information about how and when a result was detected.", "additionalProperties": false, "type": "object", "properties": { "firstDetectionTimeUtc": { "description": "The Coordinated Universal Time (UTC) date and time at which the result was first detected. See \"Date/time properties\" in the SARIF spec for the required format.", "type": "string", "format": "date-time" }, "lastDetectionTimeUtc": { "description": "The Coordinated Universal Time (UTC) date and time at which the result was most recently detected. See \"Date/time properties\" in the SARIF spec for the required format.", "type": "string", "format": "date-time" }, "firstDetectionRunGuid": { "description": "A GUID-valued string equal to the automationDetails.guid property of the run in which the result was first detected.", "type": "string", "pattern": "^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-5][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}$" }, "lastDetectionRunGuid": { "description": "A GUID-valued string equal to the automationDetails.guid property of the run in which the result was most recently detected.", "type": "string", "pattern": "^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-5][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}$" }, "invocationIndex": { "description": "The index within the run.invocations array of the invocation object which describes the tool invocation that detected the result.", "type": "integer", "default": -1, "minimum": -1 }, "conversionSources": { "description": "An array of physicalLocation objects which specify the portions of an analysis tool's output that a converter transformed into the result.", "type": "array", "minItems": 0, "uniqueItems": true, "default": [], "items": { "$ref": "#/definitions/physicalLocation" } }, "properties": { "description": "Key/value pairs that provide additional information about the result.", "$ref": "#/definitions/propertyBag" } } }, "run": { "description": "Describes a single run of an analysis tool, and contains the reported output of that run.", "additionalProperties": false, "type": "object", "properties": { "tool": { "description": "Information about the tool or tool pipeline that generated the results in this run. A run can only contain results produced by a single tool or tool pipeline. A run can aggregate results from multiple log files, as long as context around the tool run (tool command-line arguments and the like) is identical for all aggregated files.", "$ref": "#/definitions/tool" }, "invocations": { "description": "Describes the invocation of the analysis tool.", "type": "array", "minItems": 0, "uniqueItems": false, "default": [], "items": { "$ref": "#/definitions/invocation" } }, "conversion": { "description": "A conversion object that describes how a converter transformed an analysis tool's native reporting format into the SARIF format.", "$ref": "#/definitions/conversion" }, "language": { "description": "The language of the messages emitted into the log file during this run (expressed as an ISO 639-1 two-letter lowercase culture code) and an optional region (expressed as an ISO 3166-1 two-letter uppercase subculture code associated with a country or region). The casing is recommended but not required (in order for this data to conform to RFC5646).", "type": "string", "default": "en-US", "pattern": "^[a-zA-Z]{2}|^[a-zA-Z]{2}-[a-zA-Z]{2}?$" }, "versionControlProvenance": { "description": "Specifies the revision in version control of the artifacts that were scanned.", "type": "array", "minItems": 0, "uniqueItems": true, "default": [], "items": { "$ref": "#/definitions/versionControlDetails" } }, "originalUriBaseIds": { "description": "The artifact location specified by each uriBaseId symbol on the machine where the tool originally ran.", "type": "object", "additionalProperties": { "$ref": "#/definitions/artifactLocation" } }, "artifacts": { "description": "An array of artifact objects relevant to the run.", "type": "array", "minItems": 0, "uniqueItems": true, "items": { "$ref": "#/definitions/artifact" } }, "logicalLocations": { "description": "An array of logical locations such as namespaces, types or functions.", "type": "array", "minItems": 0, "uniqueItems": true, "default": [], "items": { "$ref": "#/definitions/logicalLocation" } }, "graphs": { "description": "An array of zero or more unique graph objects associated with the run.", "type": "array", "minItems": 0, "uniqueItems": true, "default": [], "items": { "$ref": "#/definitions/graph" } }, "results": { "description": "The set of results contained in an SARIF log. The results array can be omitted when a run is solely exporting rules metadata. It must be present (but may be empty) if a log file represents an actual scan.", "type": "array", "minItems": 0, "uniqueItems": false, "items": { "$ref": "#/definitions/result" } }, "automationDetails": { "description": "Automation details that describe this run.", "$ref": "#/definitions/runAutomationDetails" }, "runAggregates": { "description": "Automation details that describe the aggregate of runs to which this run belongs.", "type": "array", "minItems": 0, "uniqueItems": true, "default": [], "items": { "$ref": "#/definitions/runAutomationDetails" } }, "baselineGuid": { "description": "The 'guid' property of a previous SARIF 'run' that comprises the baseline that was used to compute result 'baselineState' properties for the run.", "type": "string", "pattern": "^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-5][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}$" }, "redactionTokens": { "description": "An array of strings used to replace sensitive information in a redaction-aware property.", "type": "array", "minItems": 0, "uniqueItems": true, "default": [], "items": { "type": "string" } }, "defaultEncoding": { "description": "Specifies the default encoding for any artifact object that refers to a text file.", "type": "string" }, "defaultSourceLanguage": { "description": "Specifies the default source language for any artifact object that refers to a text file that contains source code.", "type": "string" }, "newlineSequences": { "description": "An ordered list of character sequences that were treated as line breaks when computing region information for the run.", "type": "array", "minItems": 1, "uniqueItems": true, "default": ["\r\n", "\n"], "items": { "type": "string" } }, "columnKind": { "description": "Specifies the unit in which the tool measures columns.", "enum": ["utf16CodeUnits", "unicodeCodePoints"] }, "externalPropertyFileReferences": { "description": "References to external property files that should be inlined with the content of a root log file.", "$ref": "#/definitions/externalPropertyFileReferences" }, "threadFlowLocations": { "description": "An array of threadFlowLocation objects cached at run level.", "type": "array", "minItems": 0, "uniqueItems": true, "default": [], "items": { "$ref": "#/definitions/threadFlowLocation" } }, "taxonomies": { "description": "An array of toolComponent objects relevant to a taxonomy in which results are categorized.", "type": "array", "minItems": 0, "uniqueItems": true, "default": [], "items": { "$ref": "#/definitions/toolComponent" } }, "addresses": { "description": "Addresses associated with this run instance, if any.", "type": "array", "minItems": 0, "uniqueItems": false, "default": [], "items": { "$ref": "#/definitions/address" } }, "translations": { "description": "The set of available translations of the localized data provided by the tool.", "type": "array", "minItems": 0, "uniqueItems": true, "default": [], "items": { "$ref": "#/definitions/toolComponent" } }, "policies": { "description": "Contains configurations that may potentially override both reportingDescriptor.defaultConfiguration (the tool's default severities) and invocation.configurationOverrides (severities established at run-time from the command line).", "type": "array", "minItems": 0, "uniqueItems": true, "default": [], "items": { "$ref": "#/definitions/toolComponent" } }, "webRequests": { "description": "An array of request objects cached at run level.", "type": "array", "minItems": 0, "uniqueItems": true, "default": [], "items": { "$ref": "#/definitions/webRequest" } }, "webResponses": { "description": "An array of response objects cached at run level.", "type": "array", "minItems": 0, "uniqueItems": true, "default": [], "items": { "$ref": "#/definitions/webResponse" } }, "specialLocations": { "description": "A specialLocations object that defines locations of special significance to SARIF consumers.", "$ref": "#/definitions/specialLocations" }, "properties": { "description": "Key/value pairs that provide additional information about the run.", "$ref": "#/definitions/propertyBag" } }, "required": ["tool"] }, "runAutomationDetails": { "description": "Information that describes a run's identity and role within an engineering system process.", "additionalProperties": false, "type": "object", "properties": { "description": { "description": "A description of the identity and role played within the engineering system by this object's containing run object.", "$ref": "#/definitions/message" }, "id": { "description": "A hierarchical string that uniquely identifies this object's containing run object.", "type": "string" }, "guid": { "description": "A stable, unique identifier for this object's containing run object in the form of a GUID.", "type": "string", "pattern": "^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-5][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}$" }, "correlationGuid": { "description": "A stable, unique identifier for the equivalence class of runs to which this object's containing run object belongs in the form of a GUID.", "type": "string", "pattern": "^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-5][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}$" }, "properties": { "description": "Key/value pairs that provide additional information about the run automation details.", "$ref": "#/definitions/propertyBag" } } }, "specialLocations": { "description": "Defines locations of special significance to SARIF consumers.", "type": "object", "additionalProperties": false, "properties": { "displayBase": { "description": "Provides a suggestion to SARIF consumers to display file paths relative to the specified location.", "$ref": "#/definitions/artifactLocation" }, "properties": { "description": "Key/value pairs that provide additional information about the special locations.", "$ref": "#/definitions/propertyBag" } } }, "stack": { "description": "A call stack that is relevant to a result.", "additionalProperties": false, "type": "object", "properties": { "message": { "description": "A message relevant to this call stack.", "$ref": "#/definitions/message" }, "frames": { "description": "An array of stack frames that represents a sequence of calls, rendered in reverse chronological order, that comprise the call stack.", "type": "array", "minItems": 0, "uniqueItems": false, "items": { "$ref": "#/definitions/stackFrame" } }, "properties": { "description": "Key/value pairs that provide additional information about the stack.", "$ref": "#/definitions/propertyBag" } }, "required": ["frames"] }, "stackFrame": { "description": "A function call within a stack trace.", "additionalProperties": false, "type": "object", "properties": { "location": { "description": "The location to which this stack frame refers.", "$ref": "#/definitions/location" }, "module": { "description": "The name of the module that contains the code of this stack frame.", "type": "string" }, "threadId": { "description": "The thread identifier of the stack frame.", "type": "integer" }, "parameters": { "description": "The parameters of the call that is executing.", "type": "array", "minItems": 0, "uniqueItems": false, "default": [], "items": { "type": "string", "default": [] } }, "properties": { "description": "Key/value pairs that provide additional information about the stack frame.", "$ref": "#/definitions/propertyBag" } } }, "suppression": { "description": "A suppression that is relevant to a result.", "additionalProperties": false, "type": "object", "properties": { "guid": { "description": "A stable, unique identifier for the suppression in the form of a GUID.", "type": "string", "pattern": "^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-5][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}$" }, "kind": { "description": "A string that indicates where the suppression is persisted.", "enum": ["inSource", "external"] }, "status": { "description": "A string that indicates the review status of the suppression.", "enum": ["accepted", "underReview", "rejected"] }, "justification": { "description": "A string representing the justification for the suppression.", "type": "string" }, "location": { "description": "Identifies the location associated with the suppression.", "$ref": "#/definitions/location" }, "properties": { "description": "Key/value pairs that provide additional information about the suppression.", "$ref": "#/definitions/propertyBag" } }, "required": ["kind"] }, "threadFlow": { "description": "Describes a sequence of code locations that specify a path through a single thread of execution such as an operating system or fiber.", "type": "object", "additionalProperties": false, "properties": { "id": { "description": "An string that uniquely identifies the threadFlow within the codeFlow in which it occurs.", "type": "string" }, "message": { "description": "A message relevant to the thread flow.", "$ref": "#/definitions/message" }, "initialState": { "description": "Values of relevant expressions at the start of the thread flow that may change during thread flow execution.", "type": "object", "additionalProperties": { "$ref": "#/definitions/multiformatMessageString" } }, "immutableState": { "description": "Values of relevant expressions at the start of the thread flow that remain constant.", "type": "object", "additionalProperties": { "$ref": "#/definitions/multiformatMessageString" } }, "locations": { "description": "A temporally ordered array of 'threadFlowLocation' objects, each of which describes a location visited by the tool while producing the result.", "type": "array", "minItems": 1, "uniqueItems": false, "items": { "$ref": "#/definitions/threadFlowLocation" } }, "properties": { "description": "Key/value pairs that provide additional information about the thread flow.", "$ref": "#/definitions/propertyBag" } }, "required": ["locations"] }, "threadFlowLocation": { "description": "A location visited by an analysis tool while simulating or monitoring the execution of a program.", "additionalProperties": false, "type": "object", "properties": { "index": { "description": "The index within the run threadFlowLocations array.", "type": "integer", "default": -1, "minimum": -1 }, "location": { "description": "The code location.", "$ref": "#/definitions/location" }, "stack": { "description": "The call stack leading to this location.", "$ref": "#/definitions/stack" }, "kinds": { "description": "A set of distinct strings that categorize the thread flow location. Well-known kinds include 'acquire', 'release', 'enter', 'exit', 'call', 'return', 'branch', 'implicit', 'false', 'true', 'caution', 'danger', 'unknown', 'unreachable', 'taint', 'function', 'handler', 'lock', 'memory', 'resource', 'scope' and 'value'.", "type": "array", "minItems": 0, "uniqueItems": true, "default": [], "items": { "type": "string" } }, "taxa": { "description": "An array of references to rule or taxonomy reporting descriptors that are applicable to the thread flow location.", "type": "array", "default": [], "minItems": 0, "uniqueItems": true, "items": { "$ref": "#/definitions/reportingDescriptorReference" } }, "module": { "description": "The name of the module that contains the code that is executing.", "type": "string" }, "state": { "description": "A dictionary, each of whose keys specifies a variable or expression, the associated value of which represents the variable or expression value. For an annotation of kind 'continuation', for example, this dictionary might hold the current assumed values of a set of global variables.", "type": "object", "additionalProperties": { "$ref": "#/definitions/multiformatMessageString" } }, "nestingLevel": { "description": "An integer representing a containment hierarchy within the thread flow.", "type": "integer", "minimum": 0 }, "executionOrder": { "description": "An integer representing the temporal order in which execution reached this location.", "type": "integer", "default": -1, "minimum": -1 }, "executionTimeUtc": { "description": "The Coordinated Universal Time (UTC) date and time at which this location was executed.", "type": "string", "format": "date-time" }, "importance": { "description": "Specifies the importance of this location in understanding the code flow in which it occurs. The order from most to least important is \"essential\", \"important\", \"unimportant\". Default: \"important\".", "enum": ["important", "essential", "unimportant"], "default": "important" }, "webRequest": { "description": "A web request associated with this thread flow location.", "$ref": "#/definitions/webRequest" }, "webResponse": { "description": "A web response associated with this thread flow location.", "$ref": "#/definitions/webResponse" }, "properties": { "description": "Key/value pairs that provide additional information about the threadflow location.", "$ref": "#/definitions/propertyBag" } } }, "tool": { "description": "The analysis tool that was run.", "additionalProperties": false, "type": "object", "properties": { "driver": { "description": "The analysis tool that was run.", "$ref": "#/definitions/toolComponent" }, "extensions": { "description": "Tool extensions that contributed to or reconfigured the analysis tool that was run.", "type": "array", "minItems": 0, "uniqueItems": true, "default": [], "items": { "$ref": "#/definitions/toolComponent" } }, "properties": { "description": "Key/value pairs that provide additional information about the tool.", "$ref": "#/definitions/propertyBag" } }, "required": ["driver"] }, "toolComponent": { "description": "A component, such as a plug-in or the driver, of the analysis tool that was run.", "additionalProperties": false, "type": "object", "properties": { "guid": { "description": "A unique identifier for the tool component in the form of a GUID.", "type": "string", "pattern": "^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-5][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}$" }, "name": { "description": "The name of the tool component.", "type": "string" }, "organization": { "description": "The organization or company that produced the tool component.", "type": "string" }, "product": { "description": "A product suite to which the tool component belongs.", "type": "string" }, "productSuite": { "description": "A localizable string containing the name of the suite of products to which the tool component belongs.", "type": "string" }, "shortDescription": { "description": "A brief description of the tool component.", "$ref": "#/definitions/multiformatMessageString" }, "fullDescription": { "description": "A comprehensive description of the tool component.", "$ref": "#/definitions/multiformatMessageString" }, "fullName": { "description": "The name of the tool component along with its version and any other useful identifying information, such as its locale.", "type": "string" }, "version": { "description": "The tool component version, in whatever format the component natively provides.", "type": "string" }, "semanticVersion": { "description": "The tool component version in the format specified by Semantic Versioning 2.0.", "type": "string" }, "dottedQuadFileVersion": { "description": "The binary version of the tool component's primary executable file expressed as four non-negative integers separated by a period (for operating systems that express file versions in this way).", "type": "string", "pattern": "[0-9]+(\\.[0-9]+){3}" }, "releaseDateUtc": { "description": "A string specifying the UTC date (and optionally, the time) of the component's release.", "type": "string" }, "downloadUri": { "description": "The absolute URI from which the tool component can be downloaded.", "type": "string", "format": "uri" }, "informationUri": { "description": "The absolute URI at which information about this version of the tool component can be found.", "type": "string", "format": "uri" }, "globalMessageStrings": { "description": "A dictionary, each of whose keys is a resource identifier and each of whose values is a multiformatMessageString object, which holds message strings in plain text and (optionally) Markdown format. The strings can include placeholders, which can be used to construct a message in combination with an arbitrary number of additional string arguments.", "type": "object", "additionalProperties": { "$ref": "#/definitions/multiformatMessageString" } }, "notifications": { "description": "An array of reportingDescriptor objects relevant to the notifications related to the configuration and runtime execution of the tool component.", "type": "array", "minItems": 0, "uniqueItems": true, "default": [], "items": { "$ref": "#/definitions/reportingDescriptor" } }, "rules": { "description": "An array of reportingDescriptor objects relevant to the analysis performed by the tool component.", "type": "array", "minItems": 0, "uniqueItems": true, "default": [], "items": { "$ref": "#/definitions/reportingDescriptor" } }, "taxa": { "description": "An array of reportingDescriptor objects relevant to the definitions of both standalone and tool-defined taxonomies.", "type": "array", "minItems": 0, "uniqueItems": true, "default": [], "items": { "$ref": "#/definitions/reportingDescriptor" } }, "locations": { "description": "An array of the artifactLocation objects associated with the tool component.", "type": "array", "minItems": 0, "default": [], "items": { "$ref": "#/definitions/artifactLocation" } }, "language": { "description": "The language of the messages emitted into the log file during this run (expressed as an ISO 639-1 two-letter lowercase language code) and an optional region (expressed as an ISO 3166-1 two-letter uppercase subculture code associated with a country or region). The casing is recommended but not required (in order for this data to conform to RFC5646).", "type": "string", "default": "en-US", "pattern": "^[a-zA-Z]{2}|^[a-zA-Z]{2}-[a-zA-Z]{2}?$" }, "contents": { "description": "The kinds of data contained in this object.", "type": "array", "uniqueItems": true, "default": ["localizedData", "nonLocalizedData"], "items": { "enum": ["localizedData", "nonLocalizedData"] } }, "isComprehensive": { "description": "Specifies whether this object contains a complete definition of the localizable and/or non-localizable data for this component, as opposed to including only data that is relevant to the results persisted to this log file.", "type": "boolean", "default": false }, "localizedDataSemanticVersion": { "description": "The semantic version of the localized strings defined in this component; maintained by components that provide translations.", "type": "string" }, "minimumRequiredLocalizedDataSemanticVersion": { "description": "The minimum value of localizedDataSemanticVersion required in translations consumed by this component; used by components that consume translations.", "type": "string" }, "associatedComponent": { "description": "The component which is strongly associated with this component. For a translation, this refers to the component which has been translated. For an extension, this is the driver that provides the extension's plugin model.", "$ref": "#/definitions/toolComponentReference" }, "translationMetadata": { "description": "Translation metadata, required for a translation, not populated by other component types.", "$ref": "#/definitions/translationMetadata" }, "supportedTaxonomies": { "description": "An array of toolComponentReference objects to declare the taxonomies supported by the tool component.", "type": "array", "minItems": 0, "uniqueItems": true, "default": [], "items": { "$ref": "#/definitions/toolComponentReference" } }, "properties": { "description": "Key/value pairs that provide additional information about the tool component.", "$ref": "#/definitions/propertyBag" } }, "required": ["name"] }, "toolComponentReference": { "description": "Identifies a particular toolComponent object, either the driver or an extension.", "type": "object", "additionalProperties": false, "properties": { "name": { "description": "The 'name' property of the referenced toolComponent.", "type": "string" }, "index": { "description": "An index into the referenced toolComponent in tool.extensions.", "type": "integer", "default": -1, "minimum": -1 }, "guid": { "description": "The 'guid' property of the referenced toolComponent.", "type": "string", "pattern": "^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-5][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}$" }, "properties": { "description": "Key/value pairs that provide additional information about the toolComponentReference.", "$ref": "#/definitions/propertyBag" } } }, "translationMetadata": { "description": "Provides additional metadata related to translation.", "type": "object", "additionalProperties": false, "properties": { "name": { "description": "The name associated with the translation metadata.", "type": "string" }, "fullName": { "description": "The full name associated with the translation metadata.", "type": "string" }, "shortDescription": { "description": "A brief description of the translation metadata.", "$ref": "#/definitions/multiformatMessageString" }, "fullDescription": { "description": "A comprehensive description of the translation metadata.", "$ref": "#/definitions/multiformatMessageString" }, "downloadUri": { "description": "The absolute URI from which the translation metadata can be downloaded.", "type": "string", "format": "uri" }, "informationUri": { "description": "The absolute URI from which information related to the translation metadata can be downloaded.", "type": "string", "format": "uri" }, "properties": { "description": "Key/value pairs that provide additional information about the translation metadata.", "$ref": "#/definitions/propertyBag" } }, "required": ["name"] }, "versionControlDetails": { "description": "Specifies the information necessary to retrieve a desired revision from a version control system.", "type": "object", "additionalProperties": false, "properties": { "repositoryUri": { "description": "The absolute URI of the repository.", "type": "string", "format": "uri" }, "revisionId": { "description": "A string that uniquely and permanently identifies the revision within the repository.", "type": "string" }, "branch": { "description": "The name of a branch containing the revision.", "type": "string" }, "revisionTag": { "description": "A tag that has been applied to the revision.", "type": "string" }, "asOfTimeUtc": { "description": "A Coordinated Universal Time (UTC) date and time that can be used to synchronize an enlistment to the state of the repository at that time.", "type": "string", "format": "date-time" }, "mappedTo": { "description": "The location in the local file system to which the root of the repository was mapped at the time of the analysis.", "$ref": "#/definitions/artifactLocation" }, "properties": { "description": "Key/value pairs that provide additional information about the version control details.", "$ref": "#/definitions/propertyBag" } }, "required": ["repositoryUri"] }, "webRequest": { "description": "Describes an HTTP request.", "type": "object", "additionalProperties": false, "properties": { "index": { "description": "The index within the run.webRequests array of the request object associated with this result.", "type": "integer", "default": -1, "minimum": -1 }, "protocol": { "description": "The request protocol. Example: 'http'.", "type": "string" }, "version": { "description": "The request version. Example: '1.1'.", "type": "string" }, "target": { "description": "The target of the request.", "type": "string" }, "method": { "description": "The HTTP method. Well-known values are 'GET', 'PUT', 'POST', 'DELETE', 'PATCH', 'HEAD', 'OPTIONS', 'TRACE', 'CONNECT'.", "type": "string" }, "headers": { "description": "The request headers.", "type": "object", "additionalProperties": { "type": "string" } }, "parameters": { "description": "The request parameters.", "type": "object", "additionalProperties": { "type": "string" } }, "body": { "description": "The body of the request.", "$ref": "#/definitions/artifactContent" }, "properties": { "description": "Key/value pairs that provide additional information about the request.", "$ref": "#/definitions/propertyBag" } } }, "webResponse": { "description": "Describes the response to an HTTP request.", "type": "object", "additionalProperties": false, "properties": { "index": { "description": "The index within the run.webResponses array of the response object associated with this result.", "type": "integer", "default": -1, "minimum": -1 }, "protocol": { "description": "The response protocol. Example: 'http'.", "type": "string" }, "version": { "description": "The response version. Example: '1.1'.", "type": "string" }, "statusCode": { "description": "The response status code. Example: 451.", "type": "integer" }, "reasonPhrase": { "description": "The response reason. Example: 'Not found'.", "type": "string" }, "headers": { "description": "The response headers.", "type": "object", "additionalProperties": { "type": "string" } }, "body": { "description": "The body of the response.", "$ref": "#/definitions/artifactContent" }, "noResponseReceived": { "description": "Specifies whether a response was received from the server.", "type": "boolean", "default": false }, "properties": { "description": "Key/value pairs that provide additional information about the response.", "$ref": "#/definitions/propertyBag" } } } }, "description": "Static Analysis Results Format (SARIF) Version 2.1.0-rtm.5 JSON Schema: a standard format for the output of static analysis tools.", "properties": { "$schema": { "description": "The URI of the JSON schema corresponding to the version.", "type": "string", "format": "uri" }, "version": { "description": "The SARIF format version of this log file.", "enum": ["2.1.0"] }, "runs": { "description": "The set of runs contained in this log file.", "type": "array", "minItems": 0, "uniqueItems": false, "items": { "$ref": "#/definitions/run" } }, "inlineExternalProperties": { "description": "References to external property files that share data between runs.", "type": "array", "minItems": 0, "uniqueItems": true, "items": { "$ref": "#/definitions/externalProperties" } }, "properties": { "description": "Key/value pairs that provide additional information about the log file.", "$ref": "#/definitions/propertyBag" } }, "required": ["version", "runs"], "title": "Static Analysis Results Format (SARIF) Version 2.1.0-rtm.5 JSON Schema", "type": "object" }
label-commenter-config.json
{ "$comment": "https://github.com/peaceiris/actions-label-commenter", "$schema": "http://json-schema.org/draft-04/schema#", "definitions": { "labelItem": { "type": "object", "properties": { "body": { "title": "Body", "type": "string" }, "action": { "title": "Action", "type": "string" }, "locking": { "title": "Locking", "enum": ["lock", "unlock"] }, "lock_reason": { "title": "Lock Reason", "type": "string" } } }, "labelFor": { "type": "object", "properties": { "issue": { "title": "Issue", "$ref": "#/definitions/labelItem" }, "pr": { "title": "Pull Request", "$ref": "#/definitions/labelItem" } } }, "labelType": { "type": "object", "properties": { "labeled": { "title": "Labeled", "$ref": "#/definitions/labelFor" }, "unlabeled": { "title": "Unlabeled", "$ref": "#/definitions/labelFor" } } } }, "description": "Configuration for Actions Label Commenter, for posting messages triggered by labels.", "id": "https://json.schemastore.org/label-commenter-config.json", "properties": { "comment": { "title": "Comment", "type": "object", "properties": { "header": { "title": "Header", "type": "string" }, "footer": { "title": "Footer", "type": "string" } } }, "labels": { "title": "Labels", "type": "array", "items": { "title": "Label", "$ref": "#/definitions/labelType", "properties": { "name": { "title": "Name", "type": "string" } } } } }, "type": "object" }
swagger-2.0.json
{ "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "definitions": { "info": { "type": "object", "description": "General information about the API.", "required": ["version", "title"], "additionalProperties": false, "patternProperties": { "^x-": { "$ref": "#/definitions/vendorExtension" } }, "properties": { "title": { "type": "string", "description": "A unique and precise title of the API." }, "version": { "type": "string", "description": "A semantic version number of the API." }, "description": { "type": "string", "description": "A longer description of the API. Should be different from the title. GitHub Flavored Markdown is allowed." }, "termsOfService": { "type": "string", "description": "The terms of service for the API." }, "contact": { "$ref": "#/definitions/contact" }, "license": { "$ref": "#/definitions/license" } } }, "contact": { "type": "object", "description": "Contact information for the owners of the API.", "additionalProperties": false, "properties": { "name": { "type": "string", "description": "The identifying name of the contact person/organization." }, "url": { "type": "string", "description": "The URL pointing to the contact information.", "format": "uri" }, "email": { "type": "string", "description": "The email address of the contact person/organization.", "format": "email" } }, "patternProperties": { "^x-": { "$ref": "#/definitions/vendorExtension" } } }, "license": { "type": "object", "required": ["name"], "additionalProperties": false, "properties": { "name": { "type": "string", "description": "The name of the license type. It's encouraged to use an OSI compatible license." }, "url": { "type": "string", "description": "The URL pointing to the license.", "format": "uri" } }, "patternProperties": { "^x-": { "$ref": "#/definitions/vendorExtension" } } }, "paths": { "type": "object", "description": "Relative paths to the individual endpoints. They must be relative to the 'basePath'.", "patternProperties": { "^x-": { "$ref": "#/definitions/vendorExtension" }, "^/": { "$ref": "#/definitions/pathItem" } }, "additionalProperties": false }, "definitions": { "type": "object", "additionalProperties": { "$ref": "#/definitions/schema" }, "description": "One or more JSON objects describing the schemas being consumed and produced by the API." }, "parameterDefinitions": { "type": "object", "additionalProperties": { "$ref": "#/definitions/parameter" }, "description": "One or more JSON representations for parameters" }, "responseDefinitions": { "type": "object", "additionalProperties": { "$ref": "#/definitions/response" }, "description": "One or more JSON representations for responses" }, "externalDocs": { "type": "object", "additionalProperties": false, "description": "information about external documentation", "required": ["url"], "properties": { "description": { "type": "string" }, "url": { "type": "string", "format": "uri" } }, "patternProperties": { "^x-": { "$ref": "#/definitions/vendorExtension" } } }, "examples": { "type": "object", "additionalProperties": true }, "mimeType": { "type": "string", "description": "The MIME type of the HTTP message." }, "operation": { "type": "object", "required": ["responses"], "additionalProperties": false, "patternProperties": { "^x-": { "$ref": "#/definitions/vendorExtension" } }, "properties": { "tags": { "type": "array", "items": { "type": "string" }, "uniqueItems": true }, "summary": { "type": "string", "description": "A brief summary of the operation." }, "description": { "type": "string", "description": "A longer description of the operation, GitHub Flavored Markdown is allowed." }, "externalDocs": { "$ref": "#/definitions/externalDocs" }, "operationId": { "type": "string", "description": "A unique identifier of the operation." }, "produces": { "description": "A list of MIME types the API can produce.", "allOf": [ { "$ref": "#/definitions/mediaTypeList" } ] }, "consumes": { "description": "A list of MIME types the API can consume.", "allOf": [ { "$ref": "#/definitions/mediaTypeList" } ] }, "parameters": { "$ref": "#/definitions/parametersList" }, "responses": { "$ref": "#/definitions/responses" }, "schemes": { "$ref": "#/definitions/schemesList" }, "deprecated": { "type": "boolean", "default": false }, "security": { "$ref": "#/definitions/security" } } }, "pathItem": { "type": "object", "additionalProperties": false, "patternProperties": { "^x-": { "$ref": "#/definitions/vendorExtension" } }, "properties": { "$ref": { "type": "string" }, "get": { "$ref": "#/definitions/operation" }, "put": { "$ref": "#/definitions/operation" }, "post": { "$ref": "#/definitions/operation" }, "delete": { "$ref": "#/definitions/operation" }, "options": { "$ref": "#/definitions/operation" }, "head": { "$ref": "#/definitions/operation" }, "patch": { "$ref": "#/definitions/operation" }, "parameters": { "$ref": "#/definitions/parametersList" } } }, "responses": { "type": "object", "description": "Response objects names can either be any valid HTTP status code or 'default'.", "minProperties": 1, "additionalProperties": false, "patternProperties": { "^([0-9]{3})$|^(default)$": { "$ref": "#/definitions/responseValue" }, "^x-": { "$ref": "#/definitions/vendorExtension" } }, "not": { "type": "object", "additionalProperties": false, "patternProperties": { "^x-": { "$ref": "#/definitions/vendorExtension" } } } }, "responseValue": { "oneOf": [ { "$ref": "#/definitions/response" }, { "$ref": "#/definitions/jsonReference" } ] }, "response": { "type": "object", "required": ["description"], "properties": { "description": { "type": "string" }, "schema": { "oneOf": [ { "$ref": "#/definitions/schema" }, { "$ref": "#/definitions/fileSchema" } ] }, "headers": { "$ref": "#/definitions/headers" }, "examples": { "$ref": "#/definitions/examples" } }, "additionalProperties": false, "patternProperties": { "^x-": { "$ref": "#/definitions/vendorExtension" } } }, "headers": { "type": "object", "additionalProperties": { "$ref": "#/definitions/header" } }, "header": { "type": "object", "additionalProperties": false, "required": ["type"], "properties": { "type": { "type": "string", "enum": ["string", "number", "integer", "boolean", "array"] }, "format": { "type": "string" }, "items": { "$ref": "#/definitions/primitivesItems" }, "collectionFormat": { "$ref": "#/definitions/collectionFormat" }, "default": { "$ref": "#/definitions/default" }, "maximum": { "$ref": "#/definitions/maximum" }, "exclusiveMaximum": { "$ref": "#/definitions/exclusiveMaximum" }, "minimum": { "$ref": "#/definitions/minimum" }, "exclusiveMinimum": { "$ref": "#/definitions/exclusiveMinimum" }, "maxLength": { "$ref": "#/definitions/maxLength" }, "minLength": { "$ref": "#/definitions/minLength" }, "pattern": { "$ref": "#/definitions/pattern" }, "maxItems": { "$ref": "#/definitions/maxItems" }, "minItems": { "$ref": "#/definitions/minItems" }, "uniqueItems": { "$ref": "#/definitions/uniqueItems" }, "enum": { "$ref": "#/definitions/enum" }, "multipleOf": { "$ref": "#/definitions/multipleOf" }, "description": { "type": "string" } }, "patternProperties": { "^x-": { "$ref": "#/definitions/vendorExtension" } } }, "vendorExtension": { "description": "Any property starting with x- is valid." }, "bodyParameter": { "type": "object", "required": ["name", "in", "schema"], "patternProperties": { "^x-": { "$ref": "#/definitions/vendorExtension" } }, "properties": { "description": { "type": "string", "description": "A brief description of the parameter. This could contain examples of use. GitHub Flavored Markdown is allowed." }, "name": { "type": "string", "description": "The name of the parameter." }, "in": { "type": "string", "description": "Determines the location of the parameter.", "enum": ["body"] }, "required": { "type": "boolean", "description": "Determines whether or not this parameter is required or optional.", "default": false }, "schema": { "$ref": "#/definitions/schema" } }, "additionalProperties": false }, "headerParameterSubSchema": { "additionalProperties": false, "patternProperties": { "^x-": { "$ref": "#/definitions/vendorExtension" } }, "properties": { "required": { "type": "boolean", "description": "Determines whether or not this parameter is required or optional.", "default": false }, "in": { "type": "string", "description": "Determines the location of the parameter.", "enum": ["header"] }, "description": { "type": "string", "description": "A brief description of the parameter. This could contain examples of use. GitHub Flavored Markdown is allowed." }, "name": { "type": "string", "description": "The name of the parameter." }, "type": { "type": "string", "enum": ["string", "number", "boolean", "integer", "array"] }, "format": { "type": "string" }, "items": { "$ref": "#/definitions/primitivesItems" }, "collectionFormat": { "$ref": "#/definitions/collectionFormat" }, "default": { "$ref": "#/definitions/default" }, "maximum": { "$ref": "#/definitions/maximum" }, "exclusiveMaximum": { "$ref": "#/definitions/exclusiveMaximum" }, "minimum": { "$ref": "#/definitions/minimum" }, "exclusiveMinimum": { "$ref": "#/definitions/exclusiveMinimum" }, "maxLength": { "$ref": "#/definitions/maxLength" }, "minLength": { "$ref": "#/definitions/minLength" }, "pattern": { "$ref": "#/definitions/pattern" }, "maxItems": { "$ref": "#/definitions/maxItems" }, "minItems": { "$ref": "#/definitions/minItems" }, "uniqueItems": { "$ref": "#/definitions/uniqueItems" }, "enum": { "$ref": "#/definitions/enum" }, "multipleOf": { "$ref": "#/definitions/multipleOf" } } }, "queryParameterSubSchema": { "additionalProperties": false, "patternProperties": { "^x-": { "$ref": "#/definitions/vendorExtension" } }, "properties": { "required": { "type": "boolean", "description": "Determines whether or not this parameter is required or optional.", "default": false }, "in": { "type": "string", "description": "Determines the location of the parameter.", "enum": ["query"] }, "description": { "type": "string", "description": "A brief description of the parameter. This could contain examples of use. GitHub Flavored Markdown is allowed." }, "name": { "type": "string", "description": "The name of the parameter." }, "allowEmptyValue": { "type": "boolean", "default": false, "description": "allows sending a parameter by name only or with an empty value." }, "type": { "type": "string", "enum": ["string", "number", "boolean", "integer", "array"] }, "format": { "type": "string" }, "items": { "$ref": "#/definitions/primitivesItems" }, "collectionFormat": { "$ref": "#/definitions/collectionFormatWithMulti" }, "default": { "$ref": "#/definitions/default" }, "maximum": { "$ref": "#/definitions/maximum" }, "exclusiveMaximum": { "$ref": "#/definitions/exclusiveMaximum" }, "minimum": { "$ref": "#/definitions/minimum" }, "exclusiveMinimum": { "$ref": "#/definitions/exclusiveMinimum" }, "maxLength": { "$ref": "#/definitions/maxLength" }, "minLength": { "$ref": "#/definitions/minLength" }, "pattern": { "$ref": "#/definitions/pattern" }, "maxItems": { "$ref": "#/definitions/maxItems" }, "minItems": { "$ref": "#/definitions/minItems" }, "uniqueItems": { "$ref": "#/definitions/uniqueItems" }, "enum": { "$ref": "#/definitions/enum" }, "multipleOf": { "$ref": "#/definitions/multipleOf" } } }, "formDataParameterSubSchema": { "additionalProperties": false, "patternProperties": { "^x-": { "$ref": "#/definitions/vendorExtension" } }, "properties": { "required": { "type": "boolean", "description": "Determines whether or not this parameter is required or optional.", "default": false }, "in": { "type": "string", "description": "Determines the location of the parameter.", "enum": ["formData"] }, "description": { "type": "string", "description": "A brief description of the parameter. This could contain examples of use. GitHub Flavored Markdown is allowed." }, "name": { "type": "string", "description": "The name of the parameter." }, "allowEmptyValue": { "type": "boolean", "default": false, "description": "allows sending a parameter by name only or with an empty value." }, "type": { "type": "string", "enum": ["string", "number", "boolean", "integer", "array", "file"] }, "format": { "type": "string" }, "items": { "$ref": "#/definitions/primitivesItems" }, "collectionFormat": { "$ref": "#/definitions/collectionFormatWithMulti" }, "default": { "$ref": "#/definitions/default" }, "maximum": { "$ref": "#/definitions/maximum" }, "exclusiveMaximum": { "$ref": "#/definitions/exclusiveMaximum" }, "minimum": { "$ref": "#/definitions/minimum" }, "exclusiveMinimum": { "$ref": "#/definitions/exclusiveMinimum" }, "maxLength": { "$ref": "#/definitions/maxLength" }, "minLength": { "$ref": "#/definitions/minLength" }, "pattern": { "$ref": "#/definitions/pattern" }, "maxItems": { "$ref": "#/definitions/maxItems" }, "minItems": { "$ref": "#/definitions/minItems" }, "uniqueItems": { "$ref": "#/definitions/uniqueItems" }, "enum": { "$ref": "#/definitions/enum" }, "multipleOf": { "$ref": "#/definitions/multipleOf" } } }, "pathParameterSubSchema": { "additionalProperties": false, "patternProperties": { "^x-": { "$ref": "#/definitions/vendorExtension" } }, "required": ["required"], "properties": { "required": { "type": "boolean", "enum": [true], "description": "Determines whether or not this parameter is required or optional." }, "in": { "type": "string", "description": "Determines the location of the parameter.", "enum": ["path"] }, "description": { "type": "string", "description": "A brief description of the parameter. This could contain examples of use. GitHub Flavored Markdown is allowed." }, "name": { "type": "string", "description": "The name of the parameter." }, "type": { "type": "string", "enum": ["string", "number", "boolean", "integer", "array"] }, "format": { "type": "string" }, "items": { "$ref": "#/definitions/primitivesItems" }, "collectionFormat": { "$ref": "#/definitions/collectionFormat" }, "default": { "$ref": "#/definitions/default" }, "maximum": { "$ref": "#/definitions/maximum" }, "exclusiveMaximum": { "$ref": "#/definitions/exclusiveMaximum" }, "minimum": { "$ref": "#/definitions/minimum" }, "exclusiveMinimum": { "$ref": "#/definitions/exclusiveMinimum" }, "maxLength": { "$ref": "#/definitions/maxLength" }, "minLength": { "$ref": "#/definitions/minLength" }, "pattern": { "$ref": "#/definitions/pattern" }, "maxItems": { "$ref": "#/definitions/maxItems" }, "minItems": { "$ref": "#/definitions/minItems" }, "uniqueItems": { "$ref": "#/definitions/uniqueItems" }, "enum": { "$ref": "#/definitions/enum" }, "multipleOf": { "$ref": "#/definitions/multipleOf" } } }, "nonBodyParameter": { "type": "object", "required": ["name", "in", "type"], "oneOf": [ { "$ref": "#/definitions/headerParameterSubSchema" }, { "$ref": "#/definitions/formDataParameterSubSchema" }, { "$ref": "#/definitions/queryParameterSubSchema" }, { "$ref": "#/definitions/pathParameterSubSchema" } ] }, "parameter": { "oneOf": [ { "$ref": "#/definitions/bodyParameter" }, { "$ref": "#/definitions/nonBodyParameter" } ] }, "schema": { "type": "object", "description": "A deterministic version of a JSON Schema object.", "patternProperties": { "^x-": { "$ref": "#/definitions/vendorExtension" } }, "properties": { "$ref": { "type": "string" }, "format": { "type": "string" }, "title": { "$ref": "http://json-schema.org/draft-04/schema#/properties/title" }, "description": { "$ref": "http://json-schema.org/draft-04/schema#/properties/description" }, "default": { "$ref": "http://json-schema.org/draft-04/schema#/properties/default" }, "multipleOf": { "$ref": "http://json-schema.org/draft-04/schema#/properties/multipleOf" }, "maximum": { "$ref": "http://json-schema.org/draft-04/schema#/properties/maximum" }, "exclusiveMaximum": { "$ref": "http://json-schema.org/draft-04/schema#/properties/exclusiveMaximum" }, "minimum": { "$ref": "http://json-schema.org/draft-04/schema#/properties/minimum" }, "exclusiveMinimum": { "$ref": "http://json-schema.org/draft-04/schema#/properties/exclusiveMinimum" }, "maxLength": { "$ref": "http://json-schema.org/draft-04/schema#/definitions/positiveInteger" }, "minLength": { "$ref": "http://json-schema.org/draft-04/schema#/definitions/positiveIntegerDefault0" }, "pattern": { "$ref": "http://json-schema.org/draft-04/schema#/properties/pattern" }, "maxItems": { "$ref": "http://json-schema.org/draft-04/schema#/definitions/positiveInteger" }, "minItems": { "$ref": "http://json-schema.org/draft-04/schema#/definitions/positiveIntegerDefault0" }, "uniqueItems": { "$ref": "http://json-schema.org/draft-04/schema#/properties/uniqueItems" }, "maxProperties": { "$ref": "http://json-schema.org/draft-04/schema#/definitions/positiveInteger" }, "minProperties": { "$ref": "http://json-schema.org/draft-04/schema#/definitions/positiveIntegerDefault0" }, "required": { "$ref": "http://json-schema.org/draft-04/schema#/definitions/stringArray" }, "enum": { "$ref": "http://json-schema.org/draft-04/schema#/properties/enum" }, "additionalProperties": { "anyOf": [ { "$ref": "#/definitions/schema" }, { "type": "boolean" } ], "default": {} }, "type": { "$ref": "http://json-schema.org/draft-04/schema#/properties/type" }, "items": { "anyOf": [ { "$ref": "#/definitions/schema" }, { "type": "array", "minItems": 1, "items": { "$ref": "#/definitions/schema" } } ], "default": {} }, "allOf": { "type": "array", "minItems": 1, "items": { "$ref": "#/definitions/schema" } }, "properties": { "type": "object", "additionalProperties": { "$ref": "#/definitions/schema" }, "default": {} }, "discriminator": { "type": "string" }, "readOnly": { "type": "boolean", "default": false }, "xml": { "$ref": "#/definitions/xml" }, "externalDocs": { "$ref": "#/definitions/externalDocs" }, "example": {} }, "additionalProperties": false }, "fileSchema": { "type": "object", "description": "A deterministic version of a JSON Schema object.", "patternProperties": { "^x-": { "$ref": "#/definitions/vendorExtension" } }, "required": ["type"], "properties": { "format": { "type": "string" }, "title": { "$ref": "http://json-schema.org/draft-04/schema#/properties/title" }, "description": { "$ref": "http://json-schema.org/draft-04/schema#/properties/description" }, "default": { "$ref": "http://json-schema.org/draft-04/schema#/properties/default" }, "required": { "$ref": "http://json-schema.org/draft-04/schema#/definitions/stringArray" }, "type": { "type": "string", "enum": ["file"] }, "readOnly": { "type": "boolean", "default": false }, "externalDocs": { "$ref": "#/definitions/externalDocs" }, "example": {} }, "additionalProperties": false }, "primitivesItems": { "type": "object", "additionalProperties": false, "properties": { "type": { "type": "string", "enum": ["string", "number", "integer", "boolean", "array"] }, "format": { "type": "string" }, "items": { "$ref": "#/definitions/primitivesItems" }, "collectionFormat": { "$ref": "#/definitions/collectionFormat" }, "default": { "$ref": "#/definitions/default" }, "maximum": { "$ref": "#/definitions/maximum" }, "exclusiveMaximum": { "$ref": "#/definitions/exclusiveMaximum" }, "minimum": { "$ref": "#/definitions/minimum" }, "exclusiveMinimum": { "$ref": "#/definitions/exclusiveMinimum" }, "maxLength": { "$ref": "#/definitions/maxLength" }, "minLength": { "$ref": "#/definitions/minLength" }, "pattern": { "$ref": "#/definitions/pattern" }, "maxItems": { "$ref": "#/definitions/maxItems" }, "minItems": { "$ref": "#/definitions/minItems" }, "uniqueItems": { "$ref": "#/definitions/uniqueItems" }, "enum": { "$ref": "#/definitions/enum" }, "multipleOf": { "$ref": "#/definitions/multipleOf" } }, "patternProperties": { "^x-": { "$ref": "#/definitions/vendorExtension" } } }, "security": { "type": "array", "items": { "$ref": "#/definitions/securityRequirement" }, "uniqueItems": true }, "securityRequirement": { "type": "object", "additionalProperties": { "type": "array", "items": { "type": "string" }, "uniqueItems": true } }, "xml": { "type": "object", "additionalProperties": false, "properties": { "name": { "type": "string" }, "namespace": { "type": "string" }, "prefix": { "type": "string" }, "attribute": { "type": "boolean", "default": false }, "wrapped": { "type": "boolean", "default": false } }, "patternProperties": { "^x-": { "$ref": "#/definitions/vendorExtension" } } }, "tag": { "type": "object", "additionalProperties": false, "required": ["name"], "properties": { "name": { "type": "string" }, "description": { "type": "string" }, "externalDocs": { "$ref": "#/definitions/externalDocs" } }, "patternProperties": { "^x-": { "$ref": "#/definitions/vendorExtension" } } }, "securityDefinitions": { "type": "object", "additionalProperties": { "oneOf": [ { "$ref": "#/definitions/basicAuthenticationSecurity" }, { "$ref": "#/definitions/apiKeySecurity" }, { "$ref": "#/definitions/oauth2ImplicitSecurity" }, { "$ref": "#/definitions/oauth2PasswordSecurity" }, { "$ref": "#/definitions/oauth2ApplicationSecurity" }, { "$ref": "#/definitions/oauth2AccessCodeSecurity" } ] } }, "basicAuthenticationSecurity": { "type": "object", "additionalProperties": false, "required": ["type"], "properties": { "type": { "type": "string", "enum": ["basic"] }, "description": { "type": "string" } }, "patternProperties": { "^x-": { "$ref": "#/definitions/vendorExtension" } } }, "apiKeySecurity": { "type": "object", "additionalProperties": false, "required": ["type", "name", "in"], "properties": { "type": { "type": "string", "enum": ["apiKey"] }, "name": { "type": "string" }, "in": { "type": "string", "enum": ["header", "query"] }, "description": { "type": "string" } }, "patternProperties": { "^x-": { "$ref": "#/definitions/vendorExtension" } } }, "oauth2ImplicitSecurity": { "type": "object", "additionalProperties": false, "required": ["type", "flow", "authorizationUrl"], "properties": { "type": { "type": "string", "enum": ["oauth2"] }, "flow": { "type": "string", "enum": ["implicit"] }, "scopes": { "$ref": "#/definitions/oauth2Scopes" }, "authorizationUrl": { "type": "string", "format": "uri" }, "description": { "type": "string" } }, "patternProperties": { "^x-": { "$ref": "#/definitions/vendorExtension" } } }, "oauth2PasswordSecurity": { "type": "object", "additionalProperties": false, "required": ["type", "flow", "tokenUrl"], "properties": { "type": { "type": "string", "enum": ["oauth2"] }, "flow": { "type": "string", "enum": ["password"] }, "scopes": { "$ref": "#/definitions/oauth2Scopes" }, "tokenUrl": { "type": "string", "format": "uri" }, "description": { "type": "string" } }, "patternProperties": { "^x-": { "$ref": "#/definitions/vendorExtension" } } }, "oauth2ApplicationSecurity": { "type": "object", "additionalProperties": false, "required": ["type", "flow", "tokenUrl"], "properties": { "type": { "type": "string", "enum": ["oauth2"] }, "flow": { "type": "string", "enum": ["application"] }, "scopes": { "$ref": "#/definitions/oauth2Scopes" }, "tokenUrl": { "type": "string", "format": "uri" }, "description": { "type": "string" } }, "patternProperties": { "^x-": { "$ref": "#/definitions/vendorExtension" } } }, "oauth2AccessCodeSecurity": { "type": "object", "additionalProperties": false, "required": ["type", "flow", "authorizationUrl", "tokenUrl"], "properties": { "type": { "type": "string", "enum": ["oauth2"] }, "flow": { "type": "string", "enum": ["accessCode"] }, "scopes": { "$ref": "#/definitions/oauth2Scopes" }, "authorizationUrl": { "type": "string", "format": "uri" }, "tokenUrl": { "type": "string", "format": "uri" }, "description": { "type": "string" } }, "patternProperties": { "^x-": { "$ref": "#/definitions/vendorExtension" } } }, "oauth2Scopes": { "type": "object", "additionalProperties": { "type": "string" } }, "mediaTypeList": { "type": "array", "items": { "$ref": "#/definitions/mimeType" }, "uniqueItems": true }, "parametersList": { "type": "array", "description": "The parameters needed to send a valid API call.", "items": { "oneOf": [ { "$ref": "#/definitions/parameter" }, { "$ref": "#/definitions/jsonReference" } ] }, "uniqueItems": true }, "schemesList": { "type": "array", "description": "The transfer protocol of the API.", "items": { "type": "string", "enum": ["http", "https", "ws", "wss"] }, "uniqueItems": true }, "collectionFormat": { "type": "string", "enum": ["csv", "ssv", "tsv", "pipes"], "default": "csv" }, "collectionFormatWithMulti": { "type": "string", "enum": ["csv", "ssv", "tsv", "pipes", "multi"], "default": "csv" }, "title": { "$ref": "http://json-schema.org/draft-04/schema#/properties/title" }, "description": { "$ref": "http://json-schema.org/draft-04/schema#/properties/description" }, "default": { "$ref": "http://json-schema.org/draft-04/schema#/properties/default" }, "multipleOf": { "$ref": "http://json-schema.org/draft-04/schema#/properties/multipleOf" }, "maximum": { "$ref": "http://json-schema.org/draft-04/schema#/properties/maximum" }, "exclusiveMaximum": { "$ref": "http://json-schema.org/draft-04/schema#/properties/exclusiveMaximum" }, "minimum": { "$ref": "http://json-schema.org/draft-04/schema#/properties/minimum" }, "exclusiveMinimum": { "$ref": "http://json-schema.org/draft-04/schema#/properties/exclusiveMinimum" }, "maxLength": { "$ref": "http://json-schema.org/draft-04/schema#/definitions/positiveInteger" }, "minLength": { "$ref": "http://json-schema.org/draft-04/schema#/definitions/positiveIntegerDefault0" }, "pattern": { "$ref": "http://json-schema.org/draft-04/schema#/properties/pattern" }, "maxItems": { "$ref": "http://json-schema.org/draft-04/schema#/definitions/positiveInteger" }, "minItems": { "$ref": "http://json-schema.org/draft-04/schema#/definitions/positiveIntegerDefault0" }, "uniqueItems": { "$ref": "http://json-schema.org/draft-04/schema#/properties/uniqueItems" }, "enum": { "$ref": "http://json-schema.org/draft-04/schema#/properties/enum" }, "jsonReference": { "type": "object", "required": ["$ref"], "additionalProperties": false, "properties": { "$ref": { "type": "string" } } } }, "id": "http://swagger.io/v2/schema.json#", "patternProperties": { "^x-": { "$ref": "#/definitions/vendorExtension" } }, "properties": { "swagger": { "type": "string", "enum": ["2.0"], "description": "The Swagger version of this document." }, "info": { "$ref": "#/definitions/info" }, "host": { "type": "string", "pattern": "^[^{}/ :\\\\]+(?::\\d+)?$", "description": "The host (name or ip) of the API. Example: 'swagger.io'" }, "basePath": { "type": "string", "pattern": "^/", "description": "The base path to the API. Example: '/api'." }, "schemes": { "$ref": "#/definitions/schemesList" }, "consumes": { "description": "A list of MIME types accepted by the API.", "allOf": [ { "$ref": "#/definitions/mediaTypeList" } ] }, "produces": { "description": "A list of MIME types the API can produce.", "allOf": [ { "$ref": "#/definitions/mediaTypeList" } ] }, "paths": { "$ref": "#/definitions/paths" }, "definitions": { "$ref": "#/definitions/definitions" }, "parameters": { "$ref": "#/definitions/parameterDefinitions" }, "responses": { "$ref": "#/definitions/responseDefinitions" }, "security": { "$ref": "#/definitions/security" }, "securityDefinitions": { "$ref": "#/definitions/securityDefinitions" }, "tags": { "type": "array", "items": { "$ref": "#/definitions/tag" }, "uniqueItems": true }, "externalDocs": { "$ref": "#/definitions/externalDocs" } }, "required": ["swagger", "info", "paths"], "title": "A JSON Schema for Swagger 2.0 API.", "type": "object" }
github-issue-forms.json
{ "$comment": "https://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/syntax-for-issue-forms", "$id": "https://json.schemastore.org/github-issue-forms.json", "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "definitions": { "type": { "description": "A form item type\nhttps://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/syntax-for-githubs-form-schema#keys", "type": "string", "enum": ["checkboxes", "dropdown", "input", "markdown", "textarea"] }, "id": { "type": "string", "pattern": "^[a-zA-Z0-9_-]+$", "examples": ["SampleId"] }, "validations": { "title": "validation options", "type": "object", "properties": { "required": { "description": "Specify whether require a form item", "type": "boolean", "default": false } }, "additionalProperties": false }, "assignee": { "type": "string", "maxLength": 39, "pattern": "^[a-zA-Z0-9](-?[a-zA-Z0-9])*$", "examples": ["SampleAssignee"] }, "label": { "type": "string", "minLength": 1, "examples": ["Sample label"] }, "description": { "type": "string", "default": "", "examples": ["Sample description"] }, "placeholder": { "type": "string", "default": "", "examples": ["Sample placeholder"] }, "value": { "type": "string", "minLength": 1, "examples": ["Sample value"] }, "form_item": { "title": "form item", "description": "A form item\nhttps://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/syntax-for-githubs-form-schema#about-githubs-form-schema", "type": "object", "required": ["type"], "properties": { "type": { "$ref": "#/definitions/type" } }, "allOf": [ { "if": { "properties": { "type": { "const": "markdown" } } }, "then": { "$comment": "For `additionalProperties` to work `type` must also be present here.", "title": "markdown", "description": "Markdown\nhttps://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/syntax-for-githubs-form-schema#markdown", "type": "object", "required": ["type", "attributes"], "properties": { "type": { "$ref": "#/definitions/type" }, "attributes": { "title": "markdown attributes", "description": "Markdown attributes\nhttps://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/syntax-for-githubs-form-schema#attributes", "type": "object", "required": ["value"], "properties": { "value": { "description": "A markdown code\nhttps://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/syntax-for-githubs-form-schema#attributes", "type": "string", "minLength": 1, "examples": ["Sample code"] } }, "additionalProperties": false } }, "additionalProperties": false } }, { "if": { "properties": { "type": { "const": "textarea" } } }, "then": { "$comment": "For `additionalProperties` to work `type` must also be present here.", "title": "textarea", "description": "Textarea\nhttps://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/syntax-for-githubs-form-schema#textarea", "type": "object", "required": ["type", "attributes"], "properties": { "type": { "$ref": "#/definitions/type" }, "id": { "description": "A textarea id\nhttps://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/syntax-for-githubs-form-schema#keys", "$ref": "#/definitions/id" }, "attributes": { "title": "textarea attributes", "description": "Textarea attributes\nhttps://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/syntax-for-githubs-form-schema#attributes-1", "type": "object", "required": ["label"], "properties": { "label": { "description": "A short textarea description\nhttps://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/syntax-for-githubs-form-schema#attributes-1", "$ref": "#/definitions/label" }, "description": { "description": "A long textarea description\nhttps://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/syntax-for-githubs-form-schema#attributes-1", "$ref": "#/definitions/description" }, "placeholder": { "description": "A textarea placeholder\nhttps://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/syntax-for-githubs-form-schema#attributes-1", "$ref": "#/definitions/placeholder" }, "value": { "description": "A textarea value\nhttps://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/syntax-for-githubs-form-schema#attributes-1", "$ref": "#/definitions/value" }, "render": { "description": "A textarea syntax highlighting mode\nhttps://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/syntax-for-githubs-form-schema#attributes-1", "type": "string", "enum": [ "1C Enterprise", "4D", "ABAP CDS", "ABAP", "ABNF", "AFDKO", "AGS Script", "AIDL", "AL", "AMPL", "ANTLR", "API Blueprint", "APL", "ASL", "ASN.1", "ASP.NET", "ATS", "ActionScript", "Ada", "Alloy", "Alpine Abuild", "Altium Designer", "AngelScript", "Ant Build System", "ApacheConf", "Apex", "Apollo Guidance Computer", "AppleScript", "Arc", "AsciiDoc", "AspectJ", "Assembly", "Astro", "Asymptote", "Augeas", "AutoHotkey", "AutoIt", "AutoIt3", "AutoItScript", "Avro IDL", "Awk", "BASIC", "Ballerina", "Batchfile", "Beef", "Befunge", "BibTeX", "Bicep", "Bison", "BitBake", "Blade", "BlitzBasic", "BlitzMax", "Boo", "Boogie", "Brainfuck", "Brightscript", "Browserslist", "C", "C#", "C++", "C-ObjDump", "C2hs Haskell", "CIL", "CLIPS", "CMake", "COBOL", "CODEOWNERS", "COLLADA", "CSON", "CSS", "CSV", "CUE", "CWeb", "Cabal Config", "Cabal", "Cap'n Proto", "Carto", "CartoCSS", "Ceylon", "Chapel", "Charity", "ChucK", "Cirru", "Clarion", "Classic ASP", "Clean", "Click", "Clojure", "Closure Templates", "Cloud Firestore Security Rules", "CoNLL", "CoNLL-U", "CoNLL-X", "ColdFusion CFC", "ColdFusion", "Common Lisp", "Common Workflow Language", "Component Pascal", "Containerfile", "Cool", "Coq", "Cpp-ObjDump", "Crystal", "Csound Document", "Csound Score", "Csound", "Cuda", "Cue Sheet", "Cycript", "Cython", "D-ObjDump", "DIGITAL Command Language", "DM", "DTrace", "Dafny", "Darcs Patch", "Dart", "DataWeave", "Dhall", "Diff", "Dlang", "Dockerfile", "Dogescript", "Dylan", "E", "E-mail", "EBNF", "ECL", "ECLiPSe", "EJS", "EQ", "Eagle", "Earthly", "Easybuild", "Ecere Projects", "EditorConfig", "Eiffel", "Elixir", "Elm", "Emacs Lisp", "EmberScript", "Erlang", "F#", "F*", "FIGfont", "FIGlet Font", "FLUX", "Factor", "Fancy", "Fantom", "Faust", "Fennel", "Filebench WML", "Filterscript", "Fluent", "Formatted", "Forth", "Fortran Free Form", "Fortran", "FreeBasic", "Frege", "Futhark", "G-code", "GAML", "GAMS", "GAP", "GCC Machine Description", "GDB", "GDScript", "GEDCOM", "GLSL", "GN", "Game Maker Language", "Gemfile.lock", "Genie", "Genshi", "Gentoo Eclass", "Gerber Image", "Gettext Catalog", "Gherkin", "Git Config", "Glyph Bitmap Distribution Format", "Glyph", "Gnuplot", "Go Checksums", "Go Module", "Go", "Golo", "Gosu", "Grace", "Gradle", "Grammatical Framework", "Graph Modeling Language", "GraphQL", "Graphviz (DOT)", "Groovy Server Pages", "Groovy", "HAProxy", "HCL", "HTML", "HTML+ECR", "HTML+EEX", "HTML+ERB", "HTML+PHP", "HTML+Razor", "HTTP", "HXML", "Hack", "Haml", "Handlebars", "Harbour", "HashiCorp Configuration Language", "Haskell", "Haxe", "HiveQL", "HolyC", "Hy", "IDL", "IGOR Pro", "IPython Notebook", "Idris", "Ignore List", "ImageJ Macro", "Inform 7", "Io", "Ioke", "Isabelle ROOT", "Isabelle", "J", "JAR Manifest", "JFlex", "JSON with Comments", "JSON", "JSON5", "JSONLD", "JSONiq", "Jasmin", "Java Properties", "Java Server Pages", "Java", "JavaScript", "JavaScript+ERB", "Jest Snapshot", "Jinja", "Jison Lex", "Jison", "Jolie", "Jsonnet", "Julia", "Jupyter Notebook", "Kaitai Struct", "KakouneScript", "KiCad Layout", "KiCad Legacy Layout", "KiCad Schematic", "Kit", "Kotlin", "Kusto", "LFE", "LLVM", "LOLCODE", "LSL", "LTspice Symbol", "LabVIEW", "Lark", "Lasso", "Lean", "Less", "Lex", "LilyPond", "Limbo", "Linker Script", "Linux Kernel Module", "Liquid", "Literate Agda", "Literate CoffeeScript", "Literate Haskell", "LiveScript", "Logos", "Logtalk", "LookML", "LoomScript", "Lua", "M", "M4", "M4Sugar", "MATLAB", "MAXScript", "MLIR", "MQL4", "MQL5", "MTML", "MUF", "Macaulay2", "Makefile", "Mako", "Markdown", "Marko", "Mathematica", "Max", "Mercury", "Meson", "Metal", "Microsoft Developer Studio Project", "Microsoft Visual Studio Solution", "MiniD", "Mirah", "Modelica", "Modula-2", "Modula-3", "Module Management System", "Monkey", "Moocode", "MoonScript", "Motoko", "Motorola 68K Assembly", "Muse", "Myghty", "NASL", "NCL", "NEON", "NPM Config", "NSIS", "NWScript", "Nearley", "Nemerle", "NeoSnippet", "NetLinx", "NetLinx+ERB", "NetLogo", "NewLisp", "Nextflow", "Nginx", "Ninja", "Nit", "Nix", "NumPy", "Nunjucks", "ObjDump", "Object Data Instance Notation", "ObjectScript", "Objective-C", "Objective-C++", "Objective-J", "Odin", "Omgrofl", "Opa", "Opal", "Open Policy Agent", "OpenCL", "OpenEdge ABL", "OpenQASM", "OpenRC runscript", "OpenSCAD", "OpenStep Property List", "OpenType Feature File", "Org", "Ox", "Oxygene", "Oz", "P4", "PEG.js", "PHP", "PLpgSQL", "POV-Ray SDL", "Pan", "Papyrus", "Parrot Assembly", "Parrot Internal Representation", "Parrot", "Pascal", "Pawn", "Pep8", "Perl", "Pickle", "PicoLisp", "PigLatin", "Pike", "PlantUML", "Pod 6", "Pod", "PogoScript", "Pony", "PostCSS", "PostScript", "PowerShell", "Prisma", "Processing", "Proguard", "Prolog", "Promela", "Propeller Spin", "Protocol Buffer", "Protocol Buffers", "Public Key", "Pug", "Puppet", "Pure Data", "PureBasic", "PureScript", "Python", "Q#", "QMake", "Qt Script", "Quake", "R", "RAML", "RDoc", "REALbasic", "REXX", "RMarkdown", "RPC", "RPM Spec", "Racket", "Ragel", "Raw token data", "ReScript", "Readline Config", "Reason", "Rebol", "Record Jar", "Red", "Redirect Rules", "Regular Expression", "RenderScript", "Rich Text Format", "Ring", "Riot", "RobotFramework", "Roff", "Rouge", "Rscript", "Ruby", "Rust", "SAS", "SCSS", "SELinux Kernel Policy Language", "SELinux Policy", "SMT", "SPARQL", "SQF", "SQL", "SQLPL", "SRecode Template", "SSH Config", "STON", "SVG", "SWIG", "Sage", "SaltStack", "Sass", "Scala", "Scaml", "Scheme", "Scilab", "Self", "ShaderLab", "Shell", "ShellCheck Config", "Sieve", "Singularity", "Slash", "Slice", "Slim", "SmPL", "Smalltalk", "SnipMate", "Solidity", "Soong", "SourcePawn", "Spline Font Database", "Squirrel", "Stan", "Standard ML", "Starlark", "StringTemplate", "Stylus", "SubRip Text", "SugarSS", "SuperCollider", "Svelte", "Swift", "SystemVerilog", "TI Program", "TLA", "TOML", "TSQL", "TSV", "TSX", "TXL", "Tcl", "Tcsh", "TeX", "Tea", "Terra", "Texinfo", "Text", "TextMate Properties", "Textile", "Thrift", "Turing", "Turtle", "Twig", "Type Language", "TypeScript", "UltiSnip", "UltiSnips", "Unified Parallel C", "Unity3D Asset", "Unix Assembly", "Uno", "UnrealScript", "Ur", "Ur/Web", "UrWeb", "V", "VBA", "VCL", "VHDL", "Vala", "Valve Data Format", "Verilog", "Vim Help File", "Vim Script", "Vim Snippet", "Visual Basic .NET", "Vue", "Wavefront Material", "Wavefront Object", "Web Ontology Language", "WebAssembly", "WebVTT", "Wget Config", "Wikitext", "Windows Registry Entries", "Wollok", "World of Warcraft Addon Data", "X BitMap", "X Font Directory Index", "X PixMap", "X10", "XC", "XCompose", "XML Property List", "XML", "XPages", "XProc", "XQuery", "XS", "XSLT", "Xojo", "Xonsh", "Xtend", "YAML", "YANG", "YARA", "YASnippet", "Yacc", "ZAP", "ZIL", "Zeek", "ZenScript", "Zephir", "Zig", "Zimpl", "abl", "abuild", "acfm", "aconf", "actionscript 3", "actionscript3", "ada2005", "ada95", "adobe composite font metrics", "adobe multiple font metrics", "advpl", "ags", "ahk", "altium", "amfm", "amusewiki", "apache", "apkbuild", "arexx", "as3", "asm", "asp", "aspx", "aspx-vb", "ats2", "au3", "autoconf", "b3d", "bash session", "bash", "bat", "batch", "bazel", "blitz3d", "blitzplus", "bmax", "bplus", "bro", "bsdmake", "byond", "bzl", "c++-objdump", "c2hs", "cURL Config", "cake", "cakescript", "cfc", "cfm", "cfml", "chpl", "clipper", "coccinelle", "coffee", "coffee-script", "coldfusion html", "console", "cperl", "cpp", "csharp", "csound-csd", "csound-orc", "csound-sco", "cucumber", "curlrc", "cwl", "dcl", "delphi", "desktop", "dircolors", "django", "dosbatch", "dosini", "dpatch", "dtrace-script", "eC", "ecr", "editor-config", "edn", "eeschema schematic", "eex", "elisp", "emacs muse", "emacs", "email", "eml", "erb", "fb", "fish", "flex", "foxpro", "fsharp", "fstar", "ftl", "fundamental", "gf", "git-ignore", "gitattributes", "gitconfig", "gitignore", "gitmodules", "go mod", "go sum", "go.mod", "go.sum", "golang", "groff", "gsp", "hbs", "heex", "help", "html+django", "html+jinja", "html+ruby", "htmlbars", "htmldjango", "hylang", "i7", "ignore", "igor", "igorpro", "ijm", "inc", "inform7", "inputrc", "irc logs", "irc", "java server page", "jq", "jruby", "js", "jsonc", "jsp", "kak", "kakscript", "keyvalues", "ksy", "lassoscript", "latex", "leex", "lhaskell", "lhs", "lisp", "litcoffee", "live-script", "ls", "m2", "m68k", "mIRC Script", "macruby", "mail", "make", "man page", "man", "man-page", "manpage", "markojs", "max/msp", "maxmsp", "mbox", "mcfunction", "mdoc", "mediawiki", "mf", "mma", "mumps", "mupad", "nanorc", "nasm", "ne-on", "nesC", "nette object notation", "nginx configuration file", "nixos", "njk", "node", "npmrc", "nroff", "nush", "nvim", "obj-c", "obj-c++", "obj-j", "objc", "objc++", "objectivec", "objectivec++", "objectivej", "objectpascal", "objj", "octave", "odin-lang", "odinlang", "oncrpc", "ooc", "openedge", "openrc", "osascript", "pandoc", "pasm", "pcbnew", "perl-6", "perl6", "pir", "plain text", "posh", "postscr", "pot", "pov-ray", "povray", "progress", "protobuf", "pwsh", "pycon", "pyrex", "python3", "q", "ql", "qsharp", "ragel-rb", "ragel-ruby", "rake", "raw", "razor", "rb", "rbx", "reStructuredText", "readline", "red/system", "redirects", "regex", "regexp", "renpy", "rhtml", "robots txt", "robots", "robots.txt", "rpcgen", "rs", "rs-274x", "rss", "rst", "rusthon", "salt", "saltstate", "sed", "sepolicy", "sh", "shell-script", "shellcheckrc", "sml", "snippet", "sourcemod", "soy", "specfile", "splus", "squeak", "terraform", "tl", "tm-properties", "troff", "ts", "udiff", "vb .net", "vb.net", "vb6", "vbnet", "vdf", "vim", "vimhelp", "viml", "visual basic 6", "visual basic for applications", "visual basic", "vlang", "wasm", "wast", "wdl", "wgetrc", "wiki", "winbatch", "wisp", "wl", "wolfram lang", "wolfram language", "wolfram", "wsdl", "xBase", "xbm", "xdr", "xhtml", "xml+genshi", "xml+kid", "xpm", "xsd", "xsl", "xten", "yas", "yml", "zsh" ] } }, "additionalProperties": false }, "validations": { "title": "textarea validations", "description": "Textarea validations\nhttps://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/syntax-for-githubs-form-schema#validations", "$ref": "#/definitions/validations" } }, "additionalProperties": false } }, { "if": { "properties": { "type": { "const": "input" } } }, "then": { "$comment": "For `additionalProperties` to work `type` must also be present here.", "title": "input", "description": "Input\nhttps://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/syntax-for-githubs-form-schema#input", "type": "object", "required": ["type", "attributes"], "properties": { "type": { "$ref": "#/definitions/type" }, "id": { "description": "An input id\nhttps://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/syntax-for-githubs-form-schema#keys", "$ref": "#/definitions/id" }, "attributes": { "title": "input attributes", "description": "Input attributes\nhttps://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/syntax-for-githubs-form-schema#attributes-2", "type": "object", "required": ["label"], "properties": { "label": { "description": "A short input description\nhttps://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/syntax-for-githubs-form-schema#attributes-2", "$ref": "#/definitions/label" }, "description": { "description": "A long input description\nhttps://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/syntax-for-githubs-form-schema#attributes-2", "$ref": "#/definitions/description" }, "placeholder": { "description": "An input placeholder\nhttps://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/syntax-for-githubs-form-schema#attributes-2", "$ref": "#/definitions/placeholder" }, "value": { "description": "An input value\nhttps://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/syntax-for-githubs-form-schema#attributes-2", "$ref": "#/definitions/value" } }, "additionalProperties": false }, "validations": { "title": "input validations", "description": "Input validations\nhttps://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/syntax-for-githubs-form-schema#validations-1", "$ref": "#/definitions/validations" } }, "additionalProperties": false } }, { "if": { "properties": { "type": { "const": "dropdown" } } }, "then": { "$comment": "For `additionalProperties` to work `type` must also be present here.", "title": "dropdown", "description": "dropdown\nhttps://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/syntax-for-githubs-form-schema#dropdown", "type": "object", "required": ["type", "attributes"], "properties": { "type": { "$ref": "#/definitions/type" }, "id": { "description": "A dropdown id\nhttps://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/syntax-for-githubs-form-schema#keys", "$ref": "#/definitions/id" }, "attributes": { "title": "dropdown attributes", "description": "Dropdown attributes\nhttps://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/syntax-for-githubs-form-schema#attributes-3", "type": "object", "required": ["label", "options"], "properties": { "label": { "description": "A short dropdown description\nhttps://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/syntax-for-githubs-form-schema#attributes-3", "$ref": "#/definitions/label" }, "description": { "description": "A long dropdown description\nhttps://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/syntax-for-githubs-form-schema#attributes-3", "$ref": "#/definitions/description" }, "multiple": { "description": "Specify whether allow a multiple choices\nhttps://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/syntax-for-githubs-form-schema#attributes-3", "type": "boolean", "default": false }, "options": { "description": "Dropdown choices\nhttps://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/syntax-for-githubs-form-schema#attributes-3", "type": "array", "minItems": 1, "uniqueItems": true, "items": { "type": "string", "minLength": 1, "examples": ["Sample choice"] } } }, "additionalProperties": false }, "validations": { "title": "dropdown validations", "description": "Dropdown validations\nhttps://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/syntax-for-githubs-form-schema#validations-2", "$ref": "#/definitions/validations" } }, "additionalProperties": false } }, { "if": { "properties": { "type": { "const": "checkboxes" } } }, "then": { "$comment": "For `additionalProperties` to work `type` must also be present here.", "title": "checkboxes", "description": "Checkboxes\nhttps://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/syntax-for-githubs-form-schema#checkboxes", "type": "object", "required": ["type", "attributes"], "properties": { "type": { "$ref": "#/definitions/type" }, "id": { "description": "Checkbox list id\nhttps://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/syntax-for-githubs-form-schema#keys", "$ref": "#/definitions/id" }, "attributes": { "title": "checkbox list attributes", "description": "Checkbox list attributes\nhttps://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/syntax-for-githubs-form-schema#attributes-4", "type": "object", "required": ["label", "options"], "properties": { "label": { "description": "A short checkbox list description\nhttps://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/syntax-for-githubs-form-schema#attributes-4", "$ref": "#/definitions/label" }, "description": { "description": "A long checkbox list description\nhttps://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/syntax-for-githubs-form-schema#attributes-4", "$ref": "#/definitions/description" }, "options": { "description": "Checkbox list choices\nhttps://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/syntax-for-githubs-form-schema#attributes-4", "type": "array", "minItems": 1, "items": { "title": "checkbox list choice", "description": "Checkbox list choice\nhttps://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/syntax-for-githubs-form-schema#attributes-4", "type": "object", "required": ["label"], "properties": { "label": { "description": "A short checkbox list choice description\nhttps://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/syntax-for-githubs-form-schema#attributes-4", "type": "string", "minLength": 1, "examples": ["Sample label"] }, "required": { "description": "Specify whether a choise is required\nhttps://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/syntax-for-githubs-form-schema#attributes-4", "type": "boolean", "default": false } }, "additionalProperties": false } } }, "additionalProperties": false } }, "additionalProperties": false } } ] } }, "properties": { "name": { "description": "An issue template name\nhttps://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/syntax-for-issue-forms#top-level-syntax", "type": "string", "minLength": 1, "examples": ["Sample name"] }, "description": { "description": "An issue template description\nhttps://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/syntax-for-issue-forms#top-level-syntax", "type": "string", "minLength": 1, "examples": ["Sample description"] }, "body": { "description": "An issue template body\nhttps://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/syntax-for-issue-forms#top-level-syntax", "type": "array", "minItems": 1, "items": { "$ref": "#/definitions/form_item" } }, "assignees": { "description": "An issue template assignees\nhttps://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/syntax-for-issue-forms#top-level-syntax", "oneOf": [ { "$ref": "#/definitions/assignee" }, { "type": "array", "minItems": 1, "uniqueItems": true, "items": { "$ref": "#/definitions/assignee" } } ] }, "labels": { "description": "An issue template labels\nhttps://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/syntax-for-issue-forms#top-level-syntax", "type": "array", "minItems": 1, "uniqueItems": true, "items": { "type": "string", "minLength": 1, "examples": [ "Sample label", "bug", "documentation", "duplicate", "enhancement", "good first issue", "help wanted", "invalid", "question", "wontfix" ] } }, "title": { "description": "An issue template title\nhttps://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/syntax-for-issue-forms#top-level-syntax", "type": "string", "minLength": 1, "examples": ["Sample title", "Bug: ", "Feature: "] } }, "required": ["name", "description", "body"], "title": "GitHub issue forms config file schema", "type": "object" }
docker-seq.schema.json
{ "$id": "https://example.com/product.schema.json", "$schema": "http://json-schema.org/draft-07/schema#", "title": "docker-seq", "description": "The schema for `docker-seq`", "type": "object", "additionalProperties": false, "properties": { "image": { "type": "string", "description": "The docker image name" }, "workdir": { "type": "string", "description": "Working directory inside the container" }, "user": { "type": "string", "description": "Username or UID (format: <name|uid>[:<group|gid>])" }, "local_user": { "type": "boolean", "description": "Disables the `user` option and runs the container with the hosts uid and gid." }, "tty": { "type": "boolean", "description": "Allocate a pseudo-TTY" }, "interactive": { "type": "boolean", "description": "Keep STDIN open even if not attached" }, "pull": { "type": "string", "description": "Pull image before running (\"always\"|\"missing\"|\"never\") (default \"missing\")", "enum": [ "always", "missing", "never" ] }, "rm": { "type": "boolean", "description": "Automatically remove the container when it exits" }, "init": { "type": "boolean", "description": "Run an init inside the container that forwards signals and reaps processes" }, "volumes": { "type": "array", "description": "Bind mount volumes" }, "publish": { "type": "array", "description": "Publish a container's port(s) to the host" }, "env": { "type": "array", "description": "Set environment variables" }, "env_file": { "type": "array", "description": "Read in files of environment variables" }, "cpus": { "type": "string", "description": "Number of CPUs" }, "memory": { "type": "integer", "description": "Memory limit in bytes" }, "entrypoint": { "type": "string", "description": "Overwrite the default ENTRYPOINT of the image" }, "name": { "type": "string", "description": "Assign a name to the container" }, "privileged": { "type": "boolean", "description": "Give extended privileges to this container" }, "network": { "type": "string" }, "mount": { "type": "array", "description": "Attach a filesystem mount to the container" }, "read_only": { "type": "boolean", "description": "Mount the container's root filesystem as read only" }, "platform": { "type": "string", "description": "Set platform if server is multi-platform capable" }, "runtime": { "type": "string", "description": "Runtime to use for this container" }, "security_opt": { "type": "array", "description": "Security Options" }, "ulimit": { "type": "string", "description": "Ulimit options" }, "volumes_from": { "type": "array", "description": "Mount volumes from the specified container(s)" }, "background_task": { "type": "array", "description": "Task with which to keep the container alive while executing commands" }, "docker_exec_shell": { "type": "array", "description": "Shell in which to execute each sequence step command" }, "sequence": { "type": "array", "items": { "$ref": "#/definitions/Step" } } }, "definitions": { "Step": { "type": "object", "description": "One step in the command sequence", "additionalProperties": false, "properties": { "workdir": { "type": "string", "description": "Working directory inside the container" }, "user": { "type": "string", "description": "Username or UID (format: <name|uid>[:<group|gid>])" }, "local_user": { "type": "boolean", "description": "Disables the `user` option and executes these commands with the hosts uid and gid." }, "tty": { "type": "boolean", "description": "Allocate a pseudo-TTY" }, "privileged": { "type": "boolean", "description": "Give extended privileges to the commands" }, "interactive": { "type": "boolean", "description": "Keep STDIN open even if not attached" }, "commands": { "type": "array", "description": "A list of commands to execute within the container" } } } } }
cloud-sdk-pipeline-config-schema.json
{ "$id": "https://json.schemastore.org/cloud-sdk-pipeline-config-schema.json", "$schema": "http://json-schema.org/draft-07/schema#", "definitions": { "dockerImage": { "description": "The image used in the step or stage.", "type": "string" }, "org": { "description": "Cloud Foundry organization.", "type": "string" }, "space": { "description": "Cloud Foundry space.", "type": "string" }, "appName": { "description": "Name of the application.", "type": "string" }, "manifest": { "description": "Manifest file that needs to be used.", "type": "string" }, "credentialsId": { "description": "ID to the credentials that will be used.", "type": "string" }, "apiEndpoint": { "description": "URL to the Cloud Foundry endpoint.", "type": "string", "default": "https://api.cf.eu10.hana.ondemand.com" }, "mtaExtensionDescriptor": { "description": "(Only for MTA-projects) Path to the mta extension description file. For more information on how to use those extension files please visit the SAP HANA Developer Guide.", "type": "string" }, "mtaExtensionCredentials": { "description": "(Only for MTA-projects) Map of credentials that need to be replaced in the mtaExtensionDescriptor. This map needs to be created as value-to-be-replaced:id-of-a-credential-in-jenkins", "type": "string" }, "host": { "description": "Host of the region you want to deploy to, see Regions.", "type": "string" }, "account": { "description": "Identifier of the subaccount.", "type": "string" }, "application": { "description": "Name of the application in your account.", "type": "string" }, "environment": { "description": "Map of environment variables in the form of KEY: VALUE.", "type": "object" }, "vmArguments": { "description": "String of VM arguments passed to the JVM.", "type": "string" }, "size": { "description": "Size of the JVM, e.g. lite, pro, prem, prem-plus.", "type": "string", "default": "lite" }, "runtime": { "description": "Name of the runtime: neo-java-web, neо-javaee6-wp, neо-javaee7-wp. See the runtime for more information.", "type": "string" }, "runtimeVersion": { "description": "Version of the runtime. See runtime-version for more information.", "type": "string" }, "neoTargets": { "type": "array", "items": { "type": "object", "properties": { "host": { "$ref": "#/definitions/host" }, "account": { "$ref": "#/definitions/account" }, "application": { "$ref": "#/definitions/application" }, "credentialsId": { "$ref": "#/definitions/credentialsId" }, "environment": { "$ref": "#/definitions/environment" }, "vmArguments": { "$ref": "#/definitions/vmArguments" }, "size": { "$ref": "#/definitions/size" }, "runtime": { "$ref": "#/definitions/runtime" }, "runtimeVersion": { "$ref": "#/definitions/runtimeVersion" } }, "required": [ "host", "account", "application", "runtime", "runtimeVersion" ], "additionalProperties": false } }, "appUrls": { "type": "array", "items": { "type": "object", "properties": { "url": { "description": "The URLs under which the app is available after deployment. Each appUrl can be a string with the URL or a map containing a property url and a property credentialId.", "type": "string" }, "credentialId": { "description": "ID to the credentials that will be used to connect to the SAP Cloudplatform account.", "type": "string" }, "parameters": { "description": "Additional parameters can be passed for each end-to-end test deployment by specifying optional parameters for an application URL. These parameters are appended to the npm command during execution. These parameters must be a list of strings, where each string corresponds to one element of the parameters. For example, if the parameter `--tag scenario1` should be passed to the test, specify parameters: ['--tag', 'scenario1'].", "type": "array" } }, "required": ["url"], "additionalProperties": false } }, "cfTargets": { "type": "array", "items": { "type": "object", "properties": { "org": { "$ref": "#/definitions/org" }, "space": { "$ref": "#/definitions/space" }, "appName": { "$ref": "#/definitions/appName" }, "manifest": { "$ref": "#/definitions/manifest" }, "credentialsId": { "$ref": "#/definitions/credentialsId" }, "apiEndpoint": { "$ref": "#/definitions/apiEndpoint" }, "mtaExtensionDescriptor": { "$ref": "#/definitions/mtaExtensionDescriptor" }, "mtaExtensionCredentials": { "$ref": "#/definitions/mtaExtensionCredentials" } }, "additionalProperties": false } }, "cloudFoundry": { "description": "A map specifying the Cloud Foundry specific parameters.", "type": "object", "properties": { "org": { "$ref": "#/definitions/org" }, "space": { "$ref": "#/definitions/space" }, "appName": { "$ref": "#/definitions/appName" }, "manifest": { "$ref": "#/definitions/manifest" }, "credentialsId": { "$ref": "#/definitions/credentialsId" }, "apiEndpoint": { "$ref": "#/definitions/apiEndpoint" }, "mtaExtensionDescriptor": { "$ref": "#/definitions/mtaExtensionDescriptor" }, "mtaExtensionCredentials": { "$ref": "#/definitions/mtaExtensionCredentials" } }, "additionalProperties": false } }, "description": "The configuration file of the SAP Cloud SDK Continuous Delivery Toolkit. For more information please visit https://github.com/SAP/cloud-s4-sdk-pipeline", "postActions": { "type": "object", "properties": { "sendNotification": { "description": "The sendNotification post-build action can be used to send notifications to project members in case of an unsuccessful build outcome or if the build goes back to normal. By default, an email is sent to the list of users who committed a change since the last non-broken build. Additionally, a set of recipients can be defined that should always receive notifications.", "type": ["object", "null"], "properties": { "enabled": { "description": "If set to true, notifications will be sent.", "type": "boolean", "default": false }, "skipFeatureBranches": { "description": "If set to true, notifications will only be sent for the productive branch as defined in the general configuration section.", "type": "boolean", "default": false }, "recipients": { "description": "List of email addresses that should be notified in addition to the standard recipients.", "type": "array", "items": { "type": "string" } } } } } }, "properties": { "customDefaults": { "description": "List of paths or URLs to YAML files with custom defaults to consider. These defaults override built-in defaults, and can be shared across multiple projects. Project configuration takes precedence.", "type": "array", "items": { "type": "string" } }, "general": { "description": "The general configuration of the pipeline", "type": ["object", "null"], "properties": { "productiveBranch": { "description": "The name of your default branch. This branch will be used for deploying your application. Other branches will skip deployment.", "type": "string", "default": "master" }, "projectName": { "description": "Name of the project. Will be used as identifier e.g. when creating a hdi container or executing code scans.", "type": "string" }, "globalExtensionsRepository": { "description": "Git url of the repository containing the extensions.", "type": "string" }, "globalExtensionsVersion": { "description": "Version of the extensions which should be used, e.g. the tag name", "type": "string" }, "globalExtensionsRepositoryCredentialsId": { "description": "Credentials required to clone the repository", "type": "string" }, "collectTelemetryData": { "description": "No personal data is collected. For details, consult the analytics documentation.", "type": "boolean", "default": true }, "unsafeMode": { "description": "Enable unsafe mode to skip checking environment variables for insecure elements. Only use this for demo purposes, never for productive usage.", "type": "boolean", "default": false }, "features": { "description": "Allows enabling or disable certain optional features.", "type": "object", "properties": { "parallelTestExecution": { "description": "Run E2E Tests in parallel. This feature is disabled by default because it is not supported in Blue Ocean. If this feature is enabled, we suggest not using the Blue Ocean interface and rely on the classic UI instead.", "type": "string", "enum": ["on", "off"], "default": "off" } }, "additionalProperties": true }, "jenkinsKubernetes": { "description": "If the Jenkins is running on a kubernetes cluster as a pod, we can use the dynamic scaling feature in the pipeline. In order to enable this, an environment variable ON_K8S has to be set to true on the jenkins.", "type": "object", "properties": { "jnlpAgent": { "description": "Docker image for jnlp agent to be used.", "type": "string", "default": "jenkins/jnlp-slave:latest" } }, "additionalProperties": true } }, "additionalProperties": false }, "stages": { "description": "Configuration, which will modify the behaviour of stages in the SAP Cloud SDK Pipeline.", "type": ["object", "null"], "properties": { "backendIntegrationTests": { "type": "object", "properties": { "retry": { "description": "The number of times that integration tests will retry before aborting the build. Note: This will consume more time for the jenkins build.", "type": "integer", "default": 1 }, "forkCount": { "description": "The number of JVM processes that are spawned to run the tests in parallel in case of using a maven based project structure. For more details visit the surefire documentation.", "type": "string", "default": "1C" }, "credentials": { "description": "The list of system credentials to be injected during integration tests. The following example will provide the username and password for the systems with the aliases ERP and SFSF. For this, it will use the Jenkins credentials entries erp-credentials and successfactors-credentials. You have to ensure that corresponding credential entries exist in your Jenkins configuration.", "type": "array", "items": { "type": "object", "properties": { "alias": { "type": "string" }, "credentialId": { "type": "string" } }, "required": ["alias", "credentialId"], "additionalProperties": false } }, "sidecarImage": { "description": "Name of the Docker image that should be used.", "type": "string" }, "sidecarName": { "description": "On Docker: Name of the container in the local network. On Kubernetes: Name of the container.", "type": "string" }, "sidecarReadyCommand": { "description": "Command executed inside the container, which returns exit code 0 when the container is ready to be used.", "type": "string" }, "sidecarEnvVars": { "description": "Environment variables to set in the container.", "type": "object" } }, "additionalProperties": false }, "frontEndIntegrationTests": { "type": "object", "properties": { "dockerImage": { "$ref": "#/definitions/dockerImage" } }, "additionalProperties": false }, "frontEndUnitTests": { "type": "object", "properties": { "dockerImage": { "$ref": "#/definitions/dockerImage" } }, "additionalProperties": false }, "endToEndTests": { "type": "object", "properties": { "enableZeroDowntimeDeployment": { "description": "It is possible to activate zero downtime deployment in end-to-end tests with the option enableZeroDowntimeDeployment. This will lead to a blue-green-deployment on SCP Cloud Foundry respectively to a rolling update on SCP Neo. By default, this feature is turned off.", "type": "boolean" }, "onlyRunInProductiveBranch": { "description": "Running end-to-end tests can be restricted to the productiveBranch with the option onlyRunInProductiveBranch. This might be useful when the end-to-end tests slow down development, and build failure on the productiveBranch is acceptable. By default, this feature is turned off.", "type": "boolean" }, "appUrls": { "$ref": "#/definitions/appUrls" } } }, "npmAudit": { "description": "This stage uses the npm audit command to check for known vulnerabilities in dependencies.", "type": "object", "properties": { "auditedAdvisories": { "description": "In case you audited an advisory, and it turns out to be a false positive, you can mark it as audited by adding its id to the auditedAdvisories in the stage configuration. A false positive in this case is when you are confident your application is not affected in any way by the underlying bug or vulnerability.", "type": "array", "items": { "type": ["integer", "string"] } } }, "additionalProperties": false }, "performanceTests": { "type": "object", "properties": { "neoTargets": { "$ref": "#/definitions/neoTargets" }, "cfTargets": { "$ref": "#/definitions/cfTargets" } } }, "s4SdkQualityChecks": { "type": "object", "properties": { "jacocoExcludes": { "description": "A list of exclusions expressed as an Ant-style pattern relative to the application folder. An example can be found below.", "type": "array", "items": { "type": "string" } }, "customOdataServices": { "description": "We recommend only using OData services listed in the in SAP API Business Hub. Despite that for using custom business objects you can add those APIs here.", "type": "array", "items": { "type": "string" } }, "nonErpDestinations": { "description": "List of destination names that do not refer to ERP systems. Use this parameter to exclude specific destinations from being checked in context of ERP API whitelists.", "type": "array", "items": { "type": "string" } }, "nonErpUrls": { "description": "List of URLs that are not defined as destinations. Use this parameter to exclude specific URLs from being checked in context of ERP API whitelists.", "type": "array", "items": { "type": "string" } }, "codeCoverageFrontend": { "description": "A map containing the thresholds unstable and failing. If the code coverage is lower than what is configured in unstable, the pipeline result is unstable. If it is lower than what is configured in failing, the pipeline will fail.", "type": "object" }, "threshold": { "type": "object", "description": "This setting allows the code coverage to be stricter compared to the default values. By default, the pipeline will fail if the coverage is below 65% line coverage (unstableCoverage), and will be unstable if it is less than 70% (successCoverage). If lower numbers are configured, or this configuration is left out, the default values are applied.", "properties": { "successCoverage": { "type": "integer", "minimum": 70 }, "unstableCoverage": { "type": "integer", "minimum": 65 } }, "additionalProperties": false, "required": ["successCoverage", "unstableCoverage"] }, "disabledChecks": { "description": "A list of checks which should not be executed. Possible values are: checkDeploymentDescriptors (Check for insecure options, such as ALLOW_MOCKED_AUTH_HEADER in deployment descriptors), checkResilience(Check that application is resilient to faults in the network), checkServices (Check that only official APIs are used), checkFrontendCodeCoverage (Ensures high frontend code coverage), checkBackendCodeCoverage (Ensures high backend code coverage)", "type": "array", "items": { "type": "string", "enum": [ "checkDeploymentDescriptors", "checkResilience", "checkServices", "checkFrontendCodeCoverage", "checkBackendCodeCoverage" ] }, "default": [] } }, "additionalProperties": false }, "checkmarxScan": { "description": "Checkmarx is one of the security analysis tools which is supported by the pipeline.", "type": "object", "properties": { "groupId": { "description": "Checkmarx Group ID", "type": "string" }, "checkMarxProjectName": { "description": "Name of the project on Checkmarx server.", "type": "string" }, "filterPattern": { "description": "Files which needs to be skipped during scanning.", "type": "string", "default": "!**/*.log, !**/*.lock, !**/*.json, !**/*.html, !**/Cx*, !**/test/**, !s4hana_pipeline/**, !**/unit-tests/**, !**/integration-tests/**, !**/frontend-unit-tests/**, !**/e2e-tests/**, !**/performance-tests/**, **/*.js, **/*.java, **/*.ts" }, "fullScansScheduled": { "description": "Toggle to enable or disable full scan on a certain schedule.", "type": "boolean", "default": false }, "incremental": { "description": "Perform incremental scan with every run. If turned false, complete project is scanned on every submission.", "type": "boolean", "default": true }, "vulnerabilityThresholdMedium": { "description": "The threshold for medium level threats. If the findings are greater than this value, pipeline execution will result in failure.", "type": "integer", "default": 0 }, "vulnerabilityThresholdLow": { "description": "The threshold for low level threats. If the findings are greater than this value, pipeline execution will result in failure.", "type": "integer", "default": 99999 }, "preset": { "description": "Name or numerical ID of Checkmarx preset to be used when scanning this project. When a name (string) is specified, the pipeline will try to discover the corresponding numerical ID via the Checkmarx API. Please also make sure to specify checkmarxCredentialsId and checkmarxServerUrl in such a case. For determining available presets in your Checkmarx webclient, go to Checkmarx -> Management -> Scan Settings -> Preset Manager. Alternatively, you can determine the numerical ID of your targeted preset by following those guides: Token-based Authentication and Get All Preset Details.", "type": ["integer", "string"], "default": 36 }, "checkmarxCredentialsId": { "description": "The Credential ID to connect to Checkmarx server. The credentials must be type username with password. This property becomes mandatory if the credentials are not configured in the Jenkins plugin itself.", "type": "string" }, "checkmarxServerUrl": { "description": "An URL to Checkmarx server. This property becomes mandatory if the URL to the Checkmarx server is not configured in the Jenkins plugin itself or if the checkmarxCredentialsId is configured.", "type": "string" }, "generatePdfReport": { "description": "Possibility to generate PDF reports of the scan.", "type": "boolean" } }, "required": ["groupId"], "additionalProperties": false }, "productionDeployment": { "type": "object", "properties": { "appUrls": { "$ref": "#/definitions/appUrls" }, "neoTargets": { "$ref": "#/definitions/neoTargets" }, "cfTargets": { "$ref": "#/definitions/cfTargets" } } }, "artifactDeployment": { "description": "The deployment of artifacts to nexus can be configured with a map containing the following properties.", "type": "object", "properties": { "nexus": { "type": "object", "properties": { "version": { "description": "Version of nexus. Can be nexus2 or nexus3.", "type": "string", "enum": ["nexus2", "nexus3"], "default": "nexus3" }, "url": { "description": "URL of the nexus. The scheme part of the URL will not be considered, because only http is supported.", "type": "string" }, "mavenRepository": { "description": "Name of the nexus repository for Maven and MTA artifacts. Ignored if the project does not contain pom.xml or mta.yml in the project root.", "type": "string" }, "npmRepository": { "description": "Name of the nexus repository for NPM artifacts. Ignored if the project does not contain a package.json in the project root directory.", "type": "string" }, "credentialsId": { "$ref": "#/definitions/credentialsId" } }, "required": ["url", "repository"] } }, "additionalProperties": true }, "whitesourceScan": { "description": "Configure credentials for WhiteSource scans. The minimum required Maven WhiteSource plugin version is 18.6.2, ensure this in the plugins section of the project pom.xml file.\n\nPipeline will execute npx whitesource run for npm projects. Please ensure that all package.json files have a name and version configured so that it is possible to distinguish between the different packages.", "type": "object", "properties": { "product": { "description": "Name of your product in WhiteSource.", "type": "string" }, "staticVersion": { "description": "Overwrites the respective version in the whitesource UI per scan with the staticVersion. Per default for every new version of a pom/package.json a new project will be created in the whitesource UI. To deactivate the creation of new projects and always have a fixed version for each project in the whitesource UI, configure the staticVersion.", "type": "string" }, "credentialsId": { "$ref": "#/definitions/credentialsId" }, "whitesourceUserTokenCredentialsId": { "description": "Unique identifier of the Secret Text on Jenkins server that stores WhiteSource userKey of a user. This is required only if the administrator of the WhiteSource service has enabled additional access level control. More details can be found here.", "type": "string" } }, "required": ["product", "credentialsId"], "additionalProperties": true }, "sourceClearScan": { "description": "Configure SourceClear scans.Note: Please note that the SourceClear stage of this pipeline is not actively maintained anymore. In case of issues, feel free to contribute to this project by opening a pull request.", "type": "object", "properties": { "credentialsId": { "$ref": "#/definitions/credentialsId" }, "config": { "description": "Additional configuration for the SourceClear agent. The key-value pairs will be added to srcclr.yml.", "type": "object", "properties": { "vuln_methods_extra_ignored_directories": { "type": "string" }, "scope": { "type": "string" } } } }, "required": ["credentialsId"], "additionalProperties": false }, "compliance": { "description": "Configure the stage Compliance, which currently executes a SonarQube (https://www.sonarqube.org/) scan.", "type": "object", "properties": { "runInAllBranches": { "description": "Define whether the scan should also happen in non productive branches, i.e. if your SonarQube instance supports that.", "type": "boolean", "default": false } }, "additionalProperties": false } } }, "steps": { "type": ["object", "null"], "properties": { "mavenExecute": { "description": "The mavenExecute step is used for all invocations of the mvn build tool. It is either used directly for executing specific maven phases such as test, or indirectly for steps that execute maven plugins such as checkPmd.", "type": "object", "properties": { "dockerImage": { "$ref": "#/definitions/dockerImage", "default": "maven:3.6.3-jdk-8-slim" }, "projectSettingsFile": { "description": "The project settings.xml to be used for maven builds. You can specify a relative path to your project root or a URL starting with http or https.", "type": "string" } } }, "artifactPrepareVersion": { "description": "If automatic versioning is enabled, this step is used to set a common version for artifacts and optionally push a corresponding tag.", "type": "object", "properties": { "dockerImage": { "$ref": "#/definitions/dockerImage" }, "commitUserName": { "description": "Defines the user name which appears in version control for the versioning update (in case versioningType: cloud).", "type": "string" }, "includeCommitId": { "description": "Defines if the automatically generated version (versioningType: cloud) should include the commit id hash.", "type": "boolean", "default": "true" }, "tagPrefix": { "description": "Defines the prefix which is used for the git tag which is written during the versioning run (only versioningType: cloud).", "type": "string" }, "unixTimestamp": { "description": "Defines if the Unix timestamp number should be used as build number instead of the standard date format.", "type": "boolean", "default": "false" }, "versioningType": { "description": "Defines the type of versioning (cloud: fully automatic, cloud_noTag: automatic but no tag created, library: manual)", "type": "string" } } }, "executeNpm": { "description": "The executeNpm step is used for all invocations of the npm build tool. It is, for example, used for building the frontend and for executing end to end tests.", "type": "object", "properties": { "dockerImage": { "$ref": "#/definitions/dockerImage", "default": "ppiper/node-browsers:v2" }, "defaultNpmRegistry": { "description": "The default npm registry url to be used as the remote mirror. Bypasses the local download cache if specified.", "type": "string", "default": "npmjs.com" } } }, "executeSourceClearScan": { "type": "object", "properties": { "dockerImage": { "$ref": "#/definitions/dockerImage", "default": "ppiper/mta-archive-builder:v1" } } }, "cloudFoundryDeploy": { "description": "A step configuration regarding Cloud Foundry deployment. This is required by stages like end-to-end tests, performance tests, and production deployment.", "type": "object", "properties": { "dockerImage": { "$ref": "#/definitions/dockerImage", "default": "ppiper/cf-cli:v2" }, "smokeTestStatusCode": { "description": "Expected return code for smoke test success.", "type": "integer", "default": 200 }, "keepOldInstance": { "description": "In case of a blue-green deployment the old instance will be stopped and will remain in the Cloud Foundry space by default. If this option is set to false, the old instance will be deleted.", "type": "boolean", "default": true }, "cloudFoundry": { "$ref": "#/definitions/cloudFoundry" } } }, "neoDeploy": { "type": "object", "properties": { "dockerImage": { "$ref": "#/definitions/dockerImage", "default": "ppiper/neo-cli:v2" }, "neo": { "description": "The map for neo.", "type": "object", "properties": { "host": { "$ref": "#/definitions/host" }, "account": { "$ref": "#/definitions/account" }, "application": { "$ref": "#/definitions/application" }, "credentialsId": { "$ref": "#/definitions/credentialsId" }, "environment": { "$ref": "#/definitions/environment" }, "vmArguments": { "$ref": "#/definitions/vmArguments" }, "size": { "$ref": "#/definitions/size" }, "runtime": { "$ref": "#/definitions/runtime" }, "runtimeVersion": { "$ref": "#/definitions/runtimeVersion" } }, "required": [ "host", "account", "application", "runtime", "runtimeVersion" ], "additionalProperties": false } } }, "checkGatling": { "description": "Gatling is used as one of the performance tests tool.", "type": "object", "properties": { "enabled": { "description": "You can enable Gatling tests by turning the flag to true.", "type": "boolean", "default": false } } }, "checkJMeter": { "description": "Apache JMeter is executed as part of performance tests of the application. The user is free to choose between JMeter and Gatling or both.", "type": "object", "properties": { "options": { "description": "Options such as proxy.", "type": "string" }, "testPlan": { "description": "The directory where the test plans reside. Should reside in a subdirectory under performance-tests directory if both JMeter and Gatling are enabled.", "type": "string", "default": "./performance-tests/*" }, "dockerImage": { "$ref": "#/definitions/dockerImage", "default": "famiko/jmeter-base" }, "failThreshold": { "description": "Marks build as FAILURE if the value exceeds the threshold.", "type": "integer", "default": 100 }, "unstableThreshold": { "description": "Marks build as UNSTABLE if the value exceeds the threshold.", "type": "integer", "default": 90 } } }, "fortifyExecuteScan": { "type": "object", "properties": { "dockerImage": { "$ref": "#/definitions/dockerImage" }, "verbose": { "description": "Sends the verbose output to the Jenkins log.", "type": "boolean", "default": false }, "fortifyCredentialsId": { "description": "Jenkins 'Secret text' credentials ID containing token to authenticate to Fortify SSC.", "type": "string" }, "githubTokenCredentialsId": { "description": "Jenkins 'Secret text' credentials ID containing token to authenticate to GitHub.", "type": "string" }, "serverUrl": { "description": "Fortify SSC Url to be used for accessing the APIs", "type": "string" }, "projectName": { "description": "The project used for reporting results in SSC", "type": "string" }, "defaultVersioningModel": { "description": "The default project versioning model used in case 'projectVersion' parameter is empty for creating the version based on the build descriptor version to report results in SSC, can be one of 'major', 'major-minor', 'semantic', 'full'", "type": "string", "default": "major" }, "buildTool": { "description": "Scan type used for the step which can be 'maven', 'pip'", "type": "string", "default": "maven" }, "autoCreate": { "description": "Whether Fortify project and project version shall be implicitly auto created in case they cannot be found in the backend", "type": "boolean", "default": false }, "uploadResults": { "description": "Whether results shall be uploaded or not", "type": "boolean", "default": true }, "memory": { "description": "The amount of memory granted to the translate/scan executions", "type": "string", "default": "-Xmx4G -Xms512M" }, "src": { "description": "A list of source directories to scan. Wildcards can be used, e.g., 'src/main/java/**/*'. The default value for buildTool: 'maven' is ['**/*.xml', '**/*.html', '**/*.jsp', '**/*.js', '**/src/main/resources/**/*', '**/src/main/java/**/*'], for buildTool: 'pip' it is ['./**/*'].", "type": "array", "items": { "type": "string" } }, "exclude": { "description": "A list of directories/files to be excluded from the scan. Wildcards can be used, e.g., '**/Test.java'.", "type": "array", "items": { "type": "string" } } }, "required": ["fortifyCredentialsId"] }, "whitesourceExecuteScan": { "description": "Configure credentials for WhiteSource scans. The minimum required Maven WhiteSource plugin version is 18.6.2, ensure this in the plugins section of the project pom.xml file.\n\nPipeline will execute npx whitesource run for npm projects. Please ensure that all package.json files have a name configured so that it is possible to distinguish between the different packages.", "type": "object", "properties": { "productName": { "description": "Name of your product in WhiteSource.", "type": "string" }, "productVersion": { "description": "Overwrites the project version in the WhiteSource UI per scan with the given version. Per default, the version from the main build descriptor file is used and transformed according to the versioningModel parameter, i.e. \"1\" for the default model of \"major\".", "type": "string" }, "orgAdminUserTokenCredentialsId": { "$ref": "#/definitions/credentialsId" }, "userTokenCredentialsId": { "description": "Unique identifier of the Secret Text on Jenkins server that stores WhiteSource userKey of a user. This is required only if the administrator of the WhiteSource service has enabled additional access level control. More details can be found here.", "type": "string" } }, "required": ["productName", "orgAdminUserTokenCredentialsId"], "additionalProperties": true }, "mtaBuild": { "type": "object", "properties": { "dockerImage": { "$ref": "#/definitions/dockerImage", "default": "ppiper/mta-archive-builder" }, "buildTarget": { "type": "string", "description": "The target platform to which the mtar can be deployed.", "default": "NEO" }, "mtaBuildTool": { "type": "string", "description": "Choose which tool is used to build your mta project. The default option is `cloudMbt` which is not backwards compatible with the `classic` tool. For more information on migrating from `classic` to `cloudMbt`, please refer to https://sap.github.io/cloud-mta-build-tool/migration/.", "default": "cloudMbt" }, "applicationName": { "description": "The name of the application which is being built. If the parameter has been provided and no mta.yaml exists, the mta.yaml will be automatically generated using this parameter and the information (name and version) from package.json before the actual build starts.", "type": "string" }, "defaultNpmRegistry": { "type": "string", "description": "Url to the npm registry that should be used for installing npm dependencies." }, "dockerOptions": { "type": ["array", "string"], "description": "Docker options to be set when starting the container (List or String)." }, "extension": { "type": "string", "description": "The path to the extension descriptor file." }, "globalSettingsFile": { "type": "string", "description": "Path or url to the mvn settings file that should be used as global settings file." }, "projectSettingsFile": { "type": "string", "description": "Path or url to the mvn settings file that should be used as project settings file." }, "mtaJarLocation": { "type": "string", "description": "The location of the SAP Multitarget Application Archive Builder jar file, including file name and extension. If it is not provided, the SAP Multitarget Application Archive Builder is expected on PATH.", "default": "/opt/sap/mta/lib/mta.jar" } } }, "debugReportArchive": { "description": "The debugReportArchive configuration can be used to create confidential (instead of redacted) debug reports. The difference between the redacted and the confidential debug report is that potentially confidential information, such as the GitHub repository and branch, global extension repository and shared libraries, are included in the confidential debug report. It is the user's responsibility to make sure that the debug report does not contain any confidential information.", "type": "object", "properties": { "shareConfidentialInformation": { "description": "If set to true, a confidential debug report is being generated with each build.", "type": "boolean", "default": false } } }, "sonarExecuteScan": { "description": "Configure SonarQube (https://www.sonarqube.org/) scans.", "type": "object", "properties": { "projectKey": { "description": "The project key is used to refer your project.", "type": "string" }, "instance": { "description": "This property refers to a SonarQube instance, which needs to be defined in the Jenkins.", "type": "string" }, "options": { "type": ["array", "string"], "description": "A list of additional options (in the form of '-Dxy=z') to be passed to the sonar scanner tool." }, "dockerImage": { "$ref": "#/definitions/dockerImage", "default": "ppiper/node-browsers:v3" } }, "required": ["projectKey", "instance"], "additionalProperties": true }, "tmsUpload": { "description": "This step allows you to upload an MTA file (multi-target application archive) and multiple MTA extension descriptors into a TMS (SAP Cloud Platform Transport Management Service) landscape for further TMS-controlled distribution through a TMS-configured landscape.", "type": "object", "properties": { "nodeName": { "description": "Defines the name of the node to which the *.mtar file should be uploaded.", "type": "string" }, "credentialsId": { "description": "Credentials to be used for the file and node uploads to the Transport Management Service.", "type": "string" }, "customDescription": { "description": "Can be used as the description of a transport request. Will overwrite the default.", "type": "string", "default": "<Corresponding Git Commit-ID>" } } } } } }, "title": "SAP Cloud SDK pipeline_config JSON schema", "type": "object" }
vega.json
{ "$schema": "http://json-schema.org/draft-04/schema#", "allOf": [ { "$ref": "#/defs/scope" }, { "type": "object", "properties": { "$schema": { "type": "string", "format": "uri" }, "config": { "type": "object" }, "description": { "type": "string" }, "width": { "type": "number" }, "height": { "type": "number" }, "padding": { "$ref": "#/defs/padding" }, "autosize": { "$ref": "#/defs/autosize" }, "background": { "$ref": "#/defs/background" } } } ], "defs": { "autosize": { "oneOf": [ { "enum": ["pad", "fit", "none"] }, { "type": "object", "properties": { "type": { "enum": ["pad", "fit", "none"] }, "resize": { "type": "boolean" }, "contains": { "enum": ["content", "padding"] } }, "required": ["type"], "additionalProperties": false } ], "default": "pad" }, "axis": { "type": "object", "properties": { "orient": { "enum": ["top", "bottom", "left", "right"] }, "scale": { "type": "string" }, "title": { "$ref": "#/refs/stringOrSignal" }, "zindex": { "type": "number" }, "ticks": { "type": "boolean" }, "labels": { "type": "boolean" }, "domain": { "type": "boolean" }, "grid": { "type": "boolean" }, "gridScale": { "type": "string" }, "tickSize": { "type": "number" }, "labelPadding": { "type": "number" }, "labelFlush": { "oneOf": [ { "type": "boolean" }, { "type": "number" } ] }, "labelFlushOffset": { "type": "number" }, "labelOverlap": { "oneOf": [ { "type": "boolean" }, { "enum": ["parity", "greedy"], "type": "string" } ] }, "labelBound": { "oneOf": [ { "type": "boolean" }, { "type": "number" } ] }, "tickCount": { "$ref": "#/refs/tickCount" }, "format": { "$ref": "#/refs/stringOrSignal" }, "values": { "oneOf": [ { "type": "array" }, { "$ref": "#/refs/signal" } ] }, "offset": { "oneOf": [ { "type": "number" }, { "$ref": "#/refs/numberValue" } ] }, "position": { "oneOf": [ { "type": "number" }, { "$ref": "#/refs/numberValue" } ] }, "titlePadding": { "oneOf": [ { "type": "number" }, { "$ref": "#/refs/numberValue" } ] }, "minExtent": { "oneOf": [ { "type": "number" }, { "$ref": "#/refs/numberValue" } ] }, "maxExtent": { "oneOf": [ { "type": "number" }, { "$ref": "#/refs/numberValue" } ] }, "encode": { "type": "object", "properties": { "axis": { "$ref": "#/defs/guideEncode" }, "ticks": { "$ref": "#/defs/guideEncode" }, "labels": { "$ref": "#/defs/guideEncode" }, "title": { "$ref": "#/defs/guideEncode" }, "grid": { "$ref": "#/defs/guideEncode" }, "domain": { "$ref": "#/defs/guideEncode" } }, "additionalProperties": false } }, "additionalProperties": false, "required": ["orient", "scale"] }, "background": { "type": "string" }, "bind": { "oneOf": [ { "type": "object", "properties": { "input": { "enum": ["checkbox"] }, "element": { "$ref": "#/refs/element" }, "debounce": { "type": "number" } }, "required": ["input"] }, { "type": "object", "properties": { "input": { "enum": ["radio", "select"] }, "element": { "$ref": "#/refs/element" }, "options": { "type": "array" }, "debounce": { "type": "number" } }, "additionalProperties": false, "required": ["input", "options"] }, { "type": "object", "properties": { "input": { "enum": ["range"] }, "element": { "$ref": "#/refs/element" }, "min": { "type": "number" }, "max": { "type": "number" }, "step": { "type": "number" }, "debounce": { "type": "number" } }, "additionalProperties": false, "required": ["input"] }, { "type": "object", "properties": { "input": { "not": { "enum": ["checkbox", "radio", "range", "select"] } }, "element": { "$ref": "#/refs/element" }, "debounce": { "type": "number" } }, "additionalProperties": true } ] }, "data": { "title": "Input data set definition", "type": "object", "allOf": [ { "properties": { "name": { "type": "string" }, "transform": { "type": "array", "items": { "$ref": "#/defs/transform" } }, "on": { "$ref": "#/defs/onTrigger" }, "format": { "type": "object", "anyOf": [ { "properties": { "type": { "enum": ["json"] }, "parse": { "oneOf": [ { "enum": ["auto"] }, { "type": "object", "additionalProperties": { "oneOf": [ { "enum": ["boolean", "number", "date", "string"] }, { "type": "string", "pattern": "^(date|utc):.*$" } ] } } ] }, "property": { "type": "string" }, "copy": { "type": "boolean" } }, "additionalProperties": false }, { "properties": { "type": { "enum": ["csv", "tsv"] }, "parse": { "oneOf": [ { "enum": ["auto"] }, { "type": "object", "additionalProperties": { "oneOf": [ { "enum": ["boolean", "number", "date", "string"] }, { "type": "string", "pattern": "^(date|utc):.*$" } ] } } ] } }, "additionalProperties": false }, { "properties": { "type": { "enum": ["dsv"] }, "delimiter": { "type": "string" }, "parse": { "oneOf": [ { "enum": ["auto"] }, { "type": "object", "additionalProperties": { "oneOf": [ { "enum": ["boolean", "number", "date", "string"] }, { "type": "string", "pattern": "^(date|utc):.*$" } ] } } ] } }, "additionalProperties": false }, { "oneOf": [ { "properties": { "type": { "enum": ["topojson"] }, "feature": { "type": "string" }, "property": { "type": "string" } }, "additionalProperties": false }, { "properties": { "type": { "enum": ["topojson"] }, "mesh": { "type": "string" }, "property": { "type": "string" } }, "additionalProperties": false } ] } ] } }, "required": ["name"] }, { "anyOf": [ { "required": ["name"] }, { "oneOf": [ { "properties": { "source": { "oneOf": [ { "type": "string" }, { "type": "array", "items": { "type": "string" }, "minItems": 1 } ] } }, "required": ["source"] }, { "properties": { "values": { "type": "array" } }, "required": ["values"] }, { "properties": { "url": { "type": "string" } }, "required": ["url"] } ] } ] } ] }, "rule": { "type": "object", "properties": { "test": { "type": "string" } } }, "encodeEntry": { "title": "Mark encode property set", "type": "object", "properties": { "x": { "$ref": "#/refs/numberValue" }, "x2": { "$ref": "#/refs/numberValue" }, "xc": { "$ref": "#/refs/numberValue" }, "width": { "$ref": "#/refs/numberValue" }, "y": { "$ref": "#/refs/numberValue" }, "y2": { "$ref": "#/refs/numberValue" }, "yc": { "$ref": "#/refs/numberValue" }, "height": { "$ref": "#/refs/numberValue" }, "opacity": { "$ref": "#/refs/numberValue" }, "fill": { "$ref": "#/refs/colorValue" }, "fillOpacity": { "$ref": "#/refs/numberValue" }, "stroke": { "$ref": "#/refs/colorValue" }, "strokeWidth": { "$ref": "#/refs/numberValue" }, "strokeOpacity": { "$ref": "#/refs/numberValue" }, "strokeDash": { "$ref": "#/refs/arrayValue" }, "strokeDashOffset": { "$ref": "#/refs/numberValue" }, "cursor": { "$ref": "#/refs/stringValue" }, "clip": { "$ref": "#/refs/booleanValue" }, "size": { "$ref": "#/refs/numberValue" }, "shape": { "anyOf": [ { "type": "string" }, { "$ref": "#/refs/stringValue" } ] }, "path": { "$ref": "#/refs/stringValue" }, "innerRadius": { "$ref": "#/refs/numberValue" }, "outerRadius": { "$ref": "#/refs/numberValue" }, "startAngle": { "$ref": "#/refs/numberValue" }, "endAngle": { "$ref": "#/refs/numberValue" }, "interpolate": { "$ref": "#/refs/stringValue" }, "tension": { "$ref": "#/refs/numberValue" }, "orient": { "oneOf": [ { "type": "array", "items": { "allOf": [ { "$ref": "#/defs/rule" }, { "type": "object", "allOf": [ { "$ref": "#/refs/stringModifiers" }, { "anyOf": [ { "oneOf": [ { "$ref": "#/refs/signal" }, { "properties": { "value": { "enum": ["horizontal", "vertical"] } }, "required": ["value"] }, { "properties": { "field": { "$ref": "#/refs/field" } }, "required": ["field"] }, { "properties": { "range": { "type": ["number", "boolean"] } }, "required": ["range"] } ] }, { "required": ["scale", "value"] }, { "required": ["scale", "band"] }, { "required": ["offset"] } ] } ] } ] } }, { "type": "object", "allOf": [ { "$ref": "#/refs/stringModifiers" }, { "anyOf": [ { "oneOf": [ { "$ref": "#/refs/signal" }, { "properties": { "value": { "enum": ["horizontal", "vertical"] } }, "required": ["value"] }, { "properties": { "field": { "$ref": "#/refs/field" } }, "required": ["field"] }, { "properties": { "range": { "type": ["number", "boolean"] } }, "required": ["range"] } ] }, { "required": ["scale", "value"] }, { "required": ["scale", "band"] }, { "required": ["offset"] } ] } ] } ] }, "url": { "$ref": "#/refs/stringValue" }, "align": { "oneOf": [ { "type": "array", "items": { "allOf": [ { "$ref": "#/defs/rule" }, { "type": "object", "allOf": [ { "$ref": "#/refs/stringModifiers" }, { "anyOf": [ { "oneOf": [ { "$ref": "#/refs/signal" }, { "properties": { "value": { "enum": ["left", "right", "center"] } }, "required": ["value"] }, { "properties": { "field": { "$ref": "#/refs/field" } }, "required": ["field"] }, { "properties": { "range": { "type": ["number", "boolean"] } }, "required": ["range"] } ] }, { "required": ["scale", "value"] }, { "required": ["scale", "band"] }, { "required": ["offset"] } ] } ] } ] } }, { "type": "object", "allOf": [ { "$ref": "#/refs/stringModifiers" }, { "anyOf": [ { "oneOf": [ { "$ref": "#/refs/signal" }, { "properties": { "value": { "enum": ["left", "right", "center"] } }, "required": ["value"] }, { "properties": { "field": { "$ref": "#/refs/field" } }, "required": ["field"] }, { "properties": { "range": { "type": ["number", "boolean"] } }, "required": ["range"] } ] }, { "required": ["scale", "value"] }, { "required": ["scale", "band"] }, { "required": ["offset"] } ] } ] } ] }, "baseline": { "oneOf": [ { "type": "array", "items": { "allOf": [ { "$ref": "#/defs/rule" }, { "type": "object", "allOf": [ { "$ref": "#/refs/stringModifiers" }, { "anyOf": [ { "oneOf": [ { "$ref": "#/refs/signal" }, { "properties": { "value": { "enum": [ "top", "middle", "bottom", "alphabetic" ] } }, "required": ["value"] }, { "properties": { "field": { "$ref": "#/refs/field" } }, "required": ["field"] }, { "properties": { "range": { "type": ["number", "boolean"] } }, "required": ["range"] } ] }, { "required": ["scale", "value"] }, { "required": ["scale", "band"] }, { "required": ["offset"] } ] } ] } ] } }, { "type": "object", "allOf": [ { "$ref": "#/refs/stringModifiers" }, { "anyOf": [ { "oneOf": [ { "$ref": "#/refs/signal" }, { "properties": { "value": { "enum": ["top", "middle", "bottom", "alphabetic"] } }, "required": ["value"] }, { "properties": { "field": { "$ref": "#/refs/field" } }, "required": ["field"] }, { "properties": { "range": { "type": ["number", "boolean"] } }, "required": ["range"] } ] }, { "required": ["scale", "value"] }, { "required": ["scale", "band"] }, { "required": ["offset"] } ] } ] } ] }, "text": { "$ref": "#/refs/stringValue" }, "dir": { "$ref": "#/refs/stringValue" }, "ellipsis": { "$ref": "#/refs/stringValue" }, "limit": { "$ref": "#/refs/numberValue" }, "dx": { "$ref": "#/refs/numberValue" }, "dy": { "$ref": "#/refs/numberValue" }, "radius": { "$ref": "#/refs/numberValue" }, "theta": { "$ref": "#/refs/numberValue" }, "angle": { "$ref": "#/refs/numberValue" }, "font": { "$ref": "#/refs/stringValue" }, "fontSize": { "$ref": "#/refs/numberValue" }, "fontWeight": { "$ref": "#/refs/nullableStringValue" }, "fontStyle": { "$ref": "#/refs/stringValue" } }, "additionalProperties": true }, "encode": { "type": "object", "patternProperties": { "^.+$": { "$ref": "#/defs/encodeEntry" } }, "additionalProperties": false }, "layout": { "oneOf": [ { "type": "object", "properties": { "align": { "oneOf": [ { "oneOf": [ { "enum": ["all", "each", "none"] }, { "$ref": "#/refs/signal" } ] }, { "type": "object", "properties": { "row": { "oneOf": [ { "enum": ["all", "each", "none"] }, { "$ref": "#/refs/signal" } ] }, "column": { "oneOf": [ { "enum": ["all", "each", "none"] }, { "$ref": "#/refs/signal" } ] } }, "additionalProperties": false } ] }, "bounds": { "oneOf": [ { "enum": ["full", "flush"] }, { "$ref": "#/refs/signal" } ] }, "columns": { "$ref": "#/refs/numberOrSignal" }, "padding": { "oneOf": [ { "$ref": "#/refs/numberOrSignal" }, { "type": "object", "properties": { "row": { "$ref": "#/refs/numberOrSignal" }, "column": { "$ref": "#/refs/numberOrSignal" } }, "additionalProperties": false } ] }, "offset": { "oneOf": [ { "$ref": "#/refs/numberOrSignal" }, { "type": "object", "properties": { "rowHeader": { "$ref": "#/refs/numberOrSignal" }, "rowFooter": { "$ref": "#/refs/numberOrSignal" }, "rowTitle": { "$ref": "#/refs/numberOrSignal" }, "columnHeader": { "$ref": "#/refs/numberOrSignal" }, "columnFooter": { "$ref": "#/refs/numberOrSignal" }, "columnTitle": { "$ref": "#/refs/numberOrSignal" } }, "additionalProperties": false } ] }, "headerBand": { "oneOf": [ { "$ref": "#/refs/numberOrSignal" }, { "type": "null" }, { "type": "object", "properties": { "row": { "$ref": "#/refs/numberOrSignal" }, "column": { "$ref": "#/refs/numberOrSignal" } }, "additionalProperties": false } ] }, "footerBand": { "oneOf": [ { "$ref": "#/refs/numberOrSignal" }, { "type": "null" }, { "type": "object", "properties": { "row": { "$ref": "#/refs/numberOrSignal" }, "column": { "$ref": "#/refs/numberOrSignal" } }, "additionalProperties": false } ] }, "titleBand": { "oneOf": [ { "$ref": "#/refs/numberOrSignal" }, { "type": "null" }, { "type": "object", "properties": { "row": { "$ref": "#/refs/numberOrSignal" }, "column": { "$ref": "#/refs/numberOrSignal" } }, "additionalProperties": false } ] } } }, { "$ref": "#/refs/signal" } ] }, "guideEncode": { "type": "object", "properties": { "name": { "type": "string" }, "interactive": { "type": "boolean", "default": false }, "style": { "$ref": "#/refs/style" } }, "patternProperties": { "^(?!interactive|name|style).+$": { "$ref": "#/defs/encodeEntry" } }, "additionalProperties": false }, "legend": { "type": "object", "properties": { "size": { "type": "string" }, "shape": { "type": "string" }, "fill": { "type": "string" }, "stroke": { "type": "string" }, "opacity": { "type": "string" }, "strokeDash": { "type": "string" }, "type": { "enum": ["gradient", "symbol"], "default": "symbol" }, "orient": { "enum": [ "none", "left", "right", "top", "bottom", "top-left", "top-right", "bottom-left", "bottom-right" ], "default": "right" }, "title": { "$ref": "#/refs/stringOrSignal" }, "zindex": { "type": "number" }, "offset": { "oneOf": [ { "type": "number" }, { "$ref": "#/refs/numberValue" } ] }, "padding": { "oneOf": [ { "type": "number" }, { "$ref": "#/refs/numberValue" } ] }, "titlePadding": { "oneOf": [ { "type": "number" }, { "$ref": "#/refs/numberValue" } ] }, "entryPadding": { "oneOf": [ { "type": "number" }, { "$ref": "#/refs/numberValue" } ] }, "tickCount": { "$ref": "#/refs/tickCount" }, "format": { "$ref": "#/refs/stringOrSignal" }, "values": { "oneOf": [ { "type": "array" }, { "$ref": "#/refs/signal" } ] }, "encode": { "type": "object", "properties": { "title": { "$ref": "#/defs/guideEncode" }, "labels": { "$ref": "#/defs/guideEncode" }, "legend": { "$ref": "#/defs/guideEncode" }, "symbols": { "$ref": "#/defs/guideEncode" }, "gradient": { "$ref": "#/defs/guideEncode" } }, "additionalProperties": false } }, "additionalProperties": false, "anyOf": [ { "required": ["size"] }, { "required": ["shape"] }, { "required": ["fill"] }, { "required": ["stroke"] }, { "required": ["opacity"] }, { "required": ["strokeDash"] } ] }, "mark": { "type": "object", "properties": { "type": { "$ref": "#/refs/marktype" }, "role": { "type": "string" }, "name": { "type": "string" }, "style": { "$ref": "#/refs/style" }, "key": { "type": "string" }, "clip": { "type": "boolean" }, "sort": { "$ref": "#/refs/compare" }, "interactive": { "type": "boolean" }, "encode": { "$ref": "#/defs/encode" }, "transform": { "type": "array", "items": { "$ref": "#/defs/transformMark" } }, "on": { "$ref": "#/defs/onMarkTrigger" } }, "required": ["type"] }, "markGroup": { "allOf": [ { "properties": { "type": { "enum": ["group"] } }, "required": ["type"] }, { "$ref": "#/defs/mark" }, { "$ref": "#/defs/scope" }, { "type": "object", "properties": { "from": { "oneOf": [ { "$ref": "#/refs/from" }, { "$ref": "#/refs/facet" } ] } } } ] }, "markVisual": { "allOf": [ { "not": { "properties": { "type": { "enum": ["group"] } } } }, { "$ref": "#/defs/mark" }, { "type": "object", "properties": { "from": { "$ref": "#/refs/from" } } } ] }, "listener": { "oneOf": [ { "$ref": "#/refs/signal" }, { "type": "object", "properties": { "scale": { "type": "string" } }, "required": ["scale"] }, { "$ref": "#/defs/stream" } ] }, "onEvents": { "type": "array", "items": { "allOf": [ { "type": "object", "properties": { "events": { "oneOf": [ { "$ref": "#/refs/selector" }, { "$ref": "#/defs/listener" }, { "type": "array", "minItems": 1, "items": { "$ref": "#/defs/listener" } } ] }, "force": { "type": "boolean" } }, "required": ["events"] }, { "oneOf": [ { "type": "object", "properties": { "encode": { "type": "string" } }, "required": ["encode"] }, { "type": "object", "properties": { "update": { "oneOf": [ { "$ref": "#/refs/exprString" }, { "$ref": "#/refs/expr" }, { "$ref": "#/refs/signal" }, { "type": "object", "properties": { "value": {} }, "required": ["value"] } ] } }, "required": ["update"] } ] } ] } }, "onTrigger": { "type": "array", "items": { "type": "object", "properties": { "trigger": { "$ref": "#/refs/exprString" }, "insert": { "$ref": "#/refs/exprString" }, "remove": { "oneOf": [ { "type": "boolean" }, { "$ref": "#/refs/exprString" } ] }, "toggle": { "$ref": "#/refs/exprString" }, "modify": { "$ref": "#/refs/exprString" }, "values": { "$ref": "#/refs/exprString" } }, "required": ["trigger"] } }, "onMarkTrigger": { "type": "array", "items": { "type": "object", "properties": { "trigger": { "$ref": "#/refs/exprString" }, "modify": { "$ref": "#/refs/exprString" }, "values": { "$ref": "#/refs/exprString" } }, "required": ["trigger"] } }, "padding": { "oneOf": [ { "type": "number" }, { "type": "object", "properties": { "top": { "type": "number" }, "bottom": { "type": "number" }, "left": { "type": "number" }, "right": { "type": "number" } }, "required": ["top", "bottom", "left", "right"], "additionalProperties": false } ] }, "projection": { "type": "object", "properties": { "name": { "type": "string" }, "type": { "$ref": "#/refs/stringOrSignal" }, "clipAngle": { "$ref": "#/refs/numberOrSignal" }, "clipExtent": { "oneOf": [ { "$ref": "#/refs/signal" }, { "type": "array", "items": { "oneOf": [ { "$ref": "#/refs/signal" }, { "type": "array", "items": { "$ref": "#/refs/numberOrSignal" }, "minItems": 2, "maxItems": 2 } ] } } ] }, "scale": { "$ref": "#/refs/numberOrSignal" }, "translate": { "oneOf": [ { "$ref": "#/refs/signal" }, { "type": "array", "items": { "$ref": "#/refs/numberOrSignal" }, "minItems": 2, "maxItems": 2 } ] }, "center": { "oneOf": [ { "$ref": "#/refs/signal" }, { "type": "array", "items": { "$ref": "#/refs/numberOrSignal" }, "minItems": 2, "maxItems": 2 } ] }, "rotate": { "oneOf": [ { "$ref": "#/refs/signal" }, { "type": "array", "items": { "$ref": "#/refs/numberOrSignal" }, "minItems": 2, "maxItems": 3 } ] }, "parallels": { "oneOf": [ { "$ref": "#/refs/signal" }, { "type": "array", "items": { "$ref": "#/refs/numberOrSignal" }, "minItems": 2, "maxItems": 2 } ] }, "precision": { "$ref": "#/refs/numberOrSignal" }, "pointRadius": { "$ref": "#/refs/numberOrSignal" }, "fit": { "oneOf": [ { "type": "object" }, { "type": "array" } ] }, "extent": { "oneOf": [ { "$ref": "#/refs/signal" }, { "type": "array", "items": { "oneOf": [ { "$ref": "#/refs/signal" }, { "type": "array", "items": { "$ref": "#/refs/numberOrSignal" }, "minItems": 2, "maxItems": 2 } ] }, "minItems": 2, "maxItems": 2 } ] }, "size": { "oneOf": [ { "$ref": "#/refs/signal" }, { "type": "array", "items": { "$ref": "#/refs/numberOrSignal" }, "minItems": 2, "maxItems": 2 } ] } }, "additionalProperties": true, "required": ["name", "type"] }, "scale": { "title": "Scale mapping", "type": "object", "allOf": [ { "properties": { "name": { "type": "string" }, "type": { "type": "string", "default": "linear" }, "domain": { "oneOf": [ { "type": "array", "items": { "oneOf": [ { "type": "null" }, { "type": "string" }, { "type": "number" }, { "type": "boolean" }, { "$ref": "#/refs/signal" } ] } }, { "$ref": "#/refs/scaleData" }, { "$ref": "#/refs/signal" } ] }, "domainMin": { "$ref": "#/refs/numberOrSignal" }, "domainMax": { "$ref": "#/refs/numberOrSignal" }, "domainMid": { "$ref": "#/refs/numberOrSignal" }, "domainRaw": { "oneOf": [ { "type": "null" }, { "type": "array" }, { "$ref": "#/refs/signal" } ] }, "reverse": { "$ref": "#/refs/booleanOrSignal" }, "round": { "$ref": "#/refs/booleanOrSignal" } }, "required": ["name"] }, { "oneOf": [ { "properties": { "type": { "enum": ["ordinal"] }, "range": { "oneOf": [ { "enum": [ "width", "height", "symbol", "category", "ordinal", "ramp", "diverging", "heatmap" ] }, { "type": "array", "items": { "oneOf": [ { "type": "null" }, { "type": "boolean" }, { "type": "string" }, { "type": "number" }, { "$ref": "#/refs/signal" } ] } }, { "$ref": "#/refs/signal" }, { "type": "object", "properties": { "scheme": { "$ref": "#/refs/stringOrSignal" }, "count": { "$ref": "#/refs/numberOrSignal" }, "extent": { "oneOf": [ { "type": "array", "items": { "$ref": "#/refs/numberOrSignal" }, "numItems": 2 }, { "$ref": "#/refs/signal" } ] } }, "required": ["scheme"], "additionalProperties": false }, { "$ref": "#/refs/scaleData" } ] } }, "required": ["type"] }, { "properties": { "type": { "enum": ["band"] }, "range": { "oneOf": [ { "enum": [ "width", "height", "symbol", "category", "ordinal", "ramp", "diverging", "heatmap" ] }, { "type": "array", "items": { "oneOf": [ { "type": "null" }, { "type": "boolean" }, { "type": "string" }, { "type": "number" }, { "$ref": "#/refs/signal" } ] } }, { "$ref": "#/refs/signal" }, { "type": "object", "properties": { "step": { "$ref": "#/refs/numberOrSignal" } }, "required": ["step"], "additionalProperties": false } ] }, "padding": { "$ref": "#/refs/numberOrSignal" }, "paddingInner": { "$ref": "#/refs/numberOrSignal" }, "paddingOuter": { "$ref": "#/refs/numberOrSignal" }, "align": { "$ref": "#/refs/numberOrSignal" } }, "required": ["type"] }, { "properties": { "type": { "enum": ["point"] }, "range": { "oneOf": [ { "enum": [ "width", "height", "symbol", "category", "ordinal", "ramp", "diverging", "heatmap" ] }, { "type": "array", "items": { "oneOf": [ { "type": "null" }, { "type": "boolean" }, { "type": "string" }, { "type": "number" }, { "$ref": "#/refs/signal" } ] } }, { "$ref": "#/refs/signal" }, { "type": "object", "properties": { "step": { "$ref": "#/refs/numberOrSignal" } }, "required": ["step"], "additionalProperties": false } ] }, "padding": { "$ref": "#/refs/numberOrSignal" }, "paddingOuter": { "$ref": "#/refs/numberOrSignal" }, "align": { "$ref": "#/refs/numberOrSignal" } }, "required": ["type"] }, { "properties": { "type": { "enum": ["sequential"] }, "range": { "oneOf": [ { "enum": [ "width", "height", "symbol", "category", "ordinal", "ramp", "diverging", "heatmap" ] }, { "type": "array", "items": { "oneOf": [ { "type": "null" }, { "type": "boolean" }, { "type": "string" }, { "type": "number" }, { "$ref": "#/refs/signal" } ] } }, { "$ref": "#/refs/signal" }, { "type": "object", "properties": { "scheme": { "$ref": "#/refs/stringOrSignal" }, "count": { "$ref": "#/refs/numberOrSignal" }, "extent": { "oneOf": [ { "type": "array", "items": { "$ref": "#/refs/numberOrSignal" }, "numItems": 2 }, { "$ref": "#/refs/signal" } ] } }, "required": ["scheme"], "additionalProperties": false } ] }, "clamp": { "$ref": "#/refs/booleanOrSignal" } }, "required": ["type", "range"] }, { "properties": { "type": { "enum": ["time", "utc"] }, "range": { "oneOf": [ { "enum": [ "width", "height", "symbol", "category", "ordinal", "ramp", "diverging", "heatmap" ] }, { "type": "array", "items": { "oneOf": [ { "type": "null" }, { "type": "boolean" }, { "type": "string" }, { "type": "number" }, { "$ref": "#/refs/signal" } ] } }, { "$ref": "#/refs/signal" }, { "type": "object", "properties": { "scheme": { "$ref": "#/refs/stringOrSignal" }, "count": { "$ref": "#/refs/numberOrSignal" }, "extent": { "oneOf": [ { "type": "array", "items": { "$ref": "#/refs/numberOrSignal" }, "numItems": 2 }, { "$ref": "#/refs/signal" } ] } }, "required": ["scheme"], "additionalProperties": false } ] }, "clamp": { "$ref": "#/refs/booleanOrSignal" }, "padding": { "type": "number" }, "nice": { "oneOf": [ { "type": "boolean" }, { "type": "string", "enum": [ "millisecond", "second", "minute", "hour", "day", "week", "month", "year" ] }, { "type": "object", "properties": { "interval": { "oneOf": [ { "type": "string", "enum": [ "millisecond", "second", "minute", "hour", "day", "week", "month", "year" ] }, { "$ref": "#/refs/signal" } ] }, "step": { "$ref": "#/refs/numberOrSignal" } }, "required": ["interval"] }, { "$ref": "#/refs/signal" } ] } }, "required": ["type"] }, { "properties": { "type": { "enum": ["identity"] }, "nice": { "$ref": "#/refs/booleanOrSignal" } }, "required": ["type"] }, { "description": "Discretizing scales", "properties": { "type": { "enum": ["quantile", "quantize", "threshold", "bin-ordinal"] }, "range": { "oneOf": [ { "enum": [ "width", "height", "symbol", "category", "ordinal", "ramp", "diverging", "heatmap" ] }, { "type": "array", "items": { "oneOf": [ { "type": "null" }, { "type": "boolean" }, { "type": "string" }, { "type": "number" }, { "$ref": "#/refs/signal" } ] } }, { "$ref": "#/refs/signal" }, { "type": "object", "properties": { "scheme": { "$ref": "#/refs/stringOrSignal" }, "count": { "$ref": "#/refs/numberOrSignal" }, "extent": { "oneOf": [ { "type": "array", "items": { "$ref": "#/refs/numberOrSignal" }, "numItems": 2 }, { "$ref": "#/refs/signal" } ] } }, "required": ["scheme"], "additionalProperties": false } ] }, "nice": { "oneOf": [ { "type": "boolean" }, { "type": "number" }, { "$ref": "#/refs/signal" } ] }, "zero": { "$ref": "#/refs/booleanOrSignal" } }, "required": ["type"] }, { "description": "Default numeric scale", "not": { "properties": { "type": { "enum": [ "ordinal", "band", "point", "quantile", "quantize", "threshold", "sequential", "pow", "log", "time", "utc", "identity", "bin-ordinal", "bin-linear" ] } }, "required": ["type"] }, "properties": { "range": { "oneOf": [ { "enum": [ "width", "height", "symbol", "category", "ordinal", "ramp", "diverging", "heatmap" ] }, { "type": "array", "items": { "oneOf": [ { "type": "null" }, { "type": "boolean" }, { "type": "string" }, { "type": "number" }, { "$ref": "#/refs/signal" } ] } }, { "$ref": "#/refs/signal" }, { "type": "object", "properties": { "scheme": { "$ref": "#/refs/stringOrSignal" }, "count": { "$ref": "#/refs/numberOrSignal" }, "extent": { "oneOf": [ { "type": "array", "items": { "$ref": "#/refs/numberOrSignal" }, "numItems": 2 }, { "$ref": "#/refs/signal" } ] } }, "required": ["scheme"], "additionalProperties": false } ] }, "interpolate": { "$ref": "#/refs/scaleInterpolate" }, "clamp": { "$ref": "#/refs/booleanOrSignal" }, "padding": { "type": "number" }, "nice": { "oneOf": [ { "type": "boolean" }, { "type": "number" }, { "$ref": "#/refs/signal" } ] }, "zero": { "$ref": "#/refs/booleanOrSignal" } } }, { "properties": { "type": { "enum": ["log"] }, "range": { "oneOf": [ { "enum": [ "width", "height", "symbol", "category", "ordinal", "ramp", "diverging", "heatmap" ] }, { "type": "array", "items": { "oneOf": [ { "type": "null" }, { "type": "boolean" }, { "type": "string" }, { "type": "number" }, { "$ref": "#/refs/signal" } ] } }, { "$ref": "#/refs/signal" }, { "type": "object", "properties": { "scheme": { "$ref": "#/refs/stringOrSignal" }, "count": { "$ref": "#/refs/numberOrSignal" }, "extent": { "oneOf": [ { "type": "array", "items": { "$ref": "#/refs/numberOrSignal" }, "numItems": 2 }, { "$ref": "#/refs/signal" } ] } }, "required": ["scheme"], "additionalProperties": false } ] }, "interpolate": { "$ref": "#/refs/scaleInterpolate" }, "base": { "$ref": "#/refs/numberOrSignal" }, "clamp": { "$ref": "#/refs/booleanOrSignal" }, "padding": { "type": "number" }, "nice": { "oneOf": [ { "type": "boolean" }, { "type": "number" }, { "$ref": "#/refs/signal" } ] }, "zero": { "$ref": "#/refs/booleanOrSignal" } }, "required": ["type"] }, { "properties": { "type": { "enum": ["pow"] }, "range": { "oneOf": [ { "enum": [ "width", "height", "symbol", "category", "ordinal", "ramp", "diverging", "heatmap" ] }, { "type": "array", "items": { "oneOf": [ { "type": "null" }, { "type": "boolean" }, { "type": "string" }, { "type": "number" }, { "$ref": "#/refs/signal" } ] } }, { "$ref": "#/refs/signal" }, { "type": "object", "properties": { "scheme": { "$ref": "#/refs/stringOrSignal" }, "count": { "$ref": "#/refs/numberOrSignal" }, "extent": { "oneOf": [ { "type": "array", "items": { "$ref": "#/refs/numberOrSignal" }, "numItems": 2 }, { "$ref": "#/refs/signal" } ] } }, "required": ["scheme"], "additionalProperties": false } ] }, "interpolate": { "$ref": "#/refs/scaleInterpolate" }, "clamp": { "$ref": "#/refs/booleanOrSignal" }, "exponent": { "$ref": "#/refs/numberOrSignal" }, "padding": { "type": "number" }, "nice": { "oneOf": [ { "type": "boolean" }, { "type": "number" }, { "$ref": "#/refs/signal" } ] }, "zero": { "$ref": "#/refs/booleanOrSignal" } }, "required": ["type"] }, { "properties": { "type": { "enum": ["bin-linear"] }, "range": { "oneOf": [ { "enum": [ "width", "height", "symbol", "category", "ordinal", "ramp", "diverging", "heatmap" ] }, { "type": "array", "items": { "oneOf": [ { "type": "null" }, { "type": "boolean" }, { "type": "string" }, { "type": "number" }, { "$ref": "#/refs/signal" } ] } }, { "$ref": "#/refs/signal" }, { "type": "object", "properties": { "scheme": { "$ref": "#/refs/stringOrSignal" }, "count": { "$ref": "#/refs/numberOrSignal" }, "extent": { "oneOf": [ { "type": "array", "items": { "$ref": "#/refs/numberOrSignal" }, "numItems": 2 }, { "$ref": "#/refs/signal" } ] } }, "required": ["scheme"], "additionalProperties": false } ] }, "interpolate": { "$ref": "#/refs/scaleInterpolate" } }, "required": ["type"] } ] } ] }, "scope": { "type": "object", "properties": { "encode": { "$ref": "#/defs/encode" }, "layout": { "$ref": "#/defs/layout" }, "signals": { "type": "array", "items": { "$ref": "#/defs/signal" } }, "data": { "type": "array", "items": { "$ref": "#/defs/data" } }, "scales": { "type": "array", "items": { "$ref": "#/defs/scale" } }, "projections": { "type": "array", "items": { "$ref": "#/defs/projection" } }, "axes": { "type": "array", "items": { "$ref": "#/defs/axis" } }, "legends": { "type": "array", "items": { "$ref": "#/defs/legend" } }, "title": { "$ref": "#/defs/title" }, "marks": { "type": "array", "items": { "oneOf": [ { "$ref": "#/defs/markGroup" }, { "$ref": "#/defs/markVisual" } ] } } } }, "signal": { "oneOf": [ { "$ref": "#/defs/signalPush" }, { "$ref": "#/defs/signalNew" } ] }, "signalName": { "type": "string", "not": { "enum": ["parent", "datum", "event", "item"] } }, "signalNew": { "type": "object", "properties": { "name": { "$ref": "#/defs/signalName" }, "description": { "type": "string" }, "value": {}, "react": { "type": "boolean", "default": true }, "update": { "$ref": "#/refs/exprString" }, "on": { "$ref": "#/defs/onEvents" }, "bind": { "$ref": "#/defs/bind" } }, "additionalProperties": false, "required": ["name"] }, "signalPush": { "type": "object", "properties": { "name": { "$ref": "#/defs/signalName" }, "push": { "enum": ["outer"] }, "description": { "type": "string" }, "on": { "$ref": "#/defs/onEvents" } }, "additionalProperties": false, "required": ["name", "push"] }, "streamParams": { "properties": { "between": { "type": "array", "minItems": 2, "maxItems": 2, "items": { "$ref": "#/defs/stream" } }, "marktype": { "type": "string" }, "markname": { "type": "string" }, "filter": { "oneOf": [ { "$ref": "#/refs/exprString" }, { "type": "array", "minItems": 1, "items": { "$ref": "#/refs/exprString" } } ] }, "throttle": { "type": "number" }, "debounce": { "type": "number" }, "consume": { "type": "boolean" } } }, "streamEvents": { "properties": { "source": { "type": "string" }, "type": { "type": "string" } }, "required": ["type"] }, "stream": { "title": "Input event stream definition", "type": "object", "allOf": [ { "$ref": "#/defs/streamParams" }, { "oneOf": [ { "$ref": "#/defs/streamEvents" }, { "type": "object", "properties": { "stream": { "$ref": "#/defs/stream" } }, "required": ["stream"] }, { "type": "object", "properties": { "merge": { "type": "array", "minItems": 1, "items": { "$ref": "#/defs/stream" } } }, "required": ["merge"] } ] } ] }, "titleEncode": { "type": "object", "patternProperties": { "^(?!interactive|name|style).+$": { "$ref": "#/defs/encodeEntry" } }, "additionalProperties": false }, "title": { "oneOf": [ { "type": "string" }, { "type": "object", "properties": { "name": { "type": "string" }, "orient": { "enum": ["none", "left", "right", "top", "bottom"], "default": "top" }, "anchor": { "enum": ["start", "middle", "end"], "default": "middle" }, "style": { "$ref": "#/refs/style" }, "text": { "$ref": "#/refs/stringOrSignal" }, "zindex": { "type": "number" }, "interactive": { "type": "boolean" }, "offset": { "oneOf": [ { "type": "number" }, { "$ref": "#/refs/numberValue" } ] }, "encode": { "$ref": "#/defs/titleEncode" } }, "required": ["text"], "additionalProperties": false } ] }, "transform": { "oneOf": [ { "$ref": "#/defs/aggregateTransform" }, { "$ref": "#/defs/binTransform" }, { "$ref": "#/defs/collectTransform" }, { "$ref": "#/defs/countpatternTransform" }, { "$ref": "#/defs/crossTransform" }, { "$ref": "#/defs/densityTransform" }, { "$ref": "#/defs/extentTransform" }, { "$ref": "#/defs/filterTransform" }, { "$ref": "#/defs/foldTransform" }, { "$ref": "#/defs/formulaTransform" }, { "$ref": "#/defs/imputeTransform" }, { "$ref": "#/defs/joinaggregateTransform" }, { "$ref": "#/defs/lookupTransform" }, { "$ref": "#/defs/projectTransform" }, { "$ref": "#/defs/sampleTransform" }, { "$ref": "#/defs/sequenceTransform" }, { "$ref": "#/defs/windowTransform" }, { "$ref": "#/defs/identifierTransform" }, { "$ref": "#/defs/linkpathTransform" }, { "$ref": "#/defs/pieTransform" }, { "$ref": "#/defs/stackTransform" }, { "$ref": "#/defs/contourTransform" }, { "$ref": "#/defs/geojsonTransform" }, { "$ref": "#/defs/geopathTransform" }, { "$ref": "#/defs/geopointTransform" }, { "$ref": "#/defs/geoshapeTransform" }, { "$ref": "#/defs/graticuleTransform" }, { "$ref": "#/defs/forceTransform" }, { "$ref": "#/defs/nestTransform" }, { "$ref": "#/defs/packTransform" }, { "$ref": "#/defs/partitionTransform" }, { "$ref": "#/defs/stratifyTransform" }, { "$ref": "#/defs/treeTransform" }, { "$ref": "#/defs/treelinksTransform" }, { "$ref": "#/defs/treemapTransform" }, { "$ref": "#/defs/voronoiTransform" }, { "$ref": "#/defs/wordcloudTransform" }, { "$ref": "#/defs/crossfilterTransform" }, { "$ref": "#/defs/resolvefilterTransform" } ] }, "transformMark": { "oneOf": [ { "$ref": "#/defs/binTransform" }, { "$ref": "#/defs/collectTransform" }, { "$ref": "#/defs/extentTransform" }, { "$ref": "#/defs/formulaTransform" }, { "$ref": "#/defs/joinaggregateTransform" }, { "$ref": "#/defs/lookupTransform" }, { "$ref": "#/defs/windowTransform" }, { "$ref": "#/defs/identifierTransform" }, { "$ref": "#/defs/linkpathTransform" }, { "$ref": "#/defs/pieTransform" }, { "$ref": "#/defs/stackTransform" }, { "$ref": "#/defs/geojsonTransform" }, { "$ref": "#/defs/geopathTransform" }, { "$ref": "#/defs/geopointTransform" }, { "$ref": "#/defs/geoshapeTransform" }, { "$ref": "#/defs/forceTransform" }, { "$ref": "#/defs/packTransform" }, { "$ref": "#/defs/partitionTransform" }, { "$ref": "#/defs/stratifyTransform" }, { "$ref": "#/defs/treeTransform" }, { "$ref": "#/defs/treemapTransform" }, { "$ref": "#/defs/voronoiTransform" }, { "$ref": "#/defs/wordcloudTransform" }, { "$ref": "#/defs/crossfilterTransform" }, { "$ref": "#/defs/resolvefilterTransform" } ] }, "aggregateTransform": { "type": "object", "properties": { "type": { "enum": ["aggregate"] }, "signal": { "type": "string" }, "groupby": { "oneOf": [ { "type": "array", "items": { "oneOf": [ { "$ref": "#/refs/scaleField" }, { "$ref": "#/refs/paramField" }, { "$ref": "#/refs/expr" } ] } }, { "$ref": "#/refs/signal" } ] }, "ops": { "oneOf": [ { "type": "array", "items": { "anyOf": [ { "enum": [ "values", "count", "missing", "valid", "sum", "mean", "average", "variance", "variancep", "stdev", "stdevp", "stderr", "distinct", "ci0", "ci1", "median", "q1", "q3", "argmin", "argmax", "min", "max" ] }, { "$ref": "#/refs/signal" } ] } }, { "$ref": "#/refs/signal" } ] }, "fields": { "oneOf": [ { "type": "array", "items": { "oneOf": [ { "$ref": "#/refs/scaleField" }, { "$ref": "#/refs/paramField" }, { "$ref": "#/refs/expr" }, { "type": "null" } ] } }, { "$ref": "#/refs/signal" } ] }, "as": { "oneOf": [ { "type": "array", "items": { "anyOf": [ { "type": "string" }, { "$ref": "#/refs/signal" }, { "type": "null" } ] } }, { "$ref": "#/refs/signal" } ] }, "drop": { "anyOf": [ { "type": "boolean" }, { "$ref": "#/refs/signal" } ], "default": true }, "cross": { "anyOf": [ { "type": "boolean" }, { "$ref": "#/refs/signal" } ] }, "key": { "oneOf": [ { "$ref": "#/refs/scaleField" }, { "$ref": "#/refs/paramField" }, { "$ref": "#/refs/expr" } ] } }, "additionalProperties": false, "required": ["type"] }, "binTransform": { "type": "object", "properties": { "type": { "enum": ["bin"] }, "signal": { "type": "string" }, "field": { "oneOf": [ { "$ref": "#/refs/scaleField" }, { "$ref": "#/refs/paramField" }, { "$ref": "#/refs/expr" } ] }, "anchor": { "anyOf": [ { "type": "number" }, { "$ref": "#/refs/signal" } ] }, "maxbins": { "anyOf": [ { "type": "number" }, { "$ref": "#/refs/signal" } ], "default": 20 }, "base": { "anyOf": [ { "type": "number" }, { "$ref": "#/refs/signal" } ], "default": 10 }, "divide": { "oneOf": [ { "type": "array", "items": { "anyOf": [ { "type": "number" }, { "$ref": "#/refs/signal" } ] } }, { "$ref": "#/refs/signal" } ], "default": [5, 2] }, "extent": { "oneOf": [ { "type": "array", "items": { "anyOf": [ { "type": "number" }, { "$ref": "#/refs/signal" } ] } }, { "$ref": "#/refs/signal" } ], "maxItems": 2, "minItems": 2 }, "step": { "anyOf": [ { "type": "number" }, { "$ref": "#/refs/signal" } ] }, "steps": { "oneOf": [ { "type": "array", "items": { "anyOf": [ { "type": "number" }, { "$ref": "#/refs/signal" } ] } }, { "$ref": "#/refs/signal" } ] }, "minstep": { "anyOf": [ { "type": "number" }, { "$ref": "#/refs/signal" } ] }, "nice": { "anyOf": [ { "type": "boolean" }, { "$ref": "#/refs/signal" } ], "default": true }, "name": { "anyOf": [ { "type": "string" }, { "$ref": "#/refs/signal" } ] }, "as": { "oneOf": [ { "type": "array", "items": { "anyOf": [ { "type": "string" }, { "$ref": "#/refs/signal" } ] } }, { "$ref": "#/refs/signal" } ], "maxItems": 2, "minItems": 2, "default": ["bin0", "bin1"] } }, "additionalProperties": false, "required": ["type", "field", "extent"] }, "collectTransform": { "type": "object", "properties": { "type": { "enum": ["collect"] }, "signal": { "type": "string" }, "sort": { "$ref": "#/refs/compare" } }, "additionalProperties": false, "required": ["type"] }, "countpatternTransform": { "type": "object", "properties": { "type": { "enum": ["countpattern"] }, "signal": { "type": "string" }, "field": { "oneOf": [ { "$ref": "#/refs/scaleField" }, { "$ref": "#/refs/paramField" }, { "$ref": "#/refs/expr" } ] }, "case": { "anyOf": [ { "enum": ["upper", "lower", "mixed"] }, { "$ref": "#/refs/signal" } ], "default": "mixed" }, "pattern": { "anyOf": [ { "type": "string" }, { "$ref": "#/refs/signal" } ], "default": "[\\w\"]+" }, "stopwords": { "anyOf": [ { "type": "string" }, { "$ref": "#/refs/signal" } ] }, "as": { "oneOf": [ { "type": "array", "items": { "anyOf": [ { "type": "string" }, { "$ref": "#/refs/signal" } ] } }, { "$ref": "#/refs/signal" } ], "maxItems": 2, "minItems": 2, "default": ["text", "count"] } }, "additionalProperties": false, "required": ["type", "field"] }, "crossTransform": { "type": "object", "properties": { "type": { "enum": ["cross"] }, "signal": { "type": "string" }, "filter": { "$ref": "#/refs/exprString" }, "as": { "oneOf": [ { "type": "array", "items": { "anyOf": [ { "type": "string" }, { "$ref": "#/refs/signal" } ] } }, { "$ref": "#/refs/signal" } ], "maxItems": 2, "minItems": 2, "default": ["a", "b"] } }, "additionalProperties": false, "required": ["type"] }, "densityTransform": { "type": "object", "properties": { "type": { "enum": ["density"] }, "signal": { "type": "string" }, "extent": { "oneOf": [ { "type": "array", "items": { "anyOf": [ { "type": "number" }, { "$ref": "#/refs/signal" } ] } }, { "$ref": "#/refs/signal" } ], "maxItems": 2, "minItems": 2 }, "steps": { "anyOf": [ { "type": "number" }, { "$ref": "#/refs/signal" } ], "default": 100 }, "method": { "anyOf": [ { "type": "string" }, { "$ref": "#/refs/signal" } ], "default": "pdf" }, "distribution": { "oneOf": [ { "type": "object", "properties": { "function": { "enum": ["normal"] }, "mean": { "anyOf": [ { "type": "number" }, { "$ref": "#/refs/signal" } ] }, "stdev": { "anyOf": [ { "type": "number" }, { "$ref": "#/refs/signal" } ], "default": 1 } }, "additionalProperties": false, "required": ["function"] }, { "type": "object", "properties": { "function": { "enum": ["uniform"] }, "min": { "anyOf": [ { "type": "number" }, { "$ref": "#/refs/signal" } ] }, "max": { "anyOf": [ { "type": "number" }, { "$ref": "#/refs/signal" } ], "default": 1 } }, "additionalProperties": false, "required": ["function"] }, { "type": "object", "properties": { "function": { "enum": ["kde"] }, "field": { "oneOf": [ { "$ref": "#/refs/scaleField" }, { "$ref": "#/refs/paramField" }, { "$ref": "#/refs/expr" } ] }, "from": { "type": "string" }, "bandwidth": { "anyOf": [ { "type": "number" }, { "$ref": "#/refs/signal" } ] } }, "additionalProperties": false, "required": ["function", "field"] }, { "type": "object", "properties": { "function": { "enum": ["mixture"] }, "distributions": { "oneOf": [ { "type": "array", "items": {} }, { "$ref": "#/refs/signal" } ] }, "weights": { "oneOf": [ { "type": "array", "items": { "anyOf": [ { "type": "number" }, { "$ref": "#/refs/signal" } ] } }, { "$ref": "#/refs/signal" } ] } }, "additionalProperties": false, "required": ["function"] } ] }, "as": { "oneOf": [ { "type": "array", "items": { "anyOf": [ { "type": "string" }, { "$ref": "#/refs/signal" } ] } }, { "$ref": "#/refs/signal" } ], "default": ["value", "density"] } }, "additionalProperties": false, "required": ["type"] }, "extentTransform": { "type": "object", "properties": { "type": { "enum": ["extent"] }, "signal": { "type": "string" }, "field": { "oneOf": [ { "$ref": "#/refs/scaleField" }, { "$ref": "#/refs/paramField" }, { "$ref": "#/refs/expr" } ] } }, "additionalProperties": false, "required": ["type", "field"] }, "filterTransform": { "type": "object", "properties": { "type": { "enum": ["filter"] }, "signal": { "type": "string" }, "expr": { "$ref": "#/refs/exprString" } }, "additionalProperties": false, "required": ["type", "expr"] }, "foldTransform": { "type": "object", "properties": { "type": { "enum": ["fold"] }, "signal": { "type": "string" }, "fields": { "oneOf": [ { "type": "array", "items": { "oneOf": [ { "$ref": "#/refs/scaleField" }, { "$ref": "#/refs/paramField" }, { "$ref": "#/refs/expr" } ] } }, { "$ref": "#/refs/signal" } ] }, "as": { "oneOf": [ { "type": "array", "items": { "anyOf": [ { "type": "string" }, { "$ref": "#/refs/signal" } ] } }, { "$ref": "#/refs/signal" } ], "maxItems": 2, "minItems": 2, "default": ["key", "value"] } }, "additionalProperties": false, "required": ["type", "fields"] }, "formulaTransform": { "type": "object", "properties": { "type": { "enum": ["formula"] }, "signal": { "type": "string" }, "expr": { "$ref": "#/refs/exprString" }, "as": { "anyOf": [ { "type": "string" }, { "$ref": "#/refs/signal" } ] }, "initonly": { "anyOf": [ { "type": "boolean" }, { "$ref": "#/refs/signal" } ] } }, "additionalProperties": false, "required": ["type", "expr", "as"] }, "imputeTransform": { "type": "object", "properties": { "type": { "enum": ["impute"] }, "signal": { "type": "string" }, "field": { "oneOf": [ { "$ref": "#/refs/scaleField" }, { "$ref": "#/refs/paramField" }, { "$ref": "#/refs/expr" } ] }, "key": { "oneOf": [ { "$ref": "#/refs/scaleField" }, { "$ref": "#/refs/paramField" }, { "$ref": "#/refs/expr" } ] }, "keyvals": { "oneOf": [ { "type": "array", "items": {} }, { "$ref": "#/refs/signal" } ] }, "groupby": { "oneOf": [ { "type": "array", "items": { "oneOf": [ { "$ref": "#/refs/scaleField" }, { "$ref": "#/refs/paramField" }, { "$ref": "#/refs/expr" } ] } }, { "$ref": "#/refs/signal" } ] }, "method": { "anyOf": [ { "enum": ["value", "mean", "median", "max", "min"] }, { "$ref": "#/refs/signal" } ], "default": "value" }, "value": {} }, "additionalProperties": false, "required": ["type", "field", "key"] }, "joinaggregateTransform": { "type": "object", "properties": { "type": { "enum": ["joinaggregate"] }, "signal": { "type": "string" }, "groupby": { "oneOf": [ { "type": "array", "items": { "oneOf": [ { "$ref": "#/refs/scaleField" }, { "$ref": "#/refs/paramField" }, { "$ref": "#/refs/expr" } ] } }, { "$ref": "#/refs/signal" } ] }, "fields": { "oneOf": [ { "type": "array", "items": { "oneOf": [ { "$ref": "#/refs/scaleField" }, { "$ref": "#/refs/paramField" }, { "$ref": "#/refs/expr" }, { "type": "null" } ] } }, { "$ref": "#/refs/signal" } ] }, "ops": { "oneOf": [ { "type": "array", "items": { "anyOf": [ { "enum": [ "values", "count", "missing", "valid", "sum", "mean", "average", "variance", "variancep", "stdev", "stdevp", "stderr", "distinct", "ci0", "ci1", "median", "q1", "q3", "argmin", "argmax", "min", "max" ] }, { "$ref": "#/refs/signal" } ] } }, { "$ref": "#/refs/signal" } ] }, "as": { "oneOf": [ { "type": "array", "items": { "anyOf": [ { "type": "string" }, { "$ref": "#/refs/signal" }, { "type": "null" } ] } }, { "$ref": "#/refs/signal" } ] }, "key": { "oneOf": [ { "$ref": "#/refs/scaleField" }, { "$ref": "#/refs/paramField" }, { "$ref": "#/refs/expr" } ] } }, "additionalProperties": false, "required": ["type"] }, "lookupTransform": { "type": "object", "properties": { "type": { "enum": ["lookup"] }, "signal": { "type": "string" }, "from": { "type": "string" }, "key": { "oneOf": [ { "$ref": "#/refs/scaleField" }, { "$ref": "#/refs/paramField" }, { "$ref": "#/refs/expr" } ] }, "values": { "oneOf": [ { "type": "array", "items": { "oneOf": [ { "$ref": "#/refs/scaleField" }, { "$ref": "#/refs/paramField" }, { "$ref": "#/refs/expr" } ] } }, { "$ref": "#/refs/signal" } ] }, "fields": { "oneOf": [ { "type": "array", "items": { "oneOf": [ { "$ref": "#/refs/scaleField" }, { "$ref": "#/refs/paramField" }, { "$ref": "#/refs/expr" } ] } }, { "$ref": "#/refs/signal" } ] }, "as": { "oneOf": [ { "type": "array", "items": { "anyOf": [ { "type": "string" }, { "$ref": "#/refs/signal" } ] } }, { "$ref": "#/refs/signal" } ] }, "default": {} }, "additionalProperties": false, "required": ["type", "from", "key", "fields"] }, "projectTransform": { "type": "object", "properties": { "type": { "enum": ["project"] }, "signal": { "type": "string" }, "fields": { "oneOf": [ { "type": "array", "items": { "oneOf": [ { "$ref": "#/refs/scaleField" }, { "$ref": "#/refs/paramField" }, { "$ref": "#/refs/expr" } ] } }, { "$ref": "#/refs/signal" } ] }, "as": { "oneOf": [ { "type": "array", "items": { "anyOf": [ { "type": "string" }, { "$ref": "#/refs/signal" }, { "type": "null" } ] } }, { "$ref": "#/refs/signal" } ] } }, "additionalProperties": false, "required": ["type"] }, "sampleTransform": { "type": "object", "properties": { "type": { "enum": ["sample"] }, "signal": { "type": "string" }, "size": { "anyOf": [ { "type": "number" }, { "$ref": "#/refs/signal" } ], "default": 1000 } }, "additionalProperties": false, "required": ["type"] }, "sequenceTransform": { "type": "object", "properties": { "type": { "enum": ["sequence"] }, "signal": { "type": "string" }, "start": { "anyOf": [ { "type": "number" }, { "$ref": "#/refs/signal" } ] }, "stop": { "anyOf": [ { "type": "number" }, { "$ref": "#/refs/signal" } ] }, "step": { "anyOf": [ { "type": "number" }, { "$ref": "#/refs/signal" } ], "default": 1 } }, "additionalProperties": false, "required": ["type", "start", "stop"] }, "windowTransform": { "type": "object", "properties": { "type": { "enum": ["window"] }, "signal": { "type": "string" }, "sort": { "$ref": "#/refs/compare" }, "groupby": { "oneOf": [ { "type": "array", "items": { "oneOf": [ { "$ref": "#/refs/scaleField" }, { "$ref": "#/refs/paramField" }, { "$ref": "#/refs/expr" } ] } }, { "$ref": "#/refs/signal" } ] }, "ops": { "oneOf": [ { "type": "array", "items": { "anyOf": [ { "enum": [ "row_number", "rank", "dense_rank", "percent_rank", "cume_dist", "ntile", "lag", "lead", "first_value", "last_value", "nth_value", "values", "count", "missing", "valid", "sum", "mean", "average", "variance", "variancep", "stdev", "stdevp", "stderr", "distinct", "ci0", "ci1", "median", "q1", "q3", "argmin", "argmax", "min", "max" ] }, { "$ref": "#/refs/signal" } ] } }, { "$ref": "#/refs/signal" } ] }, "params": { "oneOf": [ { "type": "array", "items": { "anyOf": [ { "type": "number" }, { "$ref": "#/refs/signal" }, { "type": "null" } ] } }, { "$ref": "#/refs/signal" } ] }, "fields": { "oneOf": [ { "type": "array", "items": { "oneOf": [ { "$ref": "#/refs/scaleField" }, { "$ref": "#/refs/paramField" }, { "$ref": "#/refs/expr" }, { "type": "null" } ] } }, { "$ref": "#/refs/signal" } ] }, "as": { "oneOf": [ { "type": "array", "items": { "anyOf": [ { "type": "string" }, { "$ref": "#/refs/signal" }, { "type": "null" } ] } }, { "$ref": "#/refs/signal" } ] }, "frame": { "oneOf": [ { "type": "array", "items": { "anyOf": [ { "type": "number" }, { "$ref": "#/refs/signal" }, { "type": "null" } ] } }, { "$ref": "#/refs/signal" } ], "maxItems": 2, "minItems": 2, "default": [null, 0] }, "ignorePeers": { "anyOf": [ { "type": "boolean" }, { "$ref": "#/refs/signal" } ] } }, "additionalProperties": false, "required": ["type"] }, "identifierTransform": { "type": "object", "properties": { "type": { "enum": ["identifier"] }, "signal": { "type": "string" }, "as": { "anyOf": [ { "type": "string" }, { "$ref": "#/refs/signal" } ] } }, "additionalProperties": false, "required": ["type", "as"] }, "linkpathTransform": { "type": "object", "properties": { "type": { "enum": ["linkpath"] }, "signal": { "type": "string" }, "sourceX": { "oneOf": [ { "$ref": "#/refs/scaleField" }, { "$ref": "#/refs/paramField" }, { "$ref": "#/refs/expr" } ], "default": "source.x" }, "sourceY": { "oneOf": [ { "$ref": "#/refs/scaleField" }, { "$ref": "#/refs/paramField" }, { "$ref": "#/refs/expr" } ], "default": "source.y" }, "targetX": { "oneOf": [ { "$ref": "#/refs/scaleField" }, { "$ref": "#/refs/paramField" }, { "$ref": "#/refs/expr" } ], "default": "target.x" }, "targetY": { "oneOf": [ { "$ref": "#/refs/scaleField" }, { "$ref": "#/refs/paramField" }, { "$ref": "#/refs/expr" } ], "default": "target.y" }, "orient": { "anyOf": [ { "enum": ["horizontal", "vertical", "radial"] }, { "$ref": "#/refs/signal" } ], "default": "vertical" }, "shape": { "anyOf": [ { "enum": ["line", "arc", "curve", "diagonal", "orthogonal"] }, { "$ref": "#/refs/signal" } ], "default": "line" }, "as": { "anyOf": [ { "type": "string" }, { "$ref": "#/refs/signal" } ], "default": "path" } }, "additionalProperties": false, "required": ["type"] }, "pieTransform": { "type": "object", "properties": { "type": { "enum": ["pie"] }, "signal": { "type": "string" }, "field": { "oneOf": [ { "$ref": "#/refs/scaleField" }, { "$ref": "#/refs/paramField" }, { "$ref": "#/refs/expr" } ] }, "startAngle": { "anyOf": [ { "type": "number" }, { "$ref": "#/refs/signal" } ] }, "endAngle": { "anyOf": [ { "type": "number" }, { "$ref": "#/refs/signal" } ], "default": 6.283185307179586 }, "sort": { "anyOf": [ { "type": "boolean" }, { "$ref": "#/refs/signal" } ] }, "as": { "oneOf": [ { "type": "array", "items": { "anyOf": [ { "type": "string" }, { "$ref": "#/refs/signal" } ] } }, { "$ref": "#/refs/signal" } ], "maxItems": 2, "minItems": 2, "default": ["startAngle", "endAngle"] } }, "additionalProperties": false, "required": ["type"] }, "stackTransform": { "type": "object", "properties": { "type": { "enum": ["stack"] }, "signal": { "type": "string" }, "field": { "oneOf": [ { "$ref": "#/refs/scaleField" }, { "$ref": "#/refs/paramField" }, { "$ref": "#/refs/expr" } ] }, "groupby": { "oneOf": [ { "type": "array", "items": { "oneOf": [ { "$ref": "#/refs/scaleField" }, { "$ref": "#/refs/paramField" }, { "$ref": "#/refs/expr" } ] } }, { "$ref": "#/refs/signal" } ] }, "sort": { "$ref": "#/refs/compare" }, "offset": { "anyOf": [ { "enum": ["zero", "center", "normalize"] }, { "$ref": "#/refs/signal" } ], "default": "zero" }, "as": { "oneOf": [ { "type": "array", "items": { "anyOf": [ { "type": "string" }, { "$ref": "#/refs/signal" } ] } }, { "$ref": "#/refs/signal" } ], "maxItems": 2, "minItems": 2, "default": ["y0", "y1"] } }, "additionalProperties": false, "required": ["type"] }, "contourTransform": { "type": "object", "properties": { "type": { "enum": ["contour"] }, "signal": { "type": "string" }, "size": { "oneOf": [ { "type": "array", "items": { "anyOf": [ { "type": "number" }, { "$ref": "#/refs/signal" } ] } }, { "$ref": "#/refs/signal" } ], "maxItems": 2, "minItems": 2 }, "values": { "oneOf": [ { "type": "array", "items": { "anyOf": [ { "type": "number" }, { "$ref": "#/refs/signal" } ] } }, { "$ref": "#/refs/signal" } ] }, "x": { "oneOf": [ { "$ref": "#/refs/scaleField" }, { "$ref": "#/refs/paramField" }, { "$ref": "#/refs/expr" } ] }, "y": { "oneOf": [ { "$ref": "#/refs/scaleField" }, { "$ref": "#/refs/paramField" }, { "$ref": "#/refs/expr" } ] }, "cellSize": { "anyOf": [ { "type": "number" }, { "$ref": "#/refs/signal" } ] }, "bandwidth": { "anyOf": [ { "type": "number" }, { "$ref": "#/refs/signal" } ] }, "count": { "anyOf": [ { "type": "number" }, { "$ref": "#/refs/signal" } ] }, "nice": { "anyOf": [ { "type": "number" }, { "$ref": "#/refs/signal" } ] }, "thresholds": { "oneOf": [ { "type": "array", "items": { "anyOf": [ { "type": "number" }, { "$ref": "#/refs/signal" } ] } }, { "$ref": "#/refs/signal" } ] } }, "additionalProperties": false, "required": ["type", "size"] }, "geojsonTransform": { "type": "object", "properties": { "type": { "enum": ["geojson"] }, "signal": { "type": "string" }, "fields": { "oneOf": [ { "type": "array", "items": { "oneOf": [ { "$ref": "#/refs/scaleField" }, { "$ref": "#/refs/paramField" }, { "$ref": "#/refs/expr" } ] } }, { "$ref": "#/refs/signal" } ], "maxItems": 2, "minItems": 2 }, "geojson": { "oneOf": [ { "$ref": "#/refs/scaleField" }, { "$ref": "#/refs/paramField" }, { "$ref": "#/refs/expr" } ] } }, "additionalProperties": false, "required": ["type"] }, "geopathTransform": { "type": "object", "properties": { "type": { "enum": ["geopath"] }, "signal": { "type": "string" }, "projection": { "type": "string" }, "field": { "oneOf": [ { "$ref": "#/refs/scaleField" }, { "$ref": "#/refs/paramField" }, { "$ref": "#/refs/expr" } ] }, "as": { "anyOf": [ { "type": "string" }, { "$ref": "#/refs/signal" } ], "default": "path" } }, "additionalProperties": false, "required": ["type"] }, "geopointTransform": { "type": "object", "properties": { "type": { "enum": ["geopoint"] }, "signal": { "type": "string" }, "projection": { "type": "string" }, "fields": { "oneOf": [ { "type": "array", "items": { "oneOf": [ { "$ref": "#/refs/scaleField" }, { "$ref": "#/refs/paramField" }, { "$ref": "#/refs/expr" } ] } }, { "$ref": "#/refs/signal" } ], "maxItems": 2, "minItems": 2 }, "as": { "oneOf": [ { "type": "array", "items": { "anyOf": [ { "type": "string" }, { "$ref": "#/refs/signal" } ] } }, { "$ref": "#/refs/signal" } ], "maxItems": 2, "minItems": 2, "default": ["x", "y"] } }, "additionalProperties": false, "required": ["type", "projection", "fields"] }, "geoshapeTransform": { "type": "object", "properties": { "type": { "enum": ["geoshape"] }, "signal": { "type": "string" }, "projection": { "type": "string" }, "field": { "oneOf": [ { "$ref": "#/refs/scaleField" }, { "$ref": "#/refs/paramField" }, { "$ref": "#/refs/expr" } ], "default": "datum" }, "as": { "anyOf": [ { "type": "string" }, { "$ref": "#/refs/signal" } ], "default": "shape" } }, "additionalProperties": false, "required": ["type"] }, "graticuleTransform": { "type": "object", "properties": { "type": { "enum": ["graticule"] }, "signal": { "type": "string" }, "extent": { "oneOf": [ { "type": "array", "items": {} }, { "$ref": "#/refs/signal" } ], "maxItems": 2, "minItems": 2 }, "extentMajor": { "oneOf": [ { "type": "array", "items": {} }, { "$ref": "#/refs/signal" } ], "maxItems": 2, "minItems": 2 }, "extentMinor": { "oneOf": [ { "type": "array", "items": {} }, { "$ref": "#/refs/signal" } ], "maxItems": 2, "minItems": 2 }, "step": { "oneOf": [ { "type": "array", "items": { "anyOf": [ { "type": "number" }, { "$ref": "#/refs/signal" } ] } }, { "$ref": "#/refs/signal" } ], "maxItems": 2, "minItems": 2 }, "stepMajor": { "oneOf": [ { "type": "array", "items": { "anyOf": [ { "type": "number" }, { "$ref": "#/refs/signal" } ] } }, { "$ref": "#/refs/signal" } ], "maxItems": 2, "minItems": 2, "default": [90, 360] }, "stepMinor": { "oneOf": [ { "type": "array", "items": { "anyOf": [ { "type": "number" }, { "$ref": "#/refs/signal" } ] } }, { "$ref": "#/refs/signal" } ], "maxItems": 2, "minItems": 2, "default": [10, 10] }, "precision": { "anyOf": [ { "type": "number" }, { "$ref": "#/refs/signal" } ], "default": 2.5 } }, "additionalProperties": false, "required": ["type"] }, "forceTransform": { "type": "object", "properties": { "type": { "enum": ["force"] }, "signal": { "type": "string" }, "static": { "anyOf": [ { "type": "boolean" }, { "$ref": "#/refs/signal" } ] }, "restart": { "anyOf": [ { "type": "boolean" }, { "$ref": "#/refs/signal" } ] }, "iterations": { "anyOf": [ { "type": "number" }, { "$ref": "#/refs/signal" } ], "default": 300 }, "alpha": { "anyOf": [ { "type": "number" }, { "$ref": "#/refs/signal" } ], "default": 1 }, "alphaMin": { "anyOf": [ { "type": "number" }, { "$ref": "#/refs/signal" } ], "default": 0.001 }, "alphaTarget": { "anyOf": [ { "type": "number" }, { "$ref": "#/refs/signal" } ] }, "velocityDecay": { "anyOf": [ { "type": "number" }, { "$ref": "#/refs/signal" } ], "default": 0.4 }, "forces": { "type": "array", "items": { "oneOf": [ { "type": "object", "properties": { "force": { "enum": ["center"] }, "x": { "anyOf": [ { "type": "number" }, { "$ref": "#/refs/signal" } ] }, "y": { "anyOf": [ { "type": "number" }, { "$ref": "#/refs/signal" } ] } }, "additionalProperties": false, "required": ["force"] }, { "type": "object", "properties": { "force": { "enum": ["collide"] }, "radius": { "anyOf": [ { "type": "number" }, { "$ref": "#/refs/signal" }, { "$ref": "#/refs/expr" }, { "$ref": "#/refs/paramField" } ] }, "strength": { "anyOf": [ { "type": "number" }, { "$ref": "#/refs/signal" } ], "default": 0.7 }, "iterations": { "anyOf": [ { "type": "number" }, { "$ref": "#/refs/signal" } ], "default": 1 } }, "additionalProperties": false, "required": ["force"] }, { "type": "object", "properties": { "force": { "enum": ["nbody"] }, "strength": { "anyOf": [ { "type": "number" }, { "$ref": "#/refs/signal" } ], "default": -30 }, "theta": { "anyOf": [ { "type": "number" }, { "$ref": "#/refs/signal" } ], "default": 0.9 }, "distanceMin": { "anyOf": [ { "type": "number" }, { "$ref": "#/refs/signal" } ], "default": 1 }, "distanceMax": { "anyOf": [ { "type": "number" }, { "$ref": "#/refs/signal" } ] } }, "additionalProperties": false, "required": ["force"] }, { "type": "object", "properties": { "force": { "enum": ["link"] }, "links": { "type": "string" }, "id": { "oneOf": [ { "$ref": "#/refs/scaleField" }, { "$ref": "#/refs/paramField" }, { "$ref": "#/refs/expr" } ] }, "distance": { "anyOf": [ { "type": "number" }, { "$ref": "#/refs/signal" }, { "$ref": "#/refs/expr" }, { "$ref": "#/refs/paramField" } ], "default": 30 }, "strength": { "anyOf": [ { "type": "number" }, { "$ref": "#/refs/signal" }, { "$ref": "#/refs/expr" }, { "$ref": "#/refs/paramField" } ] }, "iterations": { "anyOf": [ { "type": "number" }, { "$ref": "#/refs/signal" } ], "default": 1 } }, "additionalProperties": false, "required": ["force"] }, { "type": "object", "properties": { "force": { "enum": ["x"] }, "strength": { "anyOf": [ { "type": "number" }, { "$ref": "#/refs/signal" } ], "default": 0.1 }, "x": { "oneOf": [ { "$ref": "#/refs/scaleField" }, { "$ref": "#/refs/paramField" }, { "$ref": "#/refs/expr" } ] } }, "additionalProperties": false, "required": ["force"] }, { "type": "object", "properties": { "force": { "enum": ["y"] }, "strength": { "anyOf": [ { "type": "number" }, { "$ref": "#/refs/signal" } ], "default": 0.1 }, "y": { "oneOf": [ { "$ref": "#/refs/scaleField" }, { "$ref": "#/refs/paramField" }, { "$ref": "#/refs/expr" } ] } }, "additionalProperties": false, "required": ["force"] } ] } }, "as": { "oneOf": [ { "type": "array", "items": { "anyOf": [ { "type": "string" }, { "$ref": "#/refs/signal" } ] } }, { "$ref": "#/refs/signal" } ], "default": ["x", "y", "vx", "vy"] } }, "additionalProperties": false, "required": ["type"] }, "nestTransform": { "type": "object", "properties": { "type": { "enum": ["nest"] }, "signal": { "type": "string" }, "keys": { "oneOf": [ { "type": "array", "items": { "oneOf": [ { "$ref": "#/refs/scaleField" }, { "$ref": "#/refs/paramField" }, { "$ref": "#/refs/expr" } ] } }, { "$ref": "#/refs/signal" } ] }, "key": { "oneOf": [ { "$ref": "#/refs/scaleField" }, { "$ref": "#/refs/paramField" }, { "$ref": "#/refs/expr" } ] }, "generate": { "anyOf": [ { "type": "boolean" }, { "$ref": "#/refs/signal" } ] } }, "additionalProperties": false, "required": ["type"] }, "packTransform": { "type": "object", "properties": { "type": { "enum": ["pack"] }, "signal": { "type": "string" }, "field": { "oneOf": [ { "$ref": "#/refs/scaleField" }, { "$ref": "#/refs/paramField" }, { "$ref": "#/refs/expr" } ] }, "sort": { "$ref": "#/refs/compare" }, "padding": { "anyOf": [ { "type": "number" }, { "$ref": "#/refs/signal" } ] }, "radius": { "oneOf": [ { "$ref": "#/refs/scaleField" }, { "$ref": "#/refs/paramField" }, { "$ref": "#/refs/expr" } ] }, "size": { "oneOf": [ { "type": "array", "items": { "anyOf": [ { "type": "number" }, { "$ref": "#/refs/signal" } ] } }, { "$ref": "#/refs/signal" } ], "maxItems": 2, "minItems": 2 }, "as": { "oneOf": [ { "type": "array", "items": { "anyOf": [ { "type": "string" }, { "$ref": "#/refs/signal" } ] } }, { "$ref": "#/refs/signal" } ], "maxItems": 3, "minItems": 3, "default": ["x", "y", "r", "depth", "children"] } }, "additionalProperties": false, "required": ["type"] }, "partitionTransform": { "type": "object", "properties": { "type": { "enum": ["partition"] }, "signal": { "type": "string" }, "field": { "oneOf": [ { "$ref": "#/refs/scaleField" }, { "$ref": "#/refs/paramField" }, { "$ref": "#/refs/expr" } ] }, "sort": { "$ref": "#/refs/compare" }, "padding": { "anyOf": [ { "type": "number" }, { "$ref": "#/refs/signal" } ] }, "round": { "anyOf": [ { "type": "boolean" }, { "$ref": "#/refs/signal" } ] }, "size": { "oneOf": [ { "type": "array", "items": { "anyOf": [ { "type": "number" }, { "$ref": "#/refs/signal" } ] } }, { "$ref": "#/refs/signal" } ], "maxItems": 2, "minItems": 2 }, "as": { "oneOf": [ { "type": "array", "items": { "anyOf": [ { "type": "string" }, { "$ref": "#/refs/signal" } ] } }, { "$ref": "#/refs/signal" } ], "maxItems": 4, "minItems": 4, "default": ["x0", "y0", "x1", "y1", "depth", "children"] } }, "additionalProperties": false, "required": ["type"] }, "stratifyTransform": { "type": "object", "properties": { "type": { "enum": ["stratify"] }, "signal": { "type": "string" }, "key": { "oneOf": [ { "$ref": "#/refs/scaleField" }, { "$ref": "#/refs/paramField" }, { "$ref": "#/refs/expr" } ] }, "parentKey": { "oneOf": [ { "$ref": "#/refs/scaleField" }, { "$ref": "#/refs/paramField" }, { "$ref": "#/refs/expr" } ] } }, "additionalProperties": false, "required": ["type", "key", "parentKey"] }, "treeTransform": { "type": "object", "properties": { "type": { "enum": ["tree"] }, "signal": { "type": "string" }, "field": { "oneOf": [ { "$ref": "#/refs/scaleField" }, { "$ref": "#/refs/paramField" }, { "$ref": "#/refs/expr" } ] }, "sort": { "$ref": "#/refs/compare" }, "method": { "anyOf": [ { "enum": ["tidy", "cluster"] }, { "$ref": "#/refs/signal" } ], "default": "tidy" }, "size": { "oneOf": [ { "type": "array", "items": { "anyOf": [ { "type": "number" }, { "$ref": "#/refs/signal" } ] } }, { "$ref": "#/refs/signal" } ], "maxItems": 2, "minItems": 2 }, "nodeSize": { "oneOf": [ { "type": "array", "items": { "anyOf": [ { "type": "number" }, { "$ref": "#/refs/signal" } ] } }, { "$ref": "#/refs/signal" } ], "maxItems": 2, "minItems": 2 }, "as": { "oneOf": [ { "type": "array", "items": { "anyOf": [ { "type": "string" }, { "$ref": "#/refs/signal" } ] } }, { "$ref": "#/refs/signal" } ], "maxItems": 4, "minItems": 4, "default": ["x", "y", "depth", "children"] } }, "additionalProperties": false, "required": ["type"] }, "treelinksTransform": { "type": "object", "properties": { "type": { "enum": ["treelinks"] }, "signal": { "type": "string" }, "key": { "oneOf": [ { "$ref": "#/refs/scaleField" }, { "$ref": "#/refs/paramField" }, { "$ref": "#/refs/expr" } ] } }, "additionalProperties": false, "required": ["type"] }, "treemapTransform": { "type": "object", "properties": { "type": { "enum": ["treemap"] }, "signal": { "type": "string" }, "field": { "oneOf": [ { "$ref": "#/refs/scaleField" }, { "$ref": "#/refs/paramField" }, { "$ref": "#/refs/expr" } ] }, "sort": { "$ref": "#/refs/compare" }, "method": { "anyOf": [ { "enum": [ "squarify", "resquarify", "binary", "dice", "slice", "slicedice" ] }, { "$ref": "#/refs/signal" } ], "default": "squarify" }, "padding": { "anyOf": [ { "type": "number" }, { "$ref": "#/refs/signal" } ] }, "paddingInner": { "anyOf": [ { "type": "number" }, { "$ref": "#/refs/signal" } ] }, "paddingOuter": { "anyOf": [ { "type": "number" }, { "$ref": "#/refs/signal" } ] }, "paddingTop": { "anyOf": [ { "type": "number" }, { "$ref": "#/refs/signal" } ] }, "paddingRight": { "anyOf": [ { "type": "number" }, { "$ref": "#/refs/signal" } ] }, "paddingBottom": { "anyOf": [ { "type": "number" }, { "$ref": "#/refs/signal" } ] }, "paddingLeft": { "anyOf": [ { "type": "number" }, { "$ref": "#/refs/signal" } ] }, "ratio": { "anyOf": [ { "type": "number" }, { "$ref": "#/refs/signal" } ], "default": 1.618033988749895 }, "round": { "anyOf": [ { "type": "boolean" }, { "$ref": "#/refs/signal" } ] }, "size": { "oneOf": [ { "type": "array", "items": { "anyOf": [ { "type": "number" }, { "$ref": "#/refs/signal" } ] } }, { "$ref": "#/refs/signal" } ], "maxItems": 2, "minItems": 2 }, "as": { "oneOf": [ { "type": "array", "items": { "anyOf": [ { "type": "string" }, { "$ref": "#/refs/signal" } ] } }, { "$ref": "#/refs/signal" } ], "maxItems": 4, "minItems": 4, "default": ["x0", "y0", "x1", "y1", "depth", "children"] } }, "additionalProperties": false, "required": ["type"] }, "voronoiTransform": { "type": "object", "properties": { "type": { "enum": ["voronoi"] }, "signal": { "type": "string" }, "x": { "oneOf": [ { "$ref": "#/refs/scaleField" }, { "$ref": "#/refs/paramField" }, { "$ref": "#/refs/expr" } ] }, "y": { "oneOf": [ { "$ref": "#/refs/scaleField" }, { "$ref": "#/refs/paramField" }, { "$ref": "#/refs/expr" } ] }, "size": { "oneOf": [ { "type": "array", "items": { "anyOf": [ { "type": "number" }, { "$ref": "#/refs/signal" } ] } }, { "$ref": "#/refs/signal" } ], "maxItems": 2, "minItems": 2 }, "extent": { "oneOf": [ { "type": "array", "items": {} }, { "$ref": "#/refs/signal" } ], "maxItems": 2, "minItems": 2, "default": [ [-100000, -100000], [100000, 100000] ] }, "as": { "anyOf": [ { "type": "string" }, { "$ref": "#/refs/signal" } ], "default": "path" } }, "additionalProperties": false, "required": ["type", "x", "y"] }, "wordcloudTransform": { "type": "object", "properties": { "type": { "enum": ["wordcloud"] }, "signal": { "type": "string" }, "size": { "oneOf": [ { "type": "array", "items": { "anyOf": [ { "type": "number" }, { "$ref": "#/refs/signal" } ] } }, { "$ref": "#/refs/signal" } ], "maxItems": 2, "minItems": 2 }, "font": { "anyOf": [ { "type": "string" }, { "$ref": "#/refs/signal" }, { "$ref": "#/refs/expr" }, { "$ref": "#/refs/paramField" } ], "default": "sans-serif" }, "fontStyle": { "anyOf": [ { "type": "string" }, { "$ref": "#/refs/signal" }, { "$ref": "#/refs/expr" }, { "$ref": "#/refs/paramField" } ], "default": "normal" }, "fontWeight": { "anyOf": [ { "type": "string" }, { "$ref": "#/refs/signal" }, { "$ref": "#/refs/expr" }, { "$ref": "#/refs/paramField" } ], "default": "normal" }, "fontSize": { "anyOf": [ { "type": "number" }, { "$ref": "#/refs/signal" }, { "$ref": "#/refs/expr" }, { "$ref": "#/refs/paramField" } ], "default": 14 }, "fontSizeRange": { "oneOf": [ { "type": "array", "items": { "anyOf": [ { "type": "number" }, { "$ref": "#/refs/signal" } ] } }, { "$ref": "#/refs/signal" }, { "type": "null" } ], "default": [10, 50] }, "rotate": { "anyOf": [ { "type": "number" }, { "$ref": "#/refs/signal" }, { "$ref": "#/refs/expr" }, { "$ref": "#/refs/paramField" } ] }, "text": { "oneOf": [ { "$ref": "#/refs/scaleField" }, { "$ref": "#/refs/paramField" }, { "$ref": "#/refs/expr" } ] }, "spiral": { "anyOf": [ { "type": "string" }, { "$ref": "#/refs/signal" } ] }, "padding": { "anyOf": [ { "type": "number" }, { "$ref": "#/refs/signal" }, { "$ref": "#/refs/expr" }, { "$ref": "#/refs/paramField" } ] }, "as": { "oneOf": [ { "type": "array", "items": { "anyOf": [ { "type": "string" }, { "$ref": "#/refs/signal" } ] } }, { "$ref": "#/refs/signal" } ], "maxItems": 7, "minItems": 7, "default": [ "x", "y", "font", "fontSize", "fontStyle", "fontWeight", "angle" ] } }, "additionalProperties": false, "required": ["type"] }, "crossfilterTransform": { "type": "object", "properties": { "type": { "enum": ["crossfilter"] }, "signal": { "type": "string" }, "fields": { "oneOf": [ { "type": "array", "items": { "oneOf": [ { "$ref": "#/refs/scaleField" }, { "$ref": "#/refs/paramField" }, { "$ref": "#/refs/expr" } ] } }, { "$ref": "#/refs/signal" } ] }, "query": { "oneOf": [ { "type": "array", "items": {} }, { "$ref": "#/refs/signal" } ] } }, "additionalProperties": false, "required": ["type", "fields", "query"] }, "resolvefilterTransform": { "type": "object", "properties": { "type": { "enum": ["resolvefilter"] }, "signal": { "type": "string" }, "ignore": { "anyOf": [ { "type": "number" }, { "$ref": "#/refs/signal" } ] }, "filter": {} }, "additionalProperties": false, "required": ["type", "ignore", "filter"] } }, "id": "https://json.schemastore.org/vega.json", "refs": { "tickCount": { "oneOf": [ { "type": "number" }, { "type": "string", "enum": [ "millisecond", "second", "minute", "hour", "day", "week", "month", "year" ] }, { "type": "object", "properties": { "interval": { "oneOf": [ { "type": "string", "enum": [ "millisecond", "second", "minute", "hour", "day", "week", "month", "year" ] }, { "$ref": "#/refs/signal" } ] }, "step": { "$ref": "#/refs/numberOrSignal" } }, "required": ["interval"] }, { "$ref": "#/refs/signal" } ] }, "element": { "type": "string" }, "paramField": { "type": "object", "properties": { "field": { "type": "string" } }, "additionalProperties": false, "required": ["field"] }, "field": { "title": "FieldRef", "oneOf": [ { "type": "string" }, { "oneOf": [ { "$ref": "#/refs/signal" }, { "type": "object", "properties": { "datum": { "$ref": "#/refs/field" } }, "required": ["datum"], "additionalProperties": false }, { "type": "object", "properties": { "group": { "$ref": "#/refs/field" }, "level": { "type": "number" } }, "required": ["group"], "additionalProperties": false }, { "type": "object", "properties": { "parent": { "$ref": "#/refs/field" }, "level": { "type": "number" } }, "required": ["parent"], "additionalProperties": false } ] } ] }, "scale": { "$ref": "#/refs/field" }, "stringModifiers": { "properties": { "scale": { "$ref": "#/refs/scale" } } }, "numberModifiers": { "properties": { "exponent": { "oneOf": [ { "type": "number" }, { "$ref": "#/refs/numberValue" } ] }, "mult": { "oneOf": [ { "type": "number" }, { "$ref": "#/refs/numberValue" } ] }, "offset": { "oneOf": [ { "type": "number" }, { "$ref": "#/refs/numberValue" } ] }, "round": { "type": "boolean", "default": false }, "scale": { "$ref": "#/refs/scale" }, "band": { "type": ["number", "boolean"] }, "extra": { "type": "boolean" } } }, "value": { "oneOf": [ { "type": "array", "items": { "allOf": [ { "$ref": "#/defs/rule" }, { "type": "object", "allOf": [ { "$ref": "#/refs/stringModifiers" }, { "anyOf": [ { "oneOf": [ { "$ref": "#/refs/signal" }, { "properties": { "value": { "oneOf": [ { "type": {} }, { "type": "null" } ] } }, "required": ["value"] }, { "properties": { "field": { "$ref": "#/refs/field" } }, "required": ["field"] }, { "properties": { "range": { "type": ["number", "boolean"] } }, "required": ["range"] } ] }, { "required": ["scale", "value"] }, { "required": ["scale", "band"] }, { "required": ["offset"] } ] } ] } ] } }, { "type": "object", "allOf": [ { "$ref": "#/refs/stringModifiers" }, { "anyOf": [ { "oneOf": [ { "$ref": "#/refs/signal" }, { "properties": { "value": { "oneOf": [ { "type": {} }, { "type": "null" } ] } }, "required": ["value"] }, { "properties": { "field": { "$ref": "#/refs/field" } }, "required": ["field"] }, { "properties": { "range": { "type": ["number", "boolean"] } }, "required": ["range"] } ] }, { "required": ["scale", "value"] }, { "required": ["scale", "band"] }, { "required": ["offset"] } ] } ] } ] }, "numberValue": { "oneOf": [ { "type": "array", "items": { "allOf": [ { "$ref": "#/defs/rule" }, { "type": "object", "allOf": [ { "$ref": "#/refs/numberModifiers" }, { "anyOf": [ { "oneOf": [ { "$ref": "#/refs/signal" }, { "properties": { "value": { "type": "number" } }, "required": ["value"] }, { "properties": { "field": { "$ref": "#/refs/field" } }, "required": ["field"] }, { "properties": { "range": { "type": ["number", "boolean"] } }, "required": ["range"] } ] }, { "required": ["scale", "value"] }, { "required": ["scale", "band"] }, { "required": ["offset"] } ] } ] } ] } }, { "type": "object", "allOf": [ { "$ref": "#/refs/numberModifiers" }, { "anyOf": [ { "oneOf": [ { "$ref": "#/refs/signal" }, { "properties": { "value": { "type": "number" } }, "required": ["value"] }, { "properties": { "field": { "$ref": "#/refs/field" } }, "required": ["field"] }, { "properties": { "range": { "type": ["number", "boolean"] } }, "required": ["range"] } ] }, { "required": ["scale", "value"] }, { "required": ["scale", "band"] }, { "required": ["offset"] } ] } ] } ] }, "stringValue": { "oneOf": [ { "type": "array", "items": { "allOf": [ { "$ref": "#/defs/rule" }, { "type": "object", "allOf": [ { "$ref": "#/refs/stringModifiers" }, { "anyOf": [ { "oneOf": [ { "$ref": "#/refs/signal" }, { "properties": { "value": { "type": "string" } }, "required": ["value"] }, { "properties": { "field": { "$ref": "#/refs/field" } }, "required": ["field"] }, { "properties": { "range": { "type": ["number", "boolean"] } }, "required": ["range"] } ] }, { "required": ["scale", "value"] }, { "required": ["scale", "band"] }, { "required": ["offset"] } ] } ] } ] } }, { "type": "object", "allOf": [ { "$ref": "#/refs/stringModifiers" }, { "anyOf": [ { "oneOf": [ { "$ref": "#/refs/signal" }, { "properties": { "value": { "type": "string" } }, "required": ["value"] }, { "properties": { "field": { "$ref": "#/refs/field" } }, "required": ["field"] }, { "properties": { "range": { "type": ["number", "boolean"] } }, "required": ["range"] } ] }, { "required": ["scale", "value"] }, { "required": ["scale", "band"] }, { "required": ["offset"] } ] } ] } ] }, "booleanValue": { "oneOf": [ { "type": "array", "items": { "allOf": [ { "$ref": "#/defs/rule" }, { "type": "object", "allOf": [ { "$ref": "#/refs/stringModifiers" }, { "anyOf": [ { "oneOf": [ { "$ref": "#/refs/signal" }, { "properties": { "value": { "type": "boolean" } }, "required": ["value"] }, { "properties": { "field": { "$ref": "#/refs/field" } }, "required": ["field"] }, { "properties": { "range": { "type": ["number", "boolean"] } }, "required": ["range"] } ] }, { "required": ["scale", "value"] }, { "required": ["scale", "band"] }, { "required": ["offset"] } ] } ] } ] } }, { "type": "object", "allOf": [ { "$ref": "#/refs/stringModifiers" }, { "anyOf": [ { "oneOf": [ { "$ref": "#/refs/signal" }, { "properties": { "value": { "type": "boolean" } }, "required": ["value"] }, { "properties": { "field": { "$ref": "#/refs/field" } }, "required": ["field"] }, { "properties": { "range": { "type": ["number", "boolean"] } }, "required": ["range"] } ] }, { "required": ["scale", "value"] }, { "required": ["scale", "band"] }, { "required": ["offset"] } ] } ] } ] }, "arrayValue": { "oneOf": [ { "type": "array", "items": { "allOf": [ { "$ref": "#/defs/rule" }, { "type": "object", "allOf": [ { "$ref": "#/refs/stringModifiers" }, { "anyOf": [ { "oneOf": [ { "$ref": "#/refs/signal" }, { "properties": { "value": { "type": "array" } }, "required": ["value"] }, { "properties": { "field": { "$ref": "#/refs/field" } }, "required": ["field"] }, { "properties": { "range": { "type": ["number", "boolean"] } }, "required": ["range"] } ] }, { "required": ["scale", "value"] }, { "required": ["scale", "band"] }, { "required": ["offset"] } ] } ] } ] } }, { "type": "object", "allOf": [ { "$ref": "#/refs/stringModifiers" }, { "anyOf": [ { "oneOf": [ { "$ref": "#/refs/signal" }, { "properties": { "value": { "type": "array" } }, "required": ["value"] }, { "properties": { "field": { "$ref": "#/refs/field" } }, "required": ["field"] }, { "properties": { "range": { "type": ["number", "boolean"] } }, "required": ["range"] } ] }, { "required": ["scale", "value"] }, { "required": ["scale", "band"] }, { "required": ["offset"] } ] } ] } ] }, "nullableStringValue": { "oneOf": [ { "type": "array", "items": { "allOf": [ { "$ref": "#/defs/rule" }, { "type": "object", "allOf": [ { "$ref": "#/refs/stringModifiers" }, { "anyOf": [ { "oneOf": [ { "$ref": "#/refs/signal" }, { "properties": { "value": { "oneOf": [ { "type": "string" }, { "type": "null" } ] } }, "required": ["value"] }, { "properties": { "field": { "$ref": "#/refs/field" } }, "required": ["field"] }, { "properties": { "range": { "type": ["number", "boolean"] } }, "required": ["range"] } ] }, { "required": ["scale", "value"] }, { "required": ["scale", "band"] }, { "required": ["offset"] } ] } ] } ] } }, { "type": "object", "allOf": [ { "$ref": "#/refs/stringModifiers" }, { "anyOf": [ { "oneOf": [ { "$ref": "#/refs/signal" }, { "properties": { "value": { "oneOf": [ { "type": "string" }, { "type": "null" } ] } }, "required": ["value"] }, { "properties": { "field": { "$ref": "#/refs/field" } }, "required": ["field"] }, { "properties": { "range": { "type": ["number", "boolean"] } }, "required": ["range"] } ] }, { "required": ["scale", "value"] }, { "required": ["scale", "band"] }, { "required": ["offset"] } ] } ] } ] }, "colorRGB": { "type": "object", "properties": { "r": { "$ref": "#/refs/numberValue" }, "g": { "$ref": "#/refs/numberValue" }, "b": { "$ref": "#/refs/numberValue" } }, "required": ["r", "g", "b"] }, "colorHSL": { "type": "object", "properties": { "h": { "$ref": "#/refs/numberValue" }, "s": { "$ref": "#/refs/numberValue" }, "l": { "$ref": "#/refs/numberValue" } }, "required": ["h", "s", "l"] }, "colorLAB": { "type": "object", "properties": { "l": { "$ref": "#/refs/numberValue" }, "a": { "$ref": "#/refs/numberValue" }, "b": { "$ref": "#/refs/numberValue" } }, "required": ["l", "a", "b"] }, "colorHCL": { "type": "object", "properties": { "h": { "$ref": "#/refs/numberValue" }, "c": { "$ref": "#/refs/numberValue" }, "l": { "$ref": "#/refs/numberValue" } }, "required": ["h", "c", "l"] }, "colorValue": { "title": "ColorRef", "oneOf": [ { "$ref": "#/refs/nullableStringValue" }, { "type": "object", "properties": { "gradient": { "$ref": "#/refs/scale" } }, "additionalProperties": false, "required": ["gradient"] }, { "type": "object", "properties": { "color": { "oneOf": [ { "$ref": "#/refs/colorRGB" }, { "$ref": "#/refs/colorHSL" }, { "$ref": "#/refs/colorLAB" }, { "$ref": "#/refs/colorHCL" } ] } }, "additionalProperties": false, "required": ["color"] } ] }, "expr": { "title": "ExpressionRef", "type": "object", "properties": { "expr": { "type": "string" } }, "required": ["expr"] }, "exprString": { "title": "Expression String", "type": "string" }, "compare": { "oneOf": [ { "type": "object", "properties": { "field": { "oneOf": [ { "type": "string" }, { "$ref": "#/refs/signal" } ] }, "order": { "$ref": "#/refs/sortOrder" } } }, { "type": "object", "properties": { "field": { "type": "array", "items": { "anyOf": [ { "type": "string" }, { "$ref": "#/refs/signal" } ] } }, "order": { "type": "array", "items": { "$ref": "#/refs/sortOrder" } } } } ] }, "from": { "type": "object", "properties": { "data": { "type": "string" } }, "additionalProperties": false }, "facet": { "type": "object", "properties": { "data": { "type": "string" }, "facet": { "oneOf": [ { "type": "object", "properties": { "name": { "type": "string" }, "data": { "type": "string" }, "field": { "type": "string" } }, "additionalProperties": false, "required": ["name", "data", "field"] }, { "type": "object", "properties": { "name": { "type": "string" }, "data": { "type": "string" }, "groupby": { "oneOf": [ { "type": "string" }, { "type": "array", "items": { "type": "string" } } ] }, "aggregate": { "type": "object", "properties": { "cross": { "type": "boolean" }, "fields": { "type": "array", "items": { "type": "string" } }, "ops": { "type": "array", "items": { "type": "string" } }, "as": { "type": "array", "items": { "type": "string" } } } } }, "additionalProperties": false, "required": ["name", "data", "groupby"] } ] } }, "additionalProperties": false, "required": ["facet"] }, "style": { "oneOf": [ { "type": "string" }, { "type": "array", "items": { "type": "string" } } ] }, "marktype": { "title": "Mark Type definition", "type": "string" }, "sortOrder": { "oneOf": [ { "enum": ["ascending", "descending"] }, { "$ref": "#/refs/signal" } ] }, "scaleField": { "$ref": "#/refs/stringOrSignal" }, "scaleInterpolate": { "oneOf": [ { "type": "string" }, { "$ref": "#/refs/signal" }, { "type": "object", "properties": { "type": { "$ref": "#/refs/stringOrSignal" }, "gamma": { "$ref": "#/refs/numberOrSignal" } }, "required": ["type"] } ] }, "scaleData": { "oneOf": [ { "type": "object", "properties": { "data": { "type": "string" }, "field": { "$ref": "#/refs/scaleField" }, "sort": { "oneOf": [ { "type": "boolean" }, { "type": "object", "properties": { "field": { "$ref": "#/refs/scaleField" }, "op": { "$ref": "#/refs/scaleField" }, "order": { "$ref": "#/refs/sortOrder" } }, "additionalProperties": false } ] } }, "required": ["data", "field"], "additionalProperties": false }, { "type": "object", "properties": { "data": { "type": "string" }, "fields": { "type": "array", "items": { "$ref": "#/refs/scaleField" }, "minItems": 1 }, "sort": { "oneOf": [ { "type": "boolean" }, { "type": "object", "properties": { "op": { "enum": ["count"] }, "order": { "$ref": "#/refs/sortOrder" } }, "additionalProperties": false } ] } }, "required": ["data", "fields"], "additionalProperties": false }, { "type": "object", "properties": { "fields": { "type": "array", "items": { "oneOf": [ { "type": "object", "properties": { "data": { "type": "string" }, "field": { "$ref": "#/refs/scaleField" } }, "required": ["data", "field"], "additionalProperties": false }, { "type": "array", "items": { "oneOf": [ { "type": "string" }, { "type": "number" }, { "type": "boolean" } ] } }, { "$ref": "#/refs/signal" } ] }, "minItems": 1 }, "sort": { "oneOf": [ { "type": "boolean" }, { "type": "object", "properties": { "op": { "enum": ["count"] }, "order": { "$ref": "#/refs/sortOrder" } }, "additionalProperties": false } ] } }, "required": ["fields"], "additionalProperties": false } ] }, "selector": { "title": "Event Selector String", "type": "string" }, "signal": { "title": "SignalRef", "type": "object", "properties": { "signal": { "type": "string" } }, "required": ["signal"] }, "booleanOrSignal": { "oneOf": [ { "type": "boolean" }, { "$ref": "#/refs/signal" } ] }, "numberOrSignal": { "oneOf": [ { "type": "number" }, { "$ref": "#/refs/signal" } ] }, "stringOrSignal": { "oneOf": [ { "type": "string" }, { "$ref": "#/refs/signal" } ] } }, "title": "Vega 3.0 Visualization Specification Language", "type": "object" }
localazy.json
{ "$schema": "http://json-schema.org/draft-07/schema", "$id": "https://raw.githubusercontent.com/localazy/cli-schema/master/localazy.json", "type": "object", "default": {}, "title": "Localazy CLI schema", "description": "Schema definition for Localazy CLI configuration file.", "required": [], "additionalProperties": false, "properties": { "$schema": { "$id": "#/properties/", "type": "string", "default": "https://raw.githubusercontent.com/localazy/cli-schema/master/localazy.json", "description": "Schema definition for Localazy CLI configuration file.", "title": "Schema" }, "writeKey": { "$id": "#/properties/writeKey", "type": "string", "description": "Your project's write key. It can be found in Settings -> Access keys.", "title": "Write key" }, "readKey": { "$id": "#/properties/readKey", "type": "string", "description": "Your project's read key. It can be found in Settings -> Access keys.", "title": "Read key" }, "branch": { "$id": "#/properties/branch", "type": "string", "description": "The branch to perform the operation on. If not specified, the operation is performed on the project corresponding to write/read key.", "title": "Branch" }, "community": { "$id": "#/properties/community", "type": "object", "description": "Define community settings for sharing your configuration with other users. https://localazy.com/docs/cli/community-sharing", "title": "Community", "properties": { "author": { "$id": "#/properties/community/author", "type": "string", "description": "The name of the author of the script.", "title": "Author" }, "email": { "$id": "#/properties/community/email", "type": "string", "description": "The email of the author of the script. It's not available publicly.", "title": "Email" }, "company": { "$id": "#/properties/community/company", "type": "string", "description": "Company name if applicable.", "title": "Author" }, "website": { "$id": "#/properties/community/website", "type": "string", "description": "Website name if applicable.", "title": "Website" }, "tags": { "$id": "#/properties/community/tags", "type": "array", "description": "A set of tags to help other users find your script. Please tag your technology stack, framework, library, programming language, etc.", "title": "Tags", "items": { "type": "string" } }, "description": { "$id": "#/properties/community/description", "type": "string", "description": "The description of the script. Please describe what the script does and how it works.", "title": "Description" } }, "additionalProperties": false, "patternProperties": { "^\\$.*$": { "type": [ "string", "array", "object", "number", "boolean" ] } } }, "transformations": { "$id": "#/properties/transformations", "type": [ "array", "object" ], "description": "The transformations property allows defining rules for string transformations. Using transformations, you can, e.g., obtain locale code from its file path or build the specific path where to write translated files. https://localazy.com/docs/cli/transformations", "title": "Transformations", "anyOf": [ { "type": "array", "items": { "$ref": "#/definitions/transformations" } }, { "$ref": "#/definitions/transformations" } ] }, "upload": { "$id": "#/properties/upload", "type": "object", "description": "The upload section defines how to collect files that you want to upload to the Localazy platform for localization and what metadata to include. It also defines how to process uploaded data. https://localazy.com/docs/cli/upload-reference", "title": "Upload section", "properties": { "deprecateMissing": { "$id": "#/properties/upload/deprecateMissing", "type": "boolean", "default": false, "description": "Tells the server to deprecate any phrase missing in this upload batch. Deprecated phrases are still available but are not visible to translators.", "title": "Deprecate missing" }, "deprecate": { "$id": "#/properties/upload/deprecate", "type": "string", "default": "none", "description": "Tells the server to deprecate any phrase missing in this upload batch. Deprecated phrases are still available but are not visible to translators.", "title": "Deprecate missing", "enum": [ "file", "project", "none" ] }, "importAsNew": { "$id": "#/properties/upload/importAsNew", "type": "boolean", "default": false, "description": "Tells the server to import new phrases as unverified. Unverified phrases need to go through the review process. This option allows you to check translations using our unique review process if you are not sure of their quality. This option doesn’t apply to the source language.", "title": "Import as new" }, "allowDuplicateKeys": { "$id": "#/properties/upload/allowDuplicateKeys", "type": "boolean", "default": false, "description": "By default, you can have phrases with the same key in different files. For specific situations like using libraries and string overriding, it’s necessary to disable this option. You can find more on this topic in 'Modules, libraries, product flavors' article.", "title": "Allow duplicate keys" }, "skipFailedAutodetection": { "$id": "#/properties/upload/skipFailedAutodetection", "type": "boolean", "default": true, "description": "When set to true files that use auto-detection are skipped if the auto-detection is not possible. When set to false an exception is raised.", "title": "Skip failed autodetection" }, "filterSource": { "$id": "#/properties/upload/filterSource", "type": "boolean", "description": "When set to true, strings that are the same as in the source langauge are not imported. This is important for platforms like iOS where localizable files contain the source phrase where the translation is not available. This option doesn’t apply to the source language.", "title": "Filter source" }, "forceCurrent": { "$id": "#/properties/upload/forceCurrent", "type": "boolean", "default": false, "description": "Tells the server to promote changes in translated files as approved and current translations for phrases that are already translated. If set to false, such changes go to the review process.", "title": "Force current" }, "appVersion": { "$id": "#/properties/upload/appVersion", "type": "number", "default": 0, "description": "Tells the server the version of the app in which the phrases where deprecated. It only makes sense with deprecateMissing switched to true. It allows for automatic versioning of deprecated phrases. This option can be provided on the command-line with -v option.", "title": "App version" }, "type": { "$id": "#/properties/upload/type", "type": "string", "description": "Type of files you are about to upload. You can also define the type separately for each file. For more info about supported file formats check out the documentation.", "title": "File type", "enum": [ "android", "json", "arb", "ios-strings", "ios-plist", "ios-stringsdict", "xliff", "resx", "yaml", "po", "pot", "json5", "hjson", "js", "properties", "ini", "php", "qt-ts", "text", "csv", "neon", "toml", "excel", "ods", "srt" ] }, "folder": { "$id": "#/properties/upload/folder", "type": "string", "description": "The base folder all operations are relative to. It can be relative or absolute path.", "title": "Base folder" }, "features": { "$id": "#/properties/upload/features", "type": [ "string", "array" ], "description": "The list of features (eg. how to parse plurals) to enable for the given type. See the list of supported file formats in documentation for more information. https://localazy.com/docs/cli/upload-reference#supported-file-formats", "title": "Enabled features", "anyOf": [ { "$ref": "#/definitions/features" }, { "type": "array", "items": { "$ref": "#/definitions/features" } } ] }, "keySeparator": { "$id": "#/properties/upload/keySeparator", "type": "string", "default": ".", "description": "The separator used for building structured keys for includeKeys and excludeKeys. For more details: https://localazy.com/docs/cli/excluding-string-keys", "title": "Key separator" }, "includeKeys": { "$id": "#/properties/upload/includeKeys", "type": "array", "description": "A list of rules for determining keys to include. For more details: https://localazy.com/docs/cli/excluding-string-keys", "title": "Included keys", "items": { "type": "string" } }, "excludeKeys": { "$id": "#/properties/upload/excludeKeys", "type": "array", "description": "A list of rules for determining keys to exclude. For more details: https://localazy.com/docs/cli/excluding-string-keys", "title": "Excluded keys", "items": { "type": "string" } }, "files": { "$id": "#/properties/upload/files", "type": [ "string", "array", "object" ], "description": "The files contains a list of rules for collecting files for upload. You can include files by their exact path or by using standard path wildcards ? (single character), * (anything except path separator), ** (anything including path separators). You can control files that you want to upload with exclusion rules and conditions.", "title": "Upload files", "anyOf": [ { "type": "string" }, { "type": "array", "items": { "$ref": "#/definitions/files" } }, { "$ref": "#/definitions/subtype" } ] } }, "additionalProperties": false, "patternProperties": { "^\\$.*$": { "type": [ "string", "array", "object", "number", "boolean" ] } } }, "conversion": { "$id": "#/properties/conversion", "type": "object", "description": "The conversion property describes how to convert localizable files between different formats. https://localazy.com/docs/cli/format-conversions#full-configuration", "title": "Conversion", "properties": { "folder": { "$id": "#/properties/conversion/folder", "type": "string", "description": "The base folder all operations are relative to. It can be relative or absolute path.", "title": "Base folder" }, "excludedLangs": { "$id": "#/properties/conversion/excludedLangs", "type": "array", "description": "The list of languages to exclude from processing.", "title": "Excluded languages", "items": { "type": "string" } }, "actions": { "$id": "#/properties/conversion/actions", "type": [ "array", "object" ], "description": "Define the conversion rules.", "title": "Actions", "anyOf": [ { "type": "array", "items": { "$ref": "#/definitions/actions" } }, { "$ref": "#/definitions/actions" } ] } }, "additionalProperties": false, "patternProperties": { "^\\$.*$": { "type": [ "string", "array", "object", "number", "boolean" ] } } }, "download": { "$id": "#/properties/download", "type": "object", "description": "The download property describes how to process translated files and where to write them. https://localazy.com/docs/cli/download-reference", "title": "Download", "properties": { "includeSourceLang": { "$id": "#/properties/download/includeSourceLang", "type": "boolean", "default": false, "description": "By default, the source language is not downloaded. Set it to true to include source files as well." }, "folder": { "$id": "#/properties/download/folder", "type": "string", "description": "Base folder for the download action. It can be relative or absolute path." }, "metadataFileJson": { "$id": "#/properties/download/metadataFileJson", "type": "string", "description": "Path where JSON language metadata file should be downloaded. https://localazy.com/docs/cli/metadata-file", "title": "JSON metadata file" }, "metadataFileJs": { "$id": "#/properties/download/metadataFileJs", "type": "string", "description": "Path where JavaScript language metadata file should be downloaded. https://localazy.com/docs/cli/metadata-file", "title": "JavaScript metadata file" }, "metadataFileTs": { "$id": "#/properties/download/metadataFileTs", "type": "string", "description": "Path where TypeScript language metadata file should be downloaded. https://localazy.com/docs/cli/metadata-file", "title": "TypeScript metadata file" }, "langAliases": { "$id": "#/properties/download/langAliases", "type": "object", "description": "Maps languages to different ones.", "additionalProperties": true }, "langExpansions": { "$id": "#/properties/download/langExpansions", "type": "object", "description": "Adds additional languages to output; the same file will be saved several time.", "additionalProperties": true }, "excludedLangs": { "$id": "#/properties/download/excludedLangs", "type": [ "array", "string" ], "description": "The list of languages to exclude from processing.", "title": "Excluded languages", "anyOf": [ { "type": "array", "items": { "type": "string" } }, { "type": "string" } ] }, "files": { "$id": "#/properties/download/files", "type": [ "string", "array", "object" ], "description": "The rules to apply to all translated files. It can be either array object or a pattern string.", "title": "Output files", "anyOf": [ { "type": "string" }, { "type": "array", "items": { "$ref": "#/definitions/files_2" } }, { "$ref": "#/definitions/subtype_1" } ] } }, "additionalProperties": false, "patternProperties": { "^\\$.*$": { "type": [ "string", "array", "object", "number", "boolean" ] } } } }, "definitions": { "transformations": { "type": "object", "properties": { "name": { "type": "string", "description": "The name of the newly created variable. It will be accessible as ${name}. https://localazy.com/docs/cli/variables", "title": "Name" }, "source": { "type": "string", "description": "The source of the variable. Usually, it's a string consisting of other variables. https://localazy.com/docs/cli/variables", "title": "Source" }, "operations": { "type": [ "string", "array" ], "description": "The operations to perform on the source string to get the new variable. https://localazy.com/docs/cli/transformations#operations", "title": "Operations", "anyOf": [ { "type": "string" }, { "type": "array", "items": { "type": "string" } } ] } }, "additionalProperties": false, "patternProperties": { "^\\$.*$": { "type": [ "string", "array", "object", "number", "boolean" ] } } }, "features": { "type": "string", "enum": [ "escape_new_lines", "content_as_array", "content_as_object", "requirejs", "multilingual", "filter_untranslated", "array", "array_br", "plural_array", "plural_postfix_dd", "plural_postfix_sd", "plural_postfix_us", "plural_postfix_cc", "plural_postfix_br", "plural_pipeline", "plural_i18next", "plural_object", "plural_icu", "arb_metadata", "arb_locale_lang", "arb_locale_full", "source_is_key", "skip_empty", "add_bom", "parse_array", "parse_plurals", "parse_others", "skip_plurals", "output_entities", "dont_parse_source", "dont_parse_target", "use_project_lang", "use_defined_lang_for_source", "use_defined_lang_for_target", "use_unicode", "parse_plurals_ios", "parse_plurals_icu", "omit_id_for_source_is_key", "decode_html_entities", "store_attrs", "lang_root", "output_mo", "empty_untranslated", "use_key_for_content", "force_key_for_content", "ignore_blank_content", "output_json", "force_quotes", "latin1", "force_escaping", "source_is_content", "prefer_source_as_key", "include_source", "prefer_message_id", "no_header", "delimiter_tab", "delimiter_semicolon", "quote_single", "quote_backslash", "line_rn", "line_nr", "line_n", "line_r", "columns=", "included_langs=", "lang_format=ll-rr#scrp", "lang_format=ll-rr-scrp", "lang_format=ll-scrp-rr", "lang_format=ll-scrp_rr", "lang_format=ll_rr_scrp", "lang_format=ll_scrp_rr", "lang_format=ll+rr+scrp", "lang_format=ll+scrp+rr", "lang_format=locale_name", "lang_format=bcp", "lang_format=android_noscript", "lang_format=android", "encoding=win-1252", "encoding=iso-8859-1", "encoding=auto", "encoding=utf8", "encoding=utf16", "encoding=utf16le", "encoding=utf16be", "encoding=ansi" ] }, "conditions": { "type": [ "string", "array" ], "anyOf": [ { "type": "string" }, { "type": "array", "items": { "type": "string" } } ] }, "subtype": { "type": "object", "properties": { "type": { "type": "string", "description": "Type of files you are about to upload. For more info about supported file formats check out the documentation. https://localazy.com/docs/cli/upload-reference", "title": "File type", "enum": [ "android", "json", "arb", "ios-strings", "ios-plist", "ios-stringsdict", "xliff", "resx", "yaml", "po", "pot", "json5", "hjson", "js", "properties", "ini", "php", "qt-ts", "text", "csv", "neon", "toml", "excel", "ods", "srt" ] }, "features": { "type": [ "string", "array" ], "description": "The list of features (eg. how to parse plurals) to enable for the given type. See the list of supported file formats in documentation for more information. https://localazy.com/docs/cli/upload-reference#supported-file-formats", "title": "Enabled features", "anyOf": [ { "$ref": "#/definitions/features" }, { "type": "array", "items": { "$ref": "#/definitions/features" } } ] }, "lang": { "type": "string", "default": "inherited", "description": "The language of the file being uploaded (format: ll-Scrp-RR). Special default value inherited from the project’s base language.", "title": "Language" }, "group": { "type": "string", "description": "Allows to assign files to groups and run their rules separately.", "title": "Group" }, "buildType": { "type": "string", "description": "The custom build type for the file. See Modules, libraries, flavors for more details. https://localazy.com/docs/cli/modules-libraries-product-flavors#build-type", "title": "Build type" }, "productFlavors": { "type": "string", "description": "The custom product flavors for the file. See Modules, libraries, flavors for more details. https://localazy.com/docs/cli/modules-libraries-product-flavors#product-flavors", "title": "Product flavors" }, "module": { "type": "string", "description": "The module the file belongs to. See Modules, libraries, flavors for more details. https://localazy.com/docs/cli/modules-libraries-product-flavors#module", "title": "Module" }, "library": { "type": "string", "description": "The library the file belongs to. See Modules, libraries, flavors for more details. https://localazy.com/docs/cli/modules-libraries-product-flavors#library", "title": "Library" }, "path": { "type": "string", "description": "The path to be used for upload.", "title": "Path" }, "file": { "type": "string", "description": "The file name to be used for upload.", "title": "File" }, "pattern": { "type": "string", "description": "The pattern to use for collecting files. Standard path wildcards ? (single character), * (anything except path separator), ** (anything including path separators) are supported.", "title": "Collect pattern" }, "excludes": { "type": "array", "description": "The list of patterns used for excluding files. Standard path wildcards ? (single character), * (anything except path separator), ** (anything including path separators) are supported.", "title": "Exclude list", "items": { "type": "string" } }, "conditions": { "type": [ "string", "array" ], "description": "With conditions, you can introduce complex logic for processing files when they are downloaded. See documentation for options. https://localazy.com/docs/cli/conditions", "title": "Conditions", "anyOf": [ { "type": "string" }, { "type": "array", "items": { "$ref": "#/definitions/conditions" } } ] } }, "additionalProperties": false, "patternProperties": { "^\\$.*$": { "type": [ "string", "array", "object", "number", "boolean" ] } } }, "files": { "type": [ "string", "object" ], "anyOf": [ { "type": "string" }, { "$ref": "#/definitions/subtype" } ] }, "actions": { "type": "object", "properties": { "group": { "type": "string", "description": "Allows to assign files to groups and run their rules separately.", "title": "Group" }, "conditions": { "type": [ "string", "array" ], "description": "With conditions, you can introduce complex logic for processing files when they are downloaded. See documentation for options. https://localazy.com/docs/cli/conditions", "title": "Conditions", "anyOf": [ { "type": "string" }, { "type": "array", "items": { "$ref": "#/definitions/conditions" } } ] }, "keySeparator": { "type": "string", "default": ".", "description": "The separator used for building structured keys for includeKeys and excludeKeys. For more details: https://localazy.com/docs/cli/excluding-string-keys", "title": "Key separator" }, "includeKeys": { "type": "array", "description": "A list of rules for determining keys to include. For more details: https://localazy.com/docs/cli/excluding-string-keys", "title": "Included keys", "items": { "type": "string" } }, "excludeKeys": { "type": "array", "description": "A list of rules for determining keys to exclude. For more details: https://localazy.com/docs/cli/excluding-string-keys", "title": "Excluded keys", "items": { "type": "string" } }, "replacements": { "type": "object", "description": "Define rules for text changes and placeholder replacements.", "title": "Replacements", "additionalProperties": true }, "langAliases": { "type": "object", "description": "Maps languages to different ones.", "title": "Language aliases", "additionalProperties": true }, "langExpansions": { "type": "object", "description": "Adds additional languages to output; the same file will be saved several time.", "title": "Language expansions", "additionalProperties": true }, "stop": { "type": "boolean", "default": false, "description": "If true, no more rules are processed for the given file. Only makes sense if more output rules are defined. By default, the first matching rule stops processing for the file.", "title": "Stop processing" }, "changeExtension": { "type": "string", "description": "If defined, change the extension of the output file. Applied to the final output after resolving all variables.", "title": "Change extension" }, "output": { "type": "string", "description": "The pattern for generating output path and file. Use variables to build the pattern. https://localazy.com/docs/cli/variables", "title": "Output pattern" }, "type": { "type": "string", "description": "The type of the conversion to be performed with files. See docs for available types and their parameters. https://localazy.com/docs/cli/format-conversions#available-conversions", "title": "Conversion type", "enum": [ "android", "arb", "csv", "csv-multilingual", "excel", "excel-multilingual", "ini", "ini-multilingual", "ios-strings", "ios-stringsdict", "json", "json-mozilla", "json-multilingual", "mo", "neon", "neon-multilingual", "ods", "ods-multilingual", "php", "php-multilingual", "po", "toml", "toml-multilingual", "yaml", "yaml-multilingual", "yaml-rails" ] }, "arrayType": { "type": "string", "description": "If the type supports more formats for string arrays, you can select the desired one with this parameter.", "title": "Array type", "enum": [ "array", "array_br" ] }, "pluralType": { "type": "string", "description": "If the type supports more formats for plurals, you can select the desired one with this parameter.", "title": "Plural type", "enum": [ "plural_postfix_br", "plural_postfix_sd", "plural_postfix_dd", "plural_postfix_us", "plural_postfix_cc", "plural_i18next", "plural_object", "plural_icu", "plural_array" ] }, "forceArrayType": { "type": "boolean", "default": false, "description": "If the conversion is made between types that support the same format for string arrays, the format is retained unless you explicitly set this parameter to true to force change.", "title": "Force array type" }, "forcePluralType": { "type": "boolean", "default": false, "description": "If the conversion is made between types that support the same format for plurals, the format is retained unless you explicitly set this parameter to true to force change.", "title": "Force plural type" }, "filterStrings": { "type": "boolean", "description": "If the conversion type allows filtering, you can enable this option to filter strings out of the output file.", "title": "Filter strings" }, "filterArrays": { "type": "boolean", "description": "If the conversion type allows filtering, you can enable this option to filter string arrays out of the output file.", "title": "Filter arrays" }, "filterPlurals": { "type": "boolean", "description": "If the conversion type allows filtering, you can enable this option to filter plurals out of the output file.", "title": "Filter plurals" }, "params": { "type": "object", "description": "Some of the conversion types support additional parameters. See documentation for details.", "title": "Parameters", "additionalProperties": true } }, "additionalProperties": false, "patternProperties": { "^\\$.*$": { "type": [ "string", "array", "object", "number", "boolean" ] } } }, "subtype_1": { "type": "object", "properties": { "group": { "type": "string", "description": "Allows to assign files to groups and run their rules separately.", "title": "Group" }, "conditions": { "type": [ "string", "array" ], "description": "With conditions, you can introduce complex logic for processing files when they are downloaded. See documentation for options. https://localazy.com/docs/cli/conditions", "title": "Conditions", "anyOf": [ { "type": "string" }, { "type": "array", "items": { "$ref": "#/definitions/conditions" } } ] }, "stop": { "type": "boolean", "default": false, "description": "If true, no more rules are processed for the given file. Only makes sense if more output rules are defined. By default, the first matching rule stops processing for the file.", "title": "Stop processing" }, "output": { "type": "string", "description": "The pattern for generating output path and file. Use variables to build the pattern.", "title": "Output pattern" } }, "additionalProperties": false, "patternProperties": { "^\\$.*$": { "type": [ "string", "array", "object", "number", "boolean" ] } } }, "files_2": { "type": [ "string", "object" ], "anyOf": [ { "type": "string" }, { "$ref": "#/definitions/subtype_1" } ] } }, "patternProperties": { "^\\$.*$": { "type": [ "string", "array", "object", "number", "boolean" ] } } }
mongodb-atlas-search-index-definition.json
{ "$comment": "https://www.mongodb.com/docs/atlas/atlas-search/index-definitions/#std-label-ref-index-definitions", "$id": "https://json.schemastore.org/mongodb-atlas-search-index-definition.json", "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "definitions": { "CustomAnalyzer": { "type": "object", "additionalProperties": false, "properties": { "name": { "type": "string", "pattern": "^(?!^lucene\\.|builtin\\.|mongodb\\.).*", "description": "Name of the custom analyzer.\nNames must be unique within an index, and may not start with any of the following strings:\n- lucene.\n- builtin.\n- mongodb." }, "charFilters": { "type": "array", "items": { "$ref": "#/definitions/CharFilter" }, "description": "Array containing zero or more character filters." }, "tokenizer": { "$ref": "#/definitions/Tokenizer" }, "tokenFilters": { "type": "array", "items": { "$ref": "#/definitions/TokenFilter" }, "description": "Array containing zero or more token filters." } }, "required": ["name", "tokenizer"], "title": "Analyzer" }, "Tokenizer": { "type": "object", "additionalProperties": false, "properties": { "type": { "type": "string", "enum": [ "edgeGram", "keyword", "nGram", "regexCaptureGroup", "regexSplit", "standard", "uaxUrlEmail", "whitespace" ] } }, "required": ["type"], "title": "Tokenizer", "description": "Tokenizer to use to create tokens." }, "TokenFilter": { "type": "object", "additionalProperties": false, "properties": { "type": { "type": "string", "enum": [ "asciiFolding", "daitchMokotoffSoundex", "edgeGram", "icuFolding", "icuNormalizer", "length", "lowercase", "nGram", "regex", "reverse", "shingle", "snowballStemming", "stopword", "trim" ], "description": "Human-readable label that identifies this token filter type." } }, "required": ["type"], "title": "TokenFilter" }, "CharFilter": { "type": "object", "additionalProperties": false, "properties": { "type": { "type": "string", "enum": ["htmlStrip", "icuNormalize", "mapping", "persian"], "description": "Human-readable label that identifies this character filter type." }, "ignoredTags": { "type": "array", "items": { "type": "string" }, "description": "List that contains the HTML tags to exclude from filtering." } }, "dependencies": { "ignoredTags": { "properties": { "type": { "enum": ["htmlStrip"] } } } }, "required": ["type"], "if": { "properties": { "type": { "const": "mapping" } } }, "then": { "properties": { "mappings": { "type": "object" } }, "required": ["mappings"] }, "title": "CharFilter" }, "Mappings": { "type": "object", "oneOf": [ { "additionalProperties": false, "properties": { "dynamic": { "const": true } } }, { "additionalProperties": false, "properties": { "dynamic": { "type": "boolean", "description": "Enables or disables dynamic mapping of fields for this index.\nIf set to true, Atlas Search recursively indexes all fields and embedded documents in the document except:\nFields of certain data types. To learn more, see BSON Data Types.\nAny fields explicitly excluded by the mappings.fields parameter.\nIf set to false, you must specify individual fields to index using mappings.fields.\nIf omitted, defaults to false." }, "fields": { "type": "object", "patternProperties": { "^.*$": { "oneOf": [ { "$ref": "#/definitions/MappingsField" }, { "type": "array", "items": { "$ref": "#/definitions/MappingsField" } } ] } } } }, "required": ["fields"] } ], "title": "Mappings", "description": "Specifies how to index fields at different paths for this index." }, "MappingsField": { "type": "object", "additionalProperties": false, "properties": { "type": { "type": "string", "enum": [ "autocomplete", "boolean", "date", "dateFacet", "document", "embeddedDocuments", "geo", "number", "numberFacet", "objectId", "string", "stringFacet" ] }, "analyzer": { "type": "string" }, "maxGrams": { "type": "integer" }, "minGrams": { "type": "integer" }, "tokenization": { "type": "string", "enum": ["edgeGram", "rightEdgeGram", "nGram"] }, "foldDiacritics": { "type": "boolean" }, "dynamic": { "type": "boolean" }, "fields": { "type": "object" }, "indexShapes": { "type": "boolean" }, "representation": { "type": "string", "enum": ["int64", "double"] }, "indexIntegers": { "type": "boolean" }, "indexDoubles": { "type": "boolean" }, "searchAnalyzer": { "type": "string" }, "indexOptions": { "type": "string", "enum": ["docs", "freqs", "positions", "offsets"] }, "store": { "type": "boolean" }, "ignoreAbove": { "type": "integer" }, "multi": { "type": "object", "properties": { "type": { "type": "string", "enum": ["string"] }, "analyzer": { "type": "string" } } }, "norms": { "type": "string", "enum": ["include", "omit"] } }, "dependencies": { "analyzer": { "properties": { "type": { "enum": ["autocomplete", "string"] } } }, "maxGrams": { "properties": { "type": { "enum": ["autocomplete"] } } }, "minGrams": { "properties": { "type": { "enum": ["autocomplete"] } } }, "tokenization": { "properties": { "type": { "enum": ["autocomplete"] } } }, "foldDiacritics": { "properties": { "type": { "enum": ["autocomplete"] } } }, "dynamic": { "properties": { "type": { "enum": ["document", "embeddedDocuments"] } } }, "fields": { "properties": { "type": { "enum": ["document", "embeddedDocuments"] } } }, "indexShapes": { "properties": { "type": { "enum": ["geo"] } } }, "representation": { "properties": { "type": { "enum": ["number", "numberFacet"] } } }, "indexIntegers": { "properties": { "type": { "enum": ["number", "numberFacet"] } } }, "indexDoubles": { "properties": { "type": { "enum": ["number", "numberFacet"] } } }, "searchAnalyzer": { "properties": { "type": { "enum": ["string"] } } }, "indexOptions": { "properties": { "type": { "enum": ["string"] } } }, "store": { "properties": { "type": { "enum": ["string"] } } }, "ignoreAbove": { "properties": { "type": { "enum": ["string"] } } }, "multi": { "properties": { "type": { "enum": ["string"] } } }, "norms": { "properties": { "type": { "enum": ["string"] } } } } }, "StoredSource": { "type": "object", "anyOf": [ { "additionalProperties": false, "properties": { "include": { "type": "array", "items": { "type": "string" }, "description": "List that contains the field names or dot-separated paths to fields to store.\nIn addition to the specified fields, Atlas Search stores _id also by default." }, "exclude": { "type": "array", "items": { "type": "string" }, "description": "List that contains the field names or dot-separated paths to fields to exclude from being stored.\nIf specified, Atlas Search stores original documents except the fields listed here." } }, "required": ["include"] }, { "additionalProperties": false, "properties": { "include": { "type": "array", "items": { "type": "string" }, "description": "List that contains the field names or dot-separated paths to fields to store.\nIn addition to the specified fields, Atlas Search stores _id also by default." }, "exclude": { "type": "array", "items": { "type": "string" }, "description": "List that contains the field names or dot-separated paths to fields to exclude from being stored.\nIf specified, Atlas Search stores original documents except the fields listed here." } }, "required": ["exclude"] } ], "title": "StoredSource" }, "Synonym": { "type": "object", "additionalProperties": false, "properties": { "name": { "type": "string" }, "analyzer": { "type": "string", "enum": [ "lucene.standard", "lucene.simple", "lucene.whitespace", "lucene.keyword", "lucene.arabic", "lucene.armenian", "lucene.basque", "lucene.bengali", "lucene.brazilian", "lucene.bulgarian", "lucene.catalan", "lucene.chinese", "lucene.cjk", "lucene.czech", "lucene.danish", "lucene.dutch", "lucene.english", "lucene.finnish", "lucene.french", "lucene.galician", "lucene.german", "lucene.greek", "lucene.hindi", "lucene.hungarian", "lucene.indonesian", "lucene.irish", "lucene.italian", "lucene.japanese", "lucene.korean", "lucene.latvian", "lucene.lithuanian", "lucene.morfologik", "lucene.nori", "lucene.norwegian", "lucene.persian", "lucene.portuguese", "lucene.romanian", "lucene.russian", "lucene.smartcn", "lucene.sorani", "lucene.spanish", "lucene.swedish", "lucene.thai", "lucene.turkish", "lucene.ukrainian", "nGram", "edgeGram", "daitchMokotoffSoundex", "shingle" ] }, "source": { "type": "object", "properties": { "collection": { "type": "string" } } } } } }, "properties": { "analyzer": { "type": "string", "description": "Specifies the analyzer to apply to string fields when indexing.\nIf you set this only at the top and do not specify an analyzer for the fields in the index definition, Atlas Search applies this analyzer to all the fields.\nTo use a different analyzer for each field, you must specify a different analyzer for the field.\nIf omitted, defaults to Standard Analyzer." }, "analyzers": { "type": "array", "items": { "$ref": "#/definitions/CustomAnalyzer" }, "description": "Specifies the Custom Analyzers to use in this index." }, "mappings": { "$ref": "#/definitions/Mappings" }, "name": { "type": "string", "description": "Specifies a name for the index. In each namespace, names of all indexes in the namespace must be unique.\nIf omitted, defaults to default." }, "searchAnalyzer": { "type": "string", "description": "Specifies the analyzer to apply to query text before searching with it.\nIf omitted, defaults to Standard Analyzer." }, "storedSource": { "oneOf": [ { "type": "boolean" }, { "$ref": "#/definitions/StoredSource" } ], "description": "Specifies fields in the documents to store for query-time look-ups using the returnedStoredSource option.\nYou can store fields of all BSON Data Types on Atlas Search.\n\nValue can be one of the following:\ntrue, to store all fields\nfalse, to not store any fields\nObject that specifies the fields to include or exclude from storage\n\nIf omitted, defaults to false." }, "synonyms": { "type": "array", "items": { "$ref": "#/definitions/Synonym" }, "description": "Synonym mappings to use in your index." } }, "required": ["mappings"], "title": "JSON schema for MongoDB Atlas Search index definition", "type": "object" }
xs-app.json
{ "$comment": "Based on https://github.wdf.sap.corp/xs2/approuter.js/blob/master/lib/configuration/schemas/xs-app-schema.json", "$id": "http://example.com/xsapp.schema.json", "$schema": "http://json-schema.org/draft-07/schema#", "definitions": { "sourceSchema": { "type": ["string", "object"], "minLength": 1, "format": "regex", "additionalProperties": false, "properties": { "path": { "type": "string", "minLength": 1, "format": "regex" }, "matchCase": { "type": "boolean" } }, "required": ["path"] }, "scopesSchema": { "type": ["string", "array", "object"], "minProperties": 1, "additionalProperties": false, "properties": { "GET": { "$ref": "#/definitions/scopeTemplate" }, "POST": { "$ref": "#/definitions/scopeTemplate" }, "HEAD": { "$ref": "#/definitions/scopeTemplate" }, "PUT": { "$ref": "#/definitions/scopeTemplate" }, "DELETE": { "$ref": "#/definitions/scopeTemplate" }, "TRACE": { "$ref": "#/definitions/scopeTemplate" }, "PATCH": { "$ref": "#/definitions/scopeTemplate" }, "OPTIONS": { "$ref": "#/definitions/scopeTemplate" }, "CONNECT": { "$ref": "#/definitions/scopeTemplate" }, "default": { "$ref": "#/definitions/scopeTemplate" } }, "minLength": 1, "minItems": 1, "items": { "type": "string", "minLength": 1 } }, "scopeTemplate": { "$id": "scopeTemplate", "type": ["string", "array"], "minLength": 1, "minItems": 1, "items": { "type": "string", "minLength": 1 } } }, "description": "Application Router Configuration Schema", "properties": { "welcomeFile": { "type": "string", "minLength": 1 }, "authenticationMethod": { "type": "string", "enum": ["none", "route"] }, "sessionTimeout": { "type": "integer", "minimum": 1 }, "pluginMetadataEndpoint": { "type": "string", "minLength": 1, "format": "relative-uri" }, "routes": { "type": "array", "items": { "type": "object", "additionalProperties": false, "format": "route-rules", "properties": { "source": { "$ref": "#/definitions/sourceSchema" }, "httpMethods": { "type": "array", "minItems": 1, "items": { "type": "string", "enum": [ "DELETE", "GET", "HEAD", "OPTIONS", "POST", "PUT", "TRACE", "PATCH" ] } }, "target": { "type": "string", "minLength": 1, "format": "relative-uri" }, "destination": { "type": "string", "minLength": 1 }, "localDir": { "type": "string", "minLength": 1 }, "csrfProtection": { "type": "boolean" }, "service": { "type": "string" }, "endpoint": { "type": "string" }, "authenticationType": { "type": "string", "enum": ["xsuaa", "basic", "none"] }, "identityProvider": { "type": "string", "minLength": 1 }, "scope": { "$ref": "#/definitions/scopesSchema" }, "replace": { "type": "object", "required": ["pathSuffixes"], "additionalProperties": false, "properties": { "pathSuffixes": { "type": "array", "items": { "type": "string", "minLength": 1, "format": "relative-uri" } }, "vars": { "type": "array", "items": { "type": "string", "minLength": 1 } }, "services": { "type": "object" } } }, "cacheControl": { "type": "string", "minLength": 1, "format": "valid-header-value" } }, "required": ["source"] } }, "destinations": { "type": "object", "format": "destinations-rules", "additionalProperties": { "type": "object", "additionalProperties": false, "properties": { "logoutPath": { "type": "string", "minLength": 1, "format": "relative-uri" }, "logoutMethod": { "type": "string", "enum": ["PUT", "POST", "GET"] } } } }, "services": { "type": "object", "format": "services-rules", "additionalProperties": { "type": "object", "additionalProperties": false, "properties": { "endpoint": { "type": "string", "minLength": 1 }, "logoutPath": { "type": "string", "minLength": 1, "format": "relative-uri" }, "logoutMethod": { "type": "string", "enum": ["PUT", "POST", "GET"] } } } }, "logout": { "type": "object", "additionalProperties": false, "format": "logout-rules", "properties": { "logoutEndpoint": { "type": "string", "minLength": 1, "format": "relative-uri" }, "logoutPage": { "type": "string", "minLength": 1, "format": "uri" } } }, "login": { "type": "object", "additionalProperties": false, "properties": { "callbackEndpoint": { "type": "string", "minLength": 1, "format": "relative-uri" } }, "required": ["callbackEndpoint"] }, "whitelistService": { "type": "object", "additionalProperties": false, "properties": { "endpoint": { "type": "string", "minLength": 1, "format": "relative-uri" } }, "required": ["endpoint"] }, "compression": { "type": "object", "additionalProperties": false, "properties": { "enabled": { "type": "boolean" }, "minSize": { "type": "integer", "minimum": 1 } } }, "websockets": { "type": "object", "additionalProperties": false, "properties": { "enabled": { "type": "boolean" } }, "required": ["enabled"] }, "errorPage": { "type": "array", "additionalProperties": false, "items": { "type": "object", "required": ["status", "file"], "properties": { "status": { "type": ["integer", "array"], "minimum": 1, "minItems": 1, "uniqueItems": true, "items": { "type": "integer", "minimum": 1 } }, "file": { "type": "string", "minLength": 1, "format": "local-file" } } } } }, "title": "com.sap.xsapp.schema_8.2", "type": "object" }
workspace-schema.json
{ "$schema": "http://json-schema.org/draft-07/schema", "$id": "ng-cli://config/schema.json", "title": "Angular CLI Workspace Configuration", "type": "object", "properties": { "$schema": { "type": "string" }, "version": { "$ref": "#/definitions/fileVersion" }, "cli": { "$ref": "#/definitions/cliOptions" }, "schematics": { "$ref": "#/definitions/schematicOptions" }, "newProjectRoot": { "type": "string", "description": "Path where new projects will be created." }, "projects": { "type": "object", "patternProperties": { "^(?:@[a-zA-Z0-9_-]+/)?[a-zA-Z0-9_-]+$": { "$ref": "#/definitions/project" } }, "additionalProperties": false } }, "additionalProperties": false, "required": ["version"], "definitions": { "cliOptions": { "type": "object", "properties": { "schematicCollections": { "type": "array", "description": "The list of schematic collections to use.", "items": { "type": "string", "uniqueItems": true } }, "packageManager": { "description": "Specify which package manager tool to use.", "type": "string", "enum": ["npm", "cnpm", "yarn", "pnpm"] }, "warnings": { "description": "Control CLI specific console warnings", "type": "object", "properties": { "versionMismatch": { "description": "Show a warning when the global version is newer than the local one.", "type": "boolean" } }, "additionalProperties": false }, "analytics": { "type": ["boolean", "string"], "description": "Share pseudonymous usage data with the Angular Team at Google." }, "cache": { "description": "Control disk cache.", "type": "object", "properties": { "environment": { "description": "Configure in which environment disk cache is enabled.", "type": "string", "enum": ["local", "ci", "all"] }, "enabled": { "description": "Configure whether disk caching is enabled.", "type": "boolean" }, "path": { "description": "Cache base path.", "type": "string" } }, "additionalProperties": false } }, "additionalProperties": false }, "cliGlobalOptions": { "type": "object", "properties": { "schematicCollections": { "type": "array", "description": "The list of schematic collections to use.", "items": { "type": "string", "uniqueItems": true } }, "packageManager": { "description": "Specify which package manager tool to use.", "type": "string", "enum": ["npm", "cnpm", "yarn", "pnpm"] }, "warnings": { "description": "Control CLI specific console warnings", "type": "object", "properties": { "versionMismatch": { "description": "Show a warning when the global version is newer than the local one.", "type": "boolean" } }, "additionalProperties": false }, "analytics": { "type": ["boolean", "string"], "description": "Share pseudonymous usage data with the Angular Team at Google." }, "completion": { "type": "object", "description": "Angular CLI completion settings.", "properties": { "prompted": { "type": "boolean", "description": "Whether the user has been prompted to add completion command prompt." } }, "additionalProperties": false } }, "additionalProperties": false }, "schematicOptions": { "type": "object", "properties": { "@schematics/angular:application": { "$ref": "../../../../schematics/angular/application/schema.json" }, "@schematics/angular:class": { "$ref": "../../../../schematics/angular/class/schema.json" }, "@schematics/angular:component": { "$ref": "../../../../schematics/angular/component/schema.json" }, "@schematics/angular:directive": { "$ref": "../../../../schematics/angular/directive/schema.json" }, "@schematics/angular:enum": { "$ref": "../../../../schematics/angular/enum/schema.json" }, "@schematics/angular:guard": { "$ref": "../../../../schematics/angular/guard/schema.json" }, "@schematics/angular:interceptor": { "$ref": "../../../../schematics/angular/interceptor/schema.json" }, "@schematics/angular:interface": { "$ref": "../../../../schematics/angular/interface/schema.json" }, "@schematics/angular:library": { "$ref": "../../../../schematics/angular/library/schema.json" }, "@schematics/angular:pipe": { "$ref": "../../../../schematics/angular/pipe/schema.json" }, "@schematics/angular:ng-new": { "$ref": "../../../../schematics/angular/ng-new/schema.json" }, "@schematics/angular:resolver": { "$ref": "../../../../schematics/angular/resolver/schema.json" }, "@schematics/angular:service": { "$ref": "../../../../schematics/angular/service/schema.json" }, "@schematics/angular:web-worker": { "$ref": "../../../../schematics/angular/web-worker/schema.json" } }, "additionalProperties": true }, "fileVersion": { "type": "integer", "description": "File format version", "minimum": 1 }, "project": { "type": "object", "properties": { "cli": { "schematicCollections": { "type": "array", "description": "The list of schematic collections to use.", "items": { "type": "string", "uniqueItems": true } } }, "schematics": { "$ref": "#/definitions/schematicOptions" }, "prefix": { "type": "string", "format": "html-selector", "description": "The prefix to apply to generated selectors." }, "root": { "type": "string", "description": "Root of the project files." }, "i18n": { "$ref": "#/definitions/project/definitions/i18n" }, "sourceRoot": { "type": "string", "description": "The root of the source files, assets and index.html file structure." }, "projectType": { "type": "string", "description": "Project type.", "enum": ["application", "library"] }, "architect": { "type": "object", "additionalProperties": { "$ref": "#/definitions/project/definitions/target" } }, "targets": { "type": "object", "additionalProperties": { "$ref": "#/definitions/project/definitions/target" } } }, "required": ["root", "projectType"], "anyOf": [ { "required": ["architect"], "not": { "required": ["targets"] } }, { "required": ["targets"], "not": { "required": ["architect"] } }, { "not": { "required": ["targets", "architect"] } } ], "additionalProperties": false, "patternProperties": { "^[a-z]{1,3}-.*": {} }, "definitions": { "i18n": { "description": "Project i18n options", "type": "object", "properties": { "sourceLocale": { "oneOf": [ { "type": "string", "description": "Specifies the source locale of the application.", "default": "en-US", "$comment": "IETF BCP 47 language tag (simplified)", "pattern": "^[a-zA-Z]{2,3}(-[a-zA-Z]{4})?(-([a-zA-Z]{2}|[0-9]{3}))?(-[a-zA-Z]{5,8})?(-x(-[a-zA-Z0-9]{1,8})+)?$" }, { "type": "object", "description": "Localization options to use for the source locale", "properties": { "code": { "type": "string", "description": "Specifies the locale code of the source locale", "pattern": "^[a-zA-Z]{2,3}(-[a-zA-Z]{4})?(-([a-zA-Z]{2}|[0-9]{3}))?(-[a-zA-Z]{5,8})?(-x(-[a-zA-Z0-9]{1,8})+)?$" }, "baseHref": { "type": "string", "description": "HTML base HREF to use for the locale (defaults to the locale code)" } }, "additionalProperties": false } ] }, "locales": { "type": "object", "additionalProperties": false, "patternProperties": { "^[a-zA-Z]{2,3}(-[a-zA-Z]{4})?(-([a-zA-Z]{2}|[0-9]{3}))?(-[a-zA-Z]{5,8})?(-x(-[a-zA-Z0-9]{1,8})+)?$": { "oneOf": [ { "type": "string", "description": "Localization file to use for i18n" }, { "type": "array", "description": "Localization files to use for i18n", "items": { "type": "string", "uniqueItems": true } }, { "type": "object", "description": "Localization options to use for the locale", "properties": { "translation": { "oneOf": [ { "type": "string", "description": "Localization file to use for i18n" }, { "type": "array", "description": "Localization files to use for i18n", "items": { "type": "string", "uniqueItems": true } } ] }, "baseHref": { "type": "string", "description": "HTML base HREF to use for the locale (defaults to the locale code)" } }, "additionalProperties": false } ] } } } }, "additionalProperties": false }, "target": { "oneOf": [ { "$comment": "Extendable target with custom builder", "type": "object", "properties": { "builder": { "type": "string", "description": "The builder used for this package.", "not": { "enum": [ "@angular-devkit/build-angular:application", "@angular-devkit/build-angular:app-shell", "@angular-devkit/build-angular:browser", "@angular-devkit/build-angular:browser-esbuild", "@angular-devkit/build-angular:dev-server", "@angular-devkit/build-angular:extract-i18n", "@angular-devkit/build-angular:karma", "@angular-devkit/build-angular:jest", "@angular-devkit/build-angular:protractor", "@angular-devkit/build-angular:server", "@angular-devkit/build-angular:ng-packagr" ] } }, "defaultConfiguration": { "type": "string", "description": "A default named configuration to use when a target configuration is not provided." }, "options": { "type": "object" }, "configurations": { "type": "object", "description": "A map of alternative target options.", "additionalProperties": { "type": "object" } } }, "additionalProperties": false, "required": ["builder"] }, { "type": "object", "additionalProperties": false, "properties": { "builder": { "const": "@angular-devkit/build-angular:application" }, "defaultConfiguration": { "type": "string", "description": "A default named configuration to use when a target configuration is not provided." }, "options": { "$ref": "../../../../angular_devkit/build_angular/src/builders/application/schema.json" }, "configurations": { "type": "object", "additionalProperties": { "$ref": "../../../../angular_devkit/build_angular/src/builders/application/schema.json" } } } }, { "type": "object", "additionalProperties": false, "properties": { "builder": { "const": "@angular-devkit/build-angular:app-shell" }, "defaultConfiguration": { "type": "string", "description": "A default named configuration to use when a target configuration is not provided." }, "options": { "$ref": "../../../../angular_devkit/build_angular/src/builders/app-shell/schema.json" }, "configurations": { "type": "object", "additionalProperties": { "$ref": "../../../../angular_devkit/build_angular/src/builders/app-shell/schema.json" } } } }, { "type": "object", "additionalProperties": false, "properties": { "builder": { "const": "@angular-devkit/build-angular:browser" }, "defaultConfiguration": { "type": "string", "description": "A default named configuration to use when a target configuration is not provided." }, "options": { "$ref": "../../../../angular_devkit/build_angular/src/builders/browser/schema.json" }, "configurations": { "type": "object", "additionalProperties": { "$ref": "../../../../angular_devkit/build_angular/src/builders/browser/schema.json" } } } }, { "type": "object", "additionalProperties": false, "properties": { "builder": { "const": "@angular-devkit/build-angular:browser-esbuild" }, "defaultConfiguration": { "type": "string", "description": "A default named configuration to use when a target configuration is not provided." }, "options": { "$ref": "../../../../angular_devkit/build_angular/src/builders/browser-esbuild/schema.json" }, "configurations": { "type": "object", "additionalProperties": { "$ref": "../../../../angular_devkit/build_angular/src/builders/browser-esbuild/schema.json" } } } }, { "type": "object", "additionalProperties": false, "properties": { "builder": { "const": "@angular-devkit/build-angular:dev-server" }, "defaultConfiguration": { "type": "string", "description": "A default named configuration to use when a target configuration is not provided." }, "options": { "$ref": "../../../../angular_devkit/build_angular/src/builders/dev-server/schema.json" }, "configurations": { "type": "object", "additionalProperties": { "$ref": "../../../../angular_devkit/build_angular/src/builders/dev-server/schema.json" } } } }, { "type": "object", "additionalProperties": false, "properties": { "builder": { "const": "@angular-devkit/build-angular:extract-i18n" }, "defaultConfiguration": { "type": "string", "description": "A default named configuration to use when a target configuration is not provided." }, "options": { "$ref": "../../../../angular_devkit/build_angular/src/builders/extract-i18n/schema.json" }, "configurations": { "type": "object", "additionalProperties": { "$ref": "../../../../angular_devkit/build_angular/src/builders/extract-i18n/schema.json" } } } }, { "type": "object", "additionalProperties": false, "properties": { "builder": { "const": "@angular-devkit/build-angular:karma" }, "defaultConfiguration": { "type": "string", "description": "A default named configuration to use when a target configuration is not provided." }, "options": { "$ref": "../../../../angular_devkit/build_angular/src/builders/karma/schema.json" }, "configurations": { "type": "object", "additionalProperties": { "$ref": "../../../../angular_devkit/build_angular/src/builders/karma/schema.json" } } } }, { "type": "object", "additionalProperties": false, "properties": { "builder": { "const": "@angular-devkit/build-angular:jest" }, "defaultConfiguration": { "type": "string", "description": "A default named configuration to use when a target configuration is not provided." }, "options": { "$ref": "../../../../angular_devkit/build_angular/src/builders/jest/schema.json" }, "configurations": { "type": "object", "additionalProperties": { "$ref": "../../../../angular_devkit/build_angular/src/builders/jest/schema.json" } } } }, { "type": "object", "additionalProperties": false, "properties": { "builder": { "const": "@angular-devkit/build-angular:protractor" }, "defaultConfiguration": { "type": "string", "description": "A default named configuration to use when a target configuration is not provided." }, "options": { "$ref": "../../../../angular_devkit/build_angular/src/builders/protractor/schema.json" }, "configurations": { "type": "object", "additionalProperties": { "$ref": "../../../../angular_devkit/build_angular/src/builders/protractor/schema.json" } } } }, { "type": "object", "additionalProperties": false, "properties": { "builder": { "const": "@angular-devkit/build-angular:server" }, "defaultConfiguration": { "type": "string", "description": "A default named configuration to use when a target configuration is not provided." }, "options": { "$ref": "../../../../angular_devkit/build_angular/src/builders/server/schema.json" }, "configurations": { "type": "object", "additionalProperties": { "$ref": "../../../../angular_devkit/build_angular/src/builders/server/schema.json" } } } }, { "type": "object", "additionalProperties": false, "properties": { "builder": { "const": "@angular-devkit/build-angular:ng-packagr" }, "defaultConfiguration": { "type": "string", "description": "A default named configuration to use when a target configuration is not provided." }, "options": { "$ref": "../../../../angular_devkit/build_angular/src/builders/ng-packagr/schema.json" }, "configurations": { "type": "object", "additionalProperties": { "$ref": "../../../../angular_devkit/build_angular/src/builders/ng-packagr/schema.json" } } } } ] } } }, "global": { "type": "object", "properties": { "$schema": { "type": "string" }, "version": { "$ref": "#/definitions/fileVersion" }, "cli": { "$ref": "#/definitions/cliGlobalOptions" }, "schematics": { "$ref": "#/definitions/schematicOptions" } }, "required": ["version"] } } }
paper-plugin.json
{ "$id": "https://json.schemastore.org/paper-plugin", "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": true, "definitions": { "plugin-name": { "type": "string", "pattern": "^[A-Za-z0-9_\\.-]+$" }, "plugin-class": { "type": "string", "pattern": "^(?!io\\.papermc\\.)([a-zA-Z_$][a-zA-Z\\d_$]*\\.)*[a-zA-Z_$][a-zA-Z\\d_$]*$" }, "perm-default": { "enum": ["true", "false", "op", "notop"] }, "permission": { "type": "object", "description": "A permission for this plugin", "properties": { "default": { "$ref": "#/definitions/perm-default", "description": "Default for this permission" }, "description": { "type": "string" }, "children": { "oneOf": [ { "type": "array", "items": { "type": "string" } }, { "type": "object", "additionalProperties": { "oneOf": [ { "type": "boolean", "description": "False to not inherit the parent permission." }, { "$ref": "#/definitions/permission" } ] } } ] } }, "additionalProperties": false }, "dependency": { "description": "A plugin dependency", "type": "object", "properties": { "load": { "description": "Where to load this dependency in relation to the plugin. Defaults to OMIT", "enum": ["AFTER", "BEFORE", "OMIT"] }, "join-classpath": { "description": "Whether this dependency's classpath should be joined by the plugin. Defaults to true", "type": "boolean" }, "required": { "description": "Whether this dependency is required for the plugin to load. Defaults to true", "type": "boolean" } }, "additionalProperties": false }, "dependency-group": { "type": "object", "additionalProperties": { "$ref": "#/definitions/dependency" } } }, "description": "JSON schema for Paper Plugin YAML", "properties": { "name": { "description": "The name of the plugin", "$ref": "#/definitions/plugin-name" }, "main": { "description": "The main class of the plugin", "examples": ["com.example.ExamplePlugin"], "$ref": "#/definitions/plugin-class" }, "bootstrapper": { "description": "The main class of the custom bootstrapper for the plugin", "examples": ["com.example.ExamplePluginBoostrapper"], "$ref": "#/definitions/plugin-class" }, "loader": { "description": "The main class of the custom plugin loader for the plugin", "examples": ["com.example.ExamplePluginLoader"], "$ref": "#/definitions/plugin-class" }, "provides": { "description": "Satisfies dependency requirements as this plugin. When resolving dependencies, if a plugin requires a plugin in this list, this plugin will satisfy it.", "type": "array", "uniqueItems": true, "items": { "$ref": "#/definitions/plugin-name" } }, "has-open-classloader": { "type": "boolean", "description": "Whether the plugin should have its classloader public to other paper plugins" }, "version": { "description": "The version of the plugin", "type": ["string"] }, "description": { "description": "The description of the plugin", "type": "string" }, "authors": { "type": "array", "description": "Main authors of the plugin", "items": { "type": "string", "uniqueItems": true } }, "contributors": { "type": "array", "description": "Other contributors to the plugin", "items": { "type": "string", "uniqueItems": true } }, "website": { "type": "string", "description": "Plugin website" }, "prefix": { "type": "string", "description": "Log prefix for this plugin. Defaults to the plugin name" }, "load": { "enum": ["STARTUP", "POSTWORLD"], "description": "When to load this plugin. Defaults to POSTWORLD." }, "default-perm": { "$ref": "#/definitions/perm-default", "description": "Default value for permissions. Defaults to 'op'" }, "permissions": { "description": "Permissions for this plugin", "additionalProperties": { "$ref": "#/definitions/permission" } }, "api-version": { "description": "The API version of the plugin", "type": "string", "pattern": "^1\\.\\d{2}$", "examples": ["1.19", "1.20"] }, "dependencies": { "description": "Plugin dependencies.", "type": "object", "properties": { "bootstrap": { "description": "Depenencies for the plugin bootstrapper", "$ref": "#/definitions/dependency-group" }, "server": { "description": "Depenencies for the server", "$ref": "#/definitions/dependency-group" } }, "additionalProperties": false } }, "required": ["name", "version", "main", "api-version"], "title": "Paper paper-plugin.yml", "type": "object" }
minecraft-lang.json
{ "$id": "https://json.schemastore.org/minecraft-lang.json", "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": { "type": "string" }, "description": "A language for a Minecraft resource pack config schema", "title": "Minecraft Resource Pack Lang", "type": "object" }
drupal-services.json
{ "$id": "https://json.schemastore.org/drupal-services.json", "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "parameters": { "title": "Service parameters", "type": "object" }, "services": { "type": "object", "additionalProperties": { "type": "object", "properties": { "class": { "title": "Service class", "type": "string" }, "parent": { "title": "Parent service to extend", "type": "string" }, "factory": { "title": "A factory to create the object", "oneOf": [ { "type": "string" }, { "type": "array" } ] }, "decorates": { "title": "Service name to decorate", "type": "string" }, "deprecated": { "title": "A flag indicating that the service is deprecated", "type": "string" }, "lazy": { "title": "Lazy service instantiation", "type": "boolean" }, "shared": { "title": "Shared service", "type": "boolean" }, "abstract": { "title": "Abstract service", "type": "boolean" }, "public": { "title": "A flag indication that the service cannot be accessed directly from the container object", "type": "boolean" }, "alias": { "title": "A shortcut to access some services", "type": "string" }, "arguments": { "title": "Service arguments", "type": "array", "uniqueItems": true }, "configurator": { "title": "A callable to configure a service after its instantiation", "type": "array", "items": { "type": "string" } }, "tags": { "title": "List of tags tell Drupal that your service can be processed in some special way", "examples": [ "event_subscriber", "service_collector", "theme_negotiator", "twig.extension", "access_check" ], "type": "array", "items": { "type": "object", "properties": { "name": { "type": "string" }, "call": { "type": "string" }, "alias": { "type": "string" }, "required": { "type": "boolean" }, "tag": { "type": "string" }, "priority": { "type": "integer" }, "default_backend": { "type": "string" }, "responder": { "type": "boolean" }, "format": { "type": "string" }, "applies_to": { "type": "string" }, "provider_id": { "type": "string" }, "needs_incoming_request": { "type": "boolean" }, "scheme": { "type": "string" } } } }, "calls": { "title": "Methods to set optional dependencies", "type": "array", "uniqueItems": true } } } } }, "title": "JSON schema for Drupal services file", "type": "object" }
schema-org-place.json
{ "$schema": "http://json-schema.org/draft-04/schema#", "anyOf": [ { "$ref": "https://json.schemastore.org/schema-org-thing.json" } ], "description": "This is a JSON schema representation of the schema.org Place schema: https://schema.org/Place", "id": "https://json.schemastore.org/schema-org-place.json", "properties": { "@context": { "type": "string", "format": "regex", "pattern": "http://schema.org", "description": "override the @context property to ensure the schema.org URI is used" }, "@type": { "type": "string", "format": "regex", "pattern": "Place", "description": "override the @type property to ensure Place is used" }, "additionalProperty": { "description": "A property-value pair representing an additional characteristics of the entity, e.g. a product feature or another characteristic for which there is no matching property in schema.org.", "type": "array", "items": { "type": "object", "description": "PropertyValue" } }, "address": { "oneOf": [ { "type": "object", "description": "PostalAddress" }, { "type": "string", "description": "Physical address of the item." } ] }, "aggregateRating": { "type": "object", "description": "AggregateRating -- The overall rating, based on a collection of reviews or ratings, of the item." }, "amenityFeature": { "description": "An amenity feature (e.g. a characteristic or service) of the Accommodation. This generic property does not make a statement about whether the feature is included in an offer for the main accommodation or available at extra costs.", "type": "array", "items": { "type": "object", "description": "LocationFeatureSpecification" } }, "branchCode": { "type": "string", "description": "A short textual code (also called \"store code\") that uniquely identifies a place of business. The code is typically assigned by the parentOrganization and used in structured URLs." }, "containedInPlace": { "$ref": "https://json.schemastore.org/schema-org-thing.json", "description": "Place" }, "containsPlace": { "$ref": "https://json.schemastore.org/schema-org-thing.json", "description": "Place" }, "event": { "type": "object", "description": "Event" }, "faxNumber": { "type": "string", "description": "The fax number." }, "geo": { "description": "The geo coordinates of the place.", "oneOf": [ { "type": "object", "description": "GeoCoordinates" }, { "type": "object", "description": "GeoShape" } ] }, "globalLocationNumber": { "type": "string", "description": "The Global Location Number (GLN, sometimes also referred to as International Location Number or ILN) of the respective organization, person, or place. The GLN is a 13-digit number used to identify parties and physical locations.", "format": "regex", "pattern": "\\b\\d{13}\\b" }, "hasMap": { "description": "A URL to a map of the place. Supersedes map, maps.", "oneOf": [ { "type": "string", "format": "uri" }, { "type": "object", "description": "Map" } ] }, "isicV4": { "type": "string", "description": "The International Standard of Industrial Classification of All Economic Activities (ISIC), Revision 4 code for a particular organization, business person, or place." }, "logo": { "description": "An associated logo.", "oneOf": [ { "type": "object", "description": "ImageObject" }, { "type": "string", "format": "uri" } ] }, "openingHoursSpecification": { "type": "object", "description": "OpeningHoursSpecification" }, "photo": { "description": "A photograph of this place. Supersedes photos.", "anyOf": [ { "type": "array", "items": { "type": "object", "description": "ImageObject" } }, { "type": "array", "items": { "type": "object", "description": "Photograph" } } ] }, "review": { "description": "A review of the item. Supersedes reviews.", "type": "array", "items": { "type": "object", "description": "Review" } }, "smokingAllowed": { "type": "boolean", "description": "Indicates whether it is allowed to smoke in the place, e.g. in the restaurant, hotel or hotel room." }, "specialOpeningHoursSpecification": { "description": "The special opening hours of a certain place. Use this to explicitly override general opening hours brought in scope by openingHoursSpecification or openingHours.", "type": "array", "items": { "type": "object", "description": "OpeningHoursSpecification" } }, "telephone": { "type": "string", "description": "The telephone number." } }, "required": ["@type"], "title": "JSON schema for schema.org / Place", "type": "object" }
img-catapult-psp-1.0.0.json
{ "$defs": { "supportPackFile": { "description": "File within support pack", "type": "object", "additionalProperties": false, "required": ["builtin", "path"], "properties": { "builtin": { "description": "builtin=\"true\" means that a file path is relative to the platform directory within the SDK installation.builtin=\"false\" means the file path is relative to the top level of the unzipped package", "type": "boolean" }, "path": { "description": "file path within zip file", "type": "string" } } }, "supportPackDirectory": { "description": "Directory within support pack", "type": "object", "additionalProperties": false, "required": ["path"], "properties": { "path": { "description": "directory path within zip file", "type": "string" } } } }, "$id": "https://json.schemastore.org/img-catapult-psp-1.0.0.json", "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "description": "Used to validate Catapult Platform Support Pack (PSP) contents.yaml file, which provides an index of the files within the PSP", "properties": { "platform": { "description": "Catapult platform support file contents", "type": "object", "additionalProperties": false, "required": [ "vendor", "name", "description", "buildConfig", "version", "license", "documentationFile", "coreDescriptionFile", "launchConfig" ], "properties": { "vendor": { "type": "string", "description": "Platform/device vendor name" }, "name": { "type": "string", "description": "Name of platform - used to identify platform in IDE", "maxLength": 30 }, "description": { "type": "string", "description": "Full description of support pack" }, "buildConfig": { "type": "string", "description": "Value of the PLATFORM macro definition used during build", "pattern": "^([A-Z]|[0-9]|_)+$" }, "version": { "type": "string", "description": "Support pack version" }, "license": { "type": "string", "description": "License text" }, "documentationFile": { "$ref": "#/$defs/supportPackFile", "description": "Documentation file(s) - can be HTML or PDF" }, "coreDescriptionFile": { "$ref": "#/$defs/supportPackFile", "description": "File containing description of core using IMG proprietary YAML format" }, "peripheralRegisterDescriptionFile": { "$ref": "#/$defs/supportPackFile", "description": "File containing peripheral register information using CMSIS SVD XML format (see https://www.keil.com/pack/doc/CMSIS/SVD/html/svd_Format_pg.html)" }, "openOCDConfigurationFile": { "$ref": "#/$defs/supportPackFile", "description": "File containing OpenOCD configuration (see https://openocd.org/doc-release/html/Config-File-Guidelines.html#Config-File-Guidelines)" }, "launchConfig": { "type": "string", "description": "Launch configuration for platform", "pattern": "^(Alpine Model|Catapult Model|OpenOCD|Whisper|RemoteLinux)$" }, "gdbAutoRunCommandString": { "type": "string", "description": "String with additional gdb commands to run to initiate connection to target" }, "networkPortNumberForOCDConnections": { "type": "string", "description": "TCP/IP port number for OpenOCD connections. Set to \"auto\" to automatically use any free port" }, "isPlatformFPGA": { "type": "boolean", "description": "True only for FPGA platforms" }, "fpgaBitFile": { "$ref": "#/$defs/supportPackFile", "description": "Bitfile for programming FPGA" }, "fpgaProgConfigFile": { "$ref": "#/$defs/supportPackFile", "description": "OpenOCD config file for programming FPGA" }, "traceSettingsString": { "type": "string", "description": "String with processor trace encoder settings required by the decoder" }, "libsDirectory": { "$ref": "#/$defs/supportPackDirectory", "description": "Directory containing library files for use with the platform" }, "headersDirectory": { "$ref": "#/$defs/supportPackDirectory", "description": "Directory containing header files for use with the platform" }, "remoteHost": { "type": "string", "description": "Hostname or IP address for debug connection to remote machines" }, "remoteUsername": { "type": "string", "description": "Username for debug connection to remote machines" } } } }, "required": ["platform"], "title": "JSON schema for Catapult PSP contents.yaml files", "type": "object" }
cdk.json
{ "$schema": "http://json-schema.org/draft-04/schema#", "id": "https://json.schemastore.org/cdk.json", "properties": { "app": { "type": "string", "minLength": 1 }, "build": { "type": "string" }, "versionReporting": { "type": "boolean" }, "watch": { "type": "object", "properties": { "include": { "type": "array", "items": { "type": "string" } }, "exclude": { "type": "array", "items": { "type": "string" } } } }, "context": { "type": "object" } }, "title": "Schema for AWS CDK context files (cdk.json)", "type": "object" }
clasp.json
{ "$schema": "http://json-schema.org/draft-04/schema#", "id": "https://json.schemastore.org/clasp.json", "properties": { "scriptId": { "description": "An ID of the current Google Apps Script project\nhttps://github.com/google/clasp#scriptid-required", "type": "string", "minLength": 57, "maxLength": 57 }, "rootDir": { "description": "A root directory path of the current Google Apps Script project\nhttps://github.com/google/clasp#rootdir-optional", "$ref": "https://json.schemastore.org/base-04.json#/definitions/path" }, "projectId": { "description": "An ID for a Google Cloud Platform project linked to the current Google Apps Script project\nhttps://github.com/google/clasp#projectid-optional", "default": "project-id-xxxxxxxxxxxxxxxxxxx", "type": "string", "minLength": 4, "maxLength": 30 }, "fileExtension": { "description": "An extension for local files of the current Google Apps Script project\nhttps://github.com/google/clasp#filepushorder-optional", "type": "string", "minLength": 1 }, "filePushOrder": { "description": "Files pushed first of the current Google Apps Script project\nhttps://github.com/google/clasp#filepushorder-optional", "type": "array", "uniqueItems": true, "items": { "title": "file", "description": "A file\nhttps://github.com/google/clasp#filepushorder-optional", "$ref": "https://json.schemastore.org/base-04.json#/definitions/path" } } }, "required": ["scriptId"], "title": "Google Apps Script config schema", "type": "object" }
configSchema.json
{ "title": "JSON schema for Batect configuration files", "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://ide-integration.batect.dev/v1/configSchema.json", "type": "object", "additionalProperties": false, "properties": { "containers": { "$ref": "#/definitions/containers" }, "tasks": { "$ref": "#/definitions/tasks" }, "config_variables": { "$ref": "#/definitions/configVariablesList" }, "project_name": { "type": "string", "description": "The name of your project. Used to label any images built.", "minLength": 1 }, "forbid_telemetry": { "type": "boolean", "description": "Forbid reporting telemetry information for this project, even if the user has previously consented to telemetry." }, "include": { "$ref": "#/definitions/includesList" } }, "patternProperties": { "^\\.": {} }, "definitions": { "containers": { "type": "object", "description": "Definitions for each of the containers that make up your various environments", "additionalProperties": { "$ref": "#/definitions/container" } }, "container": { "type": "object", "additionalProperties": false, "properties": { "image": { "type": "string", "description": "Image name (in standard Docker image reference format) to use for this container", "minLength": 1 }, "build_directory": { "type": "string", "description": "Path (relative to the configuration file's directory) to a directory containing a Dockerfile to build and use as an image for this container", "minLength": 1 }, "build_args": { "description": "List of build args to use when building the image in build_directory", "$ref": "#/definitions/buildArgList" }, "build_target": { "type": "string", "description": "Dockerfile stage name to build and use for this container", "minLength": 1 }, "build_ssh": { "description": "List of SSH agents to forward to the image build process when building the image in build_directory", "$ref": "#/definitions/buildSSHAgentList" }, "build_secrets": { "description": "Secrets to expose to the image build process when building the image in build_directory", "$ref": "#/definitions/buildSecretsList" }, "dockerfile": { "type": "string", "description": "Dockerfile (relative to build_directory) to use when building the image. Defaults to Dockerfile if not set.", "minLength": 1 }, "command": { "type": "string", "description": "Command to run when the container starts", "minLength": 1 }, "entrypoint": { "type": "string", "description": "Entrypoint to use to run the command", "minLength": 1 }, "environment": { "description": "List of environment variables for the container", "$ref": "#/definitions/environmentVariableList" }, "working_directory": { "type": "string", "description": "Working directory to start the container in", "minLength": 1 }, "volumes": { "description": "List of volume mounts to create for the container", "$ref": "#/definitions/volumeMountList" }, "ports": { "description": "List of ports to make available to the host machine", "$ref": "#/definitions/portMappingList" }, "dependencies": { "description": "List of other containers that should be started and healthy before starting this container", "$ref": "#/definitions/containerDependencyList" }, "health_check": { "description": "Overrides health check configuration specified in the image or Dockerfile", "$ref": "#/definitions/healthCheckOptions" }, "run_as_current_user": { "$ref": "#/definitions/runAsCurrentUserOptions" }, "privileged": { "type": "boolean", "description": "Enable privileged mode for the container" }, "enable_init_process": { "type": "boolean", "description": "Set to `true` to run an init process inside the container that forwards signals and reaps processes" }, "capabilities_to_add": { "description": "List of additional capabilities to add to the container", "$ref": "#/definitions/capabilityList" }, "capabilities_to_drop": { "description": "List of additional capabilities to remove from the container", "$ref": "#/definitions/capabilityList" }, "additional_hostnames": { "description": "Hostnames to associate with this container in addition to the default hostname", "$ref": "#/definitions/additionalHostnamesList" }, "additional_hosts": { "description": "Additional hostnames to add to /etc/hosts in the container", "type": "object", "additionalProperties": { "type": "string" } }, "setup_commands": { "description": "Commands to run after the container reports as healthy but before dependency containers start", "$ref": "#/definitions/setupCommandsList" }, "log_driver": { "type": "string", "description": "Docker log driver to use" }, "log_options": { "description": "Additional options to pass to Docker log driver", "type": "object", "additionalProperties": { "type": "string" } }, "image_pull_policy": { "description": "Whether or not to pull image (including base image for containers that use a built image), even if it has already been pulled", "type": "string", "enum": [ "Always", "IfNotPresent" ] }, "shm_size": { "description": "Size of /dev/shm (shared memory for IPC) for the container", "type": "string", "pattern": "^\\d+\\s*[mkg]?b?$" }, "labels": { "description": "Labels to apply to the container", "type": "object", "additionalProperties": { "type": "string" } } }, "oneOf": [ { "required": [ "image" ], "not": { "required": [ "build_args", "dockerfile", "build_target", "build_ssh" ] } }, { "required": [ "build_directory" ] } ] }, "tasks": { "type": "object", "description": "Definitions for each of your tasks, the actions you launch through Batect", "additionalProperties": { "$ref": "#/definitions/task" } }, "task": { "type": "object", "description": "Definition of a single task", "additionalProperties": false, "properties": { "run": { "$ref": "#/definitions/taskRunOptions" }, "description": { "type": "string", "description": "Description shown when running `batect --list-tasks`", "minLength": 1 }, "group": { "type": "string", "description": "Name used to group tasks when running `batect --list-tasks`", "minLength": 1 }, "dependencies": { "description": "List of other containers that should be started and healthy before starting the task container given in `run`", "$ref": "#/definitions/containerDependencyList" }, "prerequisites": { "type": "array", "description": "List of other tasks that should be run before running this task", "uniqueItems": true, "items": { "type": "string" } }, "customise": { "type": "object", "description": "Customisations for dependency containers run as part of this task", "additionalProperties": { "$ref": "#/definitions/taskContainerCustomisation" } } }, "anyOf": [ { "required": [ "run" ] }, { "required": [ "prerequisites" ], "not": { "required": [ "dependencies", "run" ] } } ] }, "taskRunOptions": { "type": "object", "description": "Specifies what to do when this task starts", "additionalProperties": false, "properties": { "container": { "type": "string", "description": "Container to run for this task", "minLength": 1 }, "command": { "type": "string", "description": "Command to run for this task", "minLength": 1 }, "entrypoint": { "type": "string", "description": "Entrypoint to use to run the command for this task", "minLength": 1 }, "environment": { "description": "List of environment variables to pass to the container, in addition to those defined on the container itself", "$ref": "#/definitions/environmentVariableList" }, "ports": { "description": "List of port mappings to create for the container, in addition to those defined on the container itself", "$ref": "#/definitions/portMappingList" }, "working_directory": { "type": "string", "description": "Working directory to start the container in", "minLength": 1 } }, "required": [ "container" ] }, "taskContainerCustomisation": { "type": "object", "additionalProperties": false, "properties": { "environment": { "description": "List of environment variables to pass to the container, in addition to those defined on the container itself", "$ref": "#/definitions/environmentVariableList" }, "ports": { "description": "List of port mappings to create for the container, in addition to those defined on the container itself", "$ref": "#/definitions/portMappingList" }, "working_directory": { "type": "string", "description": "Working directory to start the container in", "minLength": 1 } } }, "containerDependencyList": { "type": "array", "uniqueItems": true, "items": { "type": "string", "minLength": 1 } }, "additionalHostnamesList": { "type": "array", "uniqueItems": true, "items": { "type": "string", "minLength": 1 } }, "environmentVariableList": { "type": "object", "additionalProperties": { "type": ["string", "number"] } }, "buildArgList": { "type": "object", "additionalProperties": { "type": "string" } }, "buildSSHAgentList": { "type": "array", "items": { "minLength": 1, "type": "object", "additionalProperties": false, "properties": { "id": { "type": "string", "description": "ID used to refer to agent from Dockerfile", "minimum": 1 }, "paths": { "type": "array", "description": "Paths to keys or SSH agent sockets to expose to image build process", "items": { "type": "string" } } }, "required": ["id"] } }, "buildSecretsList": { "type": "object", "additionalProperties": { "$ref": "#/definitions/buildSecret" } }, "buildSecret": { "oneOf": [ { "$ref": "#/definitions/environmentSecret" }, { "$ref": "#/definitions/fileSecret" } ] }, "environmentSecret": { "type": "object", "additionalProperties": false, "properties": { "environment": { "type": "string", "description": "Name of the environment variable to expose as a secret", "minLength": 1 } }, "required": ["environment"] }, "fileSecret": { "type": "object", "additionalProperties": false, "properties": { "path": { "type": "string", "description": "Path to the file to expose as a secret", "minLength": 1 } }, "required": ["path"] }, "portMappingList": { "type": "array", "items": { "oneOf": [ { "type": "string", "pattern": "^\\d+(-\\d+)?:\\d+(-\\d+)?(/.*)?$" }, { "type": "object", "additionalProperties": false, "properties": { "local": { "type": "integer", "description": "Port on the host machine to map", "minimum": 1 }, "container": { "type": "integer", "description": "Port inside the container to map", "minimum": 1 }, "protocol": { "type": "string", "description": "Protocol to use (eg. TCP or UDP)", "minLength": 1 } }, "required": [ "local", "container" ] }, { "type": "object", "additionalProperties": false, "properties": { "local": { "type": "string", "description": "Ports on the host machine to map", "pattern": "^\\d+-\\d+$" }, "container": { "type": "string", "description": "Ports inside the container to map", "pattern": "^\\d+-\\d+$" }, "protocol": { "type": "string", "description": "Protocol to use (eg. TCP or UDP)", "minLength": 1 } }, "required": [ "local", "container" ] } ] } }, "volumeMountList": { "type": "array", "items": { "oneOf": [ { "type": "string", "pattern": "^.+:.+(:.+)?$" }, { "type": "object", "additionalProperties": false, "properties": { "type": { "type": "string", "description": "Type of volume mount", "enum": [ "local" ] }, "local": { "type": "string", "description": "Path on the host machine to mount", "minLength": 1 }, "container": { "type": "string", "description": "Path inside the container to mount the host path at", "minLength": 1 }, "options": { "type": "string", "description": "Docker volume mount options to use when creating mount", "enum": [ "cached", "delegated", "consistent", "default", "ro" ] } }, "required": [ "local", "container" ] }, { "type": "object", "additionalProperties": false, "properties": { "type": { "type": "string", "description": "Type of volume mount", "enum": [ "cache" ] }, "name": { "type": "string", "description": "Name of the cache", "minLength": 1 }, "container": { "type": "string", "description": "Path inside the container to mount the cache at", "minLength": 1 }, "options": { "type": "string", "description": "Docker volume mount options to use when creating mount", "enum": [ "cached", "delegated", "consistent", "default", "ro" ] } }, "required": [ "type", "name", "container" ] }, { "type": "object", "additionalProperties": false, "properties": { "type": { "type": "string", "description": "Type of volume mount", "enum": [ "tmpfs" ] }, "container": { "type": "string", "description": "Path inside the container to mount the tmpfs filesystem at", "minLength": 1 }, "options": { "type": "string", "description": "Docker tmpfs mount options to use when creating mount" } }, "required": [ "type", "container" ] } ] } }, "healthCheckOptions": { "type": "object", "additionalProperties": false, "properties": { "retries": { "type": "integer", "description": "The number of times to perform the health check before considering the container unhealthy", "minimum": 0 }, "interval": { "type": "string", "description": "The interval between runs of the health check. Accepts values such as `2s` (two seconds) or `1m` (one minute).", "minLength": 1 }, "start_period": { "type": "string", "description": "The time to wait before failing health checks count against the retry count. The health check is still run during this period, and if the check succeeds, the container is immediately considered healthy. Accepts values such as `2s` (two seconds) or `1m` (one minute).", "minLength": 1 }, "timeout": { "type": "string", "description": "The time to wait before timing out a single health check command invocation. Accepts values such as `2s` (two seconds) or `1m` (one minute).", "minLength": 1 }, "command": { "type": "string", "description": "The command to run to check the health of the container. If this command exits with code 0, the container is considered healthy.", "minLength": 1 } } }, "runAsCurrentUserOptions": { "oneOf": [ { "type": "object", "additionalProperties": false, "properties": { "enabled": { "type": "boolean", "description": "Set to `true` to enable 'run as current user' mode", "enum": [ false ] } }, "required": [ "enabled" ] }, { "type": "object", "additionalProperties": false, "properties": { "enabled": { "type": "boolean", "description": "Set to `true` to enable 'run as current user' mode", "enum": [ true ] }, "home_directory": { "type": "string", "description": "Directory to use as home directory for user inside container", "minLength": 1 } }, "required": [ "enabled", "home_directory" ] } ] }, "capabilityList": { "type": "array", "items": { "oneOf": [ { "type": "string", "enum": [ "AUDIT_CONTROL", "AUDIT_READ", "AUDIT_WRITE", "BLOCK_SUSPEND", "CHOWN", "DAC_OVERRIDE", "DAC_READ_SEARCH", "FOWNER", "FSETID", "IPC_LOCK", "IPC_OWNER", "KILL", "LEASE", "LINUX_IMMUTABLE", "MAC_ADMIN", "MAC_OVERRIDE", "MKNOD", "NET_ADMIN", "NET_BIND_SERVICE", "NET_BROADCAST", "NET_RAW", "SETGID", "SETFCAP", "SETPCAP", "SETUID", "SYS_ADMIN", "SYS_BOOT", "SYS_CHROOT", "SYS_MODULE", "SYS_NICE", "SYS_PACCT", "SYS_PTRACE", "SYS_RAWIO", "SYS_RESOURCE", "SYS_TIME", "SYS_TTY_CONFIG", "SYSLOG", "WAKE_ALARM", "ALL" ] } ] } }, "setupCommandsList": { "type": "array", "items": { "type": "object", "additionalProperties": false, "properties": { "command": { "type": "string", "description": "Command to execute", "minLength": 1 }, "working_directory": { "type": "string", "description": "Working directory to start the command in (defaults to container working directory if not set)", "minLength": 1 } }, "required": [ "command" ] } }, "configVariablesList": { "type": "object", "description": "Definitions for each of the config variables used to configure your tasks and containers", "additionalProperties": { "$ref": "#/definitions/configVariable" } }, "configVariable": { "type": "object", "description": "Definition of a single config variable", "additionalProperties": false, "properties": { "description": { "type": "string", "description": "Human-readable description of the purpose of the variable", "minLength": 1 }, "default": { "type": "string", "description": "Default value of the variable if one is not provided elsewhere", "minLength": 1 } } }, "includesList": { "type": "array", "description": "List of configuration files to include in this project", "items": { "$ref": "#/definitions/include" } }, "include": { "oneOf": [ { "type": "string", "description": "Path (relative to this file) to the file to include" }, { "type": "object", "properties": { "type": { "type": "string", "description": "The type of include", "enum": [ "file" ] }, "path": { "type": "string", "description": "Path (relative to this file) of the file to include", "minLength": 1 } }, "additionalProperties": false, "required": [ "type", "path" ] }, { "type": "object", "properties": { "type": { "type": "string", "description": "The type of include", "enum": [ "git" ] }, "repo": { "type": "string", "description": "Git repository containing the file to include", "minLength": 1 }, "ref": { "type": "string", "description": "Git reference (commit, tag or branch) containing the file to include" }, "path": { "type": "string", "description": "Path (relative to the root of the repository) of the file to include (defaults to batect-bundle.yml if not set)", "minLength": 1 } }, "additionalProperties": false, "required": [ "type", "repo", "ref" ] } ] } } }
ruff.json
{ "$id": "https://json.schemastore.org/ruff.json", "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "definitions": { "ApiBan": { "type": "object", "required": ["msg"], "properties": { "msg": { "description": "The message to display when the API is used.", "type": "string" } }, "additionalProperties": false }, "ConstantType": { "type": "string", "enum": ["bytes", "complex", "float", "int", "str", "tuple"] }, "Convention": { "oneOf": [ { "description": "Use Google-style docstrings.", "type": "string", "enum": ["google"] }, { "description": "Use NumPy-style docstrings.", "type": "string", "enum": ["numpy"] }, { "description": "Use PEP257-style docstrings.", "type": "string", "enum": ["pep257"] } ] }, "Flake8AnnotationsOptions": { "type": "object", "properties": { "allow-star-arg-any": { "description": "Whether to suppress `ANN401` for dynamically typed `*args` and `**kwargs` arguments.", "type": ["boolean", "null"] }, "ignore-fully-untyped": { "description": "Whether to suppress `ANN*` rules for any declaration that hasn't been typed at all. This makes it easier to gradually add types to a codebase.", "type": ["boolean", "null"] }, "mypy-init-return": { "description": "Whether to allow the omission of a return type hint for `__init__` if at least one argument is annotated.", "type": ["boolean", "null"] }, "suppress-dummy-args": { "description": "Whether to suppress `ANN000`-level violations for arguments matching the \"dummy\" variable regex (like `_`).", "type": ["boolean", "null"] }, "suppress-none-returning": { "description": "Whether to suppress `ANN200`-level violations for functions that meet either of the following criteria:\n\n- Contain no `return` statement. - Explicit `return` statement(s) all return `None` (explicitly or implicitly).", "type": ["boolean", "null"] } }, "additionalProperties": false }, "Flake8BanditOptions": { "type": "object", "properties": { "check-typed-exception": { "description": "Whether to disallow `try`-`except`-`pass` (`S110`) for specific exception types. By default, `try`-`except`-`pass` is only disallowed for `Exception` and `BaseException`.", "type": ["boolean", "null"] }, "hardcoded-tmp-directory": { "description": "A list of directories to consider temporary.", "type": ["array", "null"], "items": { "type": "string" } }, "hardcoded-tmp-directory-extend": { "description": "A list of directories to consider temporary, in addition to those specified by `hardcoded-tmp-directory`.", "type": ["array", "null"], "items": { "type": "string" } } }, "additionalProperties": false }, "Flake8BugbearOptions": { "type": "object", "properties": { "extend-immutable-calls": { "description": "Additional callable functions to consider \"immutable\" when evaluating, e.g., the `no-mutable-default-argument` rule (`B006`) or `no-function-call-in-dataclass-defaults` rule (`RUF009`).", "type": ["array", "null"], "items": { "type": "string" } } }, "additionalProperties": false }, "Flake8BuiltinsOptions": { "type": "object", "properties": { "builtins-ignorelist": { "description": "Ignore list of builtins.", "type": ["array", "null"], "items": { "type": "string" } } }, "additionalProperties": false }, "Flake8ComprehensionsOptions": { "type": "object", "properties": { "allow-dict-calls-with-keyword-arguments": { "description": "Allow `dict` calls that make use of keyword arguments (e.g., `dict(a=1, b=2)`).", "type": ["boolean", "null"] } }, "additionalProperties": false }, "Flake8CopyrightOptions": { "type": "object", "properties": { "author": { "description": "Author to enforce within the copyright notice. If provided, the author must be present immediately following the copyright notice.", "type": ["string", "null"] }, "min-file-size": { "description": "A minimum file size (in bytes) required for a copyright notice to be enforced. By default, all files are validated.", "type": ["integer", "null"], "format": "uint", "minimum": 0.0 }, "notice-rgx": { "description": "The regular expression used to match the copyright notice, compiled with the [`regex`](https://docs.rs/regex/latest/regex/) crate.\n\nDefaults to `(?i)Copyright\\s+(\\(C\\)\\s+)?\\d{4}(-\\d{4})*`, which matches the following: - `Copyright 2023` - `Copyright (C) 2023` - `Copyright 2021-2023` - `Copyright (C) 2021-2023`", "type": ["string", "null"] } }, "additionalProperties": false }, "Flake8ErrMsgOptions": { "type": "object", "properties": { "max-string-length": { "description": "Maximum string length for string literals in exception messages.", "type": ["integer", "null"], "format": "uint", "minimum": 0.0 } }, "additionalProperties": false }, "Flake8GetTextOptions": { "type": "object", "properties": { "extend-function-names": { "description": "Additional function names to consider as internationalization calls, in addition to those included in `function-names`.", "type": ["array", "null"], "items": { "type": "string" } }, "function-names": { "description": "The function names to consider as internationalization calls.", "type": ["array", "null"], "items": { "type": "string" } } }, "additionalProperties": false }, "Flake8ImplicitStrConcatOptions": { "type": "object", "properties": { "allow-multiline": { "description": "Whether to allow implicit string concatenations for multiline strings. By default, implicit concatenations of multiline strings are allowed (but continuation lines, delimited with a backslash, are prohibited).\n\nNote that setting `allow-multiline = false` should typically be coupled with disabling `explicit-string-concatenation` (`ISC003`). Otherwise, both explicit and implicit multiline string concatenations will be seen as violations.", "type": ["boolean", "null"] } }, "additionalProperties": false }, "Flake8ImportConventionsOptions": { "type": "object", "properties": { "aliases": { "description": "The conventional aliases for imports. These aliases can be extended by the `extend_aliases` option.", "type": ["object", "null"], "additionalProperties": { "type": "string" } }, "banned-aliases": { "description": "A mapping from module to its banned import aliases.", "type": ["object", "null"], "additionalProperties": { "type": "array", "items": { "type": "string" } } }, "banned-from": { "description": "A list of modules that are allowed to be imported from", "type": ["array", "null"], "items": { "type": "string" }, "uniqueItems": true }, "extend-aliases": { "description": "A mapping from module to conventional import alias. These aliases will be added to the `aliases` mapping.", "type": ["object", "null"], "additionalProperties": { "type": "string" } } }, "additionalProperties": false }, "Flake8PytestStyleOptions": { "type": "object", "properties": { "fixture-parentheses": { "description": "Boolean flag specifying whether `@pytest.fixture()` without parameters should have parentheses. If the option is set to `true` (the default), `@pytest.fixture()` is valid and `@pytest.fixture` is invalid. If set to `false`, `@pytest.fixture` is valid and `@pytest.fixture()` is invalid.", "type": ["boolean", "null"] }, "mark-parentheses": { "description": "Boolean flag specifying whether `@pytest.mark.foo()` without parameters should have parentheses. If the option is set to `true` (the default), `@pytest.mark.foo()` is valid and `@pytest.mark.foo` is invalid. If set to `false`, `@pytest.fixture` is valid and `@pytest.mark.foo()` is invalid.", "type": ["boolean", "null"] }, "parametrize-names-type": { "description": "Expected type for multiple argument names in `@pytest.mark.parametrize`. The following values are supported:\n\n- `csv` — a comma-separated list, e.g. `@pytest.mark.parametrize('name1,name2', ...)` - `tuple` (default) — e.g. `@pytest.mark.parametrize(('name1', 'name2'), ...)` - `list` — e.g. `@pytest.mark.parametrize(['name1', 'name2'], ...)`", "anyOf": [ { "$ref": "#/definitions/ParametrizeNameType" }, { "type": "null" } ] }, "parametrize-values-row-type": { "description": "Expected type for each row of values in `@pytest.mark.parametrize` in case of multiple parameters. The following values are supported:\n\n- `tuple` (default) — e.g. `@pytest.mark.parametrize(('name1', 'name2'), [(1, 2), (3, 4)])` - `list` — e.g. `@pytest.mark.parametrize(('name1', 'name2'), [[1, 2], [3, 4]])`", "anyOf": [ { "$ref": "#/definitions/ParametrizeValuesRowType" }, { "type": "null" } ] }, "parametrize-values-type": { "description": "Expected type for the list of values rows in `@pytest.mark.parametrize`. The following values are supported:\n\n- `tuple` — e.g. `@pytest.mark.parametrize('name', (1, 2, 3))` - `list` (default) — e.g. `@pytest.mark.parametrize('name', [1, 2, 3])`", "anyOf": [ { "$ref": "#/definitions/ParametrizeValuesType" }, { "type": "null" } ] }, "raises-extend-require-match-for": { "description": "List of additional exception names that require a match= parameter in a `pytest.raises()` call. This extends the default list of exceptions that require a match= parameter. This option is useful if you want to extend the default list of exceptions that require a match= parameter without having to specify the entire list. Note that this option does not remove any exceptions from the default list.", "type": ["array", "null"], "items": { "type": "string" } }, "raises-require-match-for": { "description": "List of exception names that require a match= parameter in a `pytest.raises()` call.", "type": ["array", "null"], "items": { "type": "string" } } }, "additionalProperties": false }, "Flake8QuotesOptions": { "type": "object", "properties": { "avoid-escape": { "description": "Whether to avoid using single quotes if a string contains single quotes, or vice-versa with double quotes, as per [PEP 8](https://peps.python.org/pep-0008/#string-quotes). This minimizes the need to escape quotation marks within strings.", "type": ["boolean", "null"] }, "docstring-quotes": { "description": "Quote style to prefer for docstrings (either \"single\" or \"double\").", "anyOf": [ { "$ref": "#/definitions/Quote" }, { "type": "null" } ] }, "inline-quotes": { "description": "Quote style to prefer for inline strings (either \"single\" or \"double\").", "anyOf": [ { "$ref": "#/definitions/Quote" }, { "type": "null" } ] }, "multiline-quotes": { "description": "Quote style to prefer for multiline strings (either \"single\" or \"double\").", "anyOf": [ { "$ref": "#/definitions/Quote" }, { "type": "null" } ] } }, "additionalProperties": false }, "Flake8SelfOptions": { "type": "object", "properties": { "ignore-names": { "description": "A list of names to ignore when considering `flake8-self` violations.", "type": ["array", "null"], "items": { "type": "string" } } }, "additionalProperties": false }, "Flake8TidyImportsOptions": { "type": "object", "properties": { "ban-relative-imports": { "description": "Whether to ban all relative imports (`\"all\"`), or only those imports that extend into the parent module or beyond (`\"parents\"`).", "anyOf": [ { "$ref": "#/definitions/Strictness" }, { "type": "null" } ] }, "banned-api": { "description": "Specific modules or module members that may not be imported or accessed. Note that this rule is only meant to flag accidental uses, and can be circumvented via `eval` or `importlib`.", "type": ["object", "null"], "additionalProperties": { "$ref": "#/definitions/ApiBan" } } }, "additionalProperties": false }, "Flake8TypeCheckingOptions": { "type": "object", "properties": { "exempt-modules": { "description": "Exempt certain modules from needing to be moved into type-checking blocks.", "type": ["array", "null"], "items": { "type": "string" } }, "runtime-evaluated-base-classes": { "description": "Exempt classes that list any of the enumerated classes as a base class from needing to be moved into type-checking blocks.", "type": ["array", "null"], "items": { "type": "string" } }, "runtime-evaluated-decorators": { "description": "Exempt classes decorated with any of the enumerated decorators from needing to be moved into type-checking blocks.", "type": ["array", "null"], "items": { "type": "string" } }, "strict": { "description": "Enforce TC001, TC002, and TC003 rules even when valid runtime imports are present for the same module. See flake8-type-checking's [strict](https://github.com/snok/flake8-type-checking#strict) option.", "type": ["boolean", "null"] } }, "additionalProperties": false }, "Flake8UnusedArgumentsOptions": { "type": "object", "properties": { "ignore-variadic-names": { "description": "Whether to allow unused variadic arguments, like `*args` and `**kwargs`.", "type": ["boolean", "null"] } }, "additionalProperties": false }, "ImportSection": { "anyOf": [ { "$ref": "#/definitions/ImportType" }, { "type": "string" } ] }, "ImportType": { "type": "string", "enum": [ "future", "standard-library", "third-party", "first-party", "local-folder" ] }, "IsortOptions": { "type": "object", "properties": { "classes": { "description": "An override list of tokens to always recognize as a Class for `order-by-type` regardless of casing.", "type": ["array", "null"], "items": { "type": "string" } }, "combine-as-imports": { "description": "Combines as imports on the same line. See isort's [`combine-as-imports`](https://pycqa.github.io/isort/docs/configuration/options.html#combine-as-imports) option.", "type": ["boolean", "null"] }, "constants": { "description": "An override list of tokens to always recognize as a CONSTANT for `order-by-type` regardless of casing.", "type": ["array", "null"], "items": { "type": "string" } }, "extra-standard-library": { "description": "A list of modules to consider standard-library, in addition to those known to Ruff in advance.", "type": ["array", "null"], "items": { "type": "string" } }, "force-single-line": { "description": "Forces all from imports to appear on their own line.", "type": ["boolean", "null"] }, "force-sort-within-sections": { "description": "Don't sort straight-style imports (like `import sys`) before from-style imports (like `from itertools import groupby`). Instead, sort the imports by module, independent of import style.", "type": ["boolean", "null"] }, "force-to-top": { "description": "Force specific imports to the top of their appropriate section.", "type": ["array", "null"], "items": { "type": "string" } }, "force-wrap-aliases": { "description": "Force `import from` statements with multiple members and at least one alias (e.g., `import A as B`) to wrap such that every line contains exactly one member. For example, this formatting would be retained, rather than condensing to a single line:\n\n```python from .utils import ( test_directory as test_directory, test_id as test_id ) ```\n\nNote that this setting is only effective when combined with `combine-as-imports = true`. When `combine-as-imports` isn't enabled, every aliased `import from` will be given its own line, in which case, wrapping is not necessary.", "type": ["boolean", "null"] }, "forced-separate": { "description": "A list of modules to separate into auxiliary block(s) of imports, in the order specified.", "type": ["array", "null"], "items": { "type": "string" } }, "known-first-party": { "description": "A list of modules to consider first-party, regardless of whether they can be identified as such via introspection of the local filesystem.", "type": ["array", "null"], "items": { "type": "string" } }, "known-local-folder": { "description": "A list of modules to consider being a local folder. Generally, this is reserved for relative imports (`from . import module`).", "type": ["array", "null"], "items": { "type": "string" } }, "known-third-party": { "description": "A list of modules to consider third-party, regardless of whether they can be identified as such via introspection of the local filesystem.", "type": ["array", "null"], "items": { "type": "string" } }, "lines-after-imports": { "description": "The number of blank lines to place after imports. Use `-1` for automatic determination.", "type": ["integer", "null"], "format": "int" }, "lines-between-types": { "description": "The number of lines to place between \"direct\" and `import from` imports.", "type": ["integer", "null"], "format": "uint", "minimum": 0.0 }, "no-lines-before": { "description": "A list of sections that should _not_ be delineated from the previous section via empty lines.", "type": ["array", "null"], "items": { "$ref": "#/definitions/ImportSection" } }, "order-by-type": { "description": "Order imports by type, which is determined by case, in addition to alphabetically.", "type": ["boolean", "null"] }, "relative-imports-order": { "description": "Whether to place \"closer\" imports (fewer `.` characters, most local) before \"further\" imports (more `.` characters, least local), or vice versa.\n\nThe default (\"furthest-to-closest\") is equivalent to isort's `reverse-relative` default (`reverse-relative = false`); setting this to \"closest-to-furthest\" is equivalent to isort's `reverse-relative = true`.", "anyOf": [ { "$ref": "#/definitions/RelativeImportsOrder" }, { "type": "null" } ] }, "required-imports": { "description": "Add the specified import line to all files.", "type": ["array", "null"], "items": { "type": "string" } }, "section-order": { "description": "Override in which order the sections should be output. Can be used to move custom sections.", "type": ["array", "null"], "items": { "$ref": "#/definitions/ImportSection" } }, "sections": { "description": "A list of mappings from section names to modules. By default custom sections are output last, but this can be overridden with `section-order`.", "type": ["object", "null"], "additionalProperties": { "type": "array", "items": { "type": "string" } } }, "single-line-exclusions": { "description": "One or more modules to exclude from the single line rule.", "type": ["array", "null"], "items": { "type": "string" } }, "split-on-trailing-comma": { "description": "If a comma is placed after the last member in a multi-line import, then the imports will never be folded into one line.\n\nSee isort's [`split-on-trailing-comma`](https://pycqa.github.io/isort/docs/configuration/options.html#split-on-trailing-comma) option.", "type": ["boolean", "null"] }, "variables": { "description": "An override list of tokens to always recognize as a var for `order-by-type` regardless of casing.", "type": ["array", "null"], "items": { "type": "string" } } }, "additionalProperties": false }, "LineLength": { "description": "The length of a line of text that is considered too long.", "type": "integer", "format": "uint", "minimum": 0.0 }, "McCabeOptions": { "type": "object", "properties": { "max-complexity": { "description": "The maximum McCabe complexity to allow before triggering `C901` errors.", "type": ["integer", "null"], "format": "uint", "minimum": 0.0 } }, "additionalProperties": false }, "ParametrizeNameType": { "type": "string", "enum": ["csv", "tuple", "list"] }, "ParametrizeValuesRowType": { "type": "string", "enum": ["tuple", "list"] }, "ParametrizeValuesType": { "type": "string", "enum": ["tuple", "list"] }, "Pep8NamingOptions": { "type": "object", "properties": { "classmethod-decorators": { "description": "A list of decorators that, when applied to a method, indicate that the method should be treated as a class method (in addition to the builtin `@classmethod`).\n\nFor example, Ruff will expect that any method decorated by a decorator in this list takes a `cls` argument as its first argument.", "type": ["array", "null"], "items": { "type": "string" } }, "ignore-names": { "description": "A list of names (or patterns) to ignore when considering `pep8-naming` violations.", "type": ["array", "null"], "items": { "type": "string" } }, "staticmethod-decorators": { "description": "A list of decorators that, when applied to a method, indicate that the method should be treated as a static method (in addition to the builtin `@staticmethod`).\n\nFor example, Ruff will expect that any method decorated by a decorator in this list has no `self` or `cls` argument.", "type": ["array", "null"], "items": { "type": "string" } } }, "additionalProperties": false }, "PyUpgradeOptions": { "type": "object", "properties": { "keep-runtime-typing": { "description": "Whether to avoid PEP 585 (`List[int]` -> `list[int]`) and PEP 604 (`Union[str, int]` -> `str | int`) rewrites even if a file imports `from __future__ import annotations`.\n\nThis setting is only applicable when the target Python version is below 3.9 and 3.10 respectively, and is most commonly used when working with libraries like Pydantic and FastAPI, which rely on the ability to parse type annotations at runtime. The use of `from __future__ import annotations` causes Python to treat the type annotations as strings, which typically allows for the use of language features that appear in later Python versions but are not yet supported by the current version (e.g., `str | int`). However, libraries that rely on runtime type annotations will break if the annotations are incompatible with the current Python version.\n\nFor example, while the following is valid Python 3.8 code due to the presence of `from __future__ import annotations`, the use of `str| int` prior to Python 3.10 will cause Pydantic to raise a `TypeError` at runtime:\n\n```python from __future__ import annotations\n\nimport pydantic\n\nclass Foo(pydantic.BaseModel): bar: str | int ```", "type": ["boolean", "null"] } }, "additionalProperties": false }, "Pycodestyle": { "type": "object", "properties": { "ignore-overlong-task-comments": { "description": "Whether line-length violations (`E501`) should be triggered for comments starting with `task-tags` (by default: \\[\"TODO\", \"FIXME\", and \"XXX\"\\]).", "type": ["boolean", "null"] }, "max-doc-length": { "description": "The maximum line length to allow for line-length violations within documentation (`W505`), including standalone comments.", "anyOf": [ { "$ref": "#/definitions/LineLength" }, { "type": "null" } ] } }, "additionalProperties": false }, "Pydocstyle": { "type": "object", "properties": { "convention": { "description": "Whether to use Google-style or NumPy-style conventions or the PEP257 defaults when analyzing docstring sections.", "anyOf": [ { "$ref": "#/definitions/Convention" }, { "type": "null" } ] }, "ignore-decorators": { "description": "Ignore docstrings for functions or methods decorated with the specified fully-qualified decorators.", "type": ["array", "null"], "items": { "type": "string" } }, "property-decorators": { "description": "A list of decorators that, when applied to a method, indicate that the method should be treated as a property (in addition to the builtin `@property` and standard-library `@functools.cached_property`).\n\nFor example, Ruff will expect that any method decorated by a decorator in this list can use a non-imperative summary line.", "type": ["array", "null"], "items": { "type": "string" } } }, "additionalProperties": false }, "PyflakesOptions": { "type": "object", "properties": { "extend-generics": { "description": "Additional functions or classes to consider generic, such that any subscripts should be treated as type annotation (e.g., `ForeignKey` in `django.db.models.ForeignKey[\"User\"]`.", "type": ["array", "null"], "items": { "type": "string" } } }, "additionalProperties": false }, "PylintOptions": { "type": "object", "properties": { "allow-magic-value-types": { "description": "Constant types to ignore when used as \"magic values\" (see: `PLR2004`).", "type": ["array", "null"], "items": { "$ref": "#/definitions/ConstantType" } }, "max-args": { "description": "Maximum number of arguments allowed for a function or method definition (see: `PLR0913`).", "type": ["integer", "null"], "format": "uint", "minimum": 0.0 }, "max-branches": { "description": "Maximum number of branches allowed for a function or method body (see: `PLR0912`).", "type": ["integer", "null"], "format": "uint", "minimum": 0.0 }, "max-returns": { "description": "Maximum number of return statements allowed for a function or method body (see `PLR0911`)", "type": ["integer", "null"], "format": "uint", "minimum": 0.0 }, "max-statements": { "description": "Maximum number of statements allowed for a function or method body (see: `PLR0915`).", "type": ["integer", "null"], "format": "uint", "minimum": 0.0 } }, "additionalProperties": false }, "PythonVersion": { "type": "string", "enum": ["py37", "py38", "py39", "py310", "py311", "py312"] }, "Quote": { "oneOf": [ { "description": "Use double quotes.", "type": "string", "enum": ["double"] }, { "description": "Use single quotes.", "type": "string", "enum": ["single"] } ] }, "RelativeImportsOrder": { "oneOf": [ { "description": "Place \"closer\" imports (fewer `.` characters, most local) before \"further\" imports (more `.` characters, least local).", "type": "string", "enum": ["closest-to-furthest"] }, { "description": "Place \"further\" imports (more `.` characters, least local) imports before \"closer\" imports (fewer `.` characters, most local).", "type": "string", "enum": ["furthest-to-closest"] } ] }, "RuleSelector": { "type": "string", "enum": [ "A", "A0", "A00", "A001", "A002", "A003", "AIR", "AIR0", "AIR00", "AIR001", "ALL", "ANN", "ANN0", "ANN00", "ANN001", "ANN002", "ANN003", "ANN1", "ANN10", "ANN101", "ANN102", "ANN2", "ANN20", "ANN201", "ANN202", "ANN204", "ANN205", "ANN206", "ANN4", "ANN40", "ANN401", "ARG", "ARG0", "ARG00", "ARG001", "ARG002", "ARG003", "ARG004", "ARG005", "ASYNC", "ASYNC1", "ASYNC10", "ASYNC100", "ASYNC101", "ASYNC102", "B", "B0", "B00", "B002", "B003", "B004", "B005", "B006", "B007", "B008", "B009", "B01", "B010", "B011", "B012", "B013", "B014", "B015", "B016", "B017", "B018", "B019", "B02", "B020", "B021", "B022", "B023", "B024", "B025", "B026", "B027", "B028", "B029", "B03", "B030", "B031", "B032", "B033", "B9", "B90", "B904", "B905", "BLE", "BLE0", "BLE00", "BLE001", "C", "C4", "C40", "C400", "C401", "C402", "C403", "C404", "C405", "C406", "C408", "C409", "C41", "C410", "C411", "C413", "C414", "C415", "C416", "C417", "C418", "C419", "C9", "C90", "C901", "COM", "COM8", "COM81", "COM812", "COM818", "COM819", "CPY", "CPY001", "D", "D1", "D10", "D100", "D101", "D102", "D103", "D104", "D105", "D106", "D107", "D2", "D20", "D200", "D201", "D202", "D203", "D204", "D205", "D206", "D207", "D208", "D209", "D21", "D210", "D211", "D212", "D213", "D214", "D215", "D3", "D30", "D300", "D301", "D4", "D40", "D400", "D401", "D402", "D403", "D404", "D405", "D406", "D407", "D408", "D409", "D41", "D410", "D411", "D412", "D413", "D414", "D415", "D416", "D417", "D418", "D419", "DJ", "DJ0", "DJ00", "DJ001", "DJ003", "DJ006", "DJ007", "DJ008", "DJ01", "DJ012", "DJ013", "DTZ", "DTZ0", "DTZ00", "DTZ001", "DTZ002", "DTZ003", "DTZ004", "DTZ005", "DTZ006", "DTZ007", "DTZ01", "DTZ011", "DTZ012", "E", "E1", "E10", "E101", "E111", "E112", "E113", "E114", "E115", "E116", "E117", "E201", "E202", "E203", "E211", "E221", "E222", "E223", "E224", "E225", "E226", "E227", "E228", "E231", "E241", "E242", "E251", "E252", "E261", "E262", "E265", "E266", "E271", "E272", "E273", "E274", "E275", "E4", "E40", "E401", "E402", "E5", "E50", "E501", "E7", "E70", "E701", "E702", "E703", "E71", "E711", "E712", "E713", "E714", "E72", "E721", "E722", "E73", "E731", "E74", "E741", "E742", "E743", "E9", "E90", "E902", "E99", "E999", "EM", "EM1", "EM10", "EM101", "EM102", "EM103", "ERA", "ERA0", "ERA00", "ERA001", "EXE", "EXE0", "EXE00", "EXE001", "EXE002", "EXE003", "EXE004", "EXE005", "F", "F4", "F40", "F401", "F402", "F403", "F404", "F405", "F406", "F407", "F5", "F50", "F501", "F502", "F503", "F504", "F505", "F506", "F507", "F508", "F509", "F52", "F521", "F522", "F523", "F524", "F525", "F54", "F541", "F6", "F60", "F601", "F602", "F62", "F621", "F622", "F63", "F631", "F632", "F633", "F634", "F7", "F70", "F701", "F702", "F704", "F706", "F707", "F72", "F722", "F8", "F81", "F811", "F82", "F821", "F822", "F823", "F84", "F841", "F842", "F9", "F90", "F901", "FA", "FA1", "FA10", "FA100", "FA102", "FBT", "FBT0", "FBT00", "FBT001", "FBT002", "FBT003", "FIX", "FIX0", "FIX00", "FIX001", "FIX002", "FIX003", "FIX004", "FLY", "FLY0", "FLY00", "FLY002", "G", "G0", "G00", "G001", "G002", "G003", "G004", "G01", "G010", "G1", "G10", "G101", "G2", "G20", "G201", "G202", "I", "I0", "I00", "I001", "I002", "ICN", "ICN0", "ICN00", "ICN001", "ICN002", "ICN003", "INP", "INP0", "INP00", "INP001", "INT", "INT0", "INT00", "INT001", "INT002", "INT003", "ISC", "ISC0", "ISC00", "ISC001", "ISC002", "ISC003", "N", "N8", "N80", "N801", "N802", "N803", "N804", "N805", "N806", "N807", "N81", "N811", "N812", "N813", "N814", "N815", "N816", "N817", "N818", "N9", "N99", "N999", "NPY", "NPY0", "NPY00", "NPY001", "NPY002", "NPY003", "PD", "PD0", "PD00", "PD002", "PD003", "PD004", "PD007", "PD008", "PD009", "PD01", "PD010", "PD011", "PD012", "PD013", "PD015", "PD9", "PD90", "PD901", "PERF", "PERF1", "PERF10", "PERF101", "PERF102", "PERF2", "PERF20", "PERF203", "PERF4", "PERF40", "PERF401", "PERF402", "PGH", "PGH0", "PGH00", "PGH001", "PGH002", "PGH003", "PGH004", "PGH005", "PIE", "PIE7", "PIE79", "PIE790", "PIE794", "PIE796", "PIE8", "PIE80", "PIE800", "PIE804", "PIE807", "PIE81", "PIE810", "PL", "PLC", "PLC0", "PLC01", "PLC013", "PLC0132", "PLC02", "PLC020", "PLC0205", "PLC0208", "PLC04", "PLC041", "PLC0414", "PLC1901", "PLC3", "PLC30", "PLC300", "PLC3002", "PLE", "PLE0", "PLE01", "PLE010", "PLE0100", "PLE0101", "PLE011", "PLE0116", "PLE0117", "PLE0118", "PLE02", "PLE024", "PLE0241", "PLE03", "PLE030", "PLE0302", "PLE0307", "PLE06", "PLE060", "PLE0604", "PLE0605", "PLE1", "PLE11", "PLE114", "PLE1142", "PLE12", "PLE120", "PLE1205", "PLE1206", "PLE13", "PLE130", "PLE1307", "PLE131", "PLE1310", "PLE15", "PLE150", "PLE1507", "PLE17", "PLE170", "PLE1700", "PLE2", "PLE25", "PLE250", "PLE2502", "PLE251", "PLE2510", "PLE2512", "PLE2513", "PLE2514", "PLE2515", "PLR", "PLR0", "PLR01", "PLR012", "PLR0124", "PLR013", "PLR0133", "PLR02", "PLR020", "PLR0206", "PLR04", "PLR040", "PLR0402", "PLR09", "PLR091", "PLR0911", "PLR0912", "PLR0913", "PLR0915", "PLR1", "PLR17", "PLR170", "PLR1701", "PLR171", "PLR1711", "PLR172", "PLR1722", "PLR2", "PLR20", "PLR200", "PLR2004", "PLR5", "PLR55", "PLR550", "PLR5501", "PLW", "PLW0", "PLW01", "PLW012", "PLW0120", "PLW0129", "PLW013", "PLW0131", "PLW04", "PLW040", "PLW0406", "PLW06", "PLW060", "PLW0602", "PLW0603", "PLW07", "PLW071", "PLW0711", "PLW1", "PLW15", "PLW150", "PLW1508", "PLW2", "PLW29", "PLW290", "PLW2901", "PLW3", "PLW33", "PLW330", "PLW3301", "PT", "PT0", "PT00", "PT001", "PT002", "PT003", "PT004", "PT005", "PT006", "PT007", "PT008", "PT009", "PT01", "PT010", "PT011", "PT012", "PT013", "PT015", "PT016", "PT017", "PT018", "PT019", "PT02", "PT020", "PT021", "PT022", "PT023", "PT024", "PT025", "PT026", "PTH", "PTH1", "PTH10", "PTH100", "PTH101", "PTH102", "PTH103", "PTH104", "PTH105", "PTH106", "PTH107", "PTH108", "PTH109", "PTH11", "PTH110", "PTH111", "PTH112", "PTH113", "PTH114", "PTH115", "PTH116", "PTH117", "PTH118", "PTH119", "PTH12", "PTH120", "PTH121", "PTH122", "PTH123", "PTH124", "PYI", "PYI0", "PYI00", "PYI001", "PYI002", "PYI003", "PYI004", "PYI005", "PYI006", "PYI007", "PYI008", "PYI009", "PYI01", "PYI010", "PYI011", "PYI012", "PYI013", "PYI014", "PYI015", "PYI016", "PYI02", "PYI020", "PYI021", "PYI024", "PYI025", "PYI029", "PYI03", "PYI032", "PYI033", "PYI034", "PYI035", "PYI04", "PYI042", "PYI043", "PYI044", "PYI045", "PYI048", "PYI05", "PYI050", "PYI052", "PYI053", "PYI054", "Q", "Q0", "Q00", "Q000", "Q001", "Q002", "Q003", "RET", "RET5", "RET50", "RET501", "RET502", "RET503", "RET504", "RET505", "RET506", "RET507", "RET508", "RSE", "RSE1", "RSE10", "RSE102", "RUF", "RUF0", "RUF00", "RUF001", "RUF002", "RUF003", "RUF005", "RUF006", "RUF007", "RUF008", "RUF009", "RUF01", "RUF010", "RUF011", "RUF012", "RUF013", "RUF1", "RUF10", "RUF100", "RUF2", "RUF20", "RUF200", "S", "S1", "S10", "S101", "S102", "S103", "S104", "S105", "S106", "S107", "S108", "S11", "S110", "S112", "S113", "S3", "S30", "S301", "S302", "S303", "S304", "S305", "S306", "S307", "S308", "S31", "S310", "S311", "S312", "S313", "S314", "S315", "S316", "S317", "S318", "S319", "S32", "S320", "S321", "S323", "S324", "S5", "S50", "S501", "S506", "S508", "S509", "S6", "S60", "S601", "S602", "S603", "S604", "S605", "S606", "S607", "S608", "S609", "S61", "S612", "S7", "S70", "S701", "SIM", "SIM1", "SIM10", "SIM101", "SIM102", "SIM103", "SIM105", "SIM107", "SIM108", "SIM109", "SIM11", "SIM110", "SIM112", "SIM114", "SIM115", "SIM116", "SIM117", "SIM118", "SIM2", "SIM20", "SIM201", "SIM202", "SIM208", "SIM21", "SIM210", "SIM211", "SIM212", "SIM22", "SIM220", "SIM221", "SIM222", "SIM223", "SIM3", "SIM30", "SIM300", "SIM4", "SIM40", "SIM401", "SIM9", "SIM91", "SIM910", "SLF", "SLF0", "SLF00", "SLF001", "SLOT", "SLOT0", "SLOT00", "SLOT000", "SLOT001", "SLOT002", "T", "T1", "T10", "T100", "T2", "T20", "T201", "T203", "TCH", "TCH0", "TCH00", "TCH001", "TCH002", "TCH003", "TCH004", "TCH005", "TD", "TD0", "TD00", "TD001", "TD002", "TD003", "TD004", "TD005", "TD006", "TD007", "TID", "TID2", "TID25", "TID251", "TID252", "TRY", "TRY0", "TRY00", "TRY002", "TRY003", "TRY004", "TRY2", "TRY20", "TRY200", "TRY201", "TRY3", "TRY30", "TRY300", "TRY301", "TRY302", "TRY4", "TRY40", "TRY400", "TRY401", "UP", "UP0", "UP00", "UP001", "UP003", "UP004", "UP005", "UP006", "UP007", "UP008", "UP009", "UP01", "UP010", "UP011", "UP012", "UP013", "UP014", "UP015", "UP017", "UP018", "UP019", "UP02", "UP020", "UP021", "UP022", "UP023", "UP024", "UP025", "UP026", "UP027", "UP028", "UP029", "UP03", "UP030", "UP031", "UP032", "UP033", "UP034", "UP035", "UP036", "UP037", "UP038", "UP039", "W", "W1", "W19", "W191", "W2", "W29", "W291", "W292", "W293", "W5", "W50", "W505", "W6", "W60", "W605", "YTT", "YTT1", "YTT10", "YTT101", "YTT102", "YTT103", "YTT2", "YTT20", "YTT201", "YTT202", "YTT203", "YTT204", "YTT3", "YTT30", "YTT301", "YTT302", "YTT303" ] }, "SerializationFormat": { "type": "string", "enum": [ "text", "json", "json-lines", "junit", "grouped", "github", "gitlab", "pylint", "azure" ] }, "Strictness": { "oneOf": [ { "description": "Ban imports that extend into the parent module or beyond.", "type": "string", "enum": ["parents"] }, { "description": "Ban all relative imports.", "type": "string", "enum": ["all"] } ] }, "TabSize": { "description": "The size of a tab.", "type": "integer", "format": "uint8", "minimum": 0.0 }, "Version": { "type": "string" } }, "properties": { "allowed-confusables": { "description": "A list of allowed \"confusable\" Unicode characters to ignore when enforcing `RUF001`, `RUF002`, and `RUF003`.", "type": ["array", "null"], "items": { "type": "string", "maxLength": 1, "minLength": 1 } }, "builtins": { "description": "A list of builtins to treat as defined references, in addition to the system builtins.", "type": ["array", "null"], "items": { "type": "string" } }, "cache-dir": { "description": "A path to the cache directory.\n\nBy default, Ruff stores cache results in a `.ruff_cache` directory in the current project root.\n\nHowever, Ruff will also respect the `RUFF_CACHE_DIR` environment variable, which takes precedence over that default.\n\nThis setting will override even the `RUFF_CACHE_DIR` environment variable, if set.", "type": ["string", "null"] }, "dummy-variable-rgx": { "description": "A regular expression used to identify \"dummy\" variables, or those which should be ignored when enforcing (e.g.) unused-variable rules. The default expression matches `_`, `__`, and `_var`, but not `_var_`.", "type": ["string", "null"] }, "exclude": { "description": "A list of file patterns to exclude from linting.\n\nExclusions are based on globs, and can be either:\n\n- Single-path patterns, like `.mypy_cache` (to exclude any directory named `.mypy_cache` in the tree), `foo.py` (to exclude any file named `foo.py`), or `foo_*.py` (to exclude any file matching `foo_*.py` ). - Relative patterns, like `directory/foo.py` (to exclude that specific file) or `directory/*.py` (to exclude any Python files in `directory`). Note that these paths are relative to the project root (e.g., the directory containing your `pyproject.toml`).\n\nFor more information on the glob syntax, refer to the [`globset` documentation](https://docs.rs/globset/latest/globset/#syntax).\n\nNote that you'll typically want to use [`extend-exclude`](#extend-exclude) to modify the excluded paths.", "type": ["array", "null"], "items": { "type": "string" } }, "extend": { "description": "A path to a local `pyproject.toml` file to merge into this configuration. User home directory and environment variables will be expanded.\n\nTo resolve the current `pyproject.toml` file, Ruff will first resolve this base configuration file, then merge in any properties defined in the current configuration file.", "type": ["string", "null"] }, "extend-exclude": { "description": "A list of file patterns to omit from linting, in addition to those specified by `exclude`.\n\nExclusions are based on globs, and can be either:\n\n- Single-path patterns, like `.mypy_cache` (to exclude any directory named `.mypy_cache` in the tree), `foo.py` (to exclude any file named `foo.py`), or `foo_*.py` (to exclude any file matching `foo_*.py` ). - Relative patterns, like `directory/foo.py` (to exclude that specific file) or `directory/*.py` (to exclude any Python files in `directory`). Note that these paths are relative to the project root (e.g., the directory containing your `pyproject.toml`).\n\nFor more information on the glob syntax, refer to the [`globset` documentation](https://docs.rs/globset/latest/globset/#syntax).", "type": ["array", "null"], "items": { "type": "string" } }, "extend-fixable": { "description": "A list of rule codes or prefixes to consider autofixable, in addition to those specified by `fixable`.", "type": ["array", "null"], "items": { "$ref": "#/definitions/RuleSelector" } }, "extend-include": { "description": "A list of file patterns to include when linting, in addition to those specified by `include`.\n\nInclusion are based on globs, and should be single-path patterns, like `*.pyw`, to include any file with the `.pyw` extension.\n\nFor more information on the glob syntax, refer to the [`globset` documentation](https://docs.rs/globset/latest/globset/#syntax).", "type": ["array", "null"], "items": { "type": "string" } }, "extend-per-file-ignores": { "description": "A list of mappings from file pattern to rule codes or prefixes to exclude, in addition to any rules excluded by `per-file-ignores`.", "type": ["object", "null"], "additionalProperties": { "type": "array", "items": { "$ref": "#/definitions/RuleSelector" } } }, "extend-select": { "description": "A list of rule codes or prefixes to enable, in addition to those specified by `select`.", "type": ["array", "null"], "items": { "$ref": "#/definitions/RuleSelector" } }, "external": { "description": "A list of rule codes that are unsupported by Ruff, but should be preserved when (e.g.) validating `# noqa` directives. Useful for retaining `# noqa` directives that cover plugins not yet implemented by Ruff.", "type": ["array", "null"], "items": { "type": "string" } }, "fix": { "description": "Enable autofix behavior by-default when running `ruff` (overridden by the `--fix` and `--no-fix` command-line flags).", "type": ["boolean", "null"] }, "fix-only": { "description": "Like `fix`, but disables reporting on leftover violation. Implies `fix`.", "type": ["boolean", "null"] }, "fixable": { "description": "A list of rule codes or prefixes to consider autofixable. By default, all rules are considered autofixable.", "type": ["array", "null"], "items": { "$ref": "#/definitions/RuleSelector" } }, "flake8-annotations": { "description": "Options for the `flake8-annotations` plugin.", "anyOf": [ { "$ref": "#/definitions/Flake8AnnotationsOptions" }, { "type": "null" } ] }, "flake8-bandit": { "description": "Options for the `flake8-bandit` plugin.", "anyOf": [ { "$ref": "#/definitions/Flake8BanditOptions" }, { "type": "null" } ] }, "flake8-bugbear": { "description": "Options for the `flake8-bugbear` plugin.", "anyOf": [ { "$ref": "#/definitions/Flake8BugbearOptions" }, { "type": "null" } ] }, "flake8-builtins": { "description": "Options for the `flake8-builtins` plugin.", "anyOf": [ { "$ref": "#/definitions/Flake8BuiltinsOptions" }, { "type": "null" } ] }, "flake8-comprehensions": { "description": "Options for the `flake8-comprehensions` plugin.", "anyOf": [ { "$ref": "#/definitions/Flake8ComprehensionsOptions" }, { "type": "null" } ] }, "flake8-copyright": { "description": "Options for the `copyright` plugin.", "anyOf": [ { "$ref": "#/definitions/Flake8CopyrightOptions" }, { "type": "null" } ] }, "flake8-errmsg": { "description": "Options for the `flake8-errmsg` plugin.", "anyOf": [ { "$ref": "#/definitions/Flake8ErrMsgOptions" }, { "type": "null" } ] }, "flake8-gettext": { "description": "Options for the `flake8-gettext` plugin.", "anyOf": [ { "$ref": "#/definitions/Flake8GetTextOptions" }, { "type": "null" } ] }, "flake8-implicit-str-concat": { "description": "Options for the `flake8-implicit-str-concat` plugin.", "anyOf": [ { "$ref": "#/definitions/Flake8ImplicitStrConcatOptions" }, { "type": "null" } ] }, "flake8-import-conventions": { "description": "Options for the `flake8-import-conventions` plugin.", "anyOf": [ { "$ref": "#/definitions/Flake8ImportConventionsOptions" }, { "type": "null" } ] }, "flake8-pytest-style": { "description": "Options for the `flake8-pytest-style` plugin.", "anyOf": [ { "$ref": "#/definitions/Flake8PytestStyleOptions" }, { "type": "null" } ] }, "flake8-quotes": { "description": "Options for the `flake8-quotes` plugin.", "anyOf": [ { "$ref": "#/definitions/Flake8QuotesOptions" }, { "type": "null" } ] }, "flake8-self": { "description": "Options for the `flake8_self` plugin.", "anyOf": [ { "$ref": "#/definitions/Flake8SelfOptions" }, { "type": "null" } ] }, "flake8-tidy-imports": { "description": "Options for the `flake8-tidy-imports` plugin.", "anyOf": [ { "$ref": "#/definitions/Flake8TidyImportsOptions" }, { "type": "null" } ] }, "flake8-type-checking": { "description": "Options for the `flake8-type-checking` plugin.", "anyOf": [ { "$ref": "#/definitions/Flake8TypeCheckingOptions" }, { "type": "null" } ] }, "flake8-unused-arguments": { "description": "Options for the `flake8-unused-arguments` plugin.", "anyOf": [ { "$ref": "#/definitions/Flake8UnusedArgumentsOptions" }, { "type": "null" } ] }, "force-exclude": { "description": "Whether to enforce `exclude` and `extend-exclude` patterns, even for paths that are passed to Ruff explicitly. Typically, Ruff will lint any paths passed in directly, even if they would typically be excluded. Setting `force-exclude = true` will cause Ruff to respect these exclusions unequivocally.\n\nThis is useful for [`pre-commit`](https://pre-commit.com/), which explicitly passes all changed files to the [`ruff-pre-commit`](https://github.com/astral-sh/ruff-pre-commit) plugin, regardless of whether they're marked as excluded by Ruff's own settings.", "type": ["boolean", "null"] }, "format": { "description": "The style in which violation messages should be formatted: `\"text\"` (default), `\"grouped\"` (group messages by file), `\"json\"` (machine-readable), `\"junit\"` (machine-readable XML), `\"github\"` (GitHub Actions annotations), `\"gitlab\"` (GitLab CI code quality report), `\"pylint\"` (Pylint text format) or `\"azure\"` (Azure Pipeline logging commands).", "anyOf": [ { "$ref": "#/definitions/SerializationFormat" }, { "type": "null" } ] }, "ignore": { "description": "A list of rule codes or prefixes to ignore. Prefixes can specify exact rules (like `F841`), entire categories (like `F`), or anything in between.\n\nWhen breaking ties between enabled and disabled rules (via `select` and `ignore`, respectively), more specific prefixes override less specific prefixes.", "type": ["array", "null"], "items": { "$ref": "#/definitions/RuleSelector" } }, "ignore-init-module-imports": { "description": "Avoid automatically removing unused imports in `__init__.py` files. Such imports will still be flagged, but with a dedicated message suggesting that the import is either added to the module's `__all__` symbol, or re-exported with a redundant alias (e.g., `import os as os`).", "type": ["boolean", "null"] }, "include": { "description": "A list of file patterns to include when linting.\n\nInclusion are based on globs, and should be single-path patterns, like `*.pyw`, to include any file with the `.pyw` extension. `pyproject.toml` is included here not for configuration but because we lint whether e.g. the `[project]` matches the schema.\n\nFor more information on the glob syntax, refer to the [`globset` documentation](https://docs.rs/globset/latest/globset/#syntax).", "type": ["array", "null"], "items": { "type": "string" } }, "isort": { "description": "Options for the `isort` plugin.", "anyOf": [ { "$ref": "#/definitions/IsortOptions" }, { "type": "null" } ] }, "line-length": { "description": "The line length to use when enforcing long-lines violations (like `E501`).", "anyOf": [ { "$ref": "#/definitions/LineLength" }, { "type": "null" } ] }, "mccabe": { "description": "Options for the `mccabe` plugin.", "anyOf": [ { "$ref": "#/definitions/McCabeOptions" }, { "type": "null" } ] }, "namespace-packages": { "description": "Mark the specified directories as namespace packages. For the purpose of module resolution, Ruff will treat those directories as if they contained an `__init__.py` file.", "type": ["array", "null"], "items": { "type": "string" } }, "pep8-naming": { "description": "Options for the `pep8-naming` plugin.", "anyOf": [ { "$ref": "#/definitions/Pep8NamingOptions" }, { "type": "null" } ] }, "per-file-ignores": { "description": "A list of mappings from file pattern to rule codes or prefixes to exclude, when considering any matching files.", "type": ["object", "null"], "additionalProperties": { "type": "array", "items": { "$ref": "#/definitions/RuleSelector" } } }, "pycodestyle": { "description": "Options for the `pycodestyle` plugin.", "anyOf": [ { "$ref": "#/definitions/Pycodestyle" }, { "type": "null" } ] }, "pydocstyle": { "description": "Options for the `pydocstyle` plugin.", "anyOf": [ { "$ref": "#/definitions/Pydocstyle" }, { "type": "null" } ] }, "pyflakes": { "description": "Options for the `pyflakes` plugin.", "anyOf": [ { "$ref": "#/definitions/PyflakesOptions" }, { "type": "null" } ] }, "pylint": { "description": "Options for the `pylint` plugin.", "anyOf": [ { "$ref": "#/definitions/PylintOptions" }, { "type": "null" } ] }, "pyupgrade": { "description": "Options for the `pyupgrade` plugin.", "anyOf": [ { "$ref": "#/definitions/PyUpgradeOptions" }, { "type": "null" } ] }, "required-version": { "description": "Require a specific version of Ruff to be running (useful for unifying results across many environments, e.g., with a `pyproject.toml` file).", "anyOf": [ { "$ref": "#/definitions/Version" }, { "type": "null" } ] }, "respect-gitignore": { "description": "Whether to automatically exclude files that are ignored by `.ignore`, `.gitignore`, `.git/info/exclude`, and global `gitignore` files. Enabled by default.", "type": ["boolean", "null"] }, "select": { "description": "A list of rule codes or prefixes to enable. Prefixes can specify exact rules (like `F841`), entire categories (like `F`), or anything in between.\n\nWhen breaking ties between enabled and disabled rules (via `select` and `ignore`, respectively), more specific prefixes override less specific prefixes.", "type": ["array", "null"], "items": { "$ref": "#/definitions/RuleSelector" } }, "show-fixes": { "description": "Whether to show an enumeration of all autofixed lint violations (overridden by the `--show-fixes` command-line flag).", "type": ["boolean", "null"] }, "show-source": { "description": "Whether to show source code snippets when reporting lint violations (overridden by the `--show-source` command-line flag).", "type": ["boolean", "null"] }, "src": { "description": "The source code paths to consider, e.g., when resolving first- vs. third-party imports.\n\nAs an example: given a Python package structure like:\n\n```text my_package/ pyproject.toml src/ my_package/ __init__.py foo.py bar.py ```\n\nThe `src` directory should be included in the `src` option (e.g., `src = [\"src\"]`), such that when resolving imports, `my_package.foo` is considered a first-party import.\n\nWhen omitted, the `src` directory will typically default to the directory containing the nearest `pyproject.toml`, `ruff.toml`, or `.ruff.toml` file (the \"project root\"), unless a configuration file is explicitly provided (e.g., via the `--config` command-line flag).\n\nThis field supports globs. For example, if you have a series of Python packages in a `python_modules` directory, `src = [\"python_modules/*\"]` would expand to incorporate all of the packages in that directory. User home directory and environment variables will also be expanded.", "type": ["array", "null"], "items": { "type": "string" } }, "tab-size": { "description": "The tabulation size to calculate line length.", "anyOf": [ { "$ref": "#/definitions/TabSize" }, { "type": "null" } ] }, "target-version": { "description": "The minimum Python version to target, e.g., when considering automatic code upgrades, like rewriting type annotations.\n\nIf omitted, and Ruff is configured via a `pyproject.toml` file, the target version will be inferred from its `project.requires-python` field (e.g., `requires-python = \">=3.8\"`). If Ruff is configured via `ruff.toml` or `.ruff.toml`, no such inference will be performed.", "anyOf": [ { "$ref": "#/definitions/PythonVersion" }, { "type": "null" } ] }, "task-tags": { "description": "A list of task tags to recognize (e.g., \"TODO\", \"FIXME\", \"XXX\").\n\nComments starting with these tags will be ignored by commented-out code detection (`ERA`), and skipped by line-length rules (`E501`) if `ignore-overlong-task-comments` is set to `true`.", "type": ["array", "null"], "items": { "type": "string" } }, "typing-modules": { "description": "A list of modules whose imports should be treated equivalently to members of the `typing` module.\n\nThis is useful for ensuring proper type annotation inference for projects that re-export `typing` and `typing_extensions` members from a compatibility module. If omitted, any members imported from modules apart from `typing` and `typing_extensions` will be treated as ordinary Python objects.", "type": ["array", "null"], "items": { "type": "string" } }, "unfixable": { "description": "A list of rule codes or prefixes to consider non-autofix-able.", "type": ["array", "null"], "items": { "$ref": "#/definitions/RuleSelector" } } }, "title": "Options", "type": "object" }
ray-schema.json
{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "http://github.com/ray-project/ray/python/ray/autoscaler/ray-schema.json", "title": "Ray AutoScaler", "description": "Ray autoscaler schema", "type": "object", "definitions": { "commands": { "type": "array", "items": { "type": "string", "description": "shell command" } } }, "required": [ "cluster_name", "provider" ], "additionalProperties": false, "properties": { "cluster_name": { "description": "A unique identifier for the head node and workers of this cluster.", "type": "string" }, "max_workers": { "description": "The maximum number of workers nodes to launch in addition to the head node. This takes precedence over min_workers.", "type": "integer", "minimum": 0 }, "upscaling_speed": { "description": "The autoscaler will scale up the cluster faster with higher upscaling speed. E.g., if the task requires adding more nodes then autoscaler will gradually scale up the cluster in chunks of upscaling_speed*currently_running_nodes. This number should be > 0.", "type": "number", "minimum": 0 }, "idle_timeout_minutes": { "description": "If a node is idle for this many minutes, it will be removed.", "type": "number", "minimum": 0 }, "provider": { "type": "object", "description": "Cloud-provider specific configuration.", "required": [ "type" ], "additionalProperties": true, "properties": { "type": { "type": "string", "description": "e.g. aws, azure, gcp,..." }, "region": { "type": "string", "description": "e.g. us-east-1" }, "module": { "type": "string", "description": "module, if using external node provider" }, "head_ip": { "type": "string", "description": "gcp project id, if using gcp" }, "worker_ips": { "type": "array", "description": "local cluster head node" }, "use_internal_ips": { "type": "boolean", "description": "don't require public ips" }, "namespace": { "type": "string", "description": "k8s namespace, if using k8s" }, "location": { "type": "string", "description": "Azure location" }, "resource_group": { "type": "string", "description": "Azure resource group" }, "tags": { "type": "object", "description": "Azure user-defined tags" }, "subscription_id": { "type": "string", "description": "Azure subscription id" }, "msi_identity_id": { "type": "string", "description": "User-defined managed identity (generated by config)" }, "msi_identity_principal_id": { "type": "string", "description": "User-defined managed identity principal id (generated by config)" }, "subnet_id": { "type": "string", "description": "Network subnet id" }, "autoscaler_service_account": { "type": "object", "description": "k8s autoscaler permissions, if using k8s" }, "autoscaler_role": { "type": "object", "description": "k8s autoscaler permissions, if using k8s" }, "autoscaler_role_binding": { "type": "object", "description": "k8s autoscaler permissions, if using k8s" }, "cache_stopped_nodes": { "type": "boolean", "description": " Whether to try to reuse previously stopped nodes instead of launching nodes. This will also cause the autoscaler to stop nodes instead of terminating them. Only implemented for AWS." }, "availability_zone": { "type": "string", "description": "GCP availability zone" }, "project_id": { "type": ["string", "null"], "description": "GCP globally unique project id" }, "security_group": { "type": "object", "description": "AWS security group", "additionalProperties": false, "properties": { "GroupName": { "type": "string", "description": "Security group name" }, "IpPermissions": { "type": "array", "description": "Security group in bound rules" } } }, "disable_node_updaters": { "type": "boolean", "description": "Disables node updaters if set to True. Default is False. (For Kubernetes operator usage.)" }, "gcp_credentials": { "type": "object", "description": "Credentials for authenticating with the GCP client", "required": [ "type" ], "additionalProperties": false, "properties": { "type": { "type": "string", "enum": ["credentials_token", "service_account"], "description": "Credentials type: either temporary OAuth 2.0 token or permanent service account credentials blob." }, "credentials": { "type": "string", "description": "Oauth token or JSON string constituting service account credentials" } } }, "cloudwatch": { "agent": { "CLOUDWATCH_AGENT_INSTALLED_AMI_TAG": { "type": ["string"], "description": "Tag to be added to cloudwatch agent pre-installed AMI name." }, "config": { "type": ["string", "null"], "description": "Path to Unified CloudWatch Agent config file. See https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/CloudWatch-Agent-Configuration-File-Details.html for additional details." }, "retryer": { "max_attempts": { "type": ["integer", "null"], "description": "Max allowed Unified CloudWatch Agent installation attempts on any host." }, "delay_seconds": { "type": ["integer", "null"], "description": "Seconds to wait between each Unified CloudWatch Agent installation attempt." } } }, "dashboard": { "name": { "type": ["string", "null"], "description": "User defined CloudWatch Dashboard name." }, "config": { "type": ["string", "null"], "description": "Path to CloudWatch Dashboard config file. See https://docs.aws.amazon.com/AmazonCloudWatch/latest/APIReference/CloudWatch-Dashboard-Body-Structure.html for additional details." } }, "alarm": { "config": { "type": ["string", "null"], "description": "Path to CloudWatch Alarm config file. See https://docs.aws.amazon.com/AmazonCloudWatch/latest/APIReference/API_PutMetricAlarm.html for additional details." } } } } }, "auth": { "type": "object", "description": "How Ray will authenticate with newly launched nodes.", "additionalProperties": false, "properties": { "ssh_user": { "type": "string", "default": "ubuntu" }, "ssh_public_key": { "type": "string" }, "ssh_private_key": { "type": "string" }, "ssh_proxy_command": { "description": "A value for ProxyCommand ssh option, for connecting through proxies. Example: nc -x proxy.example.com:1234 %h %p", "type": "string" } } }, "docker": { "type": "object", "description": "Docker configuration. If this is specified, all setup and start commands will be executed in the container.", "additionalProperties": false, "properties": { "image": { "type": "string", "description": "the docker image name", "default": "rayproject/ray:latest" }, "container_name": { "type": "string", "default": "ray_docker" }, "pull_before_run": { "type": "boolean", "description": "run `docker pull` first" }, "run_options": { "type": "array", "description": "shared options for starting head/worker docker" }, "head_image": { "type": "string", "description": "image for head node, takes precedence over 'image' if specified" }, "head_run_options": { "type": "array", "description": "head specific run options, appended to run_options" }, "worker_image": { "type": "string", "description": "analogous to head_image" }, "worker_run_options": { "type": "array", "description": "analogous to head_run_options" }, "disable_automatic_runtime_detection" : { "type": "boolean", "description": "disable Ray from automatically using the NVIDIA runtime if available", "default": false }, "disable_shm_size_detection" : { "type": "boolean", "description": "disable Ray from automatically detecting /dev/shm size for the container", "default": false }, "use_podman" : { "type": "boolean", "description": "Use 'podman' command in place of 'docker'", "default": false } } }, "head_node_type": { "type": "string", "description": "If using multiple node types, specifies the head node type." }, "file_mounts": { "type": "object", "description": "Map of remote paths to local paths, e.g. {\"/tmp/data\": \"/my/local/data\"}" }, "cluster_synced_files": { "type": "array", "description": "List of paths on the head node which should sync to the worker nodes, e.g. [\"/some/data/somehwere\"]" }, "file_mounts_sync_continuously": { "type": "boolean", "description": "If enabled, file mounts will sync continously between the head node and the worker nodes. The nodes will not re-run setup commands if only the contents of the file mounts folders change." }, "rsync_exclude": { "type": "array", "description": "File pattern to not sync up or down when using the rsync command. Matches the format of rsync's --exclude param." }, "rsync_filter": { "type": "array", "description": "Pattern files to lookup patterns to exclude when using rsync up or rsync down. This file is checked for recursively in all directories. For example, if .gitignore is provided here, the behavior will match git's .gitignore behavior." }, "metadata": { "type": "object", "description": "Metadata field that can be used to store user-defined data in the cluster config. Ray does not interpret these fields." }, "initialization_commands": { "$ref": "#/definitions/commands", "description": "List of commands that will be run before `setup_commands`. If docker is enabled, these commands will run outside the container and before docker is setup." }, "setup_commands": { "$ref": "#/definitions/commands", "description": "List of common shell commands to run to setup nodes." }, "head_setup_commands": { "$ref": "#/definitions/commands", "description": "Commands that will be run on the head node after common setup." }, "worker_setup_commands": { "$ref": "#/definitions/commands", "description": "Commands that will be run on worker nodes after common setup." }, "head_start_ray_commands": { "$ref": "#/definitions/commands", "description": "Command to start ray on the head node. You shouldn't need to modify this." }, "worker_start_ray_commands": { "$ref": "#/definitions/commands", "description": "Command to start ray on worker nodes. You shouldn't need to modify this." }, "no_restart": { "description": "Whether to avoid restarting the cluster during updates. This field is controlled by the ray --no-restart flag and cannot be set by the user." }, "available_node_types": { "type": "object", "description": "A list of node types for multi-node-type autoscaling.", "patternProperties": { ".*": { "type": "object", "required": [ "resources", "node_config" ], "properties": { "node_config": { "type": "object", "description": "Provider-specific config for the node, e.g. instance type." }, "min_workers": {"type": "integer"}, "max_workers": {"type": "integer"}, "resources": { "type": "object", "patternProperties": { ".*":{ "type": "integer", "minimum": 0 } } }, "labels": { "type": "object", "patternProperties": { ".*":{ "type": "string" } } }, "initialization_commands": { "$ref": "#/definitions/commands", "description": "List of commands that will be run before `setup_commands`. If docker is enabled, these commands will run outside the container and before docker is setup." }, "worker_setup_commands": { "$ref": "#/definitions/commands", "description": "List of common shell commands to run to setup nodes. This node specfic list will override the global setup_commands and worker_setup_commands." }, "docker": { "description": "Configuration of Worker nodes.", "type": "object", "properties": { "pull_before_run": { "type": "boolean", "description": "run `docker pull` first" }, "worker_image": { "type": "string", "description": "analogous to head_image" }, "worker_run_options": { "type": "array", "description": "analogous to head_run_options, merged with the global docker run_options." } }, "additionalProperties": false } }, "additionalProperties": false } }, "additionalProperties": false } } }
rust-project.json
{ "$schema": "http://json-schema.org/draft-04/schema#", "definitions": { "crate": { "type": "object", "properties": { "display_name": { "description": "Crate name used for display purposes, without affecting semantics.", "title": "Display name", "type": "string" }, "root_module": { "description": "Path to the root module of the crate.", "title": "Root module", "type": "string" }, "edition": { "description": "Edition of the crate.", "title": "Edition", "type": "string", "enum": ["2015", "2018", "2021"] }, "deps": { "description": "Crate dependencies.", "title": "Dependencies", "type": "array", "uniqueItems": true, "items": { "$ref": "#/definitions/dep" } }, "version": { "description": "The crate's version", "title": "Version", "type": "string", "pattern": "^([0-9]+)\\.([0-9]+)\\.([0-9]+)(?:-([0-9A-Za-z-]+(?:\\.[0-9A-Za-z-]+)*))?(?:\\+[0-9A-Za-z-]+)?$" }, "is_workspace_member": { "description": "Whether this crate should be treated as a member of the current \"workspace\".", "title": "Is workspace member?", "type": "boolean" }, "source": { "description": "(Super)set of `.rs` files comprising this crate.", "title": "Source", "type": "object", "properties": { "include_dirs": { "title": "Included directories", "type": "array", "uniqueItems": true, "items": { "type": "string" } }, "exclude_dirs": { "title": "Excluded directories", "type": "array", "uniqueItems": true, "items": { "type": "string" } } }, "required": ["include_dirs", "exclude_dirs"] }, "cfg": { "description": "The set of cfgs activated for a given crate.", "title": "Configurations", "type": "array", "uniqueItems": true, "items": { "type": "string" } }, "target": { "description": "Target triple for this crate.", "title": "Target", "type": "string" }, "env": { "description": "Environment variables, used for the `env!` macro", "title": "Environment variables", "type": "object", "patternProperties": { "^.*$": { "type": "string" } }, "additionalProperties": false }, "is_proc_macro": { "description": "Whether the crate is a proc-macro crate.", "title": "Is proc-macro?", "type": "boolean" }, "proc_macro_dylib_path": { "description": "For proc-macro crates, path to compiled proc-macro (.so file).", "title": "Path to compiled proc-macro", "type": "string" }, "repository": { "description": "URL to the source repository of the crate.", "title": "Repository", "type": "string" } }, "required": ["root_module", "edition", "deps"] }, "dep": { "title": "Dependencies", "type": "object", "properties": { "crate": { "description": "Index of a crate in the `crates` array.", "title": "Crate index", "type": "integer" }, "name": { "description": "Name as should appear in the (implicit) `extern crate name` declaration.", "title": "Name", "type": "string" } }, "required": ["crate", "name"] } }, "id": "https://json.schemastore.org/rust-project.json", "properties": { "sysroot": { "description": "Path to sysroot.", "title": "Sysroot", "type": "string" }, "sysroot_src": { "description": "Path to the directory with source code of sysroot crates.", "title": "Sysroot source", "type": "string" }, "crates": { "description": "The set of crates comprising the current project.", "title": "Crates", "type": "array", "uniqueItems": true, "items": { "$ref": "#/definitions/crate" } } }, "required": ["crates"], "title": "JSON schema for non-Cargo based Rust projects", "type": "object" }
uproject.json
{ "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "definitions": { "BuildConfiguration": { "description": "Available build configurations. Mirorred from UnrealTargetConfiguration.", "markdownDescription": "Available build configurations. Mirorred from `UnrealTargetConfiguration`.", "type": "string", "enum": [ "Unknown", "Debug", "DebugGame", "Development", "Shipping", "Test" ] }, "BuildTargetType": { "description": "Enumerates build target types.", "type": "string", "enum": ["Unknown", "Game", "Server", "Client", "Editor", "Program"] }, "ModuleDescriptor": { "description": "Description of a loadable module.", "type": "object", "properties": { "AdditionalDependencies": { "description": "List of additional dependencies for building this module.", "type": "array", "items": { "type": "string" } }, "HasExplicitPlatforms": { "description": "When true, an empty PlatformAllowList is interpeted as 'no platforms' with the expectation that explict platforms will be added in plugin extensions.", "markdownDescription": "When true, an empty `PlatformAllowList` is interpeted as **no platforms** with the expectation that explict platforms will be added in plugin extensions.", "type": "boolean", "default": false }, "LoadingPhase": { "description": "When should the module be loaded during the startup sequence? This is sort of an advanced setting.", "type": "string", "enum": [ "EarliestPossible", "PostConfigInit", "PostSplashScreen", "PreEarlyLoadingScreen", "PreLoadingScreen", "PreDefault", "Default", "PostDefault", "PostEngineInit", "None", "Max" ] }, "Name": { "description": "Name of this module.", "type": "string" }, "PlatformAllowList": { "description": "List of allowed platforms.", "type": "array", "uniqueItems": true, "items": { "type": "string" } }, "PlatformDenyList": { "description": "List of disallowed platforms.", "type": "array", "uniqueItems": true, "items": { "type": "string" } }, "ProgramAllowList": { "description": "List of allowed programs.", "type": "array", "uniqueItems": true, "items": { "type": "string" } }, "ProgramDenyList": { "description": "List of disallowed programs.", "type": "array", "uniqueItems": true, "items": { "type": "string" } }, "TargetAllowList": { "description": "List of allowed targets.", "type": "array", "uniqueItems": true, "items": { "$ref": "#/definitions/BuildTargetType" } }, "TargetConfigurationAllowList": { "description": "List of allowed target configurations.", "type": "array", "uniqueItems": true, "items": { "$ref": "#/definitions/BuildConfiguration" } }, "TargetConfigurationDenyList": { "description": "List of disallowed target configurations.", "type": "array", "uniqueItems": true, "items": { "$ref": "#/definitions/BuildConfiguration" } }, "TargetDenyList": { "description": "List of disallowed targets.", "type": "array", "uniqueItems": true, "items": { "$ref": "#/definitions/BuildTargetType" } }, "Type": { "description": "Usage type of module.", "type": "string", "enum": [ "Runtime", "RuntimeNoCommandlet", "RuntimeAndProgram", "CookedOnly", "UncookedOnly", "Developer", "DeveloperTool", "Editor", "EditorNoCommandlet", "EditorAndProgram", "Program", "ServerOnly", "ClientOnly", "ClientOnlyNoCommandlet", "Max" ] } } }, "PluginReferenceDescriptor": { "description": "Descriptor for a plugin reference.", "type": "object", "properties": { "Enabled": { "description": "Whether it should be enabled by default.", "type": "boolean", "default": true }, "HasExplicitPlatforms": { "description": "When true, empty SupportedTargetPlatforms and PlatformAllowList are interpreted as 'no platforms' with the expectation that explicit platforms will be added in plugin platform extensions.", "markdownDescription": "When true, empty `SupportedTargetPlatforms` and `PlatformAllowList` are interpreted as **no platforms** with the expectation that explicit platforms will be added in plugin platform extensions.", "type": "boolean", "default": false }, "Optional": { "description": "Whether this plugin is optional, and the game should silently ignore it not being present.", "type": "boolean", "default": false }, "Description": { "description": "Description of the plugin for users that do not have it installed.", "type": "string" }, "MarketplaceURL": { "description": "URL for this plugin on the marketplace, if the user doesn't have it installed.", "type": "string" }, "Name": { "description": "Name of the plugin.", "type": "string" }, "PlatformAllowList": { "description": "List of allowed platforms.", "type": "array", "uniqueItems": true, "items": { "type": "string" } }, "PlatformDenyList": { "description": "List of disallowed platforms.", "type": "array", "uniqueItems": true, "items": { "type": "string" } }, "TargetAllowList": { "description": "List of allowed targets.", "type": "array", "uniqueItems": true, "items": { "$ref": "#/definitions/BuildTargetType" } }, "TargetConfigurationAllowList": { "description": "List of allowed target configurations.", "type": "array", "uniqueItems": true, "items": { "$ref": "#/definitions/BuildConfiguration" } }, "TargetConfigurationDenyList": { "description": "List of disallowed target configurations.", "type": "array", "uniqueItems": true, "items": { "$ref": "#/definitions/BuildConfiguration" } }, "TargetDenyList": { "description": "List of disallowed targets.", "type": "array", "uniqueItems": true, "items": { "$ref": "#/definitions/BuildTargetType" } } }, "required": ["Enabled", "Name"] } }, "description": "Descriptor for projects. Contains all the information contained within a .uproject file.", "id": "https://json.schemastore.org/uproject.json", "markdownDescription": "Descriptor for projects. Contains all the information contained within a `.uproject` file.", "properties": { "DisableEnginePluginsByDefault": { "description": "Indicates that enabled by default engine plugins should not be enabled unless explicitly enabled by the project or target files.", "type": "boolean", "default": false }, "IsEnterpriseProject": { "description": "Indicates if this project is an Enterprise project.", "type": "boolean", "default": false }, "Category": { "description": "Category to show under the project browser.", "type": "string" }, "Description": { "description": "Description to show in the project browser.", "type": "string" }, "EngineAssociation": { "description": "The engine to open this project with. Denotes by <major>.<minor> convention e.g. 4.20, 5.0 or source engine hash.", "markdownDescription": "The engine to open this project with. Denotes by `<major>.<minor>` convention e.g. `4.20`, `5.0` or source engine GUID.", "type": "string", "pattern": "(^([0-9]+)\\.([0-9]+)$)|(^\\{[A-F0-9]{8}(-[A-F0-9]{4}){3}-[A-F0-9]{12}\\}$)" }, "EpicSampleNameHash": { "description": "A hash that is used to determine if the project was forked from a sample.", "type": "number" }, "FileVersion": { "description": "Descriptor version number.", "markdownDescription": "Descriptor version number. More details can be found in the [EProjectDescriptorVersion](https://docs.unrealengine.com/4.26/en-US/API/Runtime/Projects/EProjectDescriptorVersion__Type/).", "type": "number", "default": 3, "$comment": "More details can be found in https://docs.unrealengine.com/4.26/en-US/API/Runtime/Projects/EProjectDescriptorVersion__Type/" }, "Modules": { "description": "List of all modules associated with this project.", "type": "array", "uniqueItems": true, "items": { "$ref": "#/definitions/ModuleDescriptor" } }, "Plugins": { "description": "List of plugins for this project (may be enabled/disabled).", "type": "array", "uniqueItems": true, "items": { "$ref": "#/definitions/PluginReferenceDescriptor" } }, "PostBuildSteps": { "description": "Custom steps to execute after building targets in this project.", "type": "object", "$comment": "Define platform as key, command as value." }, "PreBuildSteps": { "description": "Custom steps to execute before building targets in this project.", "type": "object", "$comment": "Define platform as key, command as value." }, "TargetPlatforms": { "description": "Array of platforms that this project is targeting.", "type": "array", "uniqueItems": true, "items": { "type": "string" } } }, "required": ["EngineAssociation", "FileVersion"], "title": "JSON schema for Unreal Engine uproject", "type": "object" }
plagiarize-me.json
{ "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "definitions": { "moveItems": { "type": "object", "required": ["to", "names"], "properties": { "to": { "type": "string", "description": "The path to move the directory to" }, "names": { "type": "array", "items": { "type": "string", "description": "The directories to move" } } } }, "mergeJson": { "description": "Merge json file with jq command line tool pattern matching", "required": ["type", "path"], "additionalProperties": false, "properties": { "type": { "type": "string", "description": "Merge type", "enum": ["jq"] }, "path": { "type": "string", "description": "Path to file to merge" }, "replace": { "type": "array", "description": "JQ pattern of property to replace", "items": { "type": "string" } }, "create": { "type": "array", "description": "JQ pattern of property to create if the property does not exist in target project file", "items": { "type": "string" } }, "replaceIf": { "type": "array", "description": "A set of properties to replace if the condition evaluates to truthy", "items": { "type": "object", "description": "Configuration for property to replace if condition evaluates to truthy", "required": ["condition", "pattern"], "properties": { "condition": { "type": "string", "description": "The condition to evaluate for truthiness. If truthy will replace property matched by pattern" }, "pattern": { "type": "string", "description": "JQ pattern of property to replace" } } } }, "set": { "type": "object", "description": "Set the value of these items to the value. So `'.license':MIT` would set the `license` property of the json file to 'MIT'", "additionalProperties": { "type": "string" } }, "skip": { "type": "array", "description": "A list of items to not create, copy, replace, or remove in target file", "items": { "type": "string" } }, "skipIfNotSameFileName": { "type": "array", "items": { "type": "string" } } } }, "mergeYaml": { "description": "Merge yaml file with yq command line tool pattern matching", "required": ["type", "path"], "additionalProperties": false, "properties": { "type": { "type": "string", "description": "Merge type", "enum": ["yq"] }, "path": { "type": "string", "description": "Path to file to merge" }, "replace": { "type": "array", "description": "YQ pattern of property to replace", "items": { "type": "string" } }, "create": { "type": "array", "description": "YQ pattern of property to create if the property does not exist in target project file", "items": { "type": "string" } }, "replaceIf": { "type": "array", "description": "A set of properties to replace if the condition evaluates to truthy", "items": { "type": "object", "description": "Configuration for property to replace if condition evaluates to truthy", "required": ["condition", "pattern"], "properties": { "condition": { "type": "string", "description": "The condition to evaluate for truthiness. If truthy will replace property matched by pattern" }, "pattern": { "type": "string", "description": "YQ pattern of property to replace" } } } }, "set": { "type": "object", "description": "Set the value of these items to the value. So `'license':MIT` would set the `license` property of the yaml file to 'MIT'", "additionalProperties": { "type": "string" } }, "skip": { "type": "array", "description": "A list of items to not create, copy, replace, or remove in target file", "items": { "type": "string" } }, "skipIfNotSameFileName": { "type": "array", "items": { "type": "string" } } } }, "mergeGit": { "description": "Merge file using git merge (use with varied reliability)", "required": ["type", "path"], "additionalProperties": false, "properties": { "type": { "type": "string", "description": "Merge type", "enum": ["git"] }, "path": { "type": "string", "description": "Path to file to merge" } } }, "mergeEnv": { "type": "object", "additionalProperties": false, "required": ["type", "path"], "properties": { "type": { "type": "string", "enum": ["env"] }, "path": { "type": "string" }, "set": { "type": "object", "additionalProperties": { "type": "string" } }, "skip": { "type": "array", "items": { "type": "string" } }, "create": { "type": "array", "description": "List of Environment variable names to create in target project if they are not already created", "items": { "type": "string", "description": "The Environment variable name" } }, "skipIfNotSameFileName": { "type": "array", "items": { "type": "string" } } } } }, "description": "plagiarize-me.yaml configuration schema", "id": "https://json.schemastore.org/plagiarize-me", "properties": { "repo": { "type": "object", "description": "Git repo of where this plagiarizable project is hosted", "additionalProperties": false, "required": ["url"], "properties": { "url": { "type": "string", "description": "The git repo url of this project" }, "checkout": { "type": "string", "description": "The default branch that downstream projects should checkout when plagiarizing this project", "default": "master" } } }, "move": { "type": "object", "description": "Files to move in target project from their previous locations", "properties": { "directories": { "type": "array", "description": "Directories to move from the target repo to the target repo. Useful for refactoring project structures", "items": { "$ref": "#/definitions/moveItems" } }, "files": { "type": "array", "description": "Files to move from the target repo to the target repo. Useful for refactoring", "items": { "$ref": "#/definitions/moveItems" } } } }, "run": { "type": "array", "description": "Shell commands to run after plagiarize files are done being copied and updated", "items": { "type": "object", "required": ["command"], "properties": { "command": { "type": "string", "description": "The shell command to run" }, "parallel": { "type": "boolean", "description": "Whether or not to run this command synchronously or in parallel to other commands where `parallel: true`" }, "when": { "oneOf": [ { "type": "string", "enum": ["always"], "description": "Condition type" }, { "type": "object", "description": "Run this command only if configured file does not exist in target project", "required": ["type", "options"], "additionalProperties": false, "properties": { "type": { "type": "string", "description": "Condition type", "enum": ["if-missing"] }, "options": { "type": "object", "required": ["path"], "properties": { "path": { "type": "string" } } } } }, { "type": "object", "description": "Always run this command", "required": ["type"], "additionalProperties": false, "properties": { "type": { "description": "Condition type", "type": "string", "enum": ["always"] } } } ] } } } }, "replace": { "required": ["strings"], "type": "object", "description": "Configuration for strings, files, and file paths to replace in target file", "properties": { "strings": { "description": "Strings to find in target project and be replaced with plagiarized project's values", "type": "object", "additionalProperties": { "type": ["string", "integer", "boolean"] }, "required": ["project"], "properties": { "project": { "type": "string" } } }, "vars": { "description": "Variables available to be used for finding and replacing by variable name. For example `$var_name: hello` would replace string '$var_name' with 'hello' in target project", "type": "object", "additionalProperties": { "type": ["string", "integer", "boolean"] } }, "files": { "description": "Relative path to target files that will be completely overwritten by source files in the same path", "type": "array", "items": { "type": "string" } } } }, "create": { "type": "object", "properties": { "files": { "type": "array", "description": "Files to copy from plagiarized project if they do not exist in the target project", "items": { "type": "string" } }, "andClean": { "type": "array", "description": "Files to remove commented sections from. Eg code between `// plagiarize:start:always:delete` and `// plagiarize:end:always:delete`", "items": { "type": "string" } } } }, "merge": { "type": "array", "items": { "oneOf": [ { "$ref": "#/definitions/mergeJson" }, { "$ref": "#/definitions/mergeYaml" }, { "$ref": "#/definitions/mergeGit" }, { "$ref": "#/definitions/mergeEnv" } ] } }, "templates": { "type": "array", "description": "Files that are used the have similarities between instances of that that. .env files for example are similar and could be templated", "items": { "type": "object", "additionalProperties": false, "required": ["name", "replace"], "properties": { "name": { "type": "string", "description": "The name of the template" }, "replace": { "type": "object", "additionalProperties": false, "required": ["strings"], "properties": { "strings": { "type": "object", "description": "Values to be used as variables within the target project. So `var_name: hello` in the template configuration and `var_name: world` would replace instances of 'hello' found in the source file with with 'world' found in the target file", "additionalProperties": { "type": ["string", "boolean", "number"] } }, "values": { "type": "object", "description": "Values to be used as variables within the target project. So `var_name: hello` would replace instances of '$var_name' with 'hello' in the target file", "additionalProperties": { "type": ["string", "boolean", "number", "null"] } }, "vars": { "type": "object", "description": "Values to be used as variables within the plagiarize-me.yaml file only. So `var_name: hello` would replace '$var_name' with 'hello' in plagiarize-me.yaml", "additionalProperties": { "type": ["string", "boolean", "number", "null"] } } } }, "merge": { "type": "array", "items": { "oneOf": [ { "$ref": "#/definitions/mergeJson" }, { "$ref": "#/definitions/mergeYaml" }, { "$ref": "#/definitions/mergeGit" }, { "$ref": "#/definitions/mergeEnv" } ] } }, "create": { "type": "object", "additionalProperties": false, "properties": { "files": { "type": "array", "items": { "type": "string", "description": "The path to the file to create if it does not already exist" } } } }, "configs": { "type": "array", "items": { "type": "object", "additionalProperties": false, "properties": { "strings": { "type": "object", "additionalProperties": { "type": ["string", "boolean", "number"] } }, "vars": { "type": "object", "additionalProperties": { "type": ["string", "boolean", "number", "null"] } } } } } } } }, "push": { "type": "array", "items": { "type": "object", "additionalProperties": false, "properties": { "values": { "type": "object", "description": "Values to set when iterating through each instance", "additionalProperties": { "type": "string" } }, "instances": { "type": "array", "items": { "type": "object", "required": ["project"], "additionalProperties": { "type": "string" } } }, "git": { "type": "object", "additionalProperties": false, "required": ["repos", "commit", "branch", "remotes"], "properties": { "repos": { "type": "array", "items": { "type": "object", "additionalProperties": false, "required": ["remote"], "properties": { "local": { "type": "string" }, "remote": { "type": "object", "additionalProperties": false, "required": ["url", "checkout", "defaultName"], "properties": { "url": { "type": "string" }, "checkout": { "type": "string" }, "defaultName": { "type": "string" } } } } } }, "commit": { "type": "object", "additionalProperties": false, "required": ["message"], "properties": { "create": { "type": "boolean", "default": false }, "message": { "type": "string" } } }, "branch": { "type": "string" }, "push": { "type": "boolean", "default": false }, "remotes": { "type": "array", "description": "A list of removes to push to (if `push: true`)", "items": { "type": "string", "description": "name of the remote" } }, "hooks": { "type": "object", "additionalProperties": false, "properties": { "post-push": { "type": "array", "items": { "oneOf": [ { "type": "object", "required": ["type", "api", "remote", "targetBranch"], "properties": { "type": { "type": "string", "enum": ["create-merge-request"] }, "api": { "type": "string", "enum": ["gitlab"] }, "envVars": { "type": "object", "additionalProperties": { "type": "string" } }, "remote": { "type": "string" }, "targetBranch": { "type": "string" }, "removeSourceBranch": { "type": "boolean", "default": false } } } ] } } } } } } } } } }, "required": ["replace"], "title": "Plagiarize Me Configuration", "type": "object" }
BizTalkServerApplicationSchema.json
{ "$schema": "http://json-schema.org/draft-04/schema#", "description": "BizTalk Server Application Inventory Schema", "id": "http://schema.management.azure.com/schemas/2017-04-01/BizTalkServerApplicationSchema.json#", "properties": { "BizTalkAssemblies": { "type": "array", "description": "Array of BizTalk Reference Assemblies to be deployed.", "items": { "type": "object", "properties": { "Name": { "type": "string", "description": "Filename of the BizTalk Referenced Assembly." }, "Path": { "type": "string", "pattern": "\\w+[\\\\](\\w+\\.)*\\w+\\.dll", "description": "Relative output filepath for the Referenced Assembly. \r\nExample: bins\\\\bts1.dll" } } } }, "BindingsFiles": { "type": "array", "description": "Array of Binding Files used in Deployment.", "items": { "type": "object", "properties": { "Name": { "type": "string", "description": "Filename of the Bindings File." }, "Path": { "type": "string", "pattern": "\\w+[\\\\](\\w+\\.)*\\w+\\.xml", "description": "Relative output filepath for the Bindings File.\r\nExample: bindings\\\\binding1.xml" } } } }, "Assemblies": { "type": "array", "description": "Array of Reference Assemblies to be deployed.", "items": { "type": "object", "properties": { "Name": { "type": "string", "description": "Filename of the Referenced Assembly." }, "Path": { "type": "string", "pattern": "\\w+[\\\\](\\w+\\.)*\\w+\\.dll", "description": "Relative output filepath for the Unmanaged Referenced Assembly. \r\nExample: bins\\\\bts1.dll" } } } }, "PreProcessingScripts": { "type": "array", "description": "Pre-Processing Scripts used in Deployment.", "items": { "type": "object", "properties": { "Name": { "type": "string", "description": "Filename of the Pre Processing Script." }, "Path": { "type": "string", "pattern": "\\w+[\\\\](\\w+\\.)*\\w+\\.\\w+", "description": "Relative output filepath for the Pre Processing Script.\r\nExample: bins\\\\Script1.vbs" }, "Arguments": { "type": "string", "pattern": "\\w+(,\\w+)*", "description": "Arguments for the Pre Processing Script .\r\nExample: arg1,arg2" } } } }, "PostProcessingScripts": { "type": "array", "description": "Post-Processing Scripts used in Deployment.", "items": { "type": "object", "properties": { "Name": { "type": "string", "description": "Filename of the Post Processing Script." }, "Path": { "type": "string", "pattern": "\\w+[\\\\](\\w+\\.)*\\w+\\.\\w+", "description": "Relative output filepath for the Post Processing Script.\r\nExample: Script\\\\Script1.vbs" }, "Arguments": { "type": "string", "pattern": "\\w+(,\\w+)*", "description": "Arguments for the Post Processing Script .\r\nExample: arg1,arg2" } } } }, "Files": { "type": "array", "description": "File used in Deployment.", "items": { "type": "object", "properties": { "Name": { "type": "string", "description": "Name of the File" }, "Path": { "type": "string", "pattern": "\\w+[\\\\](\\w+\\.)*\\w+\\.\\w+", "description": "Relative output filepath for the Files.\r\nExample: File\\\\File.txt" } } } }, "DeploymentSequence": { "type": "array", "description": "Sequence of Binding Files, Reference Assemblies, Pre-Processing and Post-Processing Scripts used in Deployment.", "items": { "type": "string" } } }, "required": ["BizTalkAssemblies", "BindingsFiles", "DeploymentSequence"], "title": "BizTalkServerApplicationInventorySchema", "type": "object" }
firebase-config.json
{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "definitions": { "ExtensionsConfig": { "additionalProperties": false, "type": "object" }, "FrameworksBackendOptions": { "additionalProperties": false, "properties": { "concurrency": { "description": "Number of requests a function can serve at once.", "type": "number" }, "cors": { "description": "If true, allows CORS on requests to this function.\nIf this is a `string` or `RegExp`, allows requests from domains that match the provided value.\nIf this is an `Array`, allows requests from domains matching at least one entry of the array.\nDefaults to true for {@link https.CallableFunction} and false otherwise.", "type": [ "string", "boolean" ] }, "cpu": { "anyOf": [ { "enum": [ "gcf_gen1" ], "type": "string" }, { "type": "number" } ], "description": "Fractional number of CPUs to allocate to a function." }, "enforceAppCheck": { "description": "Determines whether Firebase AppCheck is enforced. Defaults to false.", "type": "boolean" }, "ingressSettings": { "description": "Ingress settings which control where this function can be called from.", "enum": [ "ALLOW_ALL", "ALLOW_INTERNAL_AND_GCLB", "ALLOW_INTERNAL_ONLY" ], "type": "string" }, "invoker": { "description": "Invoker to set access control on https functions.", "enum": [ "public" ], "type": "string" }, "labels": { "$ref": "#/definitions/Record<string,string>", "description": "User labels to set on the function." }, "maxInstances": { "description": "Max number of instances to be running in parallel.", "type": "number" }, "memory": { "description": "Amount of memory to allocate to a function.", "enum": [ "128MiB", "16GiB", "1GiB", "256MiB", "2GiB", "32GiB", "4GiB", "512MiB", "8GiB" ], "type": "string" }, "minInstances": { "description": "Min number of actual instances to be running at a given time.", "type": "number" }, "omit": { "description": "If true, do not deploy or emulate this function.", "type": "boolean" }, "preserveExternalChanges": { "description": "Controls whether function configuration modified outside of function source is preserved. Defaults to false.", "type": "boolean" }, "region": { "description": "HTTP functions can override global options and can specify multiple regions to deploy to.", "type": "string" }, "secrets": { "items": { "type": "string" }, "type": "array" }, "serviceAccount": { "description": "Specific service account for the function to run as.", "type": "string" }, "timeoutSeconds": { "description": "Timeout for the function in seconds, possible values are 0 to 540.\nHTTPS functions can specify a higher timeout.", "type": "number" }, "vpcConnector": { "description": "Connect cloud function to specified VPC connector.", "type": "string" }, "vpcConnectorEgressSettings": { "description": "Egress settings for VPC connector.", "enum": [ "ALL_TRAFFIC", "PRIVATE_RANGES_ONLY" ], "type": "string" } }, "type": "object" }, "Record<string,string>": { "additionalProperties": false, "type": "object" } }, "properties": { "$schema": { "format": "uri", "type": "string" }, "database": { "anyOf": [ { "additionalProperties": false, "properties": { "postdeploy": { "anyOf": [ { "items": { "type": "string" }, "type": "array" }, { "type": "string" } ] }, "predeploy": { "anyOf": [ { "items": { "type": "string" }, "type": "array" }, { "type": "string" } ] }, "rules": { "type": "string" } }, "required": [ "rules" ], "type": "object" }, { "items": { "anyOf": [ { "additionalProperties": false, "properties": { "instance": { "type": "string" }, "postdeploy": { "anyOf": [ { "items": { "type": "string" }, "type": "array" }, { "type": "string" } ] }, "predeploy": { "anyOf": [ { "items": { "type": "string" }, "type": "array" }, { "type": "string" } ] }, "rules": { "type": "string" }, "target": { "type": "string" } }, "required": [ "instance", "rules" ], "type": "object" }, { "additionalProperties": false, "properties": { "instance": { "type": "string" }, "postdeploy": { "anyOf": [ { "items": { "type": "string" }, "type": "array" }, { "type": "string" } ] }, "predeploy": { "anyOf": [ { "items": { "type": "string" }, "type": "array" }, { "type": "string" } ] }, "rules": { "type": "string" }, "target": { "type": "string" } }, "required": [ "rules", "target" ], "type": "object" } ] }, "type": "array" } ] }, "emulators": { "additionalProperties": false, "properties": { "auth": { "additionalProperties": false, "properties": { "host": { "type": "string" }, "port": { "type": "number" } }, "type": "object" }, "database": { "additionalProperties": false, "properties": { "host": { "type": "string" }, "port": { "type": "number" } }, "type": "object" }, "eventarc": { "additionalProperties": false, "properties": { "host": { "type": "string" }, "port": { "type": "number" } }, "type": "object" }, "extensions": { "properties": { }, "type": "object" }, "firestore": { "additionalProperties": false, "properties": { "host": { "type": "string" }, "port": { "type": "number" }, "websocketPort": { "type": "number" } }, "type": "object" }, "functions": { "additionalProperties": false, "properties": { "host": { "type": "string" }, "port": { "type": "number" } }, "type": "object" }, "hosting": { "additionalProperties": false, "properties": { "host": { "type": "string" }, "port": { "type": "number" } }, "type": "object" }, "hub": { "additionalProperties": false, "properties": { "host": { "type": "string" }, "port": { "type": "number" } }, "type": "object" }, "logging": { "additionalProperties": false, "properties": { "host": { "type": "string" }, "port": { "type": "number" } }, "type": "object" }, "pubsub": { "additionalProperties": false, "properties": { "host": { "type": "string" }, "port": { "type": "number" } }, "type": "object" }, "singleProjectMode": { "type": "boolean" }, "storage": { "additionalProperties": false, "properties": { "host": { "type": "string" }, "port": { "type": "number" } }, "type": "object" }, "ui": { "additionalProperties": false, "properties": { "enabled": { "type": "boolean" }, "host": { "type": "string" }, "port": { "type": [ "string", "number" ] } }, "type": "object" } }, "type": "object" }, "extensions": { "$ref": "#/definitions/ExtensionsConfig" }, "firestore": { "anyOf": [ { "additionalProperties": false, "properties": { "database": { "type": "string" }, "indexes": { "type": "string" }, "postdeploy": { "anyOf": [ { "items": { "type": "string" }, "type": "array" }, { "type": "string" } ] }, "predeploy": { "anyOf": [ { "items": { "type": "string" }, "type": "array" }, { "type": "string" } ] }, "rules": { "type": "string" } }, "type": "object" }, { "items": { "anyOf": [ { "additionalProperties": false, "properties": { "database": { "type": "string" }, "indexes": { "type": "string" }, "postdeploy": { "anyOf": [ { "items": { "type": "string" }, "type": "array" }, { "type": "string" } ] }, "predeploy": { "anyOf": [ { "items": { "type": "string" }, "type": "array" }, { "type": "string" } ] }, "rules": { "type": "string" }, "target": { "type": "string" } }, "required": [ "target" ], "type": "object" }, { "additionalProperties": false, "properties": { "database": { "type": "string" }, "indexes": { "type": "string" }, "postdeploy": { "anyOf": [ { "items": { "type": "string" }, "type": "array" }, { "type": "string" } ] }, "predeploy": { "anyOf": [ { "items": { "type": "string" }, "type": "array" }, { "type": "string" } ] }, "rules": { "type": "string" }, "target": { "type": "string" } }, "required": [ "database" ], "type": "object" } ] }, "type": "array" } ] }, "functions": { "anyOf": [ { "additionalProperties": false, "properties": { "codebase": { "type": "string" }, "ignore": { "items": { "type": "string" }, "type": "array" }, "postdeploy": { "anyOf": [ { "items": { "type": "string" }, "type": "array" }, { "type": "string" } ] }, "predeploy": { "anyOf": [ { "items": { "type": "string" }, "type": "array" }, { "type": "string" } ] }, "runtime": { "enum": [ "nodejs10", "nodejs12", "nodejs14", "nodejs16", "nodejs18", "nodejs20" ], "type": "string" }, "source": { "type": "string" } }, "type": "object" }, { "items": { "additionalProperties": false, "properties": { "codebase": { "type": "string" }, "ignore": { "items": { "type": "string" }, "type": "array" }, "postdeploy": { "anyOf": [ { "items": { "type": "string" }, "type": "array" }, { "type": "string" } ] }, "predeploy": { "anyOf": [ { "items": { "type": "string" }, "type": "array" }, { "type": "string" } ] }, "runtime": { "enum": [ "nodejs10", "nodejs12", "nodejs14", "nodejs16", "nodejs18", "nodejs20" ], "type": "string" }, "source": { "type": "string" } }, "type": "object" }, "type": "array" } ] }, "hosting": { "anyOf": [ { "additionalProperties": false, "properties": { "appAssociation": { "enum": [ "AUTO", "NONE" ], "type": "string" }, "cleanUrls": { "type": "boolean" }, "frameworksBackend": { "$ref": "#/definitions/FrameworksBackendOptions" }, "headers": { "items": { "anyOf": [ { "additionalProperties": false, "properties": { "glob": { "type": "string" }, "headers": { "items": { "additionalProperties": false, "properties": { "key": { "type": "string" }, "value": { "type": "string" } }, "required": [ "key", "value" ], "type": "object" }, "type": "array" } }, "required": [ "glob", "headers" ], "type": "object" }, { "additionalProperties": false, "properties": { "headers": { "items": { "additionalProperties": false, "properties": { "key": { "type": "string" }, "value": { "type": "string" } }, "required": [ "key", "value" ], "type": "object" }, "type": "array" }, "source": { "type": "string" } }, "required": [ "headers", "source" ], "type": "object" }, { "additionalProperties": false, "properties": { "headers": { "items": { "additionalProperties": false, "properties": { "key": { "type": "string" }, "value": { "type": "string" } }, "required": [ "key", "value" ], "type": "object" }, "type": "array" }, "regex": { "type": "string" } }, "required": [ "headers", "regex" ], "type": "object" } ] }, "type": "array" }, "i18n": { "additionalProperties": false, "properties": { "root": { "type": "string" } }, "required": [ "root" ], "type": "object" }, "ignore": { "items": { "type": "string" }, "type": "array" }, "postdeploy": { "anyOf": [ { "items": { "type": "string" }, "type": "array" }, { "type": "string" } ] }, "predeploy": { "anyOf": [ { "items": { "type": "string" }, "type": "array" }, { "type": "string" } ] }, "public": { "type": "string" }, "redirects": { "items": { "anyOf": [ { "additionalProperties": false, "properties": { "destination": { "type": "string" }, "glob": { "type": "string" }, "type": { "type": "number" } }, "required": [ "destination", "glob" ], "type": "object" }, { "additionalProperties": false, "properties": { "destination": { "type": "string" }, "source": { "type": "string" }, "type": { "type": "number" } }, "required": [ "destination", "source" ], "type": "object" }, { "additionalProperties": false, "properties": { "destination": { "type": "string" }, "regex": { "type": "string" }, "type": { "type": "number" } }, "required": [ "destination", "regex" ], "type": "object" } ] }, "type": "array" }, "rewrites": { "items": { "anyOf": [ { "additionalProperties": false, "properties": { "destination": { "type": "string" }, "glob": { "type": "string" } }, "required": [ "destination", "glob" ], "type": "object" }, { "additionalProperties": false, "properties": { "function": { "type": "string" }, "glob": { "type": "string" }, "region": { "type": "string" } }, "required": [ "function", "glob" ], "type": "object" }, { "additionalProperties": false, "properties": { "function": { "additionalProperties": false, "properties": { "functionId": { "type": "string" }, "pinTag": { "type": "boolean" }, "region": { "type": "string" } }, "required": [ "functionId" ], "type": "object" }, "glob": { "type": "string" } }, "required": [ "function", "glob" ], "type": "object" }, { "additionalProperties": false, "properties": { "glob": { "type": "string" }, "run": { "additionalProperties": false, "properties": { "pinTag": { "type": "boolean" }, "region": { "type": "string" }, "serviceId": { "type": "string" } }, "required": [ "serviceId" ], "type": "object" } }, "required": [ "glob", "run" ], "type": "object" }, { "additionalProperties": false, "properties": { "dynamicLinks": { "type": "boolean" }, "glob": { "type": "string" } }, "required": [ "dynamicLinks", "glob" ], "type": "object" }, { "additionalProperties": false, "properties": { "destination": { "type": "string" }, "source": { "type": "string" } }, "required": [ "destination", "source" ], "type": "object" }, { "additionalProperties": false, "properties": { "function": { "type": "string" }, "region": { "type": "string" }, "source": { "type": "string" } }, "required": [ "function", "source" ], "type": "object" }, { "additionalProperties": false, "properties": { "function": { "additionalProperties": false, "properties": { "functionId": { "type": "string" }, "pinTag": { "type": "boolean" }, "region": { "type": "string" } }, "required": [ "functionId" ], "type": "object" }, "source": { "type": "string" } }, "required": [ "function", "source" ], "type": "object" }, { "additionalProperties": false, "properties": { "run": { "additionalProperties": false, "properties": { "pinTag": { "type": "boolean" }, "region": { "type": "string" }, "serviceId": { "type": "string" } }, "required": [ "serviceId" ], "type": "object" }, "source": { "type": "string" } }, "required": [ "run", "source" ], "type": "object" }, { "additionalProperties": false, "properties": { "dynamicLinks": { "type": "boolean" }, "source": { "type": "string" } }, "required": [ "dynamicLinks", "source" ], "type": "object" }, { "additionalProperties": false, "properties": { "destination": { "type": "string" }, "regex": { "type": "string" } }, "required": [ "destination", "regex" ], "type": "object" }, { "additionalProperties": false, "properties": { "function": { "type": "string" }, "regex": { "type": "string" }, "region": { "type": "string" } }, "required": [ "function", "regex" ], "type": "object" }, { "additionalProperties": false, "properties": { "function": { "additionalProperties": false, "properties": { "functionId": { "type": "string" }, "pinTag": { "type": "boolean" }, "region": { "type": "string" } }, "required": [ "functionId" ], "type": "object" }, "regex": { "type": "string" } }, "required": [ "function", "regex" ], "type": "object" }, { "additionalProperties": false, "properties": { "regex": { "type": "string" }, "run": { "additionalProperties": false, "properties": { "pinTag": { "type": "boolean" }, "region": { "type": "string" }, "serviceId": { "type": "string" } }, "required": [ "serviceId" ], "type": "object" } }, "required": [ "regex", "run" ], "type": "object" }, { "additionalProperties": false, "properties": { "dynamicLinks": { "type": "boolean" }, "regex": { "type": "string" } }, "required": [ "dynamicLinks", "regex" ], "type": "object" } ] }, "type": "array" }, "site": { "type": "string" }, "source": { "type": "string" }, "target": { "type": "string" }, "trailingSlash": { "type": "boolean" } }, "type": "object" }, { "items": { "anyOf": [ { "additionalProperties": false, "properties": { "appAssociation": { "enum": [ "AUTO", "NONE" ], "type": "string" }, "cleanUrls": { "type": "boolean" }, "frameworksBackend": { "$ref": "#/definitions/FrameworksBackendOptions" }, "headers": { "items": { "anyOf": [ { "additionalProperties": false, "properties": { "glob": { "type": "string" }, "headers": { "items": { "additionalProperties": false, "properties": { "key": { "type": "string" }, "value": { "type": "string" } }, "required": [ "key", "value" ], "type": "object" }, "type": "array" } }, "required": [ "glob", "headers" ], "type": "object" }, { "additionalProperties": false, "properties": { "headers": { "items": { "additionalProperties": false, "properties": { "key": { "type": "string" }, "value": { "type": "string" } }, "required": [ "key", "value" ], "type": "object" }, "type": "array" }, "source": { "type": "string" } }, "required": [ "headers", "source" ], "type": "object" }, { "additionalProperties": false, "properties": { "headers": { "items": { "additionalProperties": false, "properties": { "key": { "type": "string" }, "value": { "type": "string" } }, "required": [ "key", "value" ], "type": "object" }, "type": "array" }, "regex": { "type": "string" } }, "required": [ "headers", "regex" ], "type": "object" } ] }, "type": "array" }, "i18n": { "additionalProperties": false, "properties": { "root": { "type": "string" } }, "required": [ "root" ], "type": "object" }, "ignore": { "items": { "type": "string" }, "type": "array" }, "postdeploy": { "anyOf": [ { "items": { "type": "string" }, "type": "array" }, { "type": "string" } ] }, "predeploy": { "anyOf": [ { "items": { "type": "string" }, "type": "array" }, { "type": "string" } ] }, "public": { "type": "string" }, "redirects": { "items": { "anyOf": [ { "additionalProperties": false, "properties": { "destination": { "type": "string" }, "glob": { "type": "string" }, "type": { "type": "number" } }, "required": [ "destination", "glob" ], "type": "object" }, { "additionalProperties": false, "properties": { "destination": { "type": "string" }, "source": { "type": "string" }, "type": { "type": "number" } }, "required": [ "destination", "source" ], "type": "object" }, { "additionalProperties": false, "properties": { "destination": { "type": "string" }, "regex": { "type": "string" }, "type": { "type": "number" } }, "required": [ "destination", "regex" ], "type": "object" } ] }, "type": "array" }, "rewrites": { "items": { "anyOf": [ { "additionalProperties": false, "properties": { "destination": { "type": "string" }, "glob": { "type": "string" } }, "required": [ "destination", "glob" ], "type": "object" }, { "additionalProperties": false, "properties": { "function": { "type": "string" }, "glob": { "type": "string" }, "region": { "type": "string" } }, "required": [ "function", "glob" ], "type": "object" }, { "additionalProperties": false, "properties": { "function": { "additionalProperties": false, "properties": { "functionId": { "type": "string" }, "pinTag": { "type": "boolean" }, "region": { "type": "string" } }, "required": [ "functionId" ], "type": "object" }, "glob": { "type": "string" } }, "required": [ "function", "glob" ], "type": "object" }, { "additionalProperties": false, "properties": { "glob": { "type": "string" }, "run": { "additionalProperties": false, "properties": { "pinTag": { "type": "boolean" }, "region": { "type": "string" }, "serviceId": { "type": "string" } }, "required": [ "serviceId" ], "type": "object" } }, "required": [ "glob", "run" ], "type": "object" }, { "additionalProperties": false, "properties": { "dynamicLinks": { "type": "boolean" }, "glob": { "type": "string" } }, "required": [ "dynamicLinks", "glob" ], "type": "object" }, { "additionalProperties": false, "properties": { "destination": { "type": "string" }, "source": { "type": "string" } }, "required": [ "destination", "source" ], "type": "object" }, { "additionalProperties": false, "properties": { "function": { "type": "string" }, "region": { "type": "string" }, "source": { "type": "string" } }, "required": [ "function", "source" ], "type": "object" }, { "additionalProperties": false, "properties": { "function": { "additionalProperties": false, "properties": { "functionId": { "type": "string" }, "pinTag": { "type": "boolean" }, "region": { "type": "string" } }, "required": [ "functionId" ], "type": "object" }, "source": { "type": "string" } }, "required": [ "function", "source" ], "type": "object" }, { "additionalProperties": false, "properties": { "run": { "additionalProperties": false, "properties": { "pinTag": { "type": "boolean" }, "region": { "type": "string" }, "serviceId": { "type": "string" } }, "required": [ "serviceId" ], "type": "object" }, "source": { "type": "string" } }, "required": [ "run", "source" ], "type": "object" }, { "additionalProperties": false, "properties": { "dynamicLinks": { "type": "boolean" }, "source": { "type": "string" } }, "required": [ "dynamicLinks", "source" ], "type": "object" }, { "additionalProperties": false, "properties": { "destination": { "type": "string" }, "regex": { "type": "string" } }, "required": [ "destination", "regex" ], "type": "object" }, { "additionalProperties": false, "properties": { "function": { "type": "string" }, "regex": { "type": "string" }, "region": { "type": "string" } }, "required": [ "function", "regex" ], "type": "object" }, { "additionalProperties": false, "properties": { "function": { "additionalProperties": false, "properties": { "functionId": { "type": "string" }, "pinTag": { "type": "boolean" }, "region": { "type": "string" } }, "required": [ "functionId" ], "type": "object" }, "regex": { "type": "string" } }, "required": [ "function", "regex" ], "type": "object" }, { "additionalProperties": false, "properties": { "regex": { "type": "string" }, "run": { "additionalProperties": false, "properties": { "pinTag": { "type": "boolean" }, "region": { "type": "string" }, "serviceId": { "type": "string" } }, "required": [ "serviceId" ], "type": "object" } }, "required": [ "regex", "run" ], "type": "object" }, { "additionalProperties": false, "properties": { "dynamicLinks": { "type": "boolean" }, "regex": { "type": "string" } }, "required": [ "dynamicLinks", "regex" ], "type": "object" } ] }, "type": "array" }, "site": { "type": "string" }, "source": { "type": "string" }, "target": { "type": "string" }, "trailingSlash": { "type": "boolean" } }, "required": [ "target" ], "type": "object" }, { "additionalProperties": false, "properties": { "appAssociation": { "enum": [ "AUTO", "NONE" ], "type": "string" }, "cleanUrls": { "type": "boolean" }, "frameworksBackend": { "$ref": "#/definitions/FrameworksBackendOptions" }, "headers": { "items": { "anyOf": [ { "additionalProperties": false, "properties": { "glob": { "type": "string" }, "headers": { "items": { "additionalProperties": false, "properties": { "key": { "type": "string" }, "value": { "type": "string" } }, "required": [ "key", "value" ], "type": "object" }, "type": "array" } }, "required": [ "glob", "headers" ], "type": "object" }, { "additionalProperties": false, "properties": { "headers": { "items": { "additionalProperties": false, "properties": { "key": { "type": "string" }, "value": { "type": "string" } }, "required": [ "key", "value" ], "type": "object" }, "type": "array" }, "source": { "type": "string" } }, "required": [ "headers", "source" ], "type": "object" }, { "additionalProperties": false, "properties": { "headers": { "items": { "additionalProperties": false, "properties": { "key": { "type": "string" }, "value": { "type": "string" } }, "required": [ "key", "value" ], "type": "object" }, "type": "array" }, "regex": { "type": "string" } }, "required": [ "headers", "regex" ], "type": "object" } ] }, "type": "array" }, "i18n": { "additionalProperties": false, "properties": { "root": { "type": "string" } }, "required": [ "root" ], "type": "object" }, "ignore": { "items": { "type": "string" }, "type": "array" }, "postdeploy": { "anyOf": [ { "items": { "type": "string" }, "type": "array" }, { "type": "string" } ] }, "predeploy": { "anyOf": [ { "items": { "type": "string" }, "type": "array" }, { "type": "string" } ] }, "public": { "type": "string" }, "redirects": { "items": { "anyOf": [ { "additionalProperties": false, "properties": { "destination": { "type": "string" }, "glob": { "type": "string" }, "type": { "type": "number" } }, "required": [ "destination", "glob" ], "type": "object" }, { "additionalProperties": false, "properties": { "destination": { "type": "string" }, "source": { "type": "string" }, "type": { "type": "number" } }, "required": [ "destination", "source" ], "type": "object" }, { "additionalProperties": false, "properties": { "destination": { "type": "string" }, "regex": { "type": "string" }, "type": { "type": "number" } }, "required": [ "destination", "regex" ], "type": "object" } ] }, "type": "array" }, "rewrites": { "items": { "anyOf": [ { "additionalProperties": false, "properties": { "destination": { "type": "string" }, "glob": { "type": "string" } }, "required": [ "destination", "glob" ], "type": "object" }, { "additionalProperties": false, "properties": { "function": { "type": "string" }, "glob": { "type": "string" }, "region": { "type": "string" } }, "required": [ "function", "glob" ], "type": "object" }, { "additionalProperties": false, "properties": { "function": { "additionalProperties": false, "properties": { "functionId": { "type": "string" }, "pinTag": { "type": "boolean" }, "region": { "type": "string" } }, "required": [ "functionId" ], "type": "object" }, "glob": { "type": "string" } }, "required": [ "function", "glob" ], "type": "object" }, { "additionalProperties": false, "properties": { "glob": { "type": "string" }, "run": { "additionalProperties": false, "properties": { "pinTag": { "type": "boolean" }, "region": { "type": "string" }, "serviceId": { "type": "string" } }, "required": [ "serviceId" ], "type": "object" } }, "required": [ "glob", "run" ], "type": "object" }, { "additionalProperties": false, "properties": { "dynamicLinks": { "type": "boolean" }, "glob": { "type": "string" } }, "required": [ "dynamicLinks", "glob" ], "type": "object" }, { "additionalProperties": false, "properties": { "destination": { "type": "string" }, "source": { "type": "string" } }, "required": [ "destination", "source" ], "type": "object" }, { "additionalProperties": false, "properties": { "function": { "type": "string" }, "region": { "type": "string" }, "source": { "type": "string" } }, "required": [ "function", "source" ], "type": "object" }, { "additionalProperties": false, "properties": { "function": { "additionalProperties": false, "properties": { "functionId": { "type": "string" }, "pinTag": { "type": "boolean" }, "region": { "type": "string" } }, "required": [ "functionId" ], "type": "object" }, "source": { "type": "string" } }, "required": [ "function", "source" ], "type": "object" }, { "additionalProperties": false, "properties": { "run": { "additionalProperties": false, "properties": { "pinTag": { "type": "boolean" }, "region": { "type": "string" }, "serviceId": { "type": "string" } }, "required": [ "serviceId" ], "type": "object" }, "source": { "type": "string" } }, "required": [ "run", "source" ], "type": "object" }, { "additionalProperties": false, "properties": { "dynamicLinks": { "type": "boolean" }, "source": { "type": "string" } }, "required": [ "dynamicLinks", "source" ], "type": "object" }, { "additionalProperties": false, "properties": { "destination": { "type": "string" }, "regex": { "type": "string" } }, "required": [ "destination", "regex" ], "type": "object" }, { "additionalProperties": false, "properties": { "function": { "type": "string" }, "regex": { "type": "string" }, "region": { "type": "string" } }, "required": [ "function", "regex" ], "type": "object" }, { "additionalProperties": false, "properties": { "function": { "additionalProperties": false, "properties": { "functionId": { "type": "string" }, "pinTag": { "type": "boolean" }, "region": { "type": "string" } }, "required": [ "functionId" ], "type": "object" }, "regex": { "type": "string" } }, "required": [ "function", "regex" ], "type": "object" }, { "additionalProperties": false, "properties": { "regex": { "type": "string" }, "run": { "additionalProperties": false, "properties": { "pinTag": { "type": "boolean" }, "region": { "type": "string" }, "serviceId": { "type": "string" } }, "required": [ "serviceId" ], "type": "object" } }, "required": [ "regex", "run" ], "type": "object" }, { "additionalProperties": false, "properties": { "dynamicLinks": { "type": "boolean" }, "regex": { "type": "string" } }, "required": [ "dynamicLinks", "regex" ], "type": "object" } ] }, "type": "array" }, "site": { "type": "string" }, "source": { "type": "string" }, "target": { "type": "string" }, "trailingSlash": { "type": "boolean" } }, "required": [ "site" ], "type": "object" } ] }, "type": "array" } ] }, "remoteconfig": { "additionalProperties": false, "properties": { "postdeploy": { "anyOf": [ { "items": { "type": "string" }, "type": "array" }, { "type": "string" } ] }, "predeploy": { "anyOf": [ { "items": { "type": "string" }, "type": "array" }, { "type": "string" } ] }, "template": { "type": "string" } }, "required": [ "template" ], "type": "object" }, "storage": { "anyOf": [ { "additionalProperties": false, "properties": { "postdeploy": { "anyOf": [ { "items": { "type": "string" }, "type": "array" }, { "type": "string" } ] }, "predeploy": { "anyOf": [ { "items": { "type": "string" }, "type": "array" }, { "type": "string" } ] }, "rules": { "type": "string" }, "target": { "type": "string" } }, "required": [ "rules" ], "type": "object" }, { "items": { "additionalProperties": false, "properties": { "bucket": { "type": "string" }, "postdeploy": { "anyOf": [ { "items": { "type": "string" }, "type": "array" }, { "type": "string" } ] }, "predeploy": { "anyOf": [ { "items": { "type": "string" }, "type": "array" }, { "type": "string" } ] }, "rules": { "type": "string" }, "target": { "type": "string" } }, "required": [ "bucket", "rules" ], "type": "object" }, "type": "array" } ] } }, "type": "object" }
hws-config.json
{ "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "definitions": { "duration": { "oneOf": [ { "type": "integer" }, { "type": "string", "pattern": "^[0-9]+\\s*[years|yrs|y|weeks|wks|w|days|d|hours|hrs|h|minutes|mins|m!seconds|secs|s|milliseconds|ms]*$" } ] }, "loggerLevel": { "type": "string", "enum": [ "all", "trace", "debug", "info", "warn", "error", "fatal", "off" ], "default": "off" }, "transportProtocols": { "type": "string", "enum": ["http", "https"] }, "namespace": { "description": "Forces a specific namespace for connectors that perform namespace auto-detection (Advanced).", "type": "string" }, "outputDirectory": { "type": "string", "default": "logs" }, "sequential": { "type": "boolean", "default": false }, "hardwareProblemTemplate": { "type": "string", "default": "Hardware problem on \\${FQDN\\} with \\${MONITOR_NAME\\}.\\${NEWLINE\\}\\${NEWLINE\\}\\${ALERT_DETAILS\\}\\${NEWLINE\\}\\${NEWLINE\\}\\${FULLREPORT\\}" }, "hostType": { "type": "string", "anyOf": [ { "pattern": "^lin|^lnx$|^win|^ms.*win|^microsoft.*w|^oob$|^out|^vmware|^mgmt|^management|^esx|^blade|^net|^switch|^sto|^san|vms|tru64|osf|hp.*ux|aix|rs6000|^sun|^ora|sol" }, { "enum": [ "win", "linux", "network", "oob", "storage", "aix", "hpux", "solaris", "tru64", "vmx" ] } ] }, "keyValuePairVariables": { "type": "object", "propertyNames": { "pattern": "^[A-Za-z0-9_.-]+$" }, "patternProperties": { ".*": { "type": ["number", "string", "boolean"] } } } }, "id": "https://json.schemastore.org/hws-config.json", "properties": { "collectPeriod": { "description": "Sets the collect period that Hardware Sentry uses to collects metrics from the monitored hosts (Default: 2m).", "$ref": "#/definitions/duration", "default": "2m" }, "disableAlerts": { "description": "Disables Hardware Sentry's alerts for all the monitored hosts (Default: false).", "type": "boolean", "default": false }, "discoveryCycle": { "description": "Sets the cycle that Hardware Sentry uses to perform discoveries and detect new components in your monitored environment. By default, Hardware Sentry runs a discovery after 30 collects.", "type": "integer", "default": "30" }, "exporter": { "description": "Sets Hardware Sentry's internal Exporter configuration.", "type": "object", "properties": { "otlp": { "description": "Overrides Hardware Sentry's internal OTLP Exporter configuration.", "type": ["object", "null"], "properties": { "headers": { "description": "Sets Hardware Sentry's OTLP Exporter headers, such as the `Authorization` header used to authenticate the Exporter with the OTLP gRPC Receiver.", "type": "object" }, "trustedCertificatesFile": { "description": "Sets Hardware Sentry's OTLP Exporter trusted certificates file (Default: security/otel.crt).", "type": "string", "default": "security/otel.crt" }, "endpoint": { "description": "Configures the OTLP Receiver endpoint (Default: https://localhost:4317).", "type": "string", "default": "https://localhost:4317" } } } } }, "extraLabels": { "description": "Adds or overrides the attributes for all the monitored hosts. It is recommended to specify a different `site` label value for each OpenTelemetry Collector running the Hardware Sentry Agent.", "$ref": "#/definitions/keyValuePairVariables" }, "extraMetrics": { "description": "Adds additional static metrics to be exposed by Hardware Sentry.", "type": "object", "propertyNames": { "pattern": "^[A-Za-z0-9_.-]+$" }, "patternProperties": { ".*": { "type": "number" } } }, "hardwareProblemTemplate": { "description": "Overrides the default hardware problem template used to build the alert body for all the monitored hosts.", "$ref": "#/definitions/hardwareProblemTemplate" }, "hosts": { "description": "Configures the hosts to monitor.", "type": "array", "items": { "type": "object", "properties": { "collectPeriod": { "description": "Sets the default collect period that Hardware Sentry uses to collects metrics from the monitored host (Default: 2m).", "$ref": "#/definitions/duration", "default": "2m" }, "disableAlerts": { "description": "Disables Hardware Sentry's alerts for the monitored host (Default: false).", "type": "boolean", "default": false }, "discoveryCycle": { "description": "Sets the cycle that Hardware Sentry uses to perform discoveries and detect new components for the specific host. By default, Hardware Sentry runs a discovery after 30 collects.", "type": "integer", "default": "30" }, "excludedConnectors": { "description": "Sets the Connector(s) that must be excluded from the automatic detection.", "type": "array", "items": { "type": "string" } }, "extraLabels": { "description": "Adds or overrides the attributes of the monitored host.", "$ref": "#/definitions/keyValuePairVariables" }, "hardwareProblemTemplate": { "description": "Overrides the default hardware problem template used to build the alert body for the monitored host.", "$ref": "#/definitions/hardwareProblemTemplate" }, "host": { "description": "Configures a new host to be monitored.", "type": "object", "properties": { "hostname": { "description": "Configures the hostname of the host to be monitored.", "type": "string" }, "id": { "description": "Configures the identifier of the host to be monitored (Optional). By default, the host identifier is the hostname property value.", "type": "string" }, "type": { "description": "Configures the type of the host to be monitored.", "$ref": "#/definitions/hostType" } }, "required": ["hostname", "type"] }, "hostGroup": { "description": "Configures several hosts which share the same characteristics.", "type": "object", "properties": { "hostnames": { "description": "Configures the hostnames of the hosts to be monitored.", "oneOf": [ { "type": "array", "items": { "type": "string" } }, { "type": "object", "patternProperties": { "^[A-Za-z0-9.\\-_:]+$": { "type": "object", "description": "Configures the hostname of the host to be monitored.", "properties": { "extraLabels": { "description": "Adds or overrides the attributes of the monitored host.", "$ref": "#/definitions/keyValuePairVariables" } } } } } ] }, "type": { "description": "Configures the type of the hosts to be monitored.", "$ref": "#/definitions/hostType" } }, "required": ["hostnames", "type"] }, "http": { "description": "Configures the HTTP protocol to access the host.", "type": "object", "properties": { "https": { "description": "Enables HTTPS to access the host (Default: true).", "type": "boolean", "default": true }, "password": { "description": "Sets the password used to establish the connection with the host through the HTTP protocol.", "type": "string" }, "port": { "description": "Sets the HTTPS port number used to perform HTTP requests (Default: 443).", "type": "integer", "default": 443 }, "timeout": { "description": "Sets how long until the HTTP request times out (Default: 120s).", "$ref": "#/definitions/duration", "default": "120s" }, "username": { "description": "Sets the username used to establish the connection with the host through the HTTP protocol.", "type": "string" } } }, "ipmi": { "description": "Configures the IPMI protocol to access the host.", "type": "object", "properties": { "password": { "description": "Sets the password used to establish the connection with the host through the IPMI protocol.", "type": "string" }, "timeout": { "description": "Sets how long until the IPMI request times out (Default: 120s).", "$ref": "#/definitions/duration", "default": "120s" }, "username": { "description": "Sets the username used to establish the connection with the host through the IPMI protocol.", "type": "string" } } }, "loggerLevel": { "description": "Enables the debug mode of the core engine on the specific host (Default: off).", "$ref": "#/definitions/loggerLevel" }, "operationTimeout": { "description": "Sets how long until the engine's discovery and collect operations time out.", "type": "integer" }, "osCommand": { "description": "Configures the OS Command protocol to access the host.", "type": "object", "properties": { "sudoCommand": { "description": "Sets the sudo command to be used for the host to be monitored (Default: sudo).", "type": "string", "default": "sudo" }, "timeout": { "description": "Sets how long until the local OS Command times out (Default: 120s).", "$ref": "#/definitions/duration", "default": "120s" }, "useSudo": { "description": "Sets if sudo needs to be used for the local OS Command (Default: false).", "type": "boolean", "default": false }, "useSudoCommands": { "description": "Sets the list of commands for which sudo is required.", "type": "array", "items": { "type": "string" } } } }, "outputDirectory": { "description": "Sets the debug output directory for the monitored host. By default, the debug output file is saved in the `logs` directory under the Hardware Sentry's home directory.", "$ref": "#/definitions/outputDirectory" }, "selectedConnectors": { "description": "Sets the Connector(s) to use to monitor the host. No automatic detection will be performed.", "type": "array", "items": { "type": "string" } }, "sequential": { "description": "Forces all the network calls to be executed in sequential order for the monitored host - NOT RECOMMENDED (Default: false).", "$ref": "#/definitions/sequential" }, "snmp": { "description": "Configures the SNMP protocol to access the host.", "type": "object", "properties": { "community": { "description": "Sets the SNMP Community string to use to perform SNMP v1 queries (Default: public).", "type": "string", "default": "public" }, "password": { "description": "SNMP v3 only - Sets the password to use for performing the SNMP query.", "type": "string" }, "port": { "description": "Sets the SNMP port number used to perform SNMP queries (Default: 161).", "type": "integer", "default": 161 }, "privacy": { "description": "SNMP v3 only - Sets the type of encryption protocol.", "type": "string", "enum": ["none", "aes", "des"] }, "privacyPassword": { "description": "SNMP v3 only - Sets the password associated to the privacy protocol.", "type": "string" }, "timeout": { "description": "Sets how long until the SNMP request times out (Default: 120s).", "$ref": "#/definitions/duration", "default": "120s" }, "username": { "description": "SNMP v3 only - Sets the username to use for performing the SNMP query.", "type": "string" }, "version": { "description": "Sets the version of the SNMP protocol (Default: v1).", "type": "string", "enum": ["v1", "v2c", "v3-no-auth", "v3-md5", "v3-sha"], "default": "v1" } } }, "ssh": { "description": "Configures the SSH protocol to access the host.", "type": "object", "properties": { "password": { "description": "Sets the password to use for performing the SSH query.", "type": "string" }, "privateKey": { "description": "Sets the private Key File to use to establish the connection to the host through the SSH protocol.", "type": "string" }, "sudoCommand": { "description": "Sets the sudo command to be used.", "type": "string", "default": "sudo" }, "timeout": { "description": "Sets how long until the command times out (Default: 120s).", "$ref": "#/definitions/duration", "default": "120s" }, "useSudo": { "description": "Sets if sudo needs to be used for the SSH Command (Default: false).", "type": "boolean", "default": false }, "useSudoCommands": { "description": "Sets the list of commands for which sudo is required.", "type": "array", "items": { "type": "string" } }, "username": { "description": "Sets the username to use for performing the SSH query.", "type": "string" } } }, "wbem": { "description": "Configures the WBEM protocol to access the host.", "type": "object", "properties": { "namespace": { "$ref": "#/definitions/namespace" }, "password": { "description": "Sets the password used to establish the connection with the host through the WBEM protocol.", "type": "string" }, "port": { "description": "Sets the HTTPS port number used to perform WBEM queries (Default: 5989 for HTTPS or 5988 for HTTP).", "type": "integer", "default": 5989 }, "protocol": { "description": "Sets the protocol used to access the host (Default: https).", "$ref": "#/definitions/transportProtocols", "default": "https" }, "timeout": { "description": "Sets how long until the WBEM request times out (Default: 120s).", "$ref": "#/definitions/duration", "default": "120s" }, "username": { "description": "Sets the username used to establish the connection with the host through the WBEM protocol.", "type": "string" } } }, "winrm": { "description": "Configures the WinRM protocol to access the host.", "type": "object", "properties": { "authentications": { "description": "Sets an ordered list of authentication schemes (Default: [\"ntlm\"]).", "type": "array", "items": { "type": "string", "enum": ["ntlm", "kerberos"] }, "default": ["ntlm"] }, "namespace": { "$ref": "#/definitions/namespace" }, "password": { "description": "Sets the password used to establish the connection with the host through the WinRM protocol.", "type": "string" }, "port": { "description": "Sets the port number used to perform WQL queries and commands (Default: 5985 for HTTP or 5986 for HTTPS).", "type": "integer" }, "protocol": { "description": "Sets the protocol used to access the host (Default: http).", "$ref": "#/definitions/transportProtocols", "default": "http" }, "timeout": { "description": "Sets how long until the WinRM request times out (Default: 120s).", "$ref": "#/definitions/duration", "default": "120s" }, "username": { "description": "Sets the username used to establish the connection with the host through the WinRM protocol.", "type": "string" } } }, "wmi": { "description": "Configures the WMI protocol to access the host.", "type": "object", "properties": { "namespace": { "$ref": "#/definitions/namespace" }, "password": { "description": "Sets the password used to establish the connection with the host through the WMI protocol.", "type": "string" }, "timeout": { "description": "Sets how long until the WMI request times out (Default: 120s).", "$ref": "#/definitions/duration", "default": "120s" }, "username": { "description": "Sets the username used to establish the connection with the host through the WMI protocol.", "type": "string" } } } }, "oneOf": [ { "required": ["host"] }, { "required": ["hostGroup"] } ] } }, "jobPoolSize": { "description": "Sets the number of jobs that Hardware Sentry can run simultaneously (Default: 20).", "type": "integer", "default": "20" }, "loggerLevel": { "description": "Enables the debug mode of the core engine (Default: off).", "$ref": "#/definitions/loggerLevel" }, "otelCollector": { "description": "Customizes the OpenTelemetry Collector sub-process.", "type": "object", "properties": { "commandLine": { "description": "Overrides the OpenTelemetry Collector command line.", "type": "array", "items": { "type": "string" } }, "environment": { "description": "Configures the OpenTelemetry Collector environment variables.", "$ref": "#/definitions/keyValuePairVariables" }, "output": { "description": "Configures where to print the OpenTelemetry Collector's output (Default: log).", "type": "string", "enum": ["log", "console", "silent"], "default": "log" }, "workingDir": { "description": "Configures the working directory of the OpenTelemetry Collector.", "type": "string" }, "disabled": { "description": "Disables the OpenTelemetry Collector (Default: false).", "type": "boolean", "default": false } } }, "outputDirectory": { "description": "Sets the debug output directory for all the monitored hosts. By default, the debug output files are saved in the `logs` directory under the Hardware Sentry's home directory.", "$ref": "#/definitions/outputDirectory" }, "resolveHostnameToFqdn": { "description": "Displays the configured hostname in the Host Resource `host.name` attribute instead of the resolved FQDN (Default: false).", "type": "boolean", "default": false }, "sequential": { "description": "Forces all the network calls to be executed in sequential order for all the monitored hosts - NOT RECOMMENDED (Default: false).", "$ref": "#/definitions/sequential" } }, "title": "Hardware Sentry configuration file", "type": "object" }
event-horizons.json
{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "dolittle.io/schemas/Runtime/Events/event-horizons.json", "title": "Event Horizons Configuration", "description": "The event horizons configuration", "type": "array", "items": { "$ref": "#/definitions/eventHorizonConfiguration" }, "definitions": { "eventHorizonConfiguration": { "description": "The configuration of an event horizon", "type": "object", "properties": { "application": { "description": "The application id of the application which the bounded context you want to communicate belongs to", "type": "string" }, "boundedContext": { "description": "The bounded context id you wish to penetrate to", "type": "string" }, "url": { "description": "The url where the other bounded context's event horizon lives", "type": "string", "format": "uri-reference" }, "events": { "description": "An array of event artifacts that this bounded context is interested in", "type": "array", "items": { "$ref": "#/definitions/artifact" } } }, "required": [ "application", "boundedContext", "url", "events" ] }, "artifact": { "$comment": "Should become it's own schema file'", "description": "The configuration of an artifact", "properties": { "id": { "description": "The artifact id", "type": "string" }, "generation": { "description": "The artifact generation", "type": "number" } }, "required": [ "id", "generation" ] } } }
vsls.json
{ "$schema": "http://json-schema.org/draft-04/schema#", "id": "https://json.schemastore.org/vsls.json", "properties": { "excludeFiles": { "description": "An array of globs which indicate the files that should be completely unavailable to guests when you share (e.g. secrets).", "type": "array", "items": { "type": "string" } }, "gitignore": { "description": "Indicates how .gitignore files should be treated with respects to excluding/hiding files from guests.", "type": "string", "default": "hide", "enum": ["none", "hide", "exclude"] }, "hideFiles": { "description": "An array of globs which indicate the files that should be hidden from guest's file trees, but still accessible (e.g. when following the host).", "type": "array", "items": { "type": "string" } } }, "title": "JSON schema for Visual Studio Live Share config files", "type": "object" }
codeclimate.json
{ "$comment": "https://docs.codeclimate.com/docs/advanced-configuration", "$schema": "http://json-schema.org/draft-04/schema#", "definitions": { "enabled": { "type": "object", "properties": { "enabled": { "title": "Enabled", "type": "boolean", "default": true } } }, "config": { "title": "Config", "type": "object" }, "threshold": { "title": "Threshold", "type": ["integer", "null"] } }, "description": "Configuration file as an alternative for configuring your repository in the settings page.", "id": "https://json.schemastore.org/codeclimate.json", "properties": { "version": { "title": "Version", "description": "Required to adjust maintainability checks.", "type": "string", "default": "2" }, "prepare": { "title": "Prepare", "type": "array", "items": { "type": "object", "properties": { "url": { "title": "URL", "type": "string", "format": "uri" }, "path": { "title": "Path", "type": "string" } } } }, "checks": { "title": "Checks", "type": "object", "properties": { "argument-count": { "title": "Argument Count", "$ref": "#/definitions/enabled", "properties": { "config": { "$ref": "#/definitions/config", "properties": { "threshold": { "$ref": "#/definitions/threshold", "default": 4 } } } } }, "complex-logic": { "title": "Complex Logic", "$ref": "#/definitions/enabled", "properties": { "config": { "$ref": "#/definitions/config", "properties": { "threshold": { "$ref": "#/definitions/threshold", "default": 4 } } } } }, "file-lines": { "title": "File Lines", "$ref": "#/definitions/enabled", "properties": { "config": { "$ref": "#/definitions/config", "properties": { "threshold": { "$ref": "#/definitions/threshold", "default": 250 } } } } }, "method-complexity": { "title": "Method Complexity", "$ref": "#/definitions/enabled", "properties": { "config": { "$ref": "#/definitions/config", "properties": { "threshold": { "$ref": "#/definitions/threshold", "default": 5 } } } } }, "method-count": { "title": "Method Count", "$ref": "#/definitions/enabled", "properties": { "config": { "$ref": "#/definitions/config", "properties": { "threshold": { "$ref": "#/definitions/threshold", "default": 20 } } } } }, "method-lines": { "title": "Method Lines", "$ref": "#/definitions/enabled", "properties": { "config": { "$ref": "#/definitions/config", "properties": { "threshold": { "$ref": "#/definitions/threshold", "default": 25 } } } } }, "nested-control-flow": { "title": "Nested Control Flow", "$ref": "#/definitions/enabled", "properties": { "config": { "$ref": "#/definitions/config", "properties": { "threshold": { "$ref": "#/definitions/threshold", "default": 4 } } } } }, "return-statements": { "title": "Return Statements", "$ref": "#/definitions/enabled", "properties": { "config": { "$ref": "#/definitions/config", "properties": { "threshold": { "$ref": "#/definitions/threshold", "default": 4 } } } } }, "similar-code": { "title": "Similar Code", "$ref": "#/definitions/enabled", "properties": { "config": { "$ref": "#/definitions/config", "properties": { "threshold": { "$ref": "#/definitions/threshold" } } } } }, "identical-code": { "title": "Identical Code", "$ref": "#/definitions/enabled", "properties": { "config": { "$ref": "#/definitions/config", "properties": { "threshold": { "$ref": "#/definitions/threshold" } } } } } } }, "plugins": { "title": "Plugins", "description": "To add a plugin to your analysis. You can find the complete list of available plugins here: https://docs.codeclimate.com/docs/list-of-engines", "type": "object", "additionalProperties": { "$ref": "#/definitions/enabled" } }, "exclude_patterns": { "title": "Exclude Patterns", "type": "array", "items": { "title": "Exclude Pattern", "type": "string" } } }, "title": "Code Climate Configuration", "type": "object" }
project-1.0.0-beta5.json
{ "$schema": "http://json-schema.org/draft-04/schema#", "definitions": { "compilationOptions": { "type": "object", "properties": { "define": { "type": "array", "uniqueItems": true, "items": { "type": "string" } }, "warningsAsErrors": { "type": "boolean", "default": false }, "allowUnsafe": { "type": "boolean", "default": false }, "optimize": { "type": "boolean", "default": false }, "languageVersion": { "type": "string", "enum": [ "csharp1", "csharp2", "csharp3", "csharp4", "csharp5", "csharp6", "experimental" ] } } }, "configType": { "type": "object", "properties": { "dependencies": { "$ref": "#/definitions/dependencies" }, "compilationOptions": { "$ref": "#/definitions/compilationOptions" }, "frameworkAssemblies": { "$ref": "#/definitions/dependencies" } } }, "dependencies": { "type": "object", "additionalProperties": { "type": ["string", "object"], "properties": { "version": { "type": "string" }, "type": { "type": "string", "default": "default", "enum": ["default", "build"] } } } }, "script": { "type": ["string", "array"], "items": { "type": "string" }, "description": "A command line script or scripts.\r\rAvailable variables:\r%project:Directory% - The project directory\r%project:Name% - The project name\r%project:Version% - The project version" } }, "id": "https://json.schemastore.org/project-1.0.0-beta5.json", "properties": { "authors": { "type": "array", "uniqueItems": true, "items": { "type": "string" } }, "bundleExclude": { "description": "List of files to exclude from publish output (kpm bundle).", "type": ["string", "array"], "items": { "type": "string" }, "default": "" }, "code": { "description": "Glob pattern to specify all the code files that needs to be compiled. (data type: string or array with glob pattern(s)). Example: [ \"Folder1\\*.cs\", \"Folder2\\*.cs\" ]", "type": ["string", "array"], "items": { "type": "string" }, "default": "**\\*.cs" }, "commands": { "type": "object", "additionalProperties": { "type": "string" } }, "compilationOptions": { "$ref": "#/definitions/compilationOptions" }, "configurations": { "type": "object", "description": "Configurations are named groups of compilation settings. There are 2 defaults built into the runtime namely 'Debug' and 'Release'.", "additionalProperties": { "type": "object", "properties": { "compilationOptions": { "$ref": "#/definitions/compilationOptions" } } } }, "dependencies": { "$ref": "#/definitions/dependencies" }, "copyright": { "description": "Copyright details for the package", "type": "string" }, "iconUrl": { "description": "A URL for the image to use as the icon for the package. This should be a 32x32-pixel .png file that has a transparent background.", "type": "string" }, "licenseUrl": { "description": "A link to the license that the package is under", "type": "string" }, "requireLicenseAcceptance": { "description": "A Boolean value that specifies whether the client needs to ensure that the package license (described by licenseUrl) is accepted before the package is installed.", "type": "boolean", "default": false }, "owners": { "type": "array", "uniqueItems": true, "items": { "type": "string" } }, "projectUrl": { "description": "A URL for the home page of the package", "type": "string" }, "summary": { "description": "A short description of the package", "type": "string" }, "tags": { "type": "array", "uniqueItems": true, "items": { "type": "string" } }, "title": { "description": "The human-friendly title of the package", "type": "string" }, "releaseNotes": { "description": "A description of the changes made in each release of the package.", "type": "string" }, "language": { "description": "The locale ID for the package, such as en-us.", "type": "string" }, "description": { "description": "The description of the application", "type": "string" }, "exclude": { "description": "Glob pattern to indicate all the code files to be excluded from compilation. (data type: string or array with glob pattern(s)).", "type": ["string", "array"], "items": { "type": "string" }, "default": ["bin/**/*.*", "obj/**/*.*"] }, "frameworks": { "type": "object", "additionalProperties": { "$ref": "#/definitions/configType" } }, "namedResource": { "type": "object", "description": "Overrides the generated resource names with custom ones.", "additionalProperties": { "type": "string" } }, "preprocess": { "description": "Glob pattern to indicate all the code files to be preprocessed. (data type: string with glob pattern).", "type": "string", "default": "Compiler\\Preprocess\\**\\*.cs" }, "resources": { "description": "Glob pattern to indicate all the files that need to be compiled as resources.", "type": ["string", "array"], "items": { "type": "string" }, "default": "Compiler\\Resources\\**\\*.cs" }, "scripts": { "type": "object", "description": "Scripts to execute during the various stages.", "properties": { "prepack": { "$ref": "#/definitions/script" }, "postpack": { "$ref": "#/definitions/script" }, "prebundle": { "$ref": "#/definitions/script" }, "postbundle": { "$ref": "#/definitions/script" }, "prerestore": { "$ref": "#/definitions/script" }, "postrestore": { "$ref": "#/definitions/script" }, "prepare": { "$ref": "#/definitions/script" } } }, "shared": { "description": "Glob pattern to specify the code files to share with dependent projects. Example: [ \"Folder1\\*.cs\", \"Folder2\\*.cs\" ]", "type": ["string", "array"], "items": { "type": "string" }, "default": "Compiler\\Shared\\**\\*.cs" }, "version": { "description": "The version of the project/package. Examples: 1.2.3, 1.2.3-beta, 1.2.3-*", "type": "string" }, "webroot": { "description": "Specifying the webroot property in the project.json file specifies the web server root (aka public folder). In visual studio, this folder will be used to root IIS. Static files should be put in here.", "type": "string" } }, "title": "JSON schema for ASP.NET project.json files", "type": "object" }
package.manifest.json
{ "$schema": "http://json-schema.org/draft-04/schema#", "definitions": { "editor": { "description": "This describes details about the editor.", "type": "object", "additionalProperties": false, "properties": { "view": { "type": "string", "description": "This is the full path to the HTML view for your property editor." }, "hideLabel": { "type": "boolean", "description": "If set to true, this hides the label for the property editor when used on a document type." }, "valueType": { "type": "string", "description": "This is the type of data you want your property editor to save to the database.", "enum": ["STRING", "JSON", "DATETIME", "TEXT", "INT"] }, "validation": { "description": "Object describing required validators on the editor.", "type": "object" }, "isReadOnly": { "type": "boolean", "description": "If set to true, this makes the property editor read-only.", "default": false }, "supportsReadOnly": { "type": "boolean", "description": "If set to true, this will disable the default read-only overlay and requires the editor to implement support for this instead.", "default": false } } }, "editors": { "type": "object", "required": ["name", "alias", "editor"], "properties": { "alias": { "type": "string", "description": "This must be a unique alias to your property editor." }, "defaultConfig": { "type": "object", "description": "Provides a collection of default configuration values, in cases the property editor is not configured or is used a parameter editor, which doesn't allow configuration. The object is a key/value collection and must match the prevalue fields keys.", "minProperties": 1 }, "editor": { "$ref": "#/definitions/editor" }, "isParameterEditor": { "type": "boolean", "description": "Enables the property editor as a macro parameter editor.", "default": false }, "name": { "type": "string", "description": "The friendly name of the property editor, shown in the backoffice." }, "icon": { "type": "string", "description": "A CSS class for the icon to be used in the 'Select Editor' dialog, e.g. `icon-autofill`." }, "group": { "type": "string", "description": "The group to place this editor in within the 'Select Editor' dialog. Use a new group name or alternatively use an existing one such as `Pickers`." } } }, "gridEditor": { "type": "object", "required": ["name", "alias", "view"], "properties": { "name": { "type": "string", "description": "The friendly name of the grid editor, shown in the backoffice." }, "alias": { "type": "string", "description": "This must be a unique alias to your grid editor." }, "icon": { "type": "string", "description": "A CSS class for the icon to be used in the 'Select Editor' dialog, e.g. `icon-autofill`." }, "view": { "type": "string", "description": "This is backoffice HTML view for your grid editor. Either refers to one of the built-in view (textstring, rte, embed, macro, media) or the full path to a custom view, e.g. `~/App_Plugins/FolderName/editor.html`." }, "render": { "type": "string", "description": "This is front end Razor view for your grid editor. Accepts full path to a custom view, e.g. `~/App_Plugins/FolderName/editor.cshtml`." }, "config": { "type": "object", "description": "Configuration for the grid editor. Can be used with textstring and media views or for custom configuration properties.", "minProperties": 1, "properties": { "style": { "type": "string", "description": "If used with the textstring view, this accepts inline CSS to style the textstring box, e.g. `font-size: 30px; line-height: 40px; font-weight: bold;`." }, "markup": { "type": "string", "description": "If used with the textstring view, this allows wrapping the value in custom markup, e.g. `<h2>#value#</h2>`." }, "size": { "type": "object", "description": "If used with the media view, this accepts hight and width key/value pairs for cropping.", "properties": { "height": { "type": "integer", "description": "Height of image in pixels." }, "width": { "type": "integer", "description": "Width of image in pixels." } } } } } } }, "preValues": { "type": "object", "properties": { "prevalues": { "type": "object", "description": "This is an object that stores an array of prevalue fields or options to configure your property editor.", "properties": { "fields": { "$ref": "#/definitions/fields" } } } } }, "fields": { "type": "array", "description": "This is the collection of prevalue fields.", "minItems": 1, "items": { "type": "object", "minProperties": 1, "properties": { "key": { "type": "string", "description": "A unique key for the prevalue field.", "minLength": 1 }, "label": { "type": "string", "description": "The user friendly label for the prevalue." }, "description": { "type": "string", "description": "A more detailed description for the user." }, "view": { "type": "string", "description": "The type of editor to use for this prevalue field." }, "validation": { "type": "array", "items": { "type": "object", "properties": { "type": { "type": "string" } } } } } } }, "dashboard": { "description": "A dashboard to display contextual information when in a section/application.", "type": "object", "additionalProperties": false, "required": ["alias", "view", "sections"], "properties": { "alias": { "type": "string", "description": "The alias of the dashboard which can be queried via the Dashboard Service API.", "minLength": 1 }, "view": { "type": "string", "description": "This is the full path to the HTML view for your dashboard.", "minLength": 1 }, "sections": { "type": "array", "description": "A list of section/application aliases that the dashboard should be visible in.", "uniqueItems": true, "minItems": 1, "items": { "type": "string", "minLength": 1 } }, "weight": { "type": "integer", "description": "The weight (sort order) of the dashboard. Defaults to 100 if not specified." }, "access": { "type": "array", "description": "A list of what user groups aliases are granted or denied permission to see the dashboard. All users will have access if not specified.", "uniqueItems": true, "minItems": 1, "items": { "type": "object", "properties": { "deny": { "type": "string", "description": "A user group alias who is denied access." }, "grant": { "type": "string", "description": "A user group alias who is granted access." } }, "oneOf": [ { "required": ["deny"] }, { "required": ["grant"] } ] } } } }, "section": { "description": "A section/application to extend the backoffice.", "type": "object", "additionalProperties": false, "required": ["name", "alias"], "properties": { "name": { "type": "string", "description": "The friendly name of the section/application, shown in the backoffice.", "minLength": 1 }, "alias": { "type": "string", "description": "The alias of the section/application which can be queried via the Section Service API.", "minLength": 1 } } }, "contentApp": { "description": "A section/application to extend the backoffice.", "type": "object", "additionalProperties": false, "required": ["name", "alias", "icon", "view"], "properties": { "name": { "type": "string", "description": "The friendly name of the content app that appears under the icon.", "minLength": 1 }, "alias": { "type": "string", "description": "A unique alias of the content app.", "minLength": 1 }, "icon": { "type": "string", "description": "A CSS class for the icon to be used for the content app, e.g. `icon-calculator`." }, "view": { "type": "string", "description": "This is the full path to the HTML view for your content app." }, "weight": { "type": "integer", "description": "The weight (sort order) of the content app. Default is 0, use values between -99 and +99 to appear between the existing Content (-100) and Info (100) apps." }, "show": { "type": "array", "description": "A list of rules to show or hide the content app based on content, media and member types.", "uniqueItems": true, "items": { "type": "string", "description": "See documentation for examples of rules: https://our.umbraco.com/Documentation/Extending/Content-Apps/#limiting-according-to-type." } } } } }, "id": "https://json.schemastore.org/package.manifest.json", "properties": { "id": { "type": "string", "description": "The (NuGet) package ID, shown in the backoffice and included in package telemetry as unique identifier (supported in v12+). Also used to retrieve the assembly informational version if no explicit `version` and `versionAssemlbyName` is set." }, "name": { "type": "string", "description": "The (friendly) package name, shown in the backoffice and included in package telemetry. If not specified, uses the directory name instead." }, "version": { "type": "string", "description": "The package version, shown in the backoffice and included in package telemetry. If not specified, uses the `versionAssemblyName` or `id` to retrieve the assembly informational version." }, "versionAssemblyName": { "type": "string", "description": "The assembly name to retrieve the informational version, if no explicit `version` is set. If not specified, uses the `id` instead (supported in v12+)." }, "allowPackageTelemetry": { "type": "boolean", "description": "Allows you to opt-out of including your package in telemetry reports if set to false, defaults to true.", "default": true }, "packageView": { "type": "string", "description": "The full path to an HTML view for your package to help users maintain configuration data when viewing installed packages in the backoffice.", "minLength": 1 }, "bundleOptions": { "type": "string", "description": "Default: The assets will be bundled with the typical packages bundle. None: The assets in the package will not be processed at all and will all be requested as individual assets in debug and production. Independent: The packages assets will be processed as it's own separate bundle (in debug, files will not be processed).", "enum": ["Default", "None", "Independent"] }, "javascript": { "type": "array", "description": "A list of JavaScript files with full path to load in the backoffice.", "uniqueItems": true, "items": { "type": "string" } }, "css": { "type": "array", "description": "A list of CSS files with full path to load in the backoffice.", "uniqueItems": true, "items": { "type": "string" } }, "propertyEditors": { "type": "array", "description": "Returns an array of editor objects, each object specifies an editor to make available to data types as an editor component. These editors are primarily property editors for content, media and members, but can also be made available as a macro parameter editor.", "minItems": 1, "items": { "allOf": [ { "$ref": "#/definitions/editors" }, { "$ref": "#/definitions/preValues" } ] } }, "parameterEditors": { "type": "array", "description": "Returns an array of editor objects, each object specifies an editor to make available to macro parameters as an editor component. These editors work solely as parameter editors, and will not show up on the property editors list.", "minItems": 1, "items": { "$ref": "#/definitions/editors" } }, "gridEditors": { "type": "array", "description": "Returns an array of grid editor objects, each object specifies a grid editor to make available in the Grid Layout property editor.", "minItems": 1, "items": { "$ref": "#/definitions/gridEditor" } }, "dashboards": { "type": "array", "description": "Returns an array of dashboards, each object specified a dashboard to make available in the backoffice.", "uniqueItems": true, "minItems": 1, "items": { "$ref": "#/definitions/dashboard" } }, "sections": { "type": "array", "description": "Returns an array of sections/applications to add to the backoffice.", "uniqueItems": true, "minItems": 1, "items": { "$ref": "#/definitions/section" } }, "contentApps": { "type": "array", "description": "Returns an array of Content Apps to add to the backoffice.", "uniqueItems": true, "minItems": 1, "items": { "$ref": "#/definitions/contentApp" } } }, "title": "JSON schema for Umbraco package.manifest files.", "type": "object" }
red_cog_repo.schema.json
{ "$id": "https://raw.githubusercontent.com/Cog-Creators/Red-DiscordBot/V3/develop/schema/red_cog_repo.schema.json", "$schema": "http://json-schema.org/draft-07/schema#", "title": "Red-DiscordBot Сog Repo metadata file", "type": "object", "properties": { "author": { "type": "array", "description": "List of names of authors of the cog", "items": { "type": "string" } }, "description": { "type": "string", "description": "A long description of the cog or repo. For cogs, this is displayed when a user executes [p]cog info." }, "install_msg": { "type": "string", "description": "The message that gets displayed when a cog is installed or a repo is added" }, "short": { "type": "string", "description": "A short description of the cog or repo. For cogs, this info is displayed when a user executes [p]cog list" } } }
testenvironments.json
{ "$schema": "http://json-schema.org/draft-04/schema#", "definitions": { "config": { "required": ["name", "type"], "oneOf": [ { "$ref": "#/definitions/docker" }, { "$ref": "#/definitions/wsl" }, { "$ref": "#/definitions/ssh" }, { "$ref": "#/definitions/remote" } ], "properties": { "name": { "type": "string", "description": "User-friendly environment name that will appear in the TestExplorer list. It must be unique within a testEnvironments.json file.", "minLength": 1 }, "localRoot": { "type": "string", "description": "Path on the local machine (either absolute or relative to the solution directory) which is projected into the remote environment. If not specified, this will default to the repo root within the context of a git repo (on VS 17.1 and above). Outside a git repo, this would default to the solution directory." } } }, "docker": { "properties": { "type": { "enum": ["docker"] } }, "oneOf": [ { "required": ["dockerImage"], "properties": { "dockerImage": { "type": "string", "description": "Name of a docker image to load in a docker env. dockerImage or dockerFile must be specified, but not both." } } }, { "required": ["dockerFile"], "properties": { "dockerFile": { "type": "string", "description": "Path to a Dockerfile, relative to the solution directory, to build an image and load in a docker env. dockerImage or dockerFile must be specified, but not both." } } } ] }, "wsl": { "required": ["wslDistribution"], "properties": { "type": { "enum": ["wsl"] }, "wslDistribution": { "type": "string", "description": "Name of the local WSL distribution in which to run the test environment." } } }, "ssh": { "required": ["remoteUri"], "properties": { "type": { "enum": ["ssh"] }, "remoteUri": { "type": "string", "description": "A uri that specifies the connection to the remote machine. e.g. ssh://user@hostname:22" } } }, "remote": { "required": ["remoteUri"], "properties": { "type": { "enum": ["remote"] }, "remoteUri": { "type": "string", "description": "A uri that specifies the connection to the remote machine. e.g. tcp://hostname:2358" } } } }, "id": "https://json.schemastore.org/testenvironments.json", "properties": { "version": { "type": "string" }, "environments": { "type": "array", "items": { "$ref": "#/definitions/config" } } }, "title": "Schema for Visual Studio's test environment config", "type": "object" }
frogbot-schema.json
{ "title": "Frogbot Configuration Schema", "description": "The configuration required for Frogbot to scan your Git repositories.", "$schema": "https://json-schema.org/draft-07/schema#", "type": "array", "items": { "required": ["params"], "additionalProperties": false, "properties": { "params": { "title": "Project Parameters", "required": ["git"], "description": "Includes the configuration of a single Git repository that needs to be scanned. For Azure Repos, Bitbucket Server and GitHub with JFrog Pipelines or Jenkins, you can define multiple 'params' sections one after the other, for scanning multiple Git repositories in the same organization.", "additionalProperties": false, "properties": { "git": { "$ref": "#/$git" }, "scan": { "$ref": "#/$scan" }, "jfrogPlatform": { "$ref": "#/$jfrogPlatform" } } } } }, "$git": { "title": "Git Parameter", "description": "Includes the required Git parameters such as repository name and branches.", "required": ["repoName", "branches"], "additionalProperties": false, "properties": { "repoName": { "type": "string", "title": "Repository Name", "description": "The name of the git repository to scan.", "examples": ["repo-name"] }, "branches": { "type": "array", "title": "Repository Branches", "description": "A list of branches to scan.", "items": { "type": "string", "default": "master", "title": "Repository Branch", "examples": ["master", "v1", "v2"] }, "examples": [["master", "v1", "v2"]] }, "commitMessageTemplate": { "type": "string", "default": "", "examples": [ "[Frogbot]", "fix(dependency) update ${IMPACTED_PACKAGE} to ${FIX_VERSION}" ] }, "branchNameTemplate": { "type": "string", "default": "", "examples": [ "Frogbot-${BRANCH_NAME_HASH}", "Security_Update-${BRANCH_NAME_HASH}", "${BRANCH_NAME_HASH}-Feature" ] }, "pullRequestTitleTemplate": { "type": "string", "default": "", "examples": [ "[Frogbot]-${IMPACTED_PACKAGE}", "[Security_Update]-${FIX_VERSION}", "[Feature]" ] }, "aggregateFixes": { "type": "boolean", "default": "false" }, "emailAuthor": { "type": "string", "default": "[email protected]", "examples": [ "[email protected]" ] } }, "examples": [ { "repoName": "repo-name", "branches": ["master"] } ] }, "$scan": { "title": "Frogbot Scanning Parameters", "description": "Includes the scanning parameters such as the required scanning directories.", "additionalProperties": false, "properties": { "includeAllVulnerabilities": { "type": "boolean", "description": "Set to true to display all existing vulnerabilities, including the ones that were not added by the pull request.", "title": "Include All Vulnerabilities" }, "failOnSecurityIssues": { "type": "boolean", "description": "Set to true to fail the job if security issues were found.", "title": "Fail on Security Issues" }, "minSeverity": { "type": "string", "default": ["Show all severities"], "description": "Set the minimum severity for vulnerabilities that should be fixed and commented on in pull requests.", "title": "Minimum vulnerability severity to filter", "examples": ["low, medium, high, critical"] }, "fixableOnly": { "type": "boolean", "default": ["false"], "description": "Handle vulnerabilities with fix versions only.", "title": "Handle vulnerabilities with fix versions only" }, "emailReceivers": { "type": [ "array", "null" ], "description": "List of email addresses to receive emails about secrets that has been detected in a pull request scan.", "title": "List of email addresses to receive emails about secrets that has been detected in a pull request scan", "items": { "type": "string", "title": "Email Address", "examples": [ "[email protected]" ] } }, "projects": { "type": ["array", "null"], "title": "Projects in Git Repository", "description": "A list of sub-projects / project dirs inside the Git repository.", "items": { "additionalProperties": false, "properties": { "installCommand": { "type": "string", "title": "Install Command", "description": "An installation command to run to resolve the project dependencies.", "examples": ["nuget restore", "dotnet restore"] }, "workingDirs": { "type": "array", "title": "Working Directories", "description": "A list of relative paths to the projects directories in the git repository.", "default": ["."], "items": { "type": "string", "title": "Working Directory", "examples": [".", "npm-project/", "go/project-1/"], "default": "." } }, "pipRequirementsFile": { "type": "string", "title": "Pip Requirements File", "description": "The requirements file name that used to install dependencies in case of Pip package manager.", "examples": ["requirements.txt"] }, "useWrapper": { "type": "boolean", "title": "Use Gradle Wrapper", "description": "Set to false to avoid using the Gradle wrapper.", "default": true }, "repository": { "type": "string", "title": "Virtual Artifactory Repository", "description": "Name of a Virtual Repository in Artifactory to resolve (download) the project dependencies from" } } } } } }, "$jfrogPlatform": { "title": "JFrog Platform Parameters", "description": "Includes the JFrog platform related parameters such as Project Watches.", "additionalProperties": false, "properties": { "jfrogProjectKey": { "type": "string", "title": "JFrog Project Key", "description": "The JFrog project. Learn more about it here: https://www.jfrog.com/confluence/display/JFROG/Projects." }, "watches": { "type": "array", "title": "JFrog Watches", "description": "JFrog Watches. Learn more about them here: https://www.jfrog.com/confluence/display/JFROG/Configuring+Xray+Watches.", "items": { "type": "string", "title": "JFrog Watch" } } } }, "examples": [ [ { "params": { "git": { "repoName": "repo-name", "branches": ["master"] } } } ] ] }
jscsrc.json
{ "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": true, "definitions": { "blockKeywords": { "type": ["array", "null"], "items": { "enum": [ "catch", "do", "else", "finally", "for", "function", "if", "try", "while" ] }, "uniqueItems": true }, "braceRules": { "type": ["null", "object"], "properties": { "beforeOpeningRoundBrace": { "type": ["boolean", "null"] }, "beforeOpeningCurlyBrace": { "type": ["boolean", "null"] } } }, "esprimaNodeTypes": { "type": ["array", "null"], "items": { "enum": [ "ArrayExpression", "ArrayPattern", "ArrowFunctionExpression", "AssignmentExpression", "AssignmentPattern", "BinaryExpression", "BlockStatement", "BreakStatement", "CallExpression", "CatchClause", "ClassBody", "ClassDeclaration", "ClassExpression", "ConditionalExpression", "ContinueStatement", "DebuggerStatement", "DoWhileStatement", "EmptyStatement", "ExportAllDeclaration", "ExportDefaultDeclaration", "ExportNamedDeclaration", "ExportSpecifier", "ExpressionStatement", "ForInStatement", "ForStatement", "FunctionDeclaration", "FunctionExpression", "Identifier", "IfStatement", "ImportDeclaration", "ImportDefaultSpecifier", "ImportNamespaceSpecifier", "ImportSpecifier", "LabeledStatement", "Literal", "LogicalExpression", "MemberExpression", "MethodDefinition", "NewExpression", "ObjectExpression", "ObjectPattern", "Program", "Property", "RestElement", "ReturnStatement", "SequenceExpression", "SpreadElement", "Super", "SwitchCase", "SwitchStatement", "TaggedTemplateExpression", "TemplateElement", "TemplateLiteral", "ThisExpression", "ThrowStatement", "TryStatement", "UnaryExpression", "UpdateExpression", "VariableDeclaration", "VariableDeclarator", "WhileStatement", "WithStatement" ] }, "uniqueItems": true }, "jsDoc": { "description": "Validate jsdoc comments.", "type": "object", "additionalProperties": true, "properties": { "checkAnnotations": { "description": "Checks whether tag names are valid.", "type": ["boolean", "null", "object", "string"], "oneOf": [ { "type": "boolean" }, { "$ref": "#/definitions/nullRule" }, { "description": "By default, any tag from any preset is allowed. You can pass Object to select preset with preset field and add custom tags with extra field.", "type": "object", "properties": { "preset": { "type": "string", "oneOf": [ { "description": "https://github.com/google/closure-compiler", "enum": ["closurecompiler"] }, { "description": "https://github.com/jsdoc3/jsdoc", "enum": ["jsdoc3"] }, { "description": "https://github.com/senchalabs/jsduck", "enum": ["jsduck5"] } ] }, "extra": { "description": "Add custom tags with the extra field. The extra field should contain tags in keys with true, false, or \"some\" for the values.", "type": "object", "additionalProperties": { "oneOf": [ { "type": ["boolean", "string"], "enum": [true, false, "some"] } ] } } } }, { "description": "There are 3 presets: Closure Compiler, JSDoc3 and JSDuck5.", "type": "string", "oneOf": [ { "description": "https://github.com/google/closure-compiler", "enum": ["closurecompiler"] }, { "description": "https://github.com/jsdoc3/jsdoc", "enum": ["jsdoc3"] }, { "description": "https://github.com/senchalabs/jsduck", "enum": ["jsduck5"] } ] } ] }, "checkParamExistence": { "description": "Checks whether all parameters are documented.", "type": ["boolean", "null"] }, "checkParamNames": { "description": "Checks whether param names in jsdoc and in function declaration are equal.", "type": ["boolean", "null"] }, "requireParamTypes": { "description": "Checks whether params in jsdoc contains type.", "type": ["boolean", "null"] }, "checkRedundantParams": { "description": "Reports redundant params in jsdoc.", "type": ["boolean", "null"] }, "checkReturnTypes": { "description": "Checks for differences between the jsdoc and actual return types if both exist.", "type": ["boolean", "null"] }, "checkRedundantReturns": { "description": "Report statements for functions without a return, which are described with an @return tag.", "type": ["boolean", "null"] }, "requireReturnTypes": { "description": "Checks whether @returns in jsdoc contains type.", "type": ["boolean", "null"] }, "checkTypes": { "description": "Reports invalid types for bunch of tags.", "type": ["boolean", "null", "string"], "oneOf": [ { "type": "boolean" }, { "$ref": "#/definitions/nullRule" }, { "description": "Can equal \"strictNativeCase\" or \"capitalizedNativeCase\".", "type": "string", "oneOf": [ { "description": "The strictNativeCase mode checks that case of natives is the same as in this list: boolean, number, string, Object, Array, Date, RegExp.", "enum": ["strictNativeCase"] }, { "description": "The capitalizedNativeCase mode checks that the first letter in all native types and primitives is uppercased except the case with function in google closure format: {function(...)}.", "enum": ["capitalizedNativeCase"] } ] } ] }, "checkRedundantAccess": { "description": "Reports redundant access declarations.", "type": ["boolean", "null", "string"], "oneOf": [ { "type": "boolean" }, { "$ref": "#/definitions/nullRule" }, { "type": "string", "oneOf": [ { "description": "If an @access tag is specified, the function name must contain a leading _underscore.", "enum": ["enforceLeadingUnderscore"] }, { "description": "If an @access tag is specified, the function name must contain a trailing underscore_.", "enum": ["enforceTrailingUnderscore"] } ] } ] }, "leadingUnderscoreAccess": { "description": "Checks whether access declaration is set for _underscored function names. Ignores a bunch of popular identifiers: __filename, __dirname, __proto__, __defineGetter__, super_, __constructor, etc.", "type": ["boolean", "null", "string"], "oneOf": [ { "description": "true (means not public). Report if @private or @protected is absent from _underscored function names.", "type": "boolean" }, { "$ref": "#/definitions/nullRule" }, { "type": "string", "oneOf": [ { "description": "Enforce only @private for all _underscored function names.", "enum": ["private"] }, { "description": "Enforce only @protected for all _underscored function names.", "enum": ["protected"] } ] } ] }, "enforceExistence": { "description": "Checks whether jsdoc block exists.", "type": ["boolean", "null", "object", "string"], "oneOf": [ { "type": "boolean" }, { "$ref": "#/definitions/nullRule" }, { "description": "An object that contains an \"allExcept\" key equal to an array of exception values.", "type": "object", "properties": { "allExcept": { "description": "Array of quoted keywords to exempt.", "type": "array", "minItems": 0, "items": { "type": "string", "oneOf": [ { "description": "Skip expression functions.", "enum": ["expressions"] }, { "description": "Skip module.exports = function () {};", "enum": ["exports"] }, { "description": "Functions without parameters and with empty return statements will be skipped.", "enum": ["paramless-procedures"] } ] }, "uniqueItems": true } } }, { "description": "Deprecated in favor of the object \"allExcept\": [\"exports\"] rule format.", "type": "string", "oneOf": [ { "description": "Skip expression functions.", "enum": ["exceptExports"] } ] } ] }, "requireHyphenBeforeDescription": { "description": "Checks whether a jsdoc param description has a hyphen before it (checks for -).", "type": ["boolean", "null"] }, "requireNewlineAfterDescription": { "description": "Checks whether a jsdoc comment description has a padding (trailing) newline separator between it and additional @tags.", "type": ["boolean", "null"] }, "disallowNewlineAfterDescription": { "description": "Checks whether a jsdoc comment description has no padding (trailing) newline separator between it and additional @tags.", "type": ["boolean", "null"] }, "requireDescriptionCompleteSentence": { "description": "Checks whether a jsdoc comment description is a complete sentence. A complete sentence is defined as starting with an upper case letter and ending with a period.", "type": ["boolean", "null"] }, "requireParamDescription": { "description": "Checks whether a jsdoc param description exists.", "type": ["boolean", "null"] }, "requireReturnDescription": { "description": "Checks whether a jsdoc return description exists.", "type": ["boolean", "null"] } } }, "keywords": { "type": ["array", "null"], "items": { "enum": [ "break", "case", "catch", "continue", "debugger", "default", "delete", "do", "else", "finally", "for", "function", "if", "in", "instanceof", "new", "return", "switch", "this", "throw", "try", "typeof", "var", "void", "while", "with" ] }, "uniqueItems": true }, "keywords2": { "type": ["array", "boolean", "null"], "oneOf": [ { "$ref": "#/definitions/keywords" }, { "type": "boolean" } ] }, "nullRule": { "description": "Removes the rule.", "type": "null" }, "operators": { "type": ["array", "boolean", "null"], "items": { "enum": [ ",", ":", "?", "^", "^=", "|", "||", "|=", "&", "&&", "&=", "+", "+=", "-", "-=", "%", "%=", "/", "/=", "*", "*=", "=", "==", "===", "!=", "!==", ">", ">>", ">>>", ">=", ">>=", ">>>=", "<", "<<", "<=", "<<=", null ] }, "uniqueItems": true }, "equalityOperators": { "type": ["array", "boolean", "null"], "items": { "enum": ["==", "===", "!=", "!==", null] }, "uniqueItems": true }, "unaryOperators": { "type": ["array", "boolean", "null"], "items": { "enum": ["++", "--", "+", "-", "~", "!"] }, "uniqueItems": true } }, "id": "https://json.schemastore.org/jscsrc.json", "properties": { "additionalRules": { "description": "Path to load additional rules", "type": "array", "items": { "type": "string" }, "uniqueItems": true }, "disallowAnonymousFunctions": { "description": "Requires that a function expression be named. Named functions provide more information in the error stack trace than anonymous functions. This option does not help if you use Arrow functions (ES6) which are always anonymous.", "type": ["boolean", "null"] }, "disallowArrowFunctions": { "description": "Disallows arrow functions.", "type": ["boolean", "null"] }, "disallowCapitalizedComments": { "description": "Requires the first alphabetical character of a comment to be lowercase.", "type": ["boolean", "null"] }, "disallowCommaBeforeLineBreak": { "description": "Disallows commas as last token on a line in lists.", "type": ["boolean", "null", "object"], "oneOf": [ { "description": "For default behavior (strict mode, comma on the same line).", "type": "boolean" }, { "$ref": "#/definitions/nullRule" }, { "description": "An object that contains an \"allExcept\" key equal to an array of quoted exceptions.", "type": "object", "properties": { "allExcept": { "description": "Array of quoted keywords to exempt.", "type": "array", "minItems": 0, "items": { "enum": ["function"] }, "uniqueItems": true } } } ] }, "disallowCurlyBraces": { "description": "Disallows curly braces after statements.", "type": ["array", "boolean", "null"], "oneOf": [ { "$ref": "#/definitions/keywords2" } ] }, "disallowDanglingUnderscores": { "description": "Disallows identifiers that start or end in _. Some popular identifiers are automatically listed as exceptions: __proto__ (javascript), _ (underscore.js), __filename (node.js global), __dirname (node.js global), super_ (node.js, used by util.inherits).", "type": ["boolean", "null", "object"], "oneOf": [ { "type": "boolean" }, { "$ref": "#/definitions/nullRule" }, { "description": "An object that contains an \"allExcept\" key equal to an array of quoted exceptions.", "type": "object", "properties": { "allExcept": { "description": "Array of quoted keywords to exempt.", "type": "array", "minItems": 0, "items": { "type": "string" }, "uniqueItems": true } } } ] }, "disallowEmptyBlocks": { "description": "Disallows empty blocks (except for catch blocks).", "type": ["boolean", "null", "object"], "oneOf": [ { "description": "For default behavior (strict mode, no empty blocks allowed).", "type": "boolean" }, { "$ref": "#/definitions/nullRule" }, { "description": "An object that contains an \"allExcept\" key equal to an array of quoted exceptions.", "type": "object", "properties": { "allExcept": { "description": "Array of quoted keywords to exempt. Blocks containing only comments would not be considered empty.", "type": "array", "minItems": 0, "items": { "enum": ["comments"] }, "uniqueItems": true } } } ] }, "disallowFunctionDeclarations": { "description": "Disallows function declarations.", "type": ["boolean", "null"] }, "disallowIdenticalDestructuringNames": { "description": "Disallows identical destructuring names for the key and value in favor of using shorthand destructuring.", "type": ["boolean", "null"] }, "disallowIdentifierNames": { "description": "Disallows a specified set of identifier names.", "type": ["array", "null"], "oneOf": [ { "description": "An array of strings, which should be disallowed as identifier names.", "type": "array", "minItems": 0, "items": { "type": "string" }, "uniqueItems": true }, { "$ref": "#/definitions/nullRule" } ] }, "disallowImplicitTypeConversion": { "description": "Disallows implicit type conversion.", "type": ["array", "null"], "items": { "enum": ["numeric", "boolean", "binary", "string"] }, "uniqueItems": true }, "disallowKeywordsInComments": { "description": "Disallows one or more keywords in comments.", "type": ["array", "boolean", "null", "string"], "oneOf": [ { "description": "An array of strings, which should be disallowed keywords in comments.", "type": "array", "minItems": 0, "items": { "type": "string" }, "uniqueItems": true }, { "description": "If true, \"TODO\" and \"FIXME\" will be disallowed in comments.", "type": "boolean" }, { "$ref": "#/definitions/nullRule" }, { "description": "A valid Regular Expression.", "type": "string" } ] }, "disallowKeywordsOnNewLine": { "description": "Disallows placing the specified keywords on a new line.", "type": ["array", "null"], "oneOf": [ { "$ref": "#/definitions/keywords" } ] }, "disallowKeywords": { "description": "Disallows usage of the specified keywords.", "type": ["array", "null"], "oneOf": [ { "$ref": "#/definitions/keywords" } ] }, "disallowMixedSpacesAndTabs": { "description": "Requires lines to not contain both spaces and tabs consecutively, or spaces after tabs only for alignment if \"smart", "type": ["boolean", "null", "string"], "enum": [true, false, null, "smart"] }, "disallowMultiLineTernary": { "description": "Disallows the test, consequent and alternate to be on separate lines when using the ternary operator.", "type": ["boolean", "null"] }, "disallowMultipleLineBreaks": { "description": "Disallows multiple blank lines in a row.", "type": ["boolean", "null"] }, "disallowMultipleLineStrings": { "description": "Disallows strings that span multiple lines without using concatenation.", "type": ["boolean", "null"] }, "disallowMultipleSpaces": { "description": "Disallows multiple indentation characters (tabs or spaces) between identifiers, keywords, and any other token.", "type": ["boolean", "null", "object"], "oneOf": [ { "type": "boolean" }, { "$ref": "#/definitions/nullRule" }, { "description": "An object that contains a \"allowEOLComments\" key equal to a boolean.", "type": "object", "properties": { "allowEOLComments": { "type": ["boolean", "null"] } } } ] }, "disallowMultipleVarDecl": { "description": "Disallows multiple `var` declaration (except for-loop).", "type": ["boolean", "null", "object"], "oneOf": [ { "type": "boolean" }, { "$ref": "#/definitions/nullRule" }, { "description": "An object that contains a \"allowEOLComments\" key equal to a boolean.", "type": "object", "properties": { "strict": { "type": ["boolean", "null"] }, "allExcept": { "description": "Array of quoted keywords to exempt.", "type": "array", "minItems": 0, "items": { "type": "string", "oneOf": [ { "description": "Allows declarations where all variables are importing external modules with require.", "enum": ["require"] }, { "description": "Allows declarations where all variables are not defined.", "enum": ["undefined"] } ] }, "uniqueItems": true } } } ] }, "disallowNamedUnassignedFunctions": { "description": "Disallows unassigned functions to be named inline.", "type": ["boolean", "null"] }, "disallowNestedTernaries": { "description": "Disallows nested ternaries.", "type": ["boolean", "null", "object"], "oneOf": [ { "type": "boolean" }, { "$ref": "#/definitions/nullRule" }, { "description": "An object that contains a \"maxLevel\" property equal to an integer indicating the maximum levels of nesting to be allowed.", "type": "object", "properties": { "maxLevel": { "description": "The maximum levels of ternary nesting to be allowed.", "type": "integer", "minimum": 1 } } } ] }, "disallowNewlineBeforeBlockStatements": { "description": "Disallows newline before opening curly brace of all block statements.", "type": ["array", "boolean", "null", "object"], "oneOf": [ { "$ref": "#/definitions/blockKeywords" }, { "description": "A value of true will always disallow newline before curly brace of block statements.", "type": "boolean" }, { "$ref": "#/definitions/nullRule" }, { "description": "An object that contains a \"value\" key equal to a boolean or an array, and / or an \"allExcept\" key equal to an array of quoted exceptions.", "type": "object", "properties": { "value": { "type": ["array", "boolean"] }, "allExcept": { "description": "Array of quoted keywords to exempt. If `multiline` is specified, when the conditions span on multiple lines, require a new line before the curly brace.", "type": "array", "minItems": 0, "items": { "anyOf": [ { "type": "string" }, { "enum": ["multiline"] } ] }, "uniqueItems": true } } } ] }, "disallowNodeTypes": { "description": "Disallow use of certain node types (from Esprima/ESTree). Value equals an array of parser node types to be disallowed.", "type": ["array", "null"], "oneOf": [ { "$ref": "#/definitions/esprimaNodeTypes" } ] }, "disallowNotOperatorsInConditionals": { "description": "Disallows the not, not equals, and strict not equals operators in conditionals.", "type": ["boolean", "null"] }, "disallowObjectKeysOnNewLine": { "description": "Disallows placing object keys on new line.", "type": ["boolean", "null"] }, "disallowOperatorBeforeLineBreak": { "description": "Requires putting certain operators on the next line rather than on the current line before a line break.", "type": ["array", "boolean", "null"], "oneOf": [ { "$ref": "#/definitions/operators" } ] }, "disallowPaddingNewLinesAfterBlocks": { "description": "Disallow a newline after blocks.", "type": ["boolean", "null"] }, "disallowPaddingNewLinesAfterUseStrict": { "description": "Disallow a blank line after 'use strict'; statements.", "type": ["boolean", "null"] }, "disallowPaddingNewLinesBeforeExport": { "description": "Disallows newline before module.exports.", "type": ["boolean", "null"] }, "disallowPaddingNewlinesBeforeKeywords": { "description": "Disallow an empty line above the specified keywords.", "type": ["array", "boolean", "null"], "oneOf": [ { "$ref": "#/definitions/keywords2" } ] }, "disallowPaddingNewLinesBeforeLineComments": { "description": "Disallows newline before line comments.", "type": ["boolean", "null"], "oneOf": [ { "type": "boolean" }, { "$ref": "#/definitions/nullRule" } ] }, "disallowPaddingNewlinesInBlocks": { "description": "Disallows blocks from beginning or ending with 2 newlines.", "type": ["boolean", "null", "object"], "oneOf": [ { "description": "A value of true validates all non-empty blocks.", "type": "boolean" }, { "$ref": "#/definitions/nullRule" }, { "description": "An object that contains a \"open\" key equal to a boolean, an \"close\" key equal to a boolean, and / or an \"allExcept\" key equal to an array of quoted exceptions.", "type": "object", "properties": { "close": { "description": "A value of true validates that there is a newline before the closing brace in a block. A value of false ignores the newline validation before the closing brace in a block.", "type": "boolean" }, "open": { "description": "A value of true validates that there is a newline after the opening brace in a block. A value of false ignores the newline validation after the opening brace in a block.", "type": "boolean" }, "allExcept": { "description": "Array of quoted keywords to exempt. If `conditionals` is specified, conditionals (if, else if, else) blocks are ignored. If `functions` is specified, function blocks are ignored.", "type": "array", "minItems": 0, "items": { "enum": ["conditionals", "functions"] }, "uniqueItems": true } } } ] }, "disallowPaddingNewLinesInObjects": { "description": "Disallows newlines adjacent to curly braces in all object literals.", "type": ["boolean", "null"] }, "disallowParenthesesAroundArrowParam": { "description": "Disallows parentheses around arrow function expressions that contain a single parameter.", "type": ["boolean", "null"] }, "disallowQuotedKeysInObjects": { "description": "Disallows quoted keys in object if possible.", "type": ["boolean", "null", "object", "string"], "oneOf": [ { "description": "Set to true for strict mode.", "type": "boolean" }, { "$ref": "#/definitions/nullRule" }, { "description": "An object that contains an \"allExcept\" key equal to an array of exception values.", "type": "object", "properties": { "allExcept": { "description": "Array of quoted keywords to exempt.", "type": "array", "minItems": 0, "items": { "anyOf": [ { "type": "string" }, { "description": "Allows ES3+ reserved words to remain quoted which is helpful when using this option with JSHint's es3 flag.", "enum": ["reserved"] } ] }, "uniqueItems": true } } }, { "description": "Deprecated in favor of the object \"allExcept\": [\"reserved\"] rule format.", "type": "string", "oneOf": [ { "enum": ["allButReserved"] } ] } ] }, "disallowSemicolons": { "description": "Disallows lines from ending in a semicolon.", "type": ["boolean", "null"] }, "disallowShorthandArrowFunctions": { "description": "Require arrow functions to use a block statement (explicit return).", "type": ["boolean", "null"] }, "disallowSpaceAfterBinaryOperators": { "description": "Requires sticking binary operators to the right.", "type": ["array", "boolean", "null"], "oneOf": [ { "$ref": "#/definitions/operators" } ] }, "disallowSpaceAfterComma": { "description": "Disallows spaces after commas.", "type": ["boolean", "null", "object"], "oneOf": [ { "description": "A value of true will disallow any spaces after any comma.", "type": "boolean" }, { "$ref": "#/definitions/nullRule" }, { "description": "An object that contains an \"allExcept\" key equal to an array of quoted exceptions.", "type": "object", "properties": { "allExcept": { "description": "Array of quoted keywords to exempt.", "type": "array", "minItems": 0, "items": { "type": "string", "oneOf": [ { "description": "Allow spaces in place of absent values in sparse arrays.", "enum": ["sparseArrays"] } ] }, "uniqueItems": true } } } ] }, "disallowSpaceAfterKeywords": { "description": "Disallows space after the specified keywords. A value of true will require spaces after all possible keywords.", "type": ["array", "boolean", "null"], "oneOf": [ { "$ref": "#/definitions/keywords2" } ] }, "disallowSpaceAfterLineComment": { "description": "Requires that a line comment (//) not be followed by a space.", "type": ["boolean", "null"] }, "disallowSpaceAfterObjectKeys": { "description": "Disallows space after object keys.", "type": ["boolean", "null", "object", "string"], "oneOf": [ { "type": "boolean" }, { "$ref": "#/definitions/nullRule" }, { "description": "An object that contains an \"allExcept\" key equal to an array of exception values.", "type": "object", "properties": { "allExcept": { "description": "Array of quoted keywords to exempt.", "type": "array", "minItems": 0, "items": { "type": "string", "oneOf": [ { "description": "Ignores objects if the object only takes up a single line.", "enum": ["singleline"] }, { "description": "Ignores objects if the object takes up multiple lines.", "enum": ["multiline"] }, { "description": "Ignores aligned object properties.", "enum": ["aligned"] }, { "description": "Ignores method declarations.", "enum": ["method"] } ] }, "uniqueItems": true } } }, { "description": "Deprecated in favor of the object \"allExcept\": [] rule format.", "type": "string", "oneOf": [ { "description": "Ignores objects if the object only takes up a single line.", "enum": ["ignoreSingleLine"] }, { "description": "Ignores objects if the object takes up multiple lines.", "enum": ["ignoreMultiLine"] } ] } ] }, "disallowSpaceAfterPrefixUnaryOperators": { "description": "Requires sticking unary operators to the right.", "type": ["array", "boolean", "null"], "oneOf": [ { "$ref": "#/definitions/unaryOperators" } ] }, "disallowSpaceBeforeBinaryOperators": { "description": "Requires sticking binary operators to the left.", "type": ["array", "boolean", "null"], "oneOf": [ { "$ref": "#/definitions/operators" } ] }, "disallowSpaceBeforeBlockStatements": { "description": "Disallows space before block statements (for loops, control structures).", "type": ["boolean", "null"] }, "disallowSpaceBeforeComma": { "description": "Disallows spaces before commas.", "type": ["boolean", "null", "object", "string"], "oneOf": [ { "description": "A value of true will disallow any spaces before any comma.", "type": "boolean" }, { "$ref": "#/definitions/nullRule" }, { "description": "An object that contains an \"allExcept\" key equal to an array of exception values.", "type": "object", "properties": { "allExcept": { "description": "Array of quoted keywords to exempt.", "type": "array", "minItems": 0, "items": { "type": "string", "oneOf": [ { "description": "Allow spaces in place of absent values in sparse arrays.", "enum": ["sparseArrays"] } ] }, "uniqueItems": true } } }, { "description": "Deprecated in favor of the object \"allExcept\": [\"exports\"] rule format.", "type": "string", "oneOf": [ { "description": "Skip expression functions.", "enum": ["exceptExports"] } ] } ] }, "disallowSpaceBeforeKeywords": { "description": "Disallows space before keyword.", "type": ["array", "boolean", "null"], "oneOf": [ { "$ref": "#/definitions/keywords2" } ] }, "disallowSpaceBeforeObjectValues": { "description": "Disallows space before object values.", "type": ["boolean", "null"] }, "disallowSpaceBeforePostfixUnaryOperators": { "description": "Requires sticking unary operators to the left.", "type": ["array", "boolean", "null"], "oneOf": [ { "$ref": "#/definitions/unaryOperators" } ] }, "disallowSpaceBeforeSemicolon": { "description": "Disallows spaces before semicolons.", "type": ["boolean", "null", "object"], "oneOf": [ { "description": "A value of true will disallow any spaces before any semicolon.", "type": "boolean" }, { "$ref": "#/definitions/nullRule" }, { "description": "An object that contains an \"allExcept\" key equal to an array of exception tokens.", "type": "object", "properties": { "allExcept": { "description": "Array of quoted tokens to exempt (allows whitespace before semicolon if preceded by the specified token).", "type": "array", "minItems": 0, "items": { "type": "string", "anyOf": [ { "enum": ["("] }, { "type": "string", "maxLength": 1 } ] }, "uniqueItems": true } } } ] }, "disallowSpaceBetweenArguments": { "description": "Ensure there are no spaces after argument separators in call expressions.", "type": ["boolean", "null"] }, "disallowSpacesInAnonymousFunctionExpression": { "description": "Disallows space before () or {} in anonymous function expressions.", "type": ["null", "object"], "oneOf": [ { "$ref": "#/definitions/braceRules" } ] }, "disallowSpacesInCallExpression": { "description": "Disallows space before () in call expressions.", "type": ["boolean", "null"] }, "disallowSpacesInConditionalExpression": { "description": "Disallows space before and/or after ? or : in conditional expressions.", "type": ["boolean", "null", "object"], "anyOf": [ { "description": "A value of true will set all properties [afterTest, beforeConsequent, afterConsequent, beforeAlternate] to true.", "type": "boolean" }, { "$ref": "#/definitions/nullRule" }, { "description": "An object that contains keys of type boolean.", "properties": { "afterConsequent": { "type": "boolean" }, "afterTest": { "type": "boolean" }, "beforeAlternate": { "type": "boolean" }, "beforeConsequent": { "type": "boolean" } } } ] }, "disallowSpacesInForStatement": { "description": "Disallow spaces in between for statement.", "type": ["boolean", "null"] }, "disallowSpacesInFunction": { "description": "Disallows space before `()` or `{}` in function expressions (both named and anonymous) and function declarations.", "type": ["null", "object"], "oneOf": [ { "$ref": "#/definitions/braceRules" } ] }, "disallowSpacesInFunctionDeclaration": { "description": "Disallows space before () or {} in function declarations.", "type": ["null", "object"], "oneOf": [ { "$ref": "#/definitions/braceRules" } ] }, "disallowSpacesInFunctionExpression": { "description": "Disallows space before `()` or `{}` in function expressions (both named and anonymous).", "type": ["null", "object"], "oneOf": [ { "$ref": "#/definitions/braceRules" } ] }, "disallowSpacesInGenerator": { "description": "Disallow space before or after * in generator functions.", "type": ["null", "object"], "oneOf": [ { "$ref": "#/definitions/nullRule" }, { "description": "At least one of the object properties must be present and it must be set to true.", "type": "object", "properties": { "beforeStar": { "description": "A value of true disallows space before *.", "type": "boolean" }, "afterStar": { "description": "A value of true disallows space after *.", "type": "boolean" } } } ] }, "disallowSpacesInNamedFunctionExpression": { "description": "Disallows space before () or {} in named function expressions", "type": ["null", "object"], "oneOf": [ { "$ref": "#/definitions/braceRules" } ] }, "disallowSpacesInsideArrayBrackets": { "description": "Disallows space after opening array square bracket and before closing. Reports only on arrays, not on property accessors. Use disallowSpacesInsideBrackets to report on all brackets.", "type": ["boolean", "null", "object", "string"], "oneOf": [ { "description": "Use \"all\" or true for strict mode.", "type": ["boolean", "string"], "enum": [true, false, "all"] }, { "$ref": "#/definitions/nullRule" }, { "description": "An object that contains an \"allExcept\" key equal to an array of exception tokens.", "type": "object", "properties": { "allExcept": { "description": "Array of quoted tokens to exempt. Tokens should consist of an opener with a matching closer () {} [] etc.", "type": "array", "minItems": 0, "items": { "type": "string", "oneOf": [ { "description": "Tokens should consist of an opener with a matching closer () {} [] etc.", "enum": ["(", ")", "{", "}", "[", "]"] } ] }, "uniqueItems": true } } }, { "description": "Deprecated in favor of the object \"allExcept\": [] rule format.", "type": "string", "oneOf": [ { "enum": ["nested"] } ] } ] }, "disallowSpacesInsideBrackets": { "description": "Disallows space after opening square bracket and before closing. Reports on all on brackets, even on property accessors. Use disallowSpacesInsideArrayBrackets to exclude property accessors.", "type": ["boolean", "null", "object"], "oneOf": [ { "description": "Use true for strict mode.", "type": "boolean" }, { "$ref": "#/definitions/nullRule" }, { "description": "An object that contains an \"allExcept\" key equal to an array of exception tokens.", "type": "object", "properties": { "allExcept": { "description": "Array of quoted tokens to exempt. Tokens should consist of an opener with a matching closer () {} [] etc.", "type": "array", "minItems": 0, "items": { "type": "string", "oneOf": [ { "description": "Tokens should consist of an opener with a matching closer () {} [] etc.", "enum": ["(", ")", "{", "}", "[", "]"] } ] }, "uniqueItems": true } } } ] }, "disallowSpacesInsideObjectBrackets": { "description": "Disallows space after opening object curly brace and before closing.", "type": ["boolean", "null", "object", "string"], "oneOf": [ { "description": "Use \"all\" or true for strict mode.", "type": ["boolean", "string"], "enum": [true, false, "all"] }, { "$ref": "#/definitions/nullRule" }, { "description": "An object that contains an \"allExcept\" key equal to an array of exception tokens.", "type": "object", "properties": { "allExcept": { "description": "Array of quoted tokens to exempt. Applies only to closer tokens: e.g. ) } ]. If a (closer) token is specified, the rule ignores contiguous (closer) tokens.", "type": "array", "minItems": 0, "items": { "type": "string", "oneOf": [ { "description": "Tokens should consist of an closer: ) } ] etc.", "enum": [")", "}", "]"] } ] }, "uniqueItems": true } } }, { "description": "Deprecated in favor of the object \"allExcept\": [] rule format.", "type": "string", "oneOf": [ { "enum": ["nested"] } ] } ] }, "disallowSpacesInsideParentheses": { "description": "Disallows space after opening round bracket and before closing.", "type": ["boolean", "null", "string", "object"], "oneOf": [ { "type": ["boolean", "string"], "enum": [true, false, "all"] }, { "$ref": "#/definitions/nullRule" }, { "description": "An object that contains an \"only\" key equal to an array of values which indicate where to apply this rule.", "type": "object", "properties": { "only": { "description": "Array of quoted values to target.", "type": "array", "minItems": 0, "items": { "type": "string", "anyOf": [ { "enum": ["(", ")", "{", "}", "[", "]", "function"] }, { "type": "string", "minLength": 1 } ] }, "uniqueItems": true } } } ] }, "disallowSpacesInsideParenthesizedExpression": { "description": "Disallows space after opening and before closing grouping parentheses.", "type": ["boolean", "null", "object"], "oneOf": [ { "description": "If true, always disallow spaces inside grouping parentheses.", "type": "boolean" }, { "$ref": "#/definitions/nullRule" }, { "description": "An object that contains an \"allExcept\" key equal to an array of quoted exceptions.", "type": "object", "properties": { "allExcept": { "description": "Array of quoted tokens or items to exempt. Tokens should consist of an opener with a matching closer () {} [] or `function`.", "type": "array", "minItems": 0, "items": { "type": "string", "oneOf": [ { "description": "Tokens should consist of an opener with a matching closer () {} [] etc. or `function`.", "enum": ["(", ")", "{", "}", "[", "]", "function"] } ] }, "uniqueItems": true } } } ] }, "disallowSpacesInsideTemplateStringPlaceholders": { "description": "Disallows spaces before and after curly brace inside template string placeholders.", "type": ["boolean", "null"], "oneOf": [ { "type": "boolean" }, { "$ref": "#/definitions/nullRule" } ] }, "disallowTabs": { "description": "Disallows tabs everywhere.", "type": ["boolean", "null"], "oneOf": [ { "type": "boolean" }, { "$ref": "#/definitions/nullRule" } ] }, "disallowTrailingComma": { "description": "Disallows an extra comma following the final element of an array or object literal.", "type": ["boolean", "null"], "oneOf": [ { "type": "boolean" }, { "$ref": "#/definitions/nullRule" } ] }, "disallowTrailingWhitespace": { "description": "Requires all lines to end on a non-whitespace character.", "type": ["boolean", "null", "string"], "oneOf": [ { "description": "Use \"ignoreEmptyLines\" to allow whitespace on empty lines (default is false).", "type": ["boolean", "string"], "enum": [true, false, "ignoreEmptyLines"] }, { "$ref": "#/definitions/nullRule" } ] }, "disallowUnusedParams": { "description": "Disallows unused params in function expression and function declaration.", "type": ["boolean", "null"], "oneOf": [ { "type": "boolean" }, { "$ref": "#/definitions/nullRule" } ] }, "disallowVar": { "description": "Disallows declaring variables with var.", "oneOf": [ { "type": "boolean" }, { "$ref": "#/definitions/nullRule" } ] }, "disallowYodaConditions": { "description": "Requires the variable to be the left hand operator when doing a boolean comparison. Array of quoted operators or true to disallow yoda conditions for most possible comparison operators.", "type": ["array", "boolean", "null"], "oneOf": [ { "$ref": "#/definitions/equalityOperators" } ] }, "excludeFiles": { "description": "Disables style checking for specified paths.", "type": "array", "items": { "type": "string" }, "uniqueItems": true }, "jsDoc": { "$ref": "#/definitions/jsDoc" }, "maximumLineLength": { "description": "Requires all lines to be at most the number of characters specified.", "type": ["integer", "null", "object"], "oneOf": [ { "description": "Lines should be at most the number of characters specified.", "type": "integer", "minimum": 1 }, { "$ref": "#/definitions/nullRule" }, { "description": "An object that contains an \"allExcept\" key equal to an array an array of conditions that will exempt a line, in addition to other attributes.", "type": "object", "properties": { "allExcept": { "description": "Array of conditions that will exempt a line.", "type": "array", "minItems": 0, "items": { "anyOf": [ { "description": "Allows comments to break the rule.", "enum": ["comments"] }, { "description": "Allows function definitions to break the rule.", "enum": ["functionSignature"] }, { "description": "Allows regular expression literals to break the rule.", "enum": ["regex"] }, { "description": "Allows require expressions to break the rule.", "enum": ["require"] }, { "description": "Allows comments with long urls to break the rule.", "enum": ["urlComments"] } ] }, "uniqueItems": true }, "tabSize": { "description": "Considered the tab character as number of specified spaces.", "type": "integer", "minimum": 1 }, "value": { "description": "Lines should be at most the number of characters specified.", "type": "integer", "minimum": 1 } }, "required": ["value"] } ] }, "maximumNumberOfLines": { "description": "Requires the file to be at most the number of lines specified.", "type": ["integer", "null", "object"], "oneOf": [ { "description": "File should be at most the number of lines specified.", "type": "integer", "minimum": 1 }, { "$ref": "#/definitions/nullRule" }, { "description": "An object that contains an \"allExcept\" key equal to an array an array of conditions that will exempt a line, in addition to other attributes.", "type": "object", "properties": { "allExcept": { "description": "Array of conditions that will exempt a line.", "type": "array", "minItems": 0, "items": { "anyOf": [ { "description": "Allows comments to break the rule.", "enum": ["comments"] } ] }, "uniqueItems": true }, "value": { "description": "Lines should be at most the number of characters specified.", "type": "integer", "minimum": 1 } }, "required": ["value"] } ] }, "preset": { "description": "Extends defined rules with preset rules.", "type": "string", "enum": [ "airbnb", "crockford", "google", "grunt", "idiomatic", "jquery", "mdcs", "node-style-guide", "wikimedia", "wordpress", "yandex" ] }, "requireAlignedMultilineParams": { "description": "Enforces indentation of parameters in multiline functions.", "type": ["boolean", "integer", "null", "string"], "oneOf": [ { "description": "If true, require parameters to align with the body of the function.", "type": "boolean" }, { "description": "The number of columns the parameters should be indented past the function body.", "type": "integer" }, { "$ref": "#/definitions/nullRule" }, { "description": "Use `firstParam` to require parameters on a new line to be aligned with the first parameter(s) on the previous line.", "type": "string", "enum": ["firstParam"] } ] }, "requireAlignedObjectValues": { "description": "Requires proper alignment in object literals.", "type": ["null", "string"], "oneOf": [ { "$ref": "#/definitions/nullRule" }, { "type": "string", "oneOf": [ { "description": "Use for strict mode.", "enum": ["all"] }, { "description": "Ignores objects if one of the property values is a function expression.", "enum": ["ignoreFunction"] }, { "description": "Ignores objects if there are line breaks between properties.", "enum": ["ignoreLineBreak"] } ] } ] }, "requireAnonymousFunctions": { "description": "Requires that a function expression be anonymous.", "type": ["boolean", "null", "object"], "oneOf": [ { "type": "boolean" }, { "$ref": "#/definitions/nullRule" }, { "description": "An object that contains an \"allExcept\" key equal to an array of quoted exceptions.", "type": "object", "properties": { "allExcept": { "description": "Array of quoted keywords to exempt.", "type": "array", "minItems": 0, "items": { "anyOf": [ { "description": "Ignores function declarations.", "enum": ["declarations"] } ] }, "uniqueItems": true } } } ] }, "requireArrayDestructuring": { "description": "Requires that variable assignment from array values are * destructured.", "type": ["boolean", "null"], "oneOf": [ { "type": "boolean" }, { "$ref": "#/definitions/nullRule" } ] }, "requireArrowFunctions": { "description": "Requires that arrow functions are used instead of anonymous function expressions in callbacks.", "type": ["boolean", "null"], "oneOf": [ { "type": "boolean" }, { "$ref": "#/definitions/nullRule" } ] }, "requireBlocksOnNewline": { "description": "Requires blocks to begin and end with a newline.", "type": ["boolean", "integer", "null", "object"], "oneOf": [ { "description": "If true, validates all non-empty blocks.", "type": "boolean" }, { "description": "Specifies a minimum number of lines containing elements in the block before validating.", "type": "integer" }, { "$ref": "#/definitions/nullRule" }, { "type": "object", "properties": { "includeComments": { "description": "If true, includes comments as part of the validation.", "type": "boolean" }, "minLines": { "description": "Specifies a minimum number of lines containing elements in the block before validating.", "type": "integer" } } } ] }, "requireCamelCaseOrUpperCaseIdentifiers": { "description": "Requires identifiers to be camelCased or UPPERCASE_WITH_UNDERSCORES.", "type": ["boolean", "null", "object", "string"], "oneOf": [ { "type": "boolean" }, { "$ref": "#/definitions/nullRule" }, { "description": "An object that contains an \"allExcept\" key equal to an array of exception values, in addition to other attributes.", "type": "object", "properties": { "allExcept": { "description": "Array of String, RegExp, or ESTree RegExpLiteral values permitted as exceptions.", "type": "array", "minItems": 0, "items": { "anyOf": [ { "type": "string" } ] }, "uniqueItems": true }, "allowedPrefixes": { "description": "Array of String, RegExp, or ESTree RegExpLiteral values permitted as prefixes.", "type": "array", "minItems": 0, "items": { "anyOf": [ { "type": "string" } ] }, "uniqueItems": true }, "allowedSuffixes": { "description": "Array of String, RegExp, or ESTree RegExpLiteral values permitted as suffixes.", "type": "array", "minItems": 0, "items": { "anyOf": [ { "type": "string" } ] }, "uniqueItems": true }, "ignoreProperties": { "description": "If true, allows an exception for object property names.", "type": "boolean" }, "strict": { "description": "If true, forces the first character to not be capitalized.", "type": "boolean" } } }, { "description": "Deprecated in favor of the object \"ignoreProperties\" rule format.", "type": "string", "oneOf": [ { "enum": ["ignoreProperties"] } ] } ] }, "requireCapitalizedComments": { "description": "Requires the first alphabetical character of a comment to be uppercase, unless it is part of a multi-line textblock. This rule automatically ignores jscs, jshint, eslint, and istanbul specific comments.", "type": ["boolean", "null", "object"], "oneOf": [ { "type": "boolean" }, { "$ref": "#/definitions/nullRule" }, { "description": "An object that contains an \"allExcept\" key equal to an array of quoted exceptions, in addition to other attributes.", "type": "object", "properties": { "allExcept": { "description": "Array of quoted keywords to exempt.", "type": "array", "minItems": 0, "items": { "anyOf": [ { "type": "string" } ] }, "uniqueItems": true }, "inlined": { "description": "If true, ignore comments in the middle of the code line.", "type": "boolean" } } } ] }, "requireCapitalizedConstructorsNew": { "description": "Requires capitalized constructors to to use the new keyword.", "type": ["boolean", "null", "object"], "oneOf": [ { "type": "boolean" }, { "$ref": "#/definitions/nullRule" }, { "description": "An object that contains an \"allExcept\" key equal to an array of quoted exceptions.", "type": "object", "properties": { "allExcept": { "description": "Array of quoted keywords to exempt.", "type": "array", "minItems": 0, "items": { "anyOf": [ { "type": "string" } ] }, "uniqueItems": true } } } ] }, "requireCapitalizedConstructors": { "description": "Requires constructors to be capitalized (except for \"this\")", "type": ["boolean", "null", "object"], "oneOf": [ { "type": "boolean" }, { "$ref": "#/definitions/nullRule" }, { "description": "An object that contains an \"allExcept\" key equal to an array of quoted exceptions.", "type": "object", "properties": { "allExcept": { "description": "Array of quoted keywords to exempt.", "type": "array", "minItems": 0, "items": { "anyOf": [ { "type": "string" } ] }, "uniqueItems": true } } } ] }, "requireCommaBeforeLineBreak": { "description": "Requires commas as last token on a line in lists.", "type": ["boolean", "null"], "oneOf": [ { "type": "boolean" }, { "$ref": "#/definitions/nullRule" } ] }, "requireCurlyBraces": { "description": "Requires curly braces after statements. A value of true will require curly braces for all the necessary keywords: if, else, for, while do, try, catch, case, and default.", "type": ["array", "boolean", "null", "object"], "oneOf": [ { "$ref": "#/definitions/keywords2" }, { "description": "An object that contains a \"keywords\" or \"allExcept\" key equal to an array of quoted exceptions.", "type": "object", "properties": { "keywords": { "description": "Array of quoted keywords that would require curly braces.", "type": "array", "minItems": 0, "items": { "type": "string" }, "uniqueItems": true }, "allExcept": { "description": "Array of quoted keywords to exempt. Allows not using braces in some instances; ex. /*allowed:*/ if (x) return; /* not allowed*/ if (x) i++; given \"allExcept\": [\"return\", \"continue\", \"break\", ...],", "type": "array", "minItems": 0, "items": { "type": "string" }, "uniqueItems": true } } } ] }, "requireDollarBeforejQueryAssignment": { "description": "Require a $ before variable names that are jquery assignments.", "type": ["boolean", "null", "string"], "oneOf": [ { "type": ["boolean", "string"], "enum": [true, false, "ignoreProperties"] }, { "$ref": "#/definitions/nullRule" } ] }, "requireDotNotation": { "description": "Requires member expressions to use dot notation when possible.", "type": ["boolean", "null", "object", "string"], "oneOf": [ { "type": "boolean" }, { "$ref": "#/definitions/nullRule" }, { "description": "An object that contains an \"allExcept\" key equal to an array of exception values.", "type": "object", "properties": { "allExcept": { "description": "Array of quoted keywords to exempt.", "type": "array", "minItems": 0, "items": { "type": "string", "oneOf": [ { "description": "Allow quoted identifiers made of reserved words.", "enum": ["keywords"] }, { "description": "Allow quoted snake cased identifiers.", "enum": ["snake_case"] } ] }, "uniqueItems": true } } }, { "description": "Deprecated in favor of the object \"allExcept\": [\"snake_case\"] rule format.", "type": "string", "oneOf": [ { "description": "Allow quoted snake cased identifiers.", "enum": ["except_snake_case"] } ] } ] }, "requireEarlyReturn": { "description": "Requires early return in a function.", "type": ["boolean", "null"], "oneOf": [ { "description": "If true, disallow the use of `else` if the corresponding parent `if` block contains a return.", "type": "boolean" }, { "$ref": "#/definitions/nullRule" } ] }, "requireEnhancedObjectLiterals": { "description": "Requires declaring objects via ES6 enhanced object literals.", "type": ["boolean", "null"], "oneOf": [ { "type": "boolean" }, { "$ref": "#/definitions/nullRule" } ] }, "requireFunctionDeclarations": { "description": "Requires function declarations by disallowing assignment of functions expressions to variables. Function expressions are allowed in all other contexts, including when passed as function arguments or immediately invoked. Assignment of function expressions to object members is also permitted, since these can't be declared.", "type": ["boolean", "null"], "oneOf": [ { "type": "boolean" }, { "$ref": "#/definitions/nullRule" } ] }, "requireImportAlphabetized": { "description": "Requires imports to be alphabetized (A-Z).", "type": ["boolean", "null"], "oneOf": [ { "type": "boolean" }, { "$ref": "#/definitions/nullRule" } ] }, "requireKeywordsOnNewLine": { "description": "Requires placing the specified keywords on a new line.", "type": ["array", "null"], "oneOf": [ { "$ref": "#/definitions/keywords" } ] }, "requireLineBreakAfterVariableAssignment": { "description": "Requires placing line feed after assigning a variable.", "type": ["boolean", "null"], "oneOf": [ { "type": "boolean" }, { "$ref": "#/definitions/nullRule" } ] }, "requireLineFeedAtFileEnd": { "description": "Requires placing line feed at file end.", "type": ["boolean", "null"], "oneOf": [ { "type": "boolean" }, { "$ref": "#/definitions/nullRule" } ] }, "requireMatchingFunctionName": { "description": "Requires function names to match member and property names. It doesn't affect anonymous functions nor functions assigned to members or properties named with a reserved word. Assigning to module.exports is also ignored, unless includeModuleExports: true is configured.", "type": ["boolean", "null", "object"], "oneOf": [ { "type": "boolean" }, { "$ref": "#/definitions/nullRule" }, { "description": "An object that contains an \"includeModuleExports\" key of boolean type.", "type": "object", "properties": { "includeModuleExports": { "type": "boolean" } } } ] }, "requireMultiLineTernary": { "description": "Requires the test, consequent and alternate to be on separate lines when using the ternary operator.", "type": ["boolean", "null"], "oneOf": [ { "type": "boolean" }, { "$ref": "#/definitions/nullRule" } ] }, "requireMultipleVarDecl": { "description": "Requires multiple `var` declaration.", "type": ["boolean", "null", "object", "string"], "oneOf": [ { "description": "If true, it will report only consecutive vars.", "type": "boolean" }, { "$ref": "#/definitions/nullRule" }, { "description": "An object that contains an \"allExcept\" key equal to an array of exception values.", "type": "object", "properties": { "allExcept": { "description": "Array of quoted keywords to exempt.", "type": "array", "minItems": 0, "items": { "type": "string", "oneOf": [ { "description": "`require` statements are allowed to have a var declaration per variable.", "enum": ["require"] } ] }, "uniqueItems": true } } }, { "type": "string", "oneOf": [ { "description": "If equal to 'onevar', requireMultipleVarDecl will allow only one var per function scope.", "enum": ["onevar"] } ] } ] }, "requireNamedUnassignedFunctions": { "description": "Require unassigned functions to be named inline.", "type": ["boolean", "null", "object"], "oneOf": [ { "type": "boolean" }, { "$ref": "#/definitions/nullRule" }, { "description": "An object that contains an \"allExcept\" key equal to an array of quoted exceptions.", "type": "object", "properties": { "allExcept": { "description": "Array of quoted keywords to exempt.", "type": "array", "minItems": 0, "items": { "type": "string" }, "uniqueItems": true } } } ] }, "requireNewlineBeforeBlockStatements": { "description": "Requires newline before opening curly brace of all block statements. If true, always requires newline before curly brace of block statements. Array specifies block-type keywords after which newlines are required before curly brace.", "type": ["array", "boolean", "null"], "oneOf": [ { "$ref": "#/definitions/keywords2" } ] }, "requireNumericLiterals": { "description": "Requires use of binary, hexadecimal, and octal literals instead of parseInt.", "type": ["boolean", "null"], "oneOf": [ { "type": "boolean" }, { "$ref": "#/definitions/nullRule" } ] }, "requireObjectDestructuring": { "description": "Requires variable declarations from objects via destructuring.", "type": ["boolean", "null"], "oneOf": [ { "type": "boolean" }, { "$ref": "#/definitions/nullRule" } ] }, "requireObjectKeysOnNewLine": { "description": "Requires placing object keys on new line.", "type": ["boolean", "null", "object"], "oneOf": [ { "type": "boolean" }, { "$ref": "#/definitions/nullRule" }, { "description": "An object that contains an \"allExcept\" key equal to an array of quoted exceptions.", "type": "object", "properties": { "allExcept": { "description": "Array of quoted keywords to exempt.", "type": "array", "minItems": 0, "items": { "type": "string", "oneOf": [ { "description": "Ignores the rule if all the keys and values are on the same line.", "enum": ["sameLine"] } ] }, "uniqueItems": true } } } ] }, "requireOperatorBeforeLineBreak": { "description": "Requires operators to appear before line breaks and not after.", "type": ["array", "boolean", "null"], "oneOf": [ { "$ref": "#/definitions/operators" } ] }, "requirePaddingNewLineAfterVariableDeclaration": { "description": "Requires an extra blank newline after var declarations, as long as it is not the last expression in the current block.", "type": ["boolean", "null"], "oneOf": [ { "type": "boolean" }, { "$ref": "#/definitions/nullRule" } ] }, "requirePaddingNewLinesAfterBlocks": { "description": "Requires newline after blocks.", "type": ["boolean", "null", "object"], "oneOf": [ { "description": "If true, always require a newline after blocks.", "type": "boolean" }, { "$ref": "#/definitions/nullRule" }, { "description": "An object that contains an \"allExcept\" key equal to an array of quoted exceptions.", "type": "object", "properties": { "allExcept": { "description": "Array of quoted keywords to exempt.", "type": "array", "minItems": 0, "items": { "type": "string", "oneOf": [ { "description": "Blocks don't need a line of padding in function argument lists.", "enum": ["inCallExpressions"] }, { "description": "Blocks don't need a line of padding in constructor argument lists.", "enum": ["inNewExpressions"] }, { "description": "Blocks don't need a line of padding in arrays.", "enum": ["inArrayExpressions"] }, { "description": "Blocks don't need a line of padding as object properties.", "enum": ["inProperties"] } ] }, "uniqueItems": true } } } ] }, "requirePaddingNewLinesAfterUseStrict": { "description": "Requires a blank line after 'use strict'; statements.", "type": ["boolean", "null", "object"], "oneOf": [ { "description": "If true, require blank line after 'use strict' statements.", "type": "boolean" }, { "$ref": "#/definitions/nullRule" }, { "description": "An object that contains an \"allExcept\" key equal to an array of quoted exceptions.", "type": "object", "properties": { "allExcept": { "description": "Array of quoted keywords to exempt.", "type": "array", "minItems": 0, "items": { "type": "string", "oneOf": [ { "description": "Allows 'require' statements to occur immediately after 'use strict'.", "enum": ["require"] } ] }, "uniqueItems": true } } } ] }, "requirePaddingNewLinesBeforeExport": { "description": "Requires newline before module.exports.", "type": ["boolean", "null"], "oneOf": [ { "type": "boolean" }, { "$ref": "#/definitions/nullRule" } ] }, "requirePaddingNewlinesBeforeKeywords": { "description": "Requires an empty line above the specified keywords unless the keyword is the first expression in a block. If true, specifies that the spacedKeywords found in the utils module require an empty line above it. Array values indicate keywords that require an empty line above it.", "type": ["array", "boolean", "null"], "oneOf": [ { "$ref": "#/definitions/keywords2" } ] }, "requirePaddingNewLinesBeforeLineComments": { "description": "Requires newline before line comments.", "type": ["boolean", "null", "object"], "oneOf": [ { "description": "If true, always require a newline before line comments.", "type": "boolean" }, { "$ref": "#/definitions/nullRule" }, { "description": "An object that contains an \"allExcept\" key equal to an array of quoted exceptions.", "type": "object", "properties": { "allExcept": { "description": "Array of quoted keywords to exempt.", "type": "array", "minItems": 0, "items": { "type": "string", "oneOf": [ { "description": "Comments may be first line of block without extra padding.", "enum": ["firstAfterCurly"] } ] }, "uniqueItems": true } } } ] }, "requirePaddingNewlinesInBlocks": { "description": "Requires blocks to begin and end with 2 newlines.", "type": ["boolean", "integer", "null", "object"], "oneOf": [ { "description": "If true, validates all non-empty blocks.", "type": "boolean" }, { "description": "Specifies a minimum number of lines containing elements in the block before validating.", "type": "integer" }, { "$ref": "#/definitions/nullRule" }, { "description": "At least one of the object properties must be true.", "type": "object", "properties": { "open": { "description": "If true, validates that there is a newline after the opening brace in a block.", "type": "boolean" }, "close": { "description": "If true, validates that there is a newline before the closing brace in a block.", "type": "boolean" }, "allExcept": { "description": "Array of quoted keywords to exempt.", "type": "array", "minItems": 0, "items": { "type": "string", "oneOf": [ { "description": "Ignores conditional (if, else if, else) blocks.", "enum": ["conditionals"] }, { "description": "Ignores function blocks.", "enum": ["functions"] } ] }, "uniqueItems": true } } } ] }, "requirePaddingNewLinesInObjects": { "description": "Requires newline inside curly braces of all objects.", "type": ["boolean", "null"], "oneOf": [ { "type": "boolean" }, { "$ref": "#/definitions/nullRule" } ] }, "requireParenthesesAroundArrowParam": { "description": "Requires parentheses around arrow function expressions with a single parameter.", "type": ["boolean", "null"], "oneOf": [ { "type": "boolean" }, { "$ref": "#/definitions/nullRule" } ] }, "requireParenthesesAroundIIFE": { "description": "Requires parentheses around immediately invoked function expressions.", "type": ["boolean", "null"], "oneOf": [ { "type": "boolean" }, { "$ref": "#/definitions/nullRule" } ] }, "requireQuotedKeysInObjects": { "description": "Requires quoted keys in objects.", "type": ["boolean", "null"], "oneOf": [ { "type": "boolean" }, { "$ref": "#/definitions/nullRule" } ] }, "requireSemicolons": { "description": "Requires semicolon after: var declaration, expression statement, return, throw, break, continue, do-while.", "type": ["boolean", "null"], "oneOf": [ { "type": "boolean" }, { "$ref": "#/definitions/nullRule" } ] }, "requireShorthandArrowFunctions": { "description": "Require arrow functions to use an expression body when returning a single statement (no block statement, implicit return).", "type": ["boolean", "null"], "oneOf": [ { "type": "boolean" }, { "$ref": "#/definitions/nullRule" } ] }, "requireSpaceAfterBinaryOperators": { "description": "Disallows sticking binary operators to the right.", "type": ["array", "boolean", "null"], "oneOf": [ { "$ref": "#/definitions/operators" } ] }, "requireSpaceAfterComma": { "description": "Requires space after comma.", "type": ["boolean", "null", "object"], "oneOf": [ { "description": "If true, require a space after any comma.", "type": "boolean" }, { "$ref": "#/definitions/nullRule" }, { "description": "An object that contains an \"allExcept\" key equal to an array of quoted exceptions.", "type": "object", "properties": { "allExcept": { "description": "Array of quoted keywords to exempt.", "type": "array", "minItems": 0, "items": { "type": "string", "oneOf": [ { "description": "Ignore trailing commas.", "enum": ["trailing"] } ] }, "uniqueItems": true } } } ] }, "requireSpaceAfterKeywords": { "description": "Requires space after the specified keywords. A value of true will disallow spaces after all possible keywords.", "type": ["array", "boolean", "null"], "oneOf": [ { "$ref": "#/definitions/keywords2" } ] }, "requireSpaceAfterLineComment": { "description": "Requires that a line comment (`//`) be followed by a space.", "type": ["boolean", "null", "object", "string"], "oneOf": [ { "type": "boolean" }, { "$ref": "#/definitions/nullRule" }, { "description": "An object that contains an \"allExcept\" key equal to an array of exception values.", "type": "object", "properties": { "allExcept": { "description": "Array of allowed strings before space.", "type": "array", "minItems": 0, "items": { "type": "string" }, "uniqueItems": true } } }, { "description": "Deprecated in favor of the object \"allExcept\": [\"/\"] rule format.", "type": "string", "oneOf": [ { "enum": ["allowSlash"] } ] } ] }, "requireSpaceAfterObjectKeys": { "description": "Requires space after object keys.", "type": ["boolean", "null"], "oneOf": [ { "type": "boolean" }, { "$ref": "#/definitions/nullRule" } ] }, "requireSpaceAfterPrefixUnaryOperators": { "description": "Disallows sticking unary operators to the right.", "type": ["array", "boolean", "null"], "oneOf": [ { "$ref": "#/definitions/unaryOperators" } ] }, "requireSpaceBeforeBinaryOperators": { "description": "Disallows sticking binary operators to the left.", "type": ["array", "boolean", "null"], "oneOf": [ { "$ref": "#/definitions/operators" } ] }, "requireSpaceBeforeBlockStatements": { "description": "Requires space before block statements (for loops, control structures).", "type": ["boolean", "null", "integer"], "oneOf": [ { "description": "If true, require at least a single space.", "type": "boolean" }, { "$ref": "#/definitions/nullRule" }, { "description": "Require at least the specified number of spaces. Value must be greater than or equal to 1.", "type": "integer", "minimum": 1 } ] }, "requireSpaceBeforeComma": { "description": "Requires a space before a comma.", "type": ["boolean", "null"], "oneOf": [ { "description": "If true, require a space before any comma.", "type": "boolean" }, { "$ref": "#/definitions/nullRule" } ] }, "requireSpaceBeforeKeywords": { "description": "Requires a space before a keyword.", "type": ["array", "boolean", "null", "object"], "oneOf": [ { "$ref": "#/definitions/blockKeywords" }, { "description": "If true, report on all possible ES3 keywords except `function`.", "type": "boolean" }, { "$ref": "#/definitions/nullRule" }, { "description": "An object that contains an \"allExcept\" key equal to an array of exception values.", "type": "object", "properties": { "allExcept": { "description": "Array of allowed strings before space.", "type": "array", "minItems": 0, "items": { "type": "string" }, "uniqueItems": true } } } ] }, "requireSpaceBeforeObjectValues": { "description": "Requires space after object keys.", "type": ["boolean", "null"], "oneOf": [ { "type": "boolean" }, { "$ref": "#/definitions/nullRule" } ] }, "requireSpaceBeforePostfixUnaryOperators": { "description": "Disallows sticking unary operators to the left.", "type": ["array", "boolean", "null"], "oneOf": [ { "$ref": "#/definitions/unaryOperators" } ] }, "requireSpaceBetweenArguments": { "description": "Ensure there are spaces after argument separators in call expressions.", "type": ["boolean", "null"], "oneOf": [ { "type": "boolean" }, { "$ref": "#/definitions/nullRule" } ] }, "requireSpacesInAnonymousFunctionExpression": { "description": "Requires space before `()` or `{}` in function expressions (both named and anonymous).", "type": ["null", "object"], "oneOf": [ { "description": "An object with the following properties (one of \"beforeOpeningRoundBrace\" and \"beforeOpeningCurlyBrace\" must be provided):", "type": "object", "properties": { "beforeOpeningRoundBrace": { "type": ["boolean", "null"] }, "beforeOpeningCurlyBrace": { "type": ["boolean", "null"] }, "allExcept": { "description": "A boolean or an array of quoted exceptions.", "type": ["boolean", "null", "array"], "oneOf": [ { "description": "If true, enable all configuration exceptions.", "type": "boolean" }, { "$ref": "#/definitions/nullRule" }, { "description": "Array of quoted keywords to exempt.", "type": "array", "minItems": 0, "items": { "type": "string", "oneOf": [ { "description": "If \"shorthand\" is provided, spaces will not be required for ES6 method definitions.", "enum": ["shorthand"] } ] }, "uniqueItems": true } ] } } } ] }, "requireSpacesInCallExpression": { "description": "Requires space before `()` in call expressions.", "type": ["boolean", "null"], "oneOf": [ { "type": "boolean" }, { "$ref": "#/definitions/nullRule" } ] }, "requireSpacesInConditionalExpression": { "description": "Requires space before and/or after `?` or `:` in conditional expressions.", "type": ["boolean", "null", "object"], "oneOf": [ { "description": "If true, set all properties to true.", "type": "boolean" }, { "$ref": "#/definitions/nullRule" }, { "type": "object", "properties": { "afterTest": { "type": "boolean" }, "beforeConsequent": { "type": "boolean" }, "afterConsequent": { "type": "boolean" }, "beforeAlternate": { "type": "boolean" } } } ] }, "requireSpacesInForStatement": { "description": "Requires spaces in between `for` statement.", "type": ["boolean", "null"], "oneOf": [ { "type": "boolean" }, { "$ref": "#/definitions/nullRule" } ] }, "requireSpacesInFunction": { "description": "Requires space before `()` or `{}` in function expressions (both named and anonymous) and function declarations.", "type": ["null", "object"], "oneOf": [ { "$ref": "#/definitions/braceRules" } ] }, "requireSpacesInFunctionDeclaration": { "description": "Requires space before `()` or `{}` in function declarations.", "type": ["null", "object"], "oneOf": [ { "$ref": "#/definitions/braceRules" } ] }, "requireSpacesInFunctionExpression": { "description": "Requires space before `()` or `{}` in function expressions (both named and anonymous).", "type": ["null", "object"], "oneOf": [ { "$ref": "#/definitions/braceRules" } ] }, "requireSpacesInGenerator": { "description": "Requires space before and after `*` in generator functions.", "type": ["null", "object"], "oneOf": [ { "$ref": "#/definitions/nullRule" }, { "description": "An object where at least one of its properties must be present and it must be set to true.", "type": "object", "properties": { "beforeStar": { "description": "If true, validates that there is a space before `*`.", "type": "boolean" }, "afterStar": { "description": "If true, validates that there is a space after `*`.", "type": "boolean" } } } ] }, "requireSpacesInNamedFunctionExpression": { "description": "Requires space before `()` or `{}` in named function expressions.", "type": ["null", "object"], "oneOf": [ { "$ref": "#/definitions/braceRules" } ] }, "requireSpacesInsideArrayBrackets": { "description": "Requires space after opening array square bracket and before closing. Reports only on arrays, not on property accessors. Use requireSpacesInsideBrackets to report on all brackets.", "type": ["null", "object", "string"], "oneOf": [ { "$ref": "#/definitions/nullRule" }, { "description": "An object that contains an \"allExcept\" key equal to an array of exception tokens.", "type": "object", "properties": { "allExcept": { "description": "Array of quoted tokens that can occur after an opening square bracket or before a closing square bracket without a space.", "type": "array", "minItems": 0, "items": { "type": "string", "oneOf": [ { "enum": ["{", "}", "[", "]"] } ] }, "uniqueItems": true } } }, { "type": "string", "oneOf": [ { "description": "Strict mode.", "enum": ["all"] }, { "description": "Deprecated in favor of the object \"allExcept\": [\"[\", \"]\"] format.", "enum": ["allButNested"] } ] } ] }, "requireSpacesInsideBrackets": { "description": "Requires space after opening square bracket and before closing. Reports on all on brackets, even on property accessors. Use requireSpacesInsideArrayBrackets to exclude property accessors.", "type": ["boolean", "null", "object"], "oneOf": [ { "description": "For default behavior (strict mode).", "type": "boolean" }, { "$ref": "#/definitions/nullRule" }, { "description": "An object that contains an \"allExcept\" key equal to an array of exception tokens.", "type": "object", "properties": { "allExcept": { "description": "Array of quoted tokens that can occur after an opening square bracket or before a closing square bracket without a space.", "type": "array", "minItems": 0, "items": { "type": "string", "oneOf": [ { "enum": ["{", "}", "[", "]"] } ] }, "uniqueItems": true } } } ] }, "requireSpacesInsideObjectBrackets": { "description": "Requires space after opening object curly brace and before closing.", "type": ["null", "object", "string"], "oneOf": [ { "$ref": "#/definitions/nullRule" }, { "description": "An object that contains an \"allExcept\" key equal to an array of exception tokens.", "type": "object", "properties": { "allExcept": { "description": "Array of quoted tokens that can occur after an opening object brace or before a closing object brace without a space.", "type": "array", "minItems": 0, "items": { "type": "string", "oneOf": [ { "enum": ["(", ")", "{", "}", "[", "]"] } ] }, "uniqueItems": true } } }, { "type": "string", "oneOf": [ { "description": "Strict mode.", "enum": ["all"] }, { "description": "Deprecated in favor of the object \"allExcept\": [\"}\"] format.", "enum": ["allButNested"] } ] } ] }, "requireSpacesInsideParentheses": { "description": "Requires space after opening round bracket and before closing.", "type": ["null", "object", "string"], "oneOf": [ { "$ref": "#/definitions/nullRule" }, { "description": "An object that contains an \"except\" key equal to an array of exception tokens, in addition to other attributes.", "type": "object", "properties": { "all": { "type": "boolean" }, "ignoreParenthesizedExpression": { "type": "boolean" }, "except": { "description": "Array of quoted tokens that can occur after an opening bracket or before a closing bracket without a space.", "type": "array", "minItems": 0, "items": { "type": "string", "anyOf": [ { "enum": ["(", ")", "{", "}", "[", "]"] }, { "type": "string", "maxLength": 1 } ] }, "uniqueItems": true } } }, { "type": "string", "oneOf": [ { "description": "Strict mode.", "enum": ["all"] }, { "description": "Deprecated in favor of the object \"except\": [\"(\", \")\"] format. Ignores nested brackets in a row.", "enum": ["allButNested"] } ] } ] }, "requireSpacesInsideParenthesizedExpression": { "description": "Requires space after opening and before closing grouping parentheses.", "type": ["boolean", "null", "object"], "oneOf": [ { "description": "If true, always require spaces inside grouping parentheses.", "type": "boolean" }, { "$ref": "#/definitions/nullRule" }, { "description": "An object that contains an \"allExcept\" key equal to an array of exception values.", "type": "object", "properties": { "allExcept": { "description": "Array of quoted keywords to exempt.", "type": "array", "minItems": 0, "items": { "type": "string", "oneOf": [ { "description": "Ignore parenthesized objects and functions.", "enum": ["{", "}", "function"] } ] }, "uniqueItems": true } } } ] }, "requireSpread": { "description": "Disallows using `.apply` in favor of the spread operator.", "type": ["boolean", "null"], "oneOf": [ { "description": "If true, specifies that apply `.apply` is disallowed.", "type": "boolean" }, { "$ref": "#/definitions/nullRule" } ] }, "requireTemplateStrings": { "description": "Requires the use of template strings instead of string concatenation.", "type": ["boolean", "null", "object"], "oneOf": [ { "type": "boolean" }, { "$ref": "#/definitions/nullRule" }, { "description": "An object that contains an \"allExcept\" key equal to an array of exception values.", "type": "object", "properties": { "allExcept": { "description": "Array of quoted keywords to exempt.", "type": "array", "minItems": 0, "items": { "type": "string", "oneOf": [ { "description": "Ignores strings concatenated with other strings.", "enum": ["stringConcatenation"] } ] }, "uniqueItems": true } } } ] }, "requireTrailingComma": { "description": "Requires an extra comma following the final element of an array or object literal.", "type": ["boolean", "null", "object"], "oneOf": [ { "description": "If true, validates all arrays and objects.", "type": "boolean" }, { "$ref": "#/definitions/nullRule" }, { "type": "object", "properties": { "ignoreSingleValue": { "description": "If true, allows single property objects and single element arrays to not require a trailing comma.", "type": "boolean" }, "ignoreSingleLine": { "description": "If true, allows objects and arrays on a single line to not require a trailing comma.", "type": "boolean" } } } ] }, "requireVarDeclFirst": { "description": "Requires `var` declaration to be on the top of an enclosing scope.", "type": ["boolean", "null"], "oneOf": [ { "description": "If true, specifies that `var` declarations must occur the top of a function scope.", "type": "boolean" }, { "$ref": "#/definitions/nullRule" } ] }, "requireYodaConditions": { "description": "Requires the variable to be the right hand operator when doing a boolean comparison. An array of quoted operators can be supplied to indicate which operators requires yoda conditions.", "type": ["array", "boolean", "null"], "oneOf": [ { "$ref": "#/definitions/equalityOperators" }, { "description": "If true, specifies that yoda conditions are required for most possible comparison operators.", "type": "boolean" }, { "$ref": "#/definitions/nullRule" } ] }, "safeContextKeyword": { "description": "Option to check `var that = this` expressions.", "type": ["array", "null", "string"], "oneOf": [ { "description": "Array of quoted keywords that can be assigned to `this` context.", "type": "array", "minItems": 0, "items": { "anyOf": [ { "type": "string", "minLength": 1 } ] }, "uniqueItems": true }, { "$ref": "#/definitions/nullRule" }, { "description": "Represents the keyword that can be assigned to `this` context.", "type": "string", "minLength": 1 } ] }, "validateAlignedFunctionParameters": { "description": "Validates proper alignment of function parameters.", "type": ["boolean", "null", "object"], "oneOf": [ { "description": "If true, this is the same as validating the rule using `{lineBreakAfterOpeningBrace: true, lineBreakBeforeClosingBrace: true}`.", "type": "boolean" }, { "$ref": "#/definitions/nullRule" }, { "type": "object", "properties": { "lineBreakAfterOpeningBrace": { "description": "If true, specifies that the first function parameter must not be on the same line as the opening parenthesis `(` of the function parameters list.", "type": "boolean" }, "lineBreakBeforeClosingBrace": { "description": "If true, specifies that the last function parameter must not be on the same line as the closing parenthesis `)` of the function parameters list.", "type": "boolean" } } } ] }, "validateCommentPosition": { "description": "This rule is for validating the positioning of line comments. Block comments are ignored. Comments that start with the following keywords are also ignored: `eslint`, `jshint`, `jslint`, `istanbul`, `global`, `exported`, `jscs`, `falls through` eg. // jshint strict: true", "type": ["null", "object"], "oneOf": [ { "$ref": "#/definitions/nullRule" }, { "type": "object", "properties": { "position": { "type": "string", "enum": ["above", "beside"] }, "allExcept": { "description": "Array of quoted exceptions (comments that start with these values will be excepted).", "type": "array", "minItems": 0, "items": { "type": "string" }, "uniqueItems": true } } } ] }, "validateIndentation": { "description": "Validates indentation for switch statements and block statements.", "type": ["integer", "null", "object", "string"], "oneOf": [ { "description": "A positive number of spaces.", "type": "integer", "minimum": 0 }, { "$ref": "#/definitions/nullRule" }, { "type": "object", "properties": { "value": { "type": ["integer", "string"], "oneOf": [ { "type": "integer", "minimum": 0 }, { "type": "string" } ] }, "includeEmptyLines": { "description": "Deprecated. Require empty lines to be indented.", "type": "boolean", "default": false }, "allExcept": { "description": "Array of quoted exceptions.", "type": "array", "minItems": 0, "items": { "type": "string", "oneOf": [ { "description": "Ignores comments.", "enum": ["comments"] }, { "description": "Ignores empty lines, included by default.", "enum": ["emptyLines"] } ] }, "uniqueItems": true } }, "required": ["value"] } ] }, "validateLineBreaks": { "description": "Option to check line break characters.", "type": ["null", "object", "string"], "oneOf": [ { "$ref": "#/definitions/nullRule" }, { "type": "object", "properties": { "character": { "type": "string", "enum": ["CR", "LF", "CRLF"] }, "reportOncePerFile": { "description": "If true, specifies that validation for the file should stop running upon encountering the first rule violation and return the details of that violation in the report.", "type": "boolean" } } }, { "description": "Setting this is the same as validating the rule using `{character: String, reportOncePerFile: false}`.", "type": "string", "enum": ["CR", "LF", "CRLF"] } ] }, "validateNewlineAfterArrayElements": { "description": "Requires each element in array on a single line when array length is more than passed maximum number or array fills more than one line.", "type": ["boolean", "integer", "null", "object"], "oneOf": [ { "description": "If true, this is the same as validating the rule using `{maximum: Infinity, ignoreBrackets: false}`.", "type": "boolean" }, { "description": "Setting this is the same as validating the rule using `{maximum: Integer, ignoreBrackets: false}`.", "type": "integer", "minimum": 0 }, { "$ref": "#/definitions/nullRule" }, { "type": "object", "properties": { "maximum": { "type": "integer", "minimum": 0 }, "ignoreBrackets": { "description": "If true, specifies that the `[` and `]` brackets can be placed on the same line as the array elements.", "type": "boolean" } } } ] }, "validateOrderInObjectKeys": { "description": "Validates the order in object keys.", "type": ["boolean", "null", "string"], "oneOf": [ { "description": "If true, alias to `asc`.", "type": "boolean" }, { "$ref": "#/definitions/nullRule" }, { "type": "string", "oneOf": [ { "description": "Requires sorting in ascending order.", "enum": ["asc"] }, { "description": "Requires sorting in ascending order (case-insensitive).", "enum": ["asc-insensitive"] }, { "description": "Requires sorting in ascending natural order.", "enum": ["asc-natural"] }, { "description": "Requires sorting in descending order.", "enum": ["desc"] }, { "description": "Requires sorting in descending order (case-insensitive).", "enum": ["desc-insensitive"] }, { "description": "Requires sorting in descending natural order.", "enum": ["desc-natural"] } ] } ] }, "validateParameterSeparator": { "description": "Enable validation of separators between function parameters. Will ignore newlines.", "type": ["null", "string"], "oneOf": [ { "$ref": "#/definitions/nullRule" }, { "type": "string", "oneOf": [ { "description": "Function parameters are immediately followed by a comma.", "enum": [","] }, { "description": "Function parameters are immediately followed by a comma and then a space.", "enum": [", "] }, { "description": "Function parameters are immediately followed by a space and then a comma.", "enum": [" ,"] }, { "description": "Function parameters are immediately followed by a space, a comma, and then a space.", "enum": [" , "] } ] } ] }, "validateQuoteMarks": { "description": "Requires all quote marks to be either the supplied value, or consistent if `true`.", "type": ["boolean", "null", "object", "string"], "oneOf": [ { "description": "If true, all strings require the quote mark first encountered in the source code.", "type": "boolean" }, { "$ref": "#/definitions/nullRule" }, { "type": "object", "properties": { "escape": { "description": "Allow the \"other\" quote mark to be used, but only to avoid having to escape.", "type": "boolean" }, "mark": { "description": "The same effect as the non-object values.", "type": "string", "oneOf": [ { "description": "All strings require double quotes.", "enum": [""] }, { "description": "All strings require single quotes.", "enum": [""] } ] }, "ignoreJSX": { "description": "Ignore JSX nodes.", "type": "boolean" } }, "required": ["value"] }, { "type": "string", "oneOf": [ { "description": "All strings require double quotes.", "enum": ["\""] }, { "description": "All strings require single quotes.", "enum": ["'"] } ] } ] } }, "title": "JSON schema for JSCS configuration files", "type": "object" }
commitlintrc.json
{ "$id": "https://json.schemastore.org/commitlintrc.json", "$schema": "http://json-schema.org/draft-07/schema#", "definitions": { "rule": { "oneOf": [ { "description": "A rule", "type": "array", "items": [ { "description": "Level: 0 disables the rule. For 1 it will be considered a warning, for 2 an error", "type": "number", "enum": [0, 1, 2] }, { "description": "Applicable: always|never: never inverts the rule", "type": "string", "enum": ["always", "never"] }, { "description": "Value: the value for this rule" } ], "minItems": 2, "maxItems": 3, "additionalItems": false } ] } }, "properties": { "extends": { "description": "Resolvable ids to commitlint configurations to extend", "oneOf": [ { "type": "array", "items": { "type": "string" } }, { "type": "string" } ] }, "parserPreset": { "description": "Resolvable id to conventional-changelog parser preset to import and use", "oneOf": [ { "type": "string" }, { "type": "object", "properties": { "name": { "type": "string" }, "path": { "type": "string" }, "parserOpts": {} }, "additionalProperties": false } ] }, "helpUrl": { "description": "Custom URL to show upon failure", "type": "string" }, "formatter": { "description": "Resolvable id to package, from node_modules, which formats the output", "type": "string" }, "rules": { "description": "Rules to check against", "type": "object", "propertyNames": { "type": "string" }, "additionalProperties": { "$ref": "#/definitions/rule" } }, "plugins": { "description": "Resolvable ids of commitlint plugins from node_modules", "type": "array", "items": { "type": "string" } }, "ignores": { "description": "Additional commits to ignore, defined by ignore matchers", "type": "array", "items": {} }, "defaultIgnores": { "description": "Whether commitlint uses the default ignore rules", "type": "boolean" } } }
mirrord-schema.json
{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "LayerFileConfig", "description": "mirrord allows for a high degree of customization when it comes to which features you want to enable, and how they should function.\n\nAll of the configuration fields have a default value, so a minimal configuration would be no configuration at all.\n\nTo help you get started, here are examples of a basic configuration file, and a complete configuration file containing all fields.\n\n### Basic `config.json` {#root-basic}\n\n```json { \"target\": \"pod/bear-pod\", \"feature\": { \"env\": true, \"fs\": \"read\", \"network\": true } } ```\n\n### Complete `config.json` {#root-complete}\n\nDon't use this example as a starting point, it's just here to show you all the available options. ```json { \"accept_invalid_certificates\": false, \"skip_processes\": \"ide-debugger\", \"pause\": false, \"target\": { \"path\": \"pod/bear-pod\", \"namespace\": \"default\" }, \"connect_tcp\": null, \"agent\": { \"log_level\": \"info\", \"namespace\": \"default\", \"image\": \"ghcr.io/metalbear-co/mirrord:latest\", \"image_pull_policy\": \"IfNotPresent\", \"image_pull_secrets\": [ { \"secret-key\": \"secret\" } ], \"ttl\": 30, \"ephemeral\": false, \"communication_timeout\": 30, \"startup_timeout\": 360, \"network_interface\": \"eth0\", \"flush_connections\": true }, \"feature\": { \"env\": { \"include\": \"DATABASE_USER;PUBLIC_ENV\", \"exclude\": \"DATABASE_PASSWORD;SECRET_ENV\", \"override\": { \"DATABASE_CONNECTION\": \"db://localhost:7777/my-db\", \"LOCAL_BEAR\": \"panda\" } }, \"fs\": { \"mode\": \"write\", \"read_write\": \".+\\.json\" , \"read_only\": [ \".+\\.yaml\", \".+important-file\\.txt\" ], \"local\": [ \".+\\.js\", \".+\\.mjs\" ] }, \"network\": { \"incoming\": { \"mode\": \"steal\", \"http_header_filter\": { \"filter\": \"host: api\\..+\", \"ports\": [80, 8080] }, \"port_mapping\": [[ 7777, 8888 ]], \"ignore_localhost\": false, \"ignore_ports\": [9999, 10000] }, \"outgoing\": { \"tcp\": true, \"udp\": true, \"filter\": { \"local\": [\"tcp://1.1.1.0/24:1337\", \"1.1.5.0/24\", \"google.com\", \":53\"] }, \"ignore_localhost\": false, \"unix_streams\": \"bear.+\" }, \"dns\": false }, }, \"operator\": true, \"kubeconfig\": \"~/.kube/config\", \"sip_binaries\": \"bash\", \"telemetry\": true, \"kube_context\": \"my-cluster\" } ```\n\n# Options {#root-options}", "type": "object", "properties": { "accept_invalid_certificates": { "title": "accept_invalid_certificates {#root-accept_invalid_certificates}", "description": "Controls whether or not mirrord accepts invalid TLS certificates (e.g. self-signed certificates).\n\nDefaults to `false`.", "type": [ "boolean", "null" ] }, "agent": { "title": "agent {#root-agent}", "anyOf": [ { "$ref": "#/definitions/AgentFileConfig" }, { "type": "null" } ] }, "connect_agent_name": { "description": "<!--${internal}-->\n\n## connect_agent_name {#root-connect_agent_name}\n\nAgent name that already exists that we can connect to.\n\nKeep in mind that the intention here is to allow reusing a long living mirrord-agent pod, and **not** to connect multiple (simultaneos) mirrord instances to a single mirrord-agent, as the later is not properly supported without the use of [mirrord-operator](https://metalbear.co/#waitlist-form).\n\n```json { \"connect_agent_name\": \"mirrord-agent-still-alive\" } ```", "type": [ "string", "null" ] }, "connect_agent_port": { "description": "<!--${internal}-->\n\n## connect_agent_port {#root-connect_agent_port}\n\nAgent listen port that already exists that we can connect to.\n\n```json { \"connect_agent_port\": \"8888\" } ```", "type": [ "integer", "null" ], "format": "uint16", "minimum": 0.0 }, "connect_tcp": { "title": "connect_tcp {#root-connect_tpc}", "description": "IP:PORT to connect to instead of using k8s api, for testing purposes.\n\n```json { \"connect_tcp\": \"10.10.0.100:7777\" } ```", "type": [ "string", "null" ] }, "feature": { "title": "feature {#root-feature}", "anyOf": [ { "$ref": "#/definitions/FeatureFileConfig" }, { "type": "null" } ] }, "internal_proxy": { "title": "internal_proxy {#root-internal_proxy}", "anyOf": [ { "$ref": "#/definitions/InternalProxyFileConfig" }, { "type": "null" } ] }, "kube_context": { "title": "kube_context {#root-kube_context}", "description": "Kube context to use from the kubeconfig file. Will use current context if not specified.\n\n```json { \"kube_context\": \"mycluster\" } ```", "type": [ "string", "null" ] }, "kubeconfig": { "title": "kubeconfig {#root-kubeconfig}", "description": "Path to a kubeconfig file, if not specified, will use `KUBECONFIG`, or `~/.kube/config`, or the in-cluster config.\n\n```json { \"kubeconfig\": \"~/bear/kube-config\" } ```", "type": [ "string", "null" ] }, "operator": { "title": "operator {#root-operator}", "description": "Allow to lookup if operator is installed on cluster and use it.\n\nDefaults to `true`.", "type": [ "boolean", "null" ] }, "pause": { "title": "pause {#root-pause}", "description": "Controls target pause feature. Unstable.\n\nWith this feature enabled, the remote container is paused while this layer is connected to the agent.\n\nDefaults to `false`.", "type": [ "boolean", "null" ] }, "sip_binaries": { "title": "sip_binaries {#root-sip_binaries}", "description": "Binaries to patch (macOS SIP).\n\nUse this when mirrord isn't loaded to protected binaries that weren't automatically patched.\n\nRuns `endswith` on the binary path (so `bash` would apply to any binary ending with `bash` while `/usr/bin/bash` would apply only for that binary).\n\n```json { \"sip_binaries\": \"bash;python\" } ```", "anyOf": [ { "$ref": "#/definitions/VecOrSingle_for_String" }, { "type": "null" } ] }, "skip_build_tools": { "title": "skip_build_tools {#root-skip_build_tools}", "description": "Allows mirrord to skip build tools. Useful when running command lines that build and run the application in a single command.\n\nDefaults to `true`.\n\nBuild-Tools: `[\"as\", \"cc\", \"ld\", \"go\", \"air\", \"asm\", \"cc1\", \"cgo\", \"dlv\", \"gcc\", \"git\", \"link\", \"math\", \"cargo\", \"hpack\", \"rustc\", \"compile\", \"collect2\", \"cargo-watch\", \"debugserver\"]`", "type": [ "boolean", "null" ] }, "skip_processes": { "title": "skip_processes {#root-skip_processes}", "description": "Allows mirrord to skip unwanted processes.\n\nUseful when process A spawns process B, and the user wants mirrord to operate only on process B. Accepts a single value, or multiple values separated by `;`.\n\n```json { \"skip_processes\": \"bash;node\" } ```", "anyOf": [ { "$ref": "#/definitions/VecOrSingle_for_String" }, { "type": "null" } ] }, "target": { "title": "target {#root-target}", "anyOf": [ { "$ref": "#/definitions/TargetFileConfig" }, { "type": "null" } ] }, "telemetry": { "title": "telemetry {#root-telemetry}", "description": "Controls whether or not mirrord sends telemetry data to MetalBear cloud. Telemetry sent doesn't contain personal identifiers or any data that should be considered sensitive. It is used to improve the product. [For more information](https://github.com/metalbear-co/mirrord/blob/main/TELEMETRY.md)", "type": [ "boolean", "null" ] } }, "additionalProperties": false, "definitions": { "AdvancedFsUserConfig": { "description": "Allows the user to specify the default behavior for file operations:\n\n1. `\"read\"` - Read from the remote file system (default) 2. `\"write\"` - Read/Write from the remote file system. 3. `\"local\"` - Read from the local file system. 5. `\"disable\"` - Disable file operations.\n\nBesides the default behavior, the user can specify behavior for specific regex patterns. Case insensitive.\n\n1. `\"read_write\"` - List of patterns that should be read/write remotely. 2. `\"read_only\"` - List of patterns that should be read only remotely. 3. `\"local\"` - List of patterns that should be read locally. 4. `\"not_found\"` - List of patters that should never be read nor written. These files should be treated as non-existent.\n\nThe logic for choosing the behavior is as follows:\n\n1. Check if one of the patterns match the file path, do the corresponding action. There's no specified order if two lists match the same path, we will use the first one (and we do not guarantee what is first).\n\n**Warning**: Specifying the same path in two lists is unsupported and can lead to undefined behaviour.\n\n2. Check our \"special list\" - we have an internal at compile time list for different behavior based on patterns to provide better UX.\n\n3. If none of the above match, use the default behavior (mode).\n\nFor more information, check the file operations [technical reference](https://mirrord.dev/docs/reference/fileops/).\n\n```json { \"feature\": { \"fs\": { \"mode\": \"write\", \"read_write\": \".+\\.json\" , \"read_only\": [ \".+\\.yaml\", \".+important-file\\.txt\" ], \"local\": [ \".+\\.js\", \".+\\.mjs\" ], \"not_found\": [ \"\\.config/gcloud\" ] } } } ```", "type": "object", "properties": { "local": { "title": "feature.fs.local {#feature-fs-local}", "description": "Specify file path patterns that if matched will be opened locally.", "anyOf": [ { "$ref": "#/definitions/VecOrSingle_for_String" }, { "type": "null" } ] }, "mode": { "title": "feature.fs.mode {#feature-fs-mode}", "anyOf": [ { "$ref": "#/definitions/FsModeConfig" }, { "type": "null" } ] }, "not_found": { "title": "feature.fs.not_found {#feature-fs-not_found}", "description": "Specify file path patterns that if matched will be treated as non-existent.", "anyOf": [ { "$ref": "#/definitions/VecOrSingle_for_String" }, { "type": "null" } ] }, "read_only": { "title": "feature.fs.read_only {#feature-fs-read_only}", "description": "Specify file path patterns that if matched will be read from the remote. if file matching the pattern is opened for writing or read/write it will be opened locally.", "anyOf": [ { "$ref": "#/definitions/VecOrSingle_for_String" }, { "type": "null" } ] }, "read_write": { "title": "feature.fs.read_write {#feature-fs-read_write}", "description": "Specify file path patterns that if matched will be read and written to the remote.", "anyOf": [ { "$ref": "#/definitions/VecOrSingle_for_String" }, { "type": "null" } ] } }, "additionalProperties": false }, "AgentFileConfig": { "description": "Configuration for the mirrord-agent pod that is spawned in the Kubernetes cluster.\n\nWe provide sane defaults for this option, so you don't have to set up anything here.\n\n```json { \"agent\": { \"log_level\": \"info\", \"namespace\": \"default\", \"image\": \"ghcr.io/metalbear-co/mirrord:latest\", \"image_pull_policy\": \"IfNotPresent\", \"image_pull_secrets\": [ { \"secret-key\": \"secret\" } ], \"ttl\": 30, \"ephemeral\": false, \"communication_timeout\": 30, \"startup_timeout\": 360, \"network_interface\": \"eth0\", \"pause\": false, \"flush_connections\": false, } } ```", "type": "object", "properties": { "check_out_of_pods": { "title": "agent.check_out_of_pods {#agent-check_out_of_pods}", "description": "Determine if to check whether there is room for agent job in target node. (Not applicable when using ephemeral containers feature)\n\nCan be disabled if the check takes too long and you are sure there is enough resources on each node", "type": [ "boolean", "null" ] }, "communication_timeout": { "title": "agent.communication_timeout {#agent-communication_timeout}", "description": "Controls how long the agent lives when there are no connections.\n\nEach connection has its own heartbeat mechanism, so even if the local application has no messages, the agent stays alive until there are no more heartbeat messages.", "type": [ "integer", "null" ], "format": "uint16", "minimum": 0.0 }, "disabled_capabilities": { "title": "agent.disabled_capabilities {#agent-disabled_capabilities}", "description": "Disables specified Linux capabilities for the agent container. If nothing is disabled here, agent uses `NET_ADMIN`, `NET_RAW`, `SYS_PTRACE` and `SYS_ADMIN`.", "type": [ "array", "null" ], "items": { "$ref": "#/definitions/LinuxCapability" } }, "ephemeral": { "title": "agent.ephemeral {#agent-ephemeral}", "description": "Runs the agent as an [ephemeral container](https://kubernetes.io/docs/concepts/workloads/pods/ephemeral-containers/)\n\nDefaults to `false`.", "type": [ "boolean", "null" ] }, "flush_connections": { "title": "agent.flush_connections {#agent-flush_connections}", "description": "Flushes existing connections when starting to steal, might fix issues where connections aren't stolen (due to being already established)\n\nDefaults to `true`.", "type": [ "boolean", "null" ] }, "image": { "title": "agent.image {#agent-image}", "description": "Name of the agent's docker image.\n\nUseful when a custom build of mirrord-agent is required, or when using an internal registry.\n\nDefaults to the latest stable image `\"ghcr.io/metalbear-co/mirrord:latest\"`.\n\n```json { \"agent\": { \"image\": \"internal.repo/images/mirrord:latest\" } } ```", "type": [ "string", "null" ] }, "image_pull_policy": { "title": "agent.image_pull_policy {#agent-image_pull_policy}", "description": "Controls when a new agent image is downloaded.\n\nSupports `\"IfNotPresent\"`, `\"Always\"`, `\"Never\"`, or any valid kubernetes [image pull policy](https://kubernetes.io/docs/concepts/containers/images/#image-pull-policy)\n\nDefaults to `\"IfNotPresent\"`", "type": [ "string", "null" ] }, "image_pull_secrets": { "title": "agent.image_pull_secrets {#agent-image_pull_secrets}", "description": "List of secrets the agent pod has access to.\n\nTakes an array of hash with the format `{ name: <secret-name> }`.\n\nRead more [here](https://kubernetes.io/docs/concepts/containers/images/).\n\n```json { \"agent\": { \"image_pull_secrets\": [ { \"very-secret\": \"secret-key\" }, { \"very-secret\": \"keep-your-secrets\" } ] } } ```", "type": [ "array", "null" ], "items": { "type": "object", "additionalProperties": { "type": "string" } } }, "log_level": { "title": "agent.log_level {#agent-log_level}", "description": "Log level for the agent.\n\nSupports `\"trace\"`, `\"debug\"`, `\"info\"`, `\"warn\"`, `\"error\"`, or any string that would work with `RUST_LOG`.\n\n```json { \"agent\": { \"log_level\": \"mirrord=debug,warn\" } } ```", "type": [ "string", "null" ] }, "namespace": { "title": "agent.namespace {#agent-namespace}", "description": "Namespace where the agent shall live.\n\nDefaults to the current kubernetes namespace.", "type": [ "string", "null" ] }, "network_interface": { "title": "agent.network_interface {#agent-network_interface}", "description": "Which network interface to use for mirroring.\n\nThe default behavior is try to access the internet and use that interface. If that fails it uses `eth0`.", "type": [ "string", "null" ] }, "privileged": { "title": "agent.privileged {#agent-privileged}", "description": "Run the mirror agent as privileged container. Defaults to `false`.\n\nMight be needed in strict environments such as Bottlerocket.", "type": [ "boolean", "null" ] }, "startup_timeout": { "title": "agent.startup_timeout {#agent-startup_timeout}", "description": "Controls how long to wait for the agent to finish initialization.\n\nIf initialization takes longer than this value, mirrord exits.\n\nDefaults to `60`.", "type": [ "integer", "null" ], "format": "uint64", "minimum": 0.0 }, "tolerations": { "title": "agent.tolerations {#agent-tolerations}", "description": "Set pod tolerations. (not with ephemeral agents) Default is ```json [ { \"operator\": \"Exists\" } ] ```\n\nSet to an empty array to have no tolerations at all", "type": [ "array", "null" ], "items": { "$ref": "#/definitions/io.k8s.api.core.v1.Toleration" } }, "ttl": { "title": "agent.ttl {#agent-ttl}", "description": "Controls how long the agent pod persists for after the agent exits (in seconds).\n\nCan be useful for collecting logs.\n\nDefaults to `1`.", "type": [ "integer", "null" ], "format": "uint16", "minimum": 0.0 } }, "additionalProperties": false }, "ConcurrentSteal": { "description": "(Operator Only): Allows overriding port locks\n\nCan be set to either `\"continue\"` or `\"override\"`.\n\n- `\"continue\"`: Continue with normal execution - `\"override\"`: If port lock detected then override it with new lock and force close the original locking connection.", "oneOf": [ { "description": "<!--${internal}--> ### override\n\nOverride any port lock and force close the original lock connection", "type": "string", "enum": [ "override" ] }, { "description": "<!--${internal}--> ### continue\n\nContinue with normal execution", "type": "string", "enum": [ "continue" ] }, { "description": "<!--${internal}--> ### abort\n\nAbort Execution when trying to steal traffic from a target whose traffic is already being stolen.", "type": "string", "enum": [ "abort" ] } ] }, "DeploymentTarget": { "description": "<!--${internal}--> Mirror the deployment specified by [`DeploymentTarget::deployment`].", "type": "object", "required": [ "deployment" ], "properties": { "container": { "type": [ "string", "null" ] }, "deployment": { "description": "<!--${internal}--> Deployment to mirror.", "type": "string" } } }, "EnvFileConfig": { "description": "Allows the user to set or override the local process' environment variables with the ones from the remote pod.\n\nWhich environment variables to load from the remote pod are controlled by setting either [`include`](#feature-env-include) or [`exclude`](#feature-env-exclude).\n\nSee the environment variables [reference](https://mirrord.dev/docs/reference/env/) for more details.\n\n```json { \"feature\": { \"env\": { \"include\": \"DATABASE_USER;PUBLIC_ENV\", \"exclude\": \"DATABASE_PASSWORD;SECRET_ENV\", \"override\": { \"DATABASE_CONNECTION\": \"db://localhost:7777/my-db\", \"LOCAL_BEAR\": \"panda\" } } } } ```", "type": "object", "properties": { "exclude": { "title": "feature.env.exclude {#feature-env-exclude}", "description": "Include the remote environment variables in the local process that are **NOT** specified by this option.\n\nSome of the variables that are excluded by default: `PATH`, `HOME`, `HOMEPATH`, `CLASSPATH`, `JAVA_EXE`, `JAVA_HOME`, `PYTHONPATH`.\n\nValue is a list separated by \";\".", "anyOf": [ { "$ref": "#/definitions/VecOrSingle_for_String" }, { "type": "null" } ] }, "include": { "title": "feature.env.include {#feature-env-include}", "description": "Include only these remote environment variables in the local process.\n\nValue is a list separated by \";\".\n\nSome environment variables are excluded by default (`PATH` for example), including these requires specifying them with `include`", "anyOf": [ { "$ref": "#/definitions/VecOrSingle_for_String" }, { "type": "null" } ] }, "override": { "title": "feature.env.override {#feature-env-override}", "description": "Allows setting or overriding environment variables (locally) with a custom value.\n\nFor example, if the remote pod has an environment variable `REGION=1`, but this is an undesirable value, it's possible to use `override` to set `REGION=2` (locally) instead.", "type": [ "object", "null" ], "additionalProperties": { "type": "string" } } }, "additionalProperties": false }, "FeatureFileConfig": { "description": "Controls mirrord features.\n\nSee the [technical reference, Technical Reference](https://mirrord.dev/docs/reference/) to learn more about what each feature does.\n\nThe [`env`](#feature-env), [`fs`](#feature-fs) and [`network`](#feature-network) options have support for a shortened version, that you can see [here](#root-shortened).\n\n```json { \"feature\": { \"env\": { \"include\": \"DATABASE_USER;PUBLIC_ENV\", \"exclude\": \"DATABASE_PASSWORD;SECRET_ENV\", \"override\": { \"DATABASE_CONNECTION\": \"db://localhost:7777/my-db\", \"LOCAL_BEAR\": \"panda\" } }, \"fs\": { \"mode\": \"write\", \"read_write\": \".+\\.json\" , \"read_only\": [ \".+\\.yaml\", \".+important-file\\.txt\" ], \"local\": [ \".+\\.js\", \".+\\.mjs\" ] }, \"network\": { \"incoming\": { \"mode\": \"steal\", \"http_header_filter\": { \"filter\": \"host: api\\..+\", \"ports\": [80, 8080] }, \"port_mapping\": [[ 7777, 8888 ]], \"ignore_localhost\": false, \"ignore_ports\": [9999, 10000] }, \"outgoing\": { \"tcp\": true, \"udp\": true, \"filter\": { \"local\": [\"tcp://1.1.1.0/24:1337\", \"1.1.5.0/24\", \"google.com\", \":53\"] }, \"ignore_localhost\": false, \"unix_streams\": \"bear.+\" }, \"dns\": false }, } } ```", "type": "object", "properties": { "env": { "title": "feature.env {#feature-env}", "anyOf": [ { "$ref": "#/definitions/ToggleableConfig_for_EnvFileConfig" }, { "type": "null" } ] }, "fs": { "title": "feature.fs {#feature-fs}", "anyOf": [ { "$ref": "#/definitions/ToggleableConfig_for_FsUserConfig" }, { "type": "null" } ] }, "network": { "title": "feature.network {#feature-network}", "anyOf": [ { "$ref": "#/definitions/ToggleableConfig_for_NetworkFileConfig" }, { "type": "null" } ] } }, "additionalProperties": false }, "FsModeConfig": { "description": "Configuration for enabling read-only or read-write file operations.\n\nThese options are overriden by user specified overrides and mirrord default overrides.\n\nIf you set [`\"localwithoverrides\"`](#feature-fs-mode-localwithoverrides) then some files can be read/write remotely based on our default/user specified. Default option for general file configuration.\n\nThe accepted values are: `\"local\"`, `\"localwithoverrides`, `\"read\"`, or `\"write`.", "oneOf": [ { "title": "feature.fs.mode.local {#feature-fs-mode-local}", "description": "mirrord won't do anything fs-related, all operations will be local.", "type": "string", "enum": [ "local" ] }, { "title": "feature.fs.mode.localwithoverrides {#feature-fs-mode-localwithoverrides}", "description": "mirrord will run overrides on some file operations, but most will be local.", "type": "string", "enum": [ "localwithoverrides" ] }, { "title": "feature.fs.mode.read {#feature-fs-mode-read}", "description": "mirrord will read files from the remote, but won't write to them.", "type": "string", "enum": [ "read" ] }, { "title": "feature.fs.mode.write {#feature-fs-mode-write}", "description": "mirrord will read/write from the remote.", "type": "string", "enum": [ "write" ] } ] }, "FsUserConfig": { "title": "feature.fs {#fs}", "description": "Changes file operations behavior based on user configuration.\n\nSee the file operations [reference](https://mirrord.dev/docs/reference/fileops/) for more details, and [fs advanced](#fs-advanced) for more information on how to fully setup mirrord file operations.\n\n### Minimal `fs` config {#fs-minimal}\n\n```json { \"feature\": { \"fs\": \"read\" } } ```\n\n### Advanced `fs` config {#fs-advanced}\n\n```json { \"feature\": { \"fs\": { \"mode\": \"write\", \"read_write\": \".+\\.json\" , \"read_only\": [ \".+\\.yaml\", \".+important-file\\.txt\" ], \"local\": [ \".+\\.js\", \".+\\.mjs\" ] } } } ```", "anyOf": [ { "description": "<!--${internal}--> Basic configuration that controls the env vars `MIRRORD_FILE_OPS` and `MIRRORD_FILE_RO_OPS` (default).", "allOf": [ { "$ref": "#/definitions/FsModeConfig" } ] }, { "description": "<!--${internal}--> Allows the user to specify both [`FsModeConfig`] (as above), and configuration for the overrides.", "allOf": [ { "$ref": "#/definitions/AdvancedFsUserConfig" } ] } ] }, "HttpFilterFileConfig": { "description": "Filter configuration for the HTTP traffic stealer feature.\n\nAllows the user to set a filter (regex) for the HTTP headers, so that the stealer traffic feature only captures HTTP requests that match the specified filter, forwarding unmatched requests to their original destinations.\n\nOnly does something when [`feature.network.incoming.mode`](#feature-network-incoming-mode) is set as `\"steal\"`, ignored otherwise.\n\nfor example, to filter based on header: ```json { \"header_filter\": \"host: api\\..+\", } ```\n\nfor example, to filter based on path ```json { \"path_filter\": \"host: api\\..+\", } ```", "type": "object", "properties": { "header_filter": { "title": "feature.network.incoming.http_filter.header_filter {#feature-network-incoming-http-header-filter}", "description": "Supports regexes validated by the [`fancy-regex`](https://docs.rs/fancy-regex/latest/fancy_regex/) crate.\n\nThe HTTP traffic feature converts the HTTP headers to `HeaderKey: HeaderValue`, case-insensitive.", "type": [ "string", "null" ] }, "path_filter": { "title": "feature.network.incoming.http_filter.path_filter {#feature-network-incoming-http-path-filter}", "description": "Supports regexes validated by the [`fancy-regex`](https://docs.rs/fancy-regex/latest/fancy_regex/) crate.\n\nCase insensitive.", "type": [ "string", "null" ] }, "ports": { "title": "feature.network.incoming.http_header_filter.ports {#feature-network-incoming-http_header_filter-ports}", "description": "Activate the HTTP traffic filter only for these ports.\n\nOther ports will still be stolen (when `\"steal`\" is being used), they're just not checked for HTTP filtering.", "anyOf": [ { "$ref": "#/definitions/PortList" }, { "type": "null" } ] } }, "additionalProperties": false }, "HttpHeaderFilterFileConfig": { "description": "Filter configuration for the HTTP traffic stealer feature.\n\nDEPRECATED - USE http_filter instead, unless using old operator/agent version (pre 3.46.0) Allows the user to set a filter (regex) for the HTTP headers, so that the stealer traffic feature only captures HTTP requests that match the specified filter, forwarding unmatched requests to their original destinations.\n\nOnly does something when [`feature.network.incoming.mode`](#feature-network-incoming-mode) is set as `\"steal\"`, ignored otherwise.\n\n```json { \"filter\": \"host: api\\..+\", \"ports\": [80, 8080] } ```", "type": "object", "properties": { "filter": { "title": "feature.network.incoming.http_header_filter.filter {#feature-network-incoming-http_header_filter-filter}", "description": "Supports regexes validated by the [`fancy-regex`](https://docs.rs/fancy-regex/latest/fancy_regex/) crate.\n\nThe HTTP traffic feature converts the HTTP headers to `HeaderKey: HeaderValue`, case-insensitive.", "type": [ "string", "null" ] }, "ports": { "title": "feature.network.incoming.http_header_filter.ports {#feature-network-incoming-http_header_filter-ports}", "description": "Activate the HTTP traffic filter only for these ports.\n\nOther ports will still be stolen (when `\"steal`\" is being used), they're just not checked for HTTP filtering.", "anyOf": [ { "$ref": "#/definitions/PortList" }, { "type": "null" } ] } }, "additionalProperties": false }, "IncomingAdvancedFileConfig": { "title": "incoming (advanced setup)", "description": "Advanced user configuration for network incoming traffic.", "type": "object", "properties": { "http_filter": { "title": "HTTP Filter", "description": "Sets up the HTTP traffic filter (currently, only useful when `incoming: steal`).\n\nSee [`filter`](##filter) for details.", "anyOf": [ { "$ref": "#/definitions/ToggleableConfig_for_HttpFilterFileConfig" }, { "type": "null" } ] }, "http_header_filter": { "title": "filter", "description": "Sets up the HTTP traffic filter (currently, only useful when `incoming: steal`).\n\nSee [`filter`](##filter) for details.", "anyOf": [ { "$ref": "#/definitions/ToggleableConfig_for_HttpHeaderFilterFileConfig" }, { "type": "null" } ] }, "ignore_localhost": { "title": "ignore_localhost", "description": "Consider removing when adding https://github.com/metalbear-co/mirrord/issues/702", "type": [ "boolean", "null" ] }, "ignore_ports": { "title": "ignore_ports", "description": "Ports to ignore when mirroring/stealing traffic. Useful if you want specific ports to be used locally only.", "type": [ "array", "null" ], "items": { "type": "integer", "format": "uint16", "minimum": 0.0 } }, "listen_ports": { "title": "listen_ports", "description": "Mapping for local ports to actually used local ports. When application listens on a port while steal/mirror is active we fallback to random ports to avoid port conflicts. Using this configuration will always use the specified port. If this configuration doesn't exist, mirrord will try to listen on the original port and if it fails it will assign a random port\n\nThis is useful when you want to access ports exposed by your service locally For example, if you have a service that listens on port `80` and you want to access it, you probably can't listen on `80` without sudo, so you can use `[[80, 4480]]` then access it on `4480` while getting traffic from remote `80`. The value of `port_mapping` doesn't affect this.", "type": [ "array", "null" ], "items": { "type": "array", "items": [ { "type": "integer", "format": "uint16", "minimum": 0.0 }, { "type": "integer", "format": "uint16", "minimum": 0.0 } ], "maxItems": 2, "minItems": 2 } }, "mode": { "title": "mode", "description": "Allows selecting between mirrorring or stealing traffic.\n\nSee [`mode`](##mode (incoming)) for details.", "anyOf": [ { "$ref": "#/definitions/IncomingMode" }, { "type": "null" } ] }, "on_concurrent_steal": { "title": "on_concurrent_steal", "description": "(Operator Only): if value of override will force close any other connections on requested target", "anyOf": [ { "$ref": "#/definitions/ConcurrentSteal" }, { "type": "null" } ] }, "port_mapping": { "title": "port_mapping", "description": "Mapping for local ports to remote ports.\n\nThis is useful when you want to mirror/steal a port to a different port on the remote machine. For example, your local process listens on port `9333` and the container listens on port `80`. You'd use `[[9333, 80]]`", "type": [ "array", "null" ], "items": { "type": "array", "items": [ { "type": "integer", "format": "uint16", "minimum": 0.0 }, { "type": "integer", "format": "uint16", "minimum": 0.0 } ], "maxItems": 2, "minItems": 2 } } } }, "IncomingFileConfig": { "title": "incoming (network)", "description": "Controls the incoming TCP traffic feature.\n\nSee the incoming [reference](https://mirrord.dev/docs/reference/traffic/#incoming) for more details.\n\nIncoming traffic supports 2 modes of operation:\n\n1. Mirror (**default**): Sniffs the TCP data from a port, and forwards a copy to the interested listeners;\n\n2. Steal: Captures the TCP data from a port, and forwards it to the local process, see [`steal`](##steal);\n\n### Minimal `incoming` config\n\n```json { \"feature\": { \"network\": { \"incoming\": \"steal\" } } } ```\n\n### Advanced `incoming` config\n\n```json { \"feature\": { \"network\": { \"incoming\": { \"mode\": \"steal\", \"http_header_filter\": { \"filter\": \"host: api\\..+\", \"ports\": [80, 8080] }, \"port_mapping\": [[ 7777, 8888 ]], \"ignore_localhost\": false, \"ignore_ports\": [9999, 10000] \"listen_ports\": [[80, 8111]] } } } } ```", "anyOf": [ { "anyOf": [ { "$ref": "#/definitions/IncomingMode" }, { "type": "null" } ] }, { "$ref": "#/definitions/IncomingAdvancedFileConfig" } ] }, "IncomingMode": { "description": "Allows selecting between mirrorring or stealing traffic.\n\nCan be set to either `\"mirror\"` (default), `\"steal\"` or `\"off\"`.\n\n- `\"mirror\"`: Sniffs on TCP port, and send a copy of the data to listeners. - `\"off\"`: Disables the incoming network feature. - `\"steal\"`: Supports 2 modes of operation:\n\n1. Port traffic stealing: Steals all TCP data from a port, which is selected whenever the user listens in a TCP socket (enabling the feature is enough to make this work, no additional configuration is needed);\n\n2. HTTP traffic stealing: Steals only HTTP traffic, mirrord tries to detect if the incoming data on a port is HTTP (in a best-effort kind of way, not guaranteed to be HTTP), and steals the traffic on the port if it is HTTP;", "oneOf": [ { "description": "<!--${internal}--> ### mirror\n\nSniffs on TCP port, and send a copy of the data to listeners.", "type": "string", "enum": [ "mirror" ] }, { "description": "<!--${internal}--> ### steal\n\nStealer supports 2 modes of operation:\n\n1. Port traffic stealing: Steals all TCP data from a port, which is selected whenever the user listens in a TCP socket (enabling the feature is enough to make this work, no additional configuration is needed);\n\n2. HTTP traffic stealing: Steals only HTTP traffic, mirrord tries to detect if the incoming data on a port is HTTP (in a best-effort kind of way, not guaranteed to be HTTP), and steals the traffic on the port if it is HTTP;", "type": "string", "enum": [ "steal" ] }, { "description": "<!--${internal}--> ### Off\n\nDisables the incoming network feature.", "type": "string", "enum": [ "off" ] } ] }, "InternalProxyFileConfig": { "description": "Configuration for the internal proxy mirrord spawns for each local mirrord session that local layers use to connect to the remote agent\n\nThis is seldom used, but if you get `ConnectionRefused` errors, you might want to increase the timeouts a bit.\n\n```json { \"internal_proxy\": { \"start_idle_timeout\": 30, \"idle_timeout\": 5, } } ```", "type": "object", "properties": { "idle_timeout": { "title": "internal_proxy.idle_timeout {#agent-idle_timeout}", "description": "How much time to wait while we don't have any active connections before exiting.\n\nCommon cases would be running a chain of processes that skip using the layer and don't connect to the proxy.\n\n```json { \"internal_proxy\": { \"idle_timeout\": 30 } } ```", "type": [ "integer", "null" ], "format": "uint64", "minimum": 0.0 }, "start_idle_timeout": { "title": "internal_proxy.start_idle_timeout {#agent-start_idle_timeout}", "description": "How much time to wait for the first connection to the proxy in seconds.\n\nCommon cases would be running with dlv or any other debugger, which sets a breakpoint on process execution, delaying the layer startup and connection to proxy.\n\n```json { \"internal_proxy\": { \"start_idle_timeout\": 60 } } ```", "type": [ "integer", "null" ], "format": "uint64", "minimum": 0.0 } }, "additionalProperties": false }, "LinuxCapability": { "type": "string", "enum": [ "SYS_ADMIN", "SYS_PTRACE", "NET_RAW", "NET_ADMIN" ] }, "NetworkFileConfig": { "description": "Controls mirrord network operations.\n\nSee the network traffic [reference](https://mirrord.dev/docs/reference/traffic/) for more details.\n\n```json { \"feature\": { \"network\": { \"incoming\": { \"mode\": \"steal\", \"http_header_filter\": { \"filter\": \"host: api\\..+\", \"ports\": [80, 8080] }, \"port_mapping\": [[ 7777, 8888 ]], \"ignore_localhost\": false, \"ignore_ports\": [9999, 10000] }, \"outgoing\": { \"tcp\": true, \"udp\": true, \"filter\": { \"local\": [\"tcp://1.1.1.0/24:1337\", \"1.1.5.0/24\", \"google.com\", \":53\"] }, \"ignore_localhost\": false, \"unix_streams\": \"bear.+\" }, \"dns\": false } } } ```", "type": "object", "properties": { "dns": { "title": "feature.network.dns {#feature-network-dns}", "description": "Resolve DNS via the remote pod.\n\nDefaults to `true`.", "type": [ "boolean", "null" ] }, "incoming": { "title": "feature.network.incoming {#feature-network-incoming}", "anyOf": [ { "$ref": "#/definitions/ToggleableConfig_for_IncomingFileConfig" }, { "type": "null" } ] }, "outgoing": { "title": "feature.network.outgoing {#feature-network-outgoing}", "anyOf": [ { "$ref": "#/definitions/ToggleableConfig_for_OutgoingFileConfig" }, { "type": "null" } ] } }, "additionalProperties": false }, "OutgoingFileConfig": { "description": "Tunnel outgoing network operations through mirrord.\n\nSee the outgoing [reference](https://mirrord.dev/docs/reference/traffic/#outgoing) for more details.\n\nThe `remote` and `local` config for this feature are **mutually** exclusive.\n\n```json { \"feature\": { \"network\": { \"outgoing\": { \"tcp\": true, \"udp\": true, \"ignore_localhost\": false, \"filter\": { \"local\": [\"tcp://1.1.1.0/24:1337\", \"1.1.5.0/24\", \"google.com\", \":53\"] }, \"unix_streams\": \"bear.+\" } } } } ```", "type": "object", "properties": { "filter": { "title": "feature.network.outgoing.filter {#feature.network.outgoing.filter}", "description": "Unstable: the precise syntax of this config is subject to change.", "anyOf": [ { "$ref": "#/definitions/OutgoingFilterConfig" }, { "type": "null" } ] }, "ignore_localhost": { "title": "feature.network.outgoing.ignore_localhost {#feature.network.outgoing.ignore_localhost}", "description": "Defaults to `false`.", "type": [ "boolean", "null" ] }, "tcp": { "title": "feature.network.outgoing.tcp {#feature.network.outgoing.tcp}", "description": "Defaults to `true`.", "type": [ "boolean", "null" ] }, "udp": { "title": "feature.network.outgoing.udp {#feature.network.outgoing.udp}", "description": "Defaults to `true`.", "type": [ "boolean", "null" ] }, "unix_streams": { "title": "feature.network.outgoing.unix_streams {#feature.network.outgoing.unix_streams}", "description": "Connect to these unix streams remotely (and to all other paths locally).\n\nYou can either specify a single value or an array of values. Each value is interpreted as a regular expression ([Supported Syntax](https://docs.rs/regex/1.7.1/regex/index.html#syntax)).\n\nWhen your application connects to a unix socket, the target address will be converted to a string (non-utf8 bytes are replaced by a placeholder character) and matched against the set of regexes specified here. If there is a match, mirrord will connect your application with the target unix socket address on the target pod. Otherwise, it will leave the connection to happen locally on your machine.", "anyOf": [ { "$ref": "#/definitions/VecOrSingle_for_String" }, { "type": "null" } ] } }, "additionalProperties": false }, "OutgoingFilterConfig": { "description": "List of addresses/ports/subnets that should be sent through either the remote pod or local app, depending how you set this up with either `remote` or `local`.\n\nYou may use this option to specify when outgoing traffic is sent from the remote pod (which is the default behavior when you enable outgoing traffic), or from the local app (default when you have outgoing traffic disabled).\n\nTakes a list of values, such as:\n\n- Only UDP traffic on subnet `1.1.1.0/24` on port 1337 will go through the remote pod.\n\n```json { \"remote\": [\"udp://1.1.1.0/24:1337\"] } ```\n\n- Only UDP and TCP traffic on resolved address of `google.com` on port `1337` and `7331` will go through the remote pod. ```json { \"remote\": [\"google.com:1337\", \"google.com:7331\"] } ```\n\n- Only TCP traffic on `localhost` on port 1337 will go through the local app, the rest will be emmited remotely in the cluster.\n\n```json { \"local\": [\"tcp://localhost:1337\"] } ```\n\n- Only outgoing traffic on port `1337` and `7331` will go through the local app. ```json { \"local\": [\":1337\", \":7331\"] } ```\n\nValid values follow this pattern: `[protocol]://[name|address|subnet/mask]:[port]`.", "oneOf": [ { "description": "Traffic that matches what's specified here will go through the remote pod, everything else will go through local.", "type": "object", "required": [ "remote" ], "properties": { "remote": { "$ref": "#/definitions/VecOrSingle_for_String" } }, "additionalProperties": false }, { "description": "Traffic that matches what's specified here will go through the local app, everything else will go through the remote pod.", "type": "object", "required": [ "local" ], "properties": { "local": { "$ref": "#/definitions/VecOrSingle_for_String" } }, "additionalProperties": false } ] }, "PodTarget": { "description": "<!--${internal}--> Mirror the pod specified by [`PodTarget::pod`].", "type": "object", "required": [ "pod" ], "properties": { "container": { "type": [ "string", "null" ] }, "pod": { "description": "<!--${internal}--> Pod to mirror.", "type": "string" } } }, "PortList": { "description": "<!--${internal}--> Helper struct for setting up ports configuration (part of the HTTP traffic stealer feature).\n\nDefaults to a list of ports `[80, 8080]`.\n\nWe use this to allow implementing a custom [`Default`] initialization, as the [`MirrordConfig`] macro (currently) doesn't support more intricate expressions.", "allOf": [ { "$ref": "#/definitions/VecOrSingle_for_uint16" } ] }, "RolloutTarget": { "description": "<!--${internal}--> Mirror the rollout specified by [`RolloutTarget::rollout`].", "type": "object", "required": [ "rollout" ], "properties": { "container": { "type": [ "string", "null" ] }, "rollout": { "description": "<!--${internal}--> Rollout to mirror.", "type": "string" } } }, "Target": { "description": "<!--${internal}--> ## path\n\nSpecifies the running pod (or deployment) to mirror.\n\nSupports: - `pod/{sample-pod}`; - `podname/{sample-pod}`; - `deployment/{sample-deployment}`; - `container/{sample-container}`; - `containername/{sample-container}`.", "anyOf": [ { "description": "<!--${internal}--> Mirror a deployment.", "allOf": [ { "$ref": "#/definitions/DeploymentTarget" } ] }, { "description": "<!--${internal}--> Mirror a pod.", "allOf": [ { "$ref": "#/definitions/PodTarget" } ] }, { "description": "<!--${internal}--> Mirror a rollout.", "allOf": [ { "$ref": "#/definitions/RolloutTarget" } ] } ] }, "TargetFileConfig": { "anyOf": [ { "anyOf": [ { "$ref": "#/definitions/Target" }, { "type": "null" } ] }, { "type": "object", "properties": { "namespace": { "type": [ "string", "null" ] }, "path": { "description": "<!--${internal}--> Path is optional so that it can also be specified via env var instead of via conf file, but it is not optional in a resulting [`TargetConfig`] object - either there is a path, or the target configuration is `None`.", "default": null, "anyOf": [ { "$ref": "#/definitions/Target" }, { "type": "null" } ] } } } ] }, "ToggleableConfig_for_EnvFileConfig": { "anyOf": [ { "type": "boolean" }, { "$ref": "#/definitions/EnvFileConfig" } ] }, "ToggleableConfig_for_FsUserConfig": { "anyOf": [ { "type": "boolean" }, { "$ref": "#/definitions/FsUserConfig" } ] }, "ToggleableConfig_for_HttpFilterFileConfig": { "anyOf": [ { "type": "boolean" }, { "$ref": "#/definitions/HttpFilterFileConfig" } ] }, "ToggleableConfig_for_HttpHeaderFilterFileConfig": { "anyOf": [ { "type": "boolean" }, { "$ref": "#/definitions/HttpHeaderFilterFileConfig" } ] }, "ToggleableConfig_for_IncomingFileConfig": { "anyOf": [ { "type": "boolean" }, { "$ref": "#/definitions/IncomingFileConfig" } ] }, "ToggleableConfig_for_NetworkFileConfig": { "anyOf": [ { "type": "boolean" }, { "$ref": "#/definitions/NetworkFileConfig" } ] }, "ToggleableConfig_for_OutgoingFileConfig": { "anyOf": [ { "type": "boolean" }, { "$ref": "#/definitions/OutgoingFileConfig" } ] }, "VecOrSingle_for_String": { "anyOf": [ { "type": "string" }, { "type": "array", "items": { "type": "string" } } ] }, "VecOrSingle_for_uint16": { "anyOf": [ { "type": "integer", "format": "uint16", "minimum": 0.0 }, { "type": "array", "items": { "type": "integer", "format": "uint16", "minimum": 0.0 } } ] }, "io.k8s.api.core.v1.Toleration": { "description": "The pod this Toleration is attached to tolerates any taint that matches the triple <key,value,effect> using the matching operator <operator>.", "type": "object", "properties": { "effect": { "description": "Effect indicates the taint effect to match. Empty means match all taint effects. When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute.\n\n", "type": "string" }, "key": { "description": "Key is the taint key that the toleration applies to. Empty means match all taint keys. If the key is empty, operator must be Exists; this combination means to match all values and all keys.", "type": "string" }, "operator": { "description": "Operator represents a key's relationship to the value. Valid operators are Exists and Equal. Defaults to Equal. Exists is equivalent to wildcard for value, so that a pod can tolerate all taints of a particular category.\n\n", "type": "string" }, "tolerationSeconds": { "description": "TolerationSeconds represents the period of time the toleration (which must be of effect NoExecute, otherwise this field is ignored) tolerates the taint. By default, it is not set, which means tolerate the taint forever (do not evict). Zero and negative values will be treated as 0 (evict immediately) by the system.", "type": "integer", "format": "int64" }, "value": { "description": "Value is the taint value the toleration matches to. If the operator is Exists, the value should be empty, otherwise just a regular string.", "type": "string" } } } } }
sarif-external-property-file-2.1.0-rtm.3.json
{ "$id": "https://json.schemastore.org/sarif-external-property-file-2.1.0-rtm.3.json", "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "$schema": { "description": "The URI of the JSON schema corresponding to the version of the external property file format.", "type": "string", "format": "uri" }, "version": { "description": "The SARIF format version of this external properties object.", "enum": ["2.1.0"] }, "guid": { "description": "A stable, unique identifier for this external properties object, in the form of a GUID.", "type": "string", "pattern": "^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-5][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}$" }, "runGuid": { "description": "A stable, unique identifier for the run associated with this external properties object, in the form of a GUID.", "type": "string", "pattern": "^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-5][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}$" }, "conversion": { "description": "A conversion object that will be merged with an external run.", "$ref": "sarif-2.1.0-rtm.3.json#/definitions/conversion" }, "graphs": { "description": "An array of graph objects that will merged with an external run.", "type": "array", "minItems": 0, "default": [], "uniqueItems": true, "items": { "$ref": "sarif-2.1.0-rtm.3.json#/definitions/graph" } }, "externalizedProperties": { "description": "Key/value pairs that provide additional information that will be merged with an external run.", "$ref": "sarif-2.1.0-rtm.3.json#/definitions/propertyBag" }, "artifacts": { "description": "An array of artifact objects that will be merged with an external run.", "type": "array", "minItems": 0, "uniqueItems": true, "items": { "$ref": "sarif-2.1.0-rtm.3.json#/definitions/artifact" } }, "invocations": { "description": "Describes the invocation of the analysis tool that will be merged with an external run.", "type": "array", "minItems": 0, "uniqueItems": false, "default": [], "items": { "$ref": "sarif-2.1.0-rtm.3.json#/definitions/invocation" } }, "logicalLocations": { "description": "An array of logical locations such as namespaces, types or functions that will be merged with an external run.", "type": "array", "minItems": 0, "uniqueItems": true, "default": [], "items": { "$ref": "sarif-2.1.0-rtm.3.json#/definitions/logicalLocation" } }, "threadFlowLocations": { "description": "An array of threadFlowLocation objects that will be merged with an external run.", "type": "array", "minItems": 0, "uniqueItems": true, "default": [], "items": { "$ref": "sarif-2.1.0-rtm.3.json#/definitions/threadFlowLocation" } }, "results": { "description": "An array of result objects that will be merged with an external run.", "type": "array", "minItems": 0, "uniqueItems": false, "default": [], "items": { "$ref": "sarif-2.1.0-rtm.3.json#/definitions/result" } }, "taxonomies": { "description": "Tool taxonomies that will be merged with an external run.", "type": "array", "minItems": 0, "uniqueItems": true, "default": [], "items": { "$ref": "sarif-2.1.0-rtm.3.json#/definitions/toolComponent" } }, "driver": { "description": "The analysis tool object that will be merged with an external run.", "$ref": "sarif-2.1.0-rtm.3.json#/definitions/toolComponent" }, "extensions": { "description": "Tool extensions that will be merged with an external run.", "type": "array", "minItems": 0, "uniqueItems": true, "default": [], "items": { "$ref": "sarif-2.1.0-rtm.3.json#/definitions/toolComponent" } }, "policies": { "description": "Tool policies that will be merged with an external run.", "type": "array", "minItems": 0, "uniqueItems": true, "default": [], "items": { "$ref": "sarif-2.1.0-rtm.3.json#/definitions/toolComponent" } }, "translations": { "description": "Tool translations that will be merged with an external run.", "type": "array", "minItems": 0, "uniqueItems": true, "default": [], "items": { "$ref": "sarif-2.1.0-rtm.3.json#/definitions/toolComponent" } }, "addresses": { "description": "Addresses that will be merged with with an external run.", "type": "array", "minItems": 0, "uniqueItems": false, "default": [], "items": { "$ref": "sarif-2.1.0-rtm.3.json#/definitions/address" } }, "webRequests": { "description": "Requests that will be merged with an external run.", "type": "array", "minItems": 0, "uniqueItems": true, "default": [], "items": { "$ref": "sarif-2.1.0-rtm.3.json#/definitions/webRequest" } }, "webResponses": { "description": "Responses that will be merged with an external run.", "type": "array", "minItems": 0, "uniqueItems": true, "default": [], "items": { "$ref": "sarif-2.1.0-rtm.3.json#/definitions/webResponse" } }, "properties": { "description": "Key/value pairs that provide additional information about the external properties.", "$ref": "sarif-2.1.0-rtm.3.json#/definitions/propertyBag" } }, "required": ["version"], "title": "SARIF External Property File Schema Version 2.1.0-rtm.3 JSON Schema", "type": "object" }
pmbot.yml.schema.json
{ "properties": { "version": { "enum": [ "1" ], "type": "string" }, "packageManagers": { "items": { "$ref": "#/definitions/PackageManagerUpdateConfig" }, "type": "array", "minItems": 1, "markdownDescription": "List of updates to perform" }, "actions": { "items": { "$ref": "#/definitions/ActionPluginDeclaration", "oneOf": [ { "type": "object", "properties": { "name": { "const": "create-issue" }, "config": { "$ref": "#/definitions/CreateIssueActionConfig" } } }, { "type": "object", "properties": { "name": { "const": "create-merge-request" }, "config": { "$ref": "#/definitions/CreateMergeRequestActionConfig" } } }, { "type": "object", "properties": { "name": { "const": "auto-merge" }, "config": { "$ref": "#/definitions/AutoMergeActionConfig" } } }, { "type": "object", "properties": { "name": { "const": "webhook" }, "config": { "$ref": "#/definitions/WebhookActionConfig" } } }, { "type": "object", "properties": { "name": { "const": "slack" }, "config": { "$ref": "#/definitions/SlackActionConfig" } } }, { "type": "object", "properties": { "name": { "const": "mattermost" }, "config": { "$ref": "#/definitions/MattermostActionConfig" } } }, { "type": "object", "properties": { "name": { "const": "email" }, "config": { "$ref": "#/definitions/EmailActionConfig" } } } ] }, "type": "array", "default": [], "description": "Actions to execute after each package manager update", "markdownDescription": "Actions to execute after each package manager update" } }, "type": "object", "required": [ "version", "packageManagers" ], "definitions": { "AutoMergeActionCommitMessageTemplateContext": { "properties": { "slug": { "description": "Update slug. For example, \"npm\", or, \"npm-0\" when there are multiple pmUpdates with packageManager npm.", "markdownDescription": "Update slug. For example, \"npm\", or, \"npm-0\" when there are multiple pmUpdates with packageManager npm." } }, "type": "object", "required": [ "slug" ] }, "AutoMergeActionConfig": { "properties": { "squash": { "type": "boolean", "default": true, "description": "Whether to squash commits of the update branch", "markdownDescription": "Whether to squash commits of the update branch" }, "commitMessage": { "type": "string", "default": "chore: update {{slug}} dependencies", "description": "Commit message\n\nThis [handlebars](https://handlebarsjs.com/guide/#what-is-handlebars) template is passed the following context:\n\n```\n{\n \"slug\": \"npm-0\"\n}\n```\n", "markdownDescription": "Commit message\n\nThis [handlebars](https://handlebarsjs.com/guide/#what-is-handlebars) template is passed the following context:\n\n```\n{\n \"slug\": \"npm-0\"\n}\n```\n" }, "removeUpdateBranch": { "type": "boolean", "default": true, "description": "Whether to remove the update branch", "markdownDescription": "Whether to remove the update branch" } }, "type": "object" }, "TitleTemplateContext": { "properties": { "slug": { "description": "Update slug. For example, \"npm\", or, \"npm-0\" when there are multiple pmUpdates with packageManager npm.", "markdownDescription": "Update slug. For example, \"npm\", or, \"npm-0\" when there are multiple pmUpdates with packageManager npm." }, "status": { "description": "Package manager update status", "markdownDescription": "Package manager update status" }, "statusEmoji": { "description": "A status emoji corresponding to the package manager update status", "markdownDescription": "A status emoji corresponding to the package manager update status" } }, "type": "object", "required": [ "slug", "status", "statusEmoji" ] }, "CreateIssueActionConfig": { "properties": { "title": { "type": "string", "default": "Automated update of {{slug}} dependencies {{statusEmoji}}", "description": "Issue title\n\nThis [handlebars](https://handlebarsjs.com/guide/#what-is-handlebars) template is passed the following context:\n\n```\n{\n \"slug\": \"myPm\",\n \"status\": \"myStatus\",\n \"statusEmoji\": \"✅\"\n}\n```\n", "markdownDescription": "Issue title\n\nThis [handlebars](https://handlebarsjs.com/guide/#what-is-handlebars) template is passed the following context:\n\n```\n{\n \"slug\": \"myPm\",\n \"status\": \"myStatus\",\n \"statusEmoji\": \"✅\"\n}\n```\n" }, "additionalText": { "type": "string", "description": "Additional text to embed in the issue description", "markdownDescription": "Additional text to embed in the issue description" }, "assignees": { "items": { "type": "string" }, "type": "array", "default": [], "description": "Usernames to assign to the issue created. Note that Gitlab CE only allows one assignee.", "markdownDescription": "Usernames to assign to the issue created. Note that Gitlab CE only allows one assignee." }, "closeOpen": { "type": "boolean", "default": true, "description": "Close open issues that were created by Pmbot. This option prevents multiple issues open simultaneously when you don't have the time to look at them.", "markdownDescription": "Close open issues that were created by Pmbot. This option prevents multiple issues open simultaneously when you don't have the time to look at them." }, "token": { "minLength": 1, "type": "string", "description": "An authentication token. For Gitlab, this should be a [personal access token](https://docs.gitlab.com/ee/user/profile/personal_access_tokens.html). For Github, it should be a [Github personal access token](https://help.github.com/en/github/authenticating-to-github/creating-a-personal-access-token-for-the-command-line).", "markdownDescription": "An authentication token. For Gitlab, this should be a [personal access token](https://docs.gitlab.com/ee/user/profile/personal_access_tokens.html). For Github, it should be a [Github personal access token](https://help.github.com/en/github/authenticating-to-github/creating-a-personal-access-token-for-the-command-line)." } }, "type": "object", "required": [ "token" ] }, "CreateMergeRequestActionConfig": { "properties": { "title": { "type": "string", "default": "Automated update of {{slug}} dependencies {{statusEmoji}}", "description": "Merge request title\n\nThis [handlebars](https://handlebarsjs.com/guide/#what-is-handlebars) template is passed the following context:\n\n```\n{\n \"slug\": \"myPm\",\n \"status\": \"myStatus\",\n \"statusEmoji\": \"✅\"\n}\n```\n", "markdownDescription": "Merge request title\n\nThis [handlebars](https://handlebarsjs.com/guide/#what-is-handlebars) template is passed the following context:\n\n```\n{\n \"slug\": \"myPm\",\n \"status\": \"myStatus\",\n \"statusEmoji\": \"✅\"\n}\n```\n" }, "additionalText": { "type": "string", "description": "Additional text to embed in the merge request description", "markdownDescription": "Additional text to embed in the merge request description" }, "assignees": { "items": { "type": "string" }, "type": "array", "default": [], "description": "Usernames to assign to the issue created. Note that Gitlab CE only allows one assignee.", "markdownDescription": "Usernames to assign to the issue created. Note that Gitlab CE only allows one assignee." }, "closeOpen": { "type": "boolean", "default": true, "description": "Close open merge requests that were created by Pmbot. This option prevents multiple merge requests open simultaneously when you don't have the time to merge them.", "markdownDescription": "Close open merge requests that were created by Pmbot. This option prevents multiple merge requests open simultaneously when you don't have the time to merge them." }, "squash": { "type": "boolean", "default": true, "description": "[GITLAB only] Whether commits of the merge request source branch should be squashed", "markdownDescription": "[GITLAB only] Whether commits of the merge request source branch should be squashed" }, "deleteSourceBranch": { "type": "boolean", "default": true, "description": "[GITLAB only] Whether the merge request source branch should be deleted", "markdownDescription": "[GITLAB only] Whether the merge request source branch should be deleted" }, "maintainerCanModify": { "type": "boolean", "default": true, "description": "[GITHUB only] Whether maintainers can modify the created pull request", "markdownDescription": "[GITHUB only] Whether maintainers can modify the created pull request" }, "token": { "minLength": 1, "type": "string", "description": "An authentication token. For Gitlab, this should be a [personal access token](https://docs.gitlab.com/ee/user/profile/personal_access_tokens.html). For Github, it should be a [Github personal access token](https://help.github.com/en/github/authenticating-to-github/creating-a-personal-access-token-for-the-command-line).", "markdownDescription": "An authentication token. For Gitlab, this should be a [personal access token](https://docs.gitlab.com/ee/user/profile/personal_access_tokens.html). For Github, it should be a [Github personal access token](https://help.github.com/en/github/authenticating-to-github/creating-a-personal-access-token-for-the-command-line)." } }, "type": "object", "required": [ "token" ] }, "MessageConfig": { "properties": { "from": { "minLength": 1, "type": "string", "description": "Sender's email. Be aware that some providers (e.g. OBVH) will silently ignore sending the email when the sender address does not match the username.", "markdownDescription": "Sender's email. Be aware that some providers (e.g. OBVH) will silently ignore sending the email when the sender address does not match the username." }, "to": { "type": "string", "minLength": 1, "description": "Recipient address(es)", "markdownDescription": "Recipient address(es)" }, "subject": { "type": "string", "default": "Automated update of {{slug}} dependencies {{statusEmoji}}", "description": "Email subject\n\nThis [handlebars](https://handlebarsjs.com/guide/#what-is-handlebars) template is passed the following context:\n\n```\n{\n \"slug\": \"myPm\",\n \"status\": \"myStatus\",\n \"statusEmoji\": \"✅\"\n}\n```\n", "markdownDescription": "Email subject\n\nThis [handlebars](https://handlebarsjs.com/guide/#what-is-handlebars) template is passed the following context:\n\n```\n{\n \"slug\": \"myPm\",\n \"status\": \"myStatus\",\n \"statusEmoji\": \"✅\"\n}\n```\n" } }, "type": "object", "required": [ "from", "to" ] }, "EmailActionConfig": { "properties": { "transportOptions": { "description": "Nodemailer [transport options](https://nodemailer.com/smtp/#general-options)", "markdownDescription": "Nodemailer [transport options](https://nodemailer.com/smtp/#general-options)" }, "messageConfig": { "$ref": "#/definitions/MessageConfig", "description": "Nodemailer [message configuration](https://nodemailer.com/message/). Allows you to override message configuration properties, except `html` and `text`.", "markdownDescription": "Nodemailer [message configuration](https://nodemailer.com/message/). Allows you to override message configuration properties, except `html` and `text`." }, "additionalText": { "type": "string", "description": "Additional text to embed in the email body", "markdownDescription": "Additional text to embed in the email body" } }, "type": "object", "required": [ "transportOptions", "messageConfig" ] }, "MattermostActionConfig": { "properties": { "url": { "minLength": 1, "type": "string", "description": "Mattermost [incoming webhook URL](https://docs.mattermost.com/developer/webhooks-incoming.html#simple-incoming-webhook)", "markdownDescription": "Mattermost [incoming webhook URL](https://docs.mattermost.com/developer/webhooks-incoming.html#simple-incoming-webhook)" }, "channels": { "items": { "type": "string" }, "type": "array", "description": "Channels where to send the message. Obsolete parameter when you have enabled **Lock to this channel** for the incoming webhook.", "markdownDescription": "Channels where to send the message. Obsolete parameter when you have enabled **Lock to this channel** for the incoming webhook." }, "title": { "type": "string", "default": "Automated update of {{slug}} dependencies {{statusEmoji}}", "description": "Message title\n\nThis [handlebars](https://handlebarsjs.com/guide/#what-is-handlebars) template is passed the following context:\n\n```\n{\n \"slug\": \"myPm\",\n \"status\": \"myStatus\",\n \"statusEmoji\": \"✅\"\n}\n```\n", "markdownDescription": "Message title\n\nThis [handlebars](https://handlebarsjs.com/guide/#what-is-handlebars) template is passed the following context:\n\n```\n{\n \"slug\": \"myPm\",\n \"status\": \"myStatus\",\n \"statusEmoji\": \"✅\"\n}\n```\n" }, "additionalText": { "type": "string", "description": "Additional text to embed in the message body", "markdownDescription": "Additional text to embed in the message body" } }, "type": "object", "required": [ "url" ] }, "SlackActionConfig": { "properties": { "url": { "minLength": 1, "type": "string", "description": "Slack webhook URL.\n\nTo get this URL:\n1. [Create](https://api.slack.com/apps?new_app=1) a custom Slack App. Fill in the form as follows:\n - *App Name*: `Pmbot`\n - *Development Slack Workspace*: Workspace where you want Pmbot to be integrated to\n2. Click \"Create App\". You are redirected to your app's page.\n3. Under menu section *Features*, select *Incoming Webhooks*, then toggle on *Activate Incoming Webhooks*. A new section named *Webhook URLs for Your Workspace* appears.\n4. Under section *Webhook URLs for Your Workspace*, click *Add New Webhook To Workspace*, then select the channel to which you want messages to be sent, for example `#pmbot`.\n5. Once added, copy the webhook URL and configure this action with it\n ", "markdownDescription": "Slack webhook URL.\n\nTo get this URL:\n1. [Create](https://api.slack.com/apps?new_app=1) a custom Slack App. Fill in the form as follows:\n - *App Name*: `Pmbot`\n - *Development Slack Workspace*: Workspace where you want Pmbot to be integrated to\n2. Click \"Create App\". You are redirected to your app's page.\n3. Under menu section *Features*, select *Incoming Webhooks*, then toggle on *Activate Incoming Webhooks*. A new section named *Webhook URLs for Your Workspace* appears.\n4. Under section *Webhook URLs for Your Workspace*, click *Add New Webhook To Workspace*, then select the channel to which you want messages to be sent, for example `#pmbot`.\n5. Once added, copy the webhook URL and configure this action with it\n " }, "title": { "type": "string", "default": "Automated update of {{slug}} dependencies {{statusEmoji}}", "description": "Slack message title\n\nThis [handlebars](https://handlebarsjs.com/guide/#what-is-handlebars) template is passed the following context:\n\n```\n{\n \"slug\": \"myPm\",\n \"status\": \"myStatus\",\n \"statusEmoji\": \"✅\"\n}\n```\n", "markdownDescription": "Slack message title\n\nThis [handlebars](https://handlebarsjs.com/guide/#what-is-handlebars) template is passed the following context:\n\n```\n{\n \"slug\": \"myPm\",\n \"status\": \"myStatus\",\n \"statusEmoji\": \"✅\"\n}\n```\n" }, "additionalText": { "type": "string", "description": "Additional text to embed in the slack message body", "markdownDescription": "Additional text to embed in the slack message body" } }, "type": "object", "required": [ "url" ] }, "WebhookHeader": { "properties": { "name": { "minLength": 1, "type": "string", "description": "Header name", "markdownDescription": "Header name" }, "value": { "minLength": 1, "type": "string", "description": "Header value", "markdownDescription": "Header value" } }, "type": "object", "required": [ "name", "value" ] }, "WebhookActionConfig": { "properties": { "url": { "minLength": 1, "type": "string", "description": "Url to call", "markdownDescription": "Url to call" }, "extraData": { "description": "Data that will be appended to the webhook payload in property \"extraData\"", "markdownDescription": "Data that will be appended to the webhook payload in property \"extraData\"" }, "headers": { "items": { "$ref": "#/definitions/WebhookHeader" }, "type": "array", "description": "Additional headers to append to the HTTP request", "markdownDescription": "Additional headers to append to the HTTP request" } }, "type": "object", "required": [ "url" ] }, "BumpRule": { "properties": { "pattern": { "type": "string", "description": "A Javascript regular expression.", "markdownDescription": "A Javascript regular expression." }, "bump": { "enum": [ "major", "minor", "patch" ], "type": "string" } }, "type": "object", "required": [ "pattern", "bump" ] }, "GenericBumpConfig": { "properties": { "defaultBumpRule": { "enum": [ "major", "minor", "patch" ], "type": "string", "description": "Default rule for bumping dependencies. Used unless a specific rule is configured.", "markdownDescription": "Default rule for bumping dependencies. Used unless a specific rule is configured." }, "bumpRules": { "items": { "$ref": "#/definitions/BumpRule" }, "type": "array", "default": [], "description": "Bump rules for specific dependencies. The first rule to match is used. When no custom rule is found here, we fallback the default rule.", "markdownDescription": "Bump rules for specific dependencies. The first rule to match is used. When no custom rule is found here, we fallback the default rule." } }, "type": "object" }, "GoPmaConfig": { "properties": { "bumpConfig": { "description": "Bump configuration. Patterns are matched against package names.", "markdownDescription": "Bump configuration. Patterns are matched against package names." } }, "type": "object" }, "MavenPmaConfig": { "properties": { "bumpConfig": { "description": "Bump configuration. Patterns are matched against dependency names formed as \"<groupId>:<artifactId>\" (e.g. \"javax.xml.bind:jaxb-api\").", "markdownDescription": "Bump configuration. Patterns are matched against dependency names formed as \"<groupId>:<artifactId>\" (e.g. \"javax.xml.bind:jaxb-api\")." }, "settingsPath": { "description": "Path to a maven `settings.xml` file which contains credentials for private repositories.", "markdownDescription": "Path to a maven `settings.xml` file which contains credentials for private repositories." } }, "type": "object" }, "PmbotPluginDeclaration": { "properties": { "name": { "type": "string", "minLength": 1 }, "config": {} }, "type": "object", "required": [ "name" ] }, "ActionPluginDeclaration": { "properties": { "on": { "items": { "enum": [ "running", "pending", "interrupted", "success", "partial", "failure", "unknown" ], "type": "string" }, "type": "array", "default": [], "description": "When to trigger this action", "markdownDescription": "When to trigger this action" }, "name": { "type": "string", "minLength": 1 }, "config": {} }, "type": "object", "required": [ "name" ] }, "CiConfig": { "properties": { "enabled": { "type": "boolean", "default": true, "description": "When false, all updates are made at once and we do not wait for CI feedback.", "markdownDescription": "When false, all updates are made at once and we do not wait for CI feedback." } }, "type": "object" }, "DependencyUpdateCommitMessageTemplateContext": { "properties": { "dependency": { "type": "string", "description": "Name of the dependency", "markdownDescription": "Name of the dependency" }, "versionBefore": { "type": "string", "description": "Version of the dependency before it was updated", "markdownDescription": "Version of the dependency before it was updated" }, "versionAfter": { "type": "string", "description": "Version of the dependency after it was updated", "markdownDescription": "Version of the dependency after it was updated" } }, "type": "object", "required": [ "dependency", "versionBefore", "versionAfter" ] }, "PackageManagerUpdateConfig": { "properties": { "packageManager": { "$ref": "#/definitions/PmbotPluginDeclaration", "oneOf": [ { "type": "object", "properties": { "name": { "const": "npm" }, "config": { "type": "object" } } }, { "type": "object", "properties": { "name": { "const": "maven" }, "config": { "$ref": "#/definitions/MavenPmaConfig" } } }, { "type": "object", "properties": { "name": { "const": "go" }, "config": { "$ref": "#/definitions/GoPmaConfig" } } }, { "type": "object", "properties": { "name": { "const": "composer" }, "config": "object" } }, { "type": "object", "properties": { "name": { "const": "ruby" }, "config": "object" } } ], "description": "Package manager to use for this update", "markdownDescription": "Package manager to use for this update" }, "ci": { "$ref": "#/definitions/CiConfig", "description": "CI configuration for this update", "markdownDescription": "CI configuration for this update" }, "branchPrefix": { "type": "string", "default": "update/", "description": "Prefix of the update branch", "markdownDescription": "Prefix of the update branch" }, "commitMessage": { "type": "string", "default": "chore: update {{dependency}} from {{versionBefore}} to {{versionAfter}}", "maxLength": 128, "description": "Commit message template\n\nThis [handlebars](https://handlebarsjs.com/guide/#what-is-handlebars) template is passed the following context:\n\n```\n{\n \"dependency\": \"chalk\",\n \"versionBefore\": \"1.0.0\",\n \"versionAfter\": \"1.0.1\"\n}\n```\n", "markdownDescription": "Commit message template\n\nThis [handlebars](https://handlebarsjs.com/guide/#what-is-handlebars) template is passed the following context:\n\n```\n{\n \"dependency\": \"chalk\",\n \"versionBefore\": \"1.0.0\",\n \"versionAfter\": \"1.0.1\"\n}\n```\n" }, "ignore": { "items": { "type": "string" }, "type": "array", "default": [], "description": "List of dependencies to ignore. Each item should be a Javascript regular expression.", "markdownDescription": "List of dependencies to ignore. Each item should be a Javascript regular expression." }, "actions": { "items": { "$ref": "#/definitions/ActionPluginDeclaration", "oneOf": [ { "type": "object", "properties": { "name": { "const": "create-issue" }, "config": { "$ref": "#/definitions/CreateIssueActionConfig" } } }, { "type": "object", "properties": { "name": { "const": "create-merge-request" }, "config": { "$ref": "#/definitions/CreateMergeRequestActionConfig" } } }, { "type": "object", "properties": { "name": { "const": "auto-merge" }, "config": { "$ref": "#/definitions/AutoMergeActionConfig" } } }, { "type": "object", "properties": { "name": { "const": "webhook" }, "config": { "$ref": "#/definitions/WebhookActionConfig" } } }, { "type": "object", "properties": { "name": { "const": "slack" }, "config": { "$ref": "#/definitions/SlackActionConfig" } } }, { "type": "object", "properties": { "name": { "const": "mattermost" }, "config": { "$ref": "#/definitions/MattermostActionConfig" } } }, { "type": "object", "properties": { "name": { "const": "email" }, "config": { "$ref": "#/definitions/EmailActionConfig" } } } ] }, "type": "array", "default": [], "description": "Actions to execute after the update", "markdownDescription": "Actions to execute after the update" }, "keepUpdateBranchOnFailure": { "type": "boolean", "description": "When `true`, the update branch will **not** be deleted when the package manager update status is `failure`.", "markdownDescription": "When `true`, the update branch will **not** be deleted when the package manager update status is `failure`." } }, "type": "object", "required": [ "packageManager" ] } } }
strmprivacy.api.entities.v1.Schema.SimpleSchemaDefinition.json
{ "$schema": "http://json-schema.org/draft-07/schema#", "$ref": "#/definitions/strmprivacy.api.entities.v1.Schema.SimpleSchemaDefinition", "definitions": { "strmprivacy.api.entities.v1.Schema.SimpleSchemaDefinition": { "type": "object", "properties": { "avroName": { "$ref": "#/definitions/strmprivacy.api.entities.v1.Schema.SimpleSchemaDefinition/definitions/avro_name" }, "doc": { "$ref": "#/definitions/strmprivacy.api.entities.v1.Schema.SimpleSchemaDefinition/definitions/doc" }, "name": { "$ref": "#/definitions/strmprivacy.api.entities.v1.Schema.SimpleSchemaDefinition/definitions/name" }, "namespace": { "$ref": "#/definitions/strmprivacy.api.entities.v1.Schema.SimpleSchemaDefinition/definitions/namespace" }, "nodes": { "$ref": "#/definitions/strmprivacy.api.entities.v1.Schema.SimpleSchemaDefinition/definitions/nodes" } }, "patternProperties": { "^avro_name$": { "$ref": "#/definitions/strmprivacy.api.entities.v1.Schema.SimpleSchemaDefinition/definitions/avro_name" } }, "additionalProperties": { "title": "Unknown field" }, "definitions": { "avro_name": { "oneOf": [ { "type": "string" }, { "type": "null" } ], "title": "string avro_name = 5;", "description": "avro compatible name set by creator OR derived from name (thus ignore_empty = true)", "default": "" }, "doc": { "oneOf": [ { "type": "string" }, { "type": "null" } ], "title": "string doc = 3;", "default": "" }, "name": { "oneOf": [ { "type": "string" }, { "type": "null" } ], "title": "string name = 1;", "description": "constraints: printable characters", "default": "" }, "namespace": { "oneOf": [ { "type": "string" }, { "type": "null" } ], "title": "string namespace = 2;", "description": "constraints:\ndot separated sequence of name constraints\nmust be Avro compatible. When absent becomes <handle>.<name>.v<version>", "default": "" }, "nodes": { "oneOf": [ { "type": "array", "items": { "$ref": "#/definitions/strmprivacy.api.entities.v1.SimpleSchemaNode", "title": "strmprivacy.api.entities.v1.SimpleSchemaNode", "default": { } } }, { "type": "null" } ], "title": "repeated strmprivacy.api.entities.v1.SimpleSchemaNode nodes = 4;", "default": [ { } ] } }, "description": "constraints: overall size < 100000 TBD" }, "strmprivacy.api.entities.v1.SimpleSchemaNode": { "type": "object", "properties": { "avroName": { "$ref": "#/definitions/strmprivacy.api.entities.v1.SimpleSchemaNode/definitions/avro_name" }, "doc": { "$ref": "#/definitions/strmprivacy.api.entities.v1.SimpleSchemaNode/definitions/doc" }, "name": { "$ref": "#/definitions/strmprivacy.api.entities.v1.SimpleSchemaNode/definitions/name" }, "nodes": { "$ref": "#/definitions/strmprivacy.api.entities.v1.SimpleSchemaNode/definitions/nodes" }, "repeated": { "$ref": "#/definitions/strmprivacy.api.entities.v1.SimpleSchemaNode/definitions/repeated" }, "required": { "$ref": "#/definitions/strmprivacy.api.entities.v1.SimpleSchemaNode/definitions/required" }, "type": { "$ref": "#/definitions/strmprivacy.api.entities.v1.SimpleSchemaNode/definitions/type" } }, "patternProperties": { "^avro_name$": { "$ref": "#/definitions/strmprivacy.api.entities.v1.SimpleSchemaNode/definitions/avro_name" } }, "additionalProperties": { "title": "Unknown field" }, "definitions": { "avro_name": { "oneOf": [ { "type": "string" }, { "type": "null" } ], "title": "string avro_name = 7;", "description": "avro compatible name set by creator OR derived from name", "default": "" }, "doc": { "oneOf": [ { "type": "string" }, { "type": "null" } ], "title": "string doc = 6;", "description": "constraints:\nsize < 5000", "default": "" }, "name": { "oneOf": [ { "type": "string" }, { "type": "null" } ], "title": "string name = 2;", "description": "constraints: same as SimpleSchemaDefinition", "default": "" }, "nodes": { "oneOf": [ { "type": "array", "items": { "$ref": "#/definitions/strmprivacy.api.entities.v1.SimpleSchemaNode", "title": "strmprivacy.api.entities.v1.SimpleSchemaNode", "default": { } } }, { "type": "null" } ], "title": "repeated strmprivacy.api.entities.v1.SimpleSchemaNode nodes = 5;", "default": [ { } ] }, "repeated": { "oneOf": [ { "type": "boolean" }, { "type": "null" } ], "title": "bool repeated = 3;", "default": false }, "required": { "oneOf": [ { "type": "boolean" }, { "type": "null" } ], "title": "bool required = 4;", "default": false }, "type": { "oneOf": [ { "$ref": "#/definitions/strmprivacy.api.entities.v1.SimpleSchemaNodeType" }, { "type": "null" } ], "title": "strmprivacy.api.entities.v1.SimpleSchemaNodeType type = 1;", "default": "SIMPLE_SCHEMA_NODE_TYPE_UNSPECIFIED" } } }, "strmprivacy.api.entities.v1.SimpleSchemaNodeType": { "enum": [ "SIMPLE_SCHEMA_NODE_TYPE_UNSPECIFIED", 0, "STRING", 1, "BOOLEAN", 2, "FLOAT", 3, "INTEGER", 4, "LONG", 5, "NODE", 10 ], "markdownEnumDescriptions": [ "(or 0) ", "(or \"SIMPLE_SCHEMA_NODE_TYPE_UNSPECIFIED\") ", "(or 1) ", "(or \"STRING\") ", "(or 2) ", "(or \"BOOLEAN\") ", "(or 3) ", "(or \"FLOAT\") ", "(or 4) ", "(or \"INTEGER\") ", "(or 5) ", "(or \"LONG\") ", "(or 10) ", "(or \"NODE\") " ] } }, "title": "strmprivacy.api.entities.v1.Schema.SimpleSchemaDefinition" }
iobroker.json
{ "$schema": "http://json-schema.org/draft-07/schema#", "$ref": "#/definitions/IoBJson", "definitions": { "IoBJson": { "type": "object", "properties": { "system": { "type": "object", "properties": { "memoryLimitMB": { "type": "number", "description": "do not use more than memory limit mb by ioB process (0 to deactivate)" }, "hostname": { "type": "string", "description": "if empty, determine use real hostname" }, "statisticsInterval": { "type": "number", "description": "Interval how often the counters for input/output in adapters and controller will be updated in ms" }, "// statisticsInterval": { "type": "string" }, "checkDiskInterval": { "type": "number", "description": "Interval how often the disk size will be checked in ms" }, "// checkDiskInterval": { "type": "string" }, "instanceStartInterval": { "type": "number", "description": "interval to wait between multiple instances starts" }, "compact": { "type": "boolean", "description": "Controller will try to start the instances as a part of the same process. No spawn will be done. Only by adapters that support it and have flag compact flag in io-package.json" }, "// compact": { "type": "string" }, "allowShellCommands": { "type": "boolean", "description": "Allow execution of \"shell\" sendToHost commands" }, "// allowShellCommands": { "type": "string" }, "memLimitWarn": { "type": "number", "description": "If the available RAM is below this threshold on adapter start, a warning will be logged." }, "// memLimitWarn": { "type": "string" }, "memLimitError": { "type": "number", "description": "If the available RAM is below this threshold on adapter start, an error will be logged." }, "// memLimitError": { "type": "string" } }, "required": [ "memoryLimitMB", "hostname", "statisticsInterval", "// statisticsInterval", "checkDiskInterval", "// checkDiskInterval", "instanceStartInterval", "compact", "// compact", "allowShellCommands", "// allowShellCommands", "memLimitWarn", "// memLimitWarn", "memLimitError", "// memLimitError" ], "additionalProperties": false }, "multihostService": { "type": "object", "properties": { "enabled": { "type": "boolean" }, "secure": { "type": "boolean" }, "password": { "type": "string" } }, "required": [ "enabled", "secure", "password" ], "additionalProperties": false }, "objects": { "$ref": "#/definitions/ObjectsDatabaseOptions" }, "states": { "$ref": "#/definitions/DatabaseOptions" }, "log": { "type": "object", "properties": { "level": { "type": "string" }, "maxDays": { "type": "number" }, "noStdout": { "type": "boolean" }, "transport": { "type": "object" } }, "required": [ "level", "maxDays", "noStdout", "transport" ], "additionalProperties": false }, "dataDir": { "type": "string", "description": "Always relative to iobroker.js-controller/" }, "// dataDir": { "type": "string" }, "plugins": { "type": "object", "additionalProperties": { "type": "object", "properties": { "enabled": { "type": "boolean" } }, "required": [ "enabled" ], "additionalProperties": {} } }, "// dnsResolution": { "type": "string" }, "dnsResolution": { "type": "string", "enum": [ "verbatim", "ipv4first" ], "description": "Use 'verbatim' for ipv6 first, else use 'ipv4first'" } }, "required": [ "system", "multihostService", "objects", "states", "log", "dataDir", "// dataDir", "plugins", "// dnsResolution", "dnsResolution" ], "additionalProperties": false, "description": "The ioBroker global config" }, "ObjectsDatabaseOptions": { "type": "object", "properties": { "type": { "type": "string", "enum": [ "jsonl", "file", "redis" ], "description": "Possible values: 'file' - [port 9001], 'jsonl' - [port 9001], 'redis' - [port 6379 or 26379 for sentinel]." }, "// type": { "type": "string" }, "host": { "type": "string" }, "port": { "type": "number" }, "connectTimeout": { "type": "number" }, "writeFileInterval": { "type": "number" }, "dataDir": { "type": "string" }, "options": { "type": "object", "properties": { "auth_pass": { "type": "string" }, "retry_max_delay": { "type": "number" }, "retry_max_count": { "type": "number" }, "db": { "type": "number" }, "family": { "type": "number" } }, "required": [ "auth_pass", "retry_max_delay", "retry_max_count", "db", "family" ], "additionalProperties": false }, "backup": { "$ref": "#/definitions/DatabaseBackupOptions" }, "jsonlOptions": { "$ref": "#/definitions/JsonlOptions" }, "noFileCache": { "type": "boolean" }, "maxQueue": { "type": "number" } }, "required": [ "// type", "backup", "connectTimeout", "dataDir", "host", "jsonlOptions", "maxQueue", "noFileCache", "options", "port", "type", "writeFileInterval" ], "additionalProperties": false }, "DatabaseBackupOptions": { "type": "object", "properties": { "disabled": { "type": "boolean" }, "files": { "type": "number", "description": "Minimal number of backup files, after the deletion will be executed according to backupTime settings" }, "// files": { "type": "string" }, "hours": { "type": "number", "description": "All backups older than configured hours will be deleted. But only if the number of files is greater than of backupNumber" }, "// hours": { "type": "string" }, "period": { "type": "number", "description": "by default backup every 2 hours. Time is in minutes. To disable backup set the value to 0" }, "// period": { "type": "string" }, "path": { "type": "string", "description": "Absolute path to backup directory or empty to backup in data directory" }, "// path": { "type": "string" } }, "required": [ "disabled", "files", "// files", "hours", "// hours", "period", "// period", "path", "// path" ], "additionalProperties": false }, "JsonlOptions": { "type": "object", "properties": { "// autoCompress (1)": { "type": "string" }, "// autoCompress (2)": { "type": "string" }, "// autoCompress (3)": { "type": "string" }, "autoCompress": { "type": "object", "properties": { "sizeFactor": { "type": "number" }, "sizeFactorMinimumSize": { "type": "number" } }, "required": [ "sizeFactor", "sizeFactorMinimumSize" ], "additionalProperties": false, "description": "The JSONL DB is append-only and will contain unnecessary entries after a while. It will be compressed when the uncompressed size is >= size * sizeFactor AND >= sizeFactorMinimumSize Note that too low values here will cause the DB to be rewritten often." }, "// ignoreReadErrors": { "type": "string" }, "ignoreReadErrors": { "type": "boolean", "const": true, "description": "If single lines in the DB are corrupted, they can be ignored without losing the whole DB." }, "// throttleFS (1)": { "type": "string" }, "// throttleFS (2)": { "type": "string" }, "throttleFS": { "type": "object", "properties": { "// intervalMs": { "type": "string" }, "intervalMs": { "type": "number", "description": "Write to the database file no more than every intervalMs milliseconds." }, "// maxBufferedCommands": { "type": "string" }, "maxBufferedCommands": { "type": "number", "description": "Force writing after this many changes have been buffered. This reduces memory consumption and data loss in case of a crash." } }, "required": [ "// intervalMs", "intervalMs", "// maxBufferedCommands", "maxBufferedCommands" ], "additionalProperties": false, "description": "By default, the database immediately writes to the database file. Write accesses can be reduced using the throttleFS option. Be aware that buffered changes will be lost in case the process crashes" } }, "required": [ "// autoCompress (1)", "// autoCompress (2)", "// autoCompress (3)", "autoCompress", "// ignoreReadErrors", "ignoreReadErrors", "// throttleFS (1)", "// throttleFS (2)", "throttleFS" ], "additionalProperties": false }, "DatabaseOptions": { "type": "object", "properties": { "type": { "type": "string", "enum": [ "jsonl", "file", "redis" ], "description": "Possible values: 'file' - [port 9001], 'jsonl' - [port 9001], 'redis' - [port 6379 or 26379 for sentinel]." }, "// type": { "type": "string" }, "host": { "type": "string" }, "port": { "type": "number" }, "connectTimeout": { "type": "number" }, "writeFileInterval": { "type": "number" }, "dataDir": { "type": "string" }, "options": { "type": "object", "properties": { "auth_pass": { "type": "string" }, "retry_max_delay": { "type": "number" }, "retry_max_count": { "type": "number" }, "db": { "type": "number" }, "family": { "type": "number" } }, "required": [ "auth_pass", "retry_max_delay", "retry_max_count", "db", "family" ], "additionalProperties": false }, "backup": { "$ref": "#/definitions/DatabaseBackupOptions" }, "jsonlOptions": { "$ref": "#/definitions/JsonlOptions" } }, "required": [ "type", "// type", "host", "port", "connectTimeout", "writeFileInterval", "dataDir", "options", "backup", "jsonlOptions" ], "additionalProperties": false } } }
lgtm.json
{ "$comment": "https://lgtm.com/help/lgtm/lgtm.yml-configuration-file", "$schema": "http://json-schema.org/draft-04/schema#", "definitions": { "queryItem": { "title": "Query", "type": "object", "properties": { "id": { "title": "ID", "description": "Use to identify a specific query whose results you want to include or exclude from display on LGTM.", "type": "string" }, "severity": { "title": "Severity", "description": "Use to specify a single level of severity (error, warning or recommendation) for queries whose results you want to include or exclude from display.", "type": "string" }, "tags": { "title": "Tags", "description": "Use to specify one or more tags for queries whose results you want to include or exclude from display.", "type": "array", "items": { "title": "Tag", "type": "string" } } } } }, "description": "Configuration file for lgtm, for continuous security analysis.", "id": "https://json.schemastore.org/lgtm.json", "properties": { "path_classifiers": { "title": "Path Classifiers", "description": "Defines the tag that you want to modify. Usually this is a built-in tag, but you can define your own tags.", "type": "object", "additionalProperties": { "description": "Classify files on this path with the parent tag.", "type": "array", "items": { "type": ["string", "object"], "properties": { "exclude": { "title": "Exclude", "description": "Do not classify files on this path with the parent tag.", "type": "string" } } } } }, "queries": { "title": "Queries", "type": ["array", "null"], "items": { "title": "Query", "properties": { "exclude": { "title": "Exclude", "description": "Hide the results for queries with the specified properties.", "$ref": "#/definitions/queryItem" }, "include": { "title": "Include", "description": "Show the results for queries with the specified properties.", "$ref": "#/definitions/queryItem" } } } }, "extraction": { "title": "Extraction", "type": "object", "additionalProperties": { "type": "object", "properties": { "prepare": { "title": "Prepare", "description": "Customizable step used by all languages.", "type": "object", "properties": { "packages": { "title": "Packages", "description": "One or more packages to install.", "type": "array", "items": { "title": "Package", "type": "string" } } } }, "after_prepare": { "title": "After Prepare", "description": "Customizable step used by all languages.", "type": "array", "items": { "type": "string" } }, "before_index": { "title": "Before Index", "description": "Customizable step used by all languages.", "type": "array", "items": { "type": "string" } }, "index": { "title": "Index", "description": "Customizable step used by all languages.", "type": "object", "properties": { "all_solutions": { "title": "All Solutions", "description": "Specify that all project or solution files should be used for extraction.", "type": "boolean", "default": false }, "build_command": { "title": "Build Command", "type": ["array", "string"], "items": { "type": "string" } }, "buildless": { "title": "Buildless", "description": "Specify whether or not to extract the codebase without building the code.", "type": "boolean", "default": false }, "dotnet": { "title": ".NET", "type": "object", "properties": { "arguments": { "title": "Arguments", "description": "Specify a list of additional arguments to dotnet build.", "type": "array", "items": { "title": "Argument", "type": "string" }, "default": [] }, "version": { "title": "Version", "description": "Specify the version of the .NET Core SDK to use.", "type": "string" } } }, "exclude": { "title": "Exclude", "description": "Specify a list of files and folders to exclude from extraction. Each path is specified by defining paths relative to LGTM_SRC.", "type": "array", "items": { "type": "string" } }, "filetypes": { "title": "Filetypes", "description": "Specify additional file types to extract.", "additionalProperties": { "type": "string" } }, "gradle": { "title": "Gradle", "type": "object", "properties": { "version": { "title": "Version", "type": ["string", "number"] } } }, "include": { "title": "Include", "description": "Specify a list of files and folders to scan for files to extract.", "type": "array", "items": { "type": "string" } }, "java_version": { "title": "Java Version", "description": "Specify the Java version required to build the project.", "type": ["string", "number"] }, "maven": { "title": "Maven", "description": "Specify Maven settings to use by specifying one or more of the maven subproperties detailed below.", "type": "object", "properties": { "settings_file": { "title": "Settings File", "description": "Specify the path (absolute or relative) of a Maven settings file to use.", "type": "string" }, "toolchains_file": { "title": "Toolchains File", "description": "Specify the path of a Maven toolchains file to use.", "type": "string" }, "version": { "title": "Version", "description": "Specify the required Maven version.", "type": ["string", "number"] } } }, "msbuild": { "title": "MSBuild", "type": "object", "properties": { "arguments": { "title": "Arguments", "description": "Specify a list of additional arguments to MSBuild.", "type": "array", "items": { "title": "Argument", "type": "string" } }, "configuration": { "title": "Configuration", "description": "Specify the MSBuild configuration to use, for example, debug or release.", "type": "string" }, "platform": { "title": "Platform", "description": "Specify the platform to target, for example: x86, x64, or Any CPU.", "type": "string" }, "target": { "title": "Target", "description": "Specify the MSBuild target.", "type": "string", "default": "rebuild" } } }, "nuget_restore": { "title": "NuGet Restore", "description": "Specify whether or not to perform a NuGet restore for extraction.", "type": "boolean", "default": true }, "properties_files": { "title": "Properties Files", "description": "Specify whether .properties files are extracted.", "type": "boolean", "default": false }, "solution": { "title": "Solution", "description": "Specify a list of one or more project or solution files for extraction.", "type": "array", "items": { "type": "string" } }, "typescript": { "title": "TypeScript", "description": "pecify how TypeScript files should be extracted.", "enum": ["none", "basic", "full"], "default": "full" }, "xml_mode": { "title": "XML Mode", "description": "Specify how XML files should be extracted.", "enum": ["all", "default", "disabled"] } } }, "configure": { "title": "Configure", "description": "Customizable step used only by C/C++ extraction.", "type": "object", "properties": { "command": { "title": "Command", "description": "Override the default process by specifying a list of commands to run to generate the build configuration.", "type": ["array", "null"], "items": { "type": "string" } } } }, "python_setup": { "title": "Python Setup", "description": "This step is used only by Python blocks. It sets up the Python interpreter and virtual environment, ready for the index step to extract the codebase.", "type": "object", "properties": { "exclude_requirements": { "title": "Exclude Requirements", "description": "Specify packages to exclude from extraction/analysis.", "type": "array", "items": { "title": "Package", "type": "string" } }, "requirements": { "title": "Requirements", "description": "Specify a list of pip packages to install. If any of these packages cannot be installed, the extraction will fail.", "type": "array", "items": { "title": "Package", "type": "string" } }, "requirements_files": { "title": "Requirement Files", "description": "Specify a list of requirements text files to use to set up the environment, or false for none.", "type": ["array", "boolean"], "items": { "type": "string" } }, "setup_py": { "title": "Setup Python", "description": "Specify a setup.py file to use to set up the environment, or false for none.", "type": "string" }, "version": { "title": "Version", "description": "Override the version of the Python interpreter used for setup and extraction.", "type": ["string", "number"], "default": 3 } } } } } } }, "type": "object" }
pulumi.json
{ "$defs": { "pluginOptions": { "title": "PluginOptions", "type": "object", "additionalProperties": false, "required": ["name", "path"], "properties": { "name": { "type": "string", "description": "Name of the plugin" }, "path": { "type": "string", "description": "Path to the plugin folder" }, "version": { "type": "string", "description": "Version of the plugin, if not set, will match any version the engine requests." } } }, "simpleConfigType": { "title": "SimpleConfigType", "enum": ["string", "integer", "boolean", "array"] }, "configItemsType": { "type": "object", "required": ["type"], "properties": { "type": { "oneOf": [ { "$ref": "#/$defs/simpleConfigType" }, { "$ref": "#/$defs/configItemsType" } ] }, "items": { "$ref": "#/$defs/configItemsType" } }, "if": { "properties": { "type": { "const": "array" } } }, "then": {} }, "configTypeDeclaration": { "title": "ConfigTypeDeclaration", "type": "object", "additionalProperties": false, "properties": { "type": { "$ref": "#/$defs/simpleConfigType" }, "items": { "$ref": "#/$defs/configItemsType" }, "description": { "type": "string" }, "secret": { "type": "boolean" }, "default": {}, "value": {} } } }, "$id": "https://json.schemastore.org/pulumi.json", "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": true, "description": "A schema for Pulumi project files.", "properties": { "name": { "description": "Name of the project containing alphanumeric characters, hyphens, underscores, and periods.", "type": "string", "minLength": 1 }, "description": { "description": "Description of the project.", "type": ["string", "null"] }, "author": { "description": "Author is an optional author that created this project.", "type": ["string", "null"] }, "website": { "description": "Website is an optional website for additional info about this project.", "type": ["string", "null"] }, "license": { "description": "License is the optional license governing this project's usage.", "type": ["string", "null"] }, "runtime": { "title": "ProjectRuntimeInfo", "oneOf": [ { "title": "Name", "type": "string", "minLength": 1 }, { "type": "object", "properties": { "name": { "title": "Name", "type": "string", "minLength": 1 }, "options": { "title": "Options", "type": "object", "additionalProperties": true } }, "additionalProperties": false } ] }, "main": { "description": "Path to the Pulumi program. The default is the working directory.", "type": ["string", "null"] }, "config": { "description": "A map of configuration keys to their types. Using config directory location relative to the location of Pulumi.yaml is a deprecated use of this key. Use stackConfigDir instead.", "type": ["object", "null"], "properties": { "secret": { "description": "If true this configuration value should be encrypted.", "type": "boolean", "default": false } }, "additionalProperties": { "oneOf": [ { "type": "string" }, { "type": "integer" }, { "type": "boolean" }, { "type": "array" }, { "$ref": "#/$defs/configTypeDeclaration" } ] } }, "stackConfigDir": { "description": "Config directory location relative to the location of Pulumi.yaml.", "type": ["string", "null"] }, "backend": { "description": "Backend of the project.", "type": ["object", "null"], "properties": { "url": { "description": "URL is optional field to explicitly set backend url", "type": "string" } }, "additionalProperties": false }, "options": { "description": "Additional project options.", "type": ["object", "null"], "properties": { "refresh": { "description": "Set to \"always\" to refresh the state before performing a Pulumi operation.", "type": "string", "const": "always" } }, "additionalProperties": false }, "template": { "title": "ProjectTemplate", "description": "ProjectTemplate is a Pulumi project template manifest.", "type": ["object", "null"], "properties": { "description": { "description": "Description of the template.", "type": ["string", "null"] }, "quickstart": { "description": "Quickstart contains optional text to be displayed after template creation.", "type": ["string", "null"] }, "important": { "description": "Important indicates the template is important and should be listed by default.", "type": ["boolean", "null"] }, "config": { "description": "Config to apply to each stack in the project.", "type": ["object", "null"], "additionalProperties": { "type": "object", "properties": { "description": { "description": "Description of the config.", "type": ["string", "null"] }, "default": { "description": "Default value of the config." }, "secret": { "description": "Boolean indicating if the configuration is labeled as a secret.", "type": ["boolean", "null"] } } } } }, "additionalProperties": false }, "plugins": { "description": "Override for the plugin selection. Intended for use in developing pulumi plugins.", "type": "object", "properties": { "providers": { "description": "Plugins for resource providers.", "type": "array", "items": { "$ref": "#/$defs/pluginOptions" } }, "analyzers": { "description": "Plugins for policy analyzers.", "type": "array", "items": { "$ref": "#/$defs/pluginOptions" } }, "languages": { "description": "Plugins for languages.", "type": "array", "items": { "$ref": "#/$defs/pluginOptions" } } } } }, "required": ["name", "runtime"], "title": "Pulumi Project", "type": "object" }
mta.json
{ "$comment": "Based on https://github.wdf.sap.corp/mta/spec/blob/master/schemas/v3/v3.3/mta-schema.yaml", "$id": "http://example.com/mta.schema.json", "$schema": "http://json-schema.org/draft-07/schema#", "definitions": { "generic-memory": { "type": "string", "pattern": "^[1-9][0-9]*(M|MB|G|GB|m|mb|g|gb)$" }, "properties": { "type": "object" }, "properties-metadata": { "type": "object", "properties": { "overwritable": { "type": "boolean", "default": true }, "optional": { "type": "boolean", "default": false }, "datatype": { "enum": ["str", "int", "float", "bool"], "type": "string", "default": "str" } } }, "parameters": { "type": "object" }, "parameters-metadata": { "type": "object", "properties": { "overwritable": { "type": "boolean", "default": true }, "optional": { "type": "boolean", "default": false } } }, "includes": { "type": "array", "description": "It is possible to define parameters in external files. The \"includes\" section is used to point to those files.", "items": { "type": "object", "required": ["name", "path"], "properties": { "name": { "description": "The name of an \"includes\" section. This name is used by a builder to generate a parameter section in the deployment descriptor.", "type": "string" }, "path": { "description": "A path pointing to a file that contains a map of parameters, either in JSON or in YAML format.", "type": "string" } } } }, "hooks": { "type": "array", "items": { "type": "object", "required": ["name"], "properties": { "name": { "description": "An internal name which can be used for documentation purposes and shown by the deployer.", "type": "string", "pattern": "^[A-Za-z0-9_\\-\\.]+$" }, "type": { "description": "Defines the type of action that should be executed by the deployer.", "type": "string", "enum": ["task"] }, "phases": { "description": "A list of strings that define the points at which the hook must be executed.", "type": "array", "items": { "type": "string", "enum": [ "application.before-stop.live", "application.before-stop.idle", "application.after-stop.live", "application.after-stop.idle" ] } }, "parameters": { "description": "Configuration parameters that are used when executing the hook to the target runtime environment.", "$ref": "#/definitions/hooks-parameters" }, "parameters-metadata": { "description": "Additional information about the hook's parameters.", "$ref": "#/definitions/properties-metadata" }, "requires": { "description": "List of names either matching a resource name or a provided dependency name provided within the same MTA that are required by this hook.", "type": "array", "items": { "type": "object", "required": ["name"], "properties": { "name": { "description": "An MTA internal name which must match either a provided name, or a resource name within the same MTA.", "type": "string", "pattern": "^[A-Za-z0-9_\\-\\.]+$" }, "parameters": { "description": "Parameters can be used to influence the behavior of tools which interpret this descriptor. Parameters are not made available to the hook at runtime. Provided property values can be accessed by \"~{<provided-property-name>}\". Such expressions can be part of an arbitrary string", "type": "object" }, "parameters-metadata": { "description": "Additional information about the hook's parameters.", "$ref": "#/definitions/properties-metadata" } } } } } } }, "hooks-parameters": { "type": "object", "required": ["command"], "properties": { "name": { "description": "Defines the name of the Cloud Foundry task that should be executed.", "type": "string" }, "command": { "description": "Defines the actual command that is executed as a Cloud Foundry task.", "type": "string" }, "memory": { "description": "Defines the memory that is available to the Cloud Foundry task.", "$ref": "#/definitions/generic-memory" }, "disk-quota": { "description": "Defines the disk space that is available to the Cloud Foundry task.", "$ref": "#/definitions/generic-memory" } } } }, "description": "MTA DESCRIPTOR SCHEMA", "properties": { "_schema-version": { "description": "The schema version that is being used for authoring a descriptor. The schema version should comply with the semantic versioning standard.", "type": "string" }, "ID": { "description": "An application ID, that may contain any number of unicode characters and should be unique in the target runtime environment.", "type": "string", "pattern": "^[A-Za-z0-9_\\-\\.]+$" }, "description": { "description": "A free text describing this application.", "type": "string" }, "version": { "description": "The application version that should comply with the semantic versioning standard.", "type": "string", "pattern": "^(0|[1-9]\\d*)\\.(0|[1-9]\\d*)\\.(0|[1-9]\\d*)(-(0|[1-9]\\d*|\\d*[a-zA-Z-][0-9a-zA-Z-]*)(\\.(0|[1-9]\\d*|\\d*[a-zA-Z-][0-9a-zA-Z-]*))*)?(\\+[0-9a-zA-Z-]+(\\.[0-9a-zA-Z-]+)*)?$" }, "provider": { "description": "The provider or vendor of this application.", "type": "string" }, "copyright": { "description": "A copyright statement from the provider.", "type": "string" }, "modules": { "description": "A list of modules.", "type": "array", "items": { "type": "object", "required": ["name", "type"], "properties": { "name": { "description": "The MTA module name which must be unique and cannot be the same as any provided property set or resource name.", "type": "string", "pattern": "^[A-Za-z0-9_\\-\\.]+$" }, "type": { "description": "The module type that defines the design-time tools for the module.", "type": "string" }, "description": { "description": "A free text describing this module.", "type": "string" }, "path": { "description": "The path to a folder that contains the module artifacts.", "type": "string" }, "deployed-after": { "description": "A list of modules that must be deployed before deploying the current module.", "type": "array", "items": { "type": "string" } }, "properties": { "description": "A collection of key-value pairs that are available to the module at runtime.", "$ref": "#/definitions/properties" }, "properties-metadata": { "description": "Additional information about the module's properties.", "$ref": "#/definitions/properties-metadata" }, "parameters": { "description": "Configuration parameters that are used when deploying the module to the target runtime environment.", "$ref": "#/definitions/parameters" }, "parameters-metadata": { "description": "Additional information about the module's parameters.", "$ref": "#/definitions/parameters-metadata" }, "hooks": { "description": "A list of hooks that will be executed for the module.", "$ref": "#/definitions/hooks" }, "build-parameters": { "description": "The build parameters define how the module is built by the corresponding tool.", "type": "object" }, "includes": { "type": "array", "description": "It is possible to define parameters in external files. The \"includes\" section is used to point to those files.", "items": { "type": "object", "required": ["name", "path"], "properties": { "name": { "description": "The name of an \"includes\" section. This name is used by a builder to generate a parameter section in the deployment descriptor.", "type": "string" }, "path": { "description": "A path pointing to a file that contains a map of parameters, either in JSON or in YAML format.", "type": "string" } } } }, "provides": { "description": "Used to define the named property sets that other modules and resources can require.", "type": "array", "items": { "type": "object", "required": ["name"], "properties": { "name": { "description": "The name of the property set that the module provides. The provided name must be unique and cannot be the same as any resource or module name.", "type": "string", "pattern": "^[A-Za-z0-9_\\-\\.]+$" }, "public": { "description": "Configures the accessibility of the provided property set; if set to \"true\", it is publicly accessible and can be consumed by other MTA projects.", "type": "boolean", "default": false }, "properties": { "description": "A list of properties that are included in this property set.", "$ref": "#/definitions/properties" }, "properties-metadata": { "description": "Additional information about the provided set's properties.", "$ref": "#/definitions/properties-metadata" } } } }, "requires": { "description": "A list of property sets provided by other modules and/or resources (providers) that this module requires.", "type": "array", "items": { "type": "object", "required": ["name"], "properties": { "name": { "description": "The name of a provided property set or resource (provider) that this module requires.", "type": "string", "pattern": "^[A-Za-z0-9_\\-\\.]+$" }, "group": { "description": "A \"group\" can be used to combine properties from multiple providers into one runtime lookup object, such as an environment variable. As of schema version 2.1, this property is DEPRECATED.", "type": "string" }, "list": { "description": "Defines a name for a runtime lookup object, such as an environment variable, if the required property set contains multiple values; for example, if used to consume configuration data from outside this MTA project.", "type": "string" }, "properties": { "description": "Module properties whose values are determined by the provided properties. These properties can be referenced by the tilde notation: \"~{<provided-property-name>}\" ", "$ref": "#/definitions/properties" }, "properties-metadata": { "description": "Additional information about the modules's properties.", "$ref": "#/definitions/properties-metadata" }, "parameters": { "description": "Configuration parameters that are used when deploying the module to the target runtime environment.", "$ref": "#/definitions/parameters" }, "parameters-metadata": { "description": "Additional information about the modules's parameters.", "$ref": "#/definitions/parameters-metadata" }, "includes": { "type": "array", "description": "It is possible to define parameters in external files. The \"includes\" section is used to point to those files.", "items": { "type": "object", "required": ["name", "path"], "properties": { "name": { "description": "The name of an \"includes\" section. This name is used by a builder to generate a parameter section in the deployment descriptor.", "type": "string" }, "path": { "description": "A path pointing to a file that contains a map of parameters, either in JSON or in YAML format.", "type": "string" } } } } } } } } } }, "resources": { "description": "A list of resources that are required by the modules of this MTA project.", "type": "array", "items": { "type": "object", "required": ["name"], "properties": { "name": { "description": "The resource name which must be unique and cannot be the same as any provided property set or module name.", "type": "string", "pattern": "^[A-Za-z0-9_\\-\\.]+$" }, "type": { "description": "A type of resource supported by deployment tools in the target environment.", "type": "string" }, "description": { "description": "A free text describing this resource.", "type": "string" }, "properties": { "description": "A collection of key-value pairs that can be required by modules and/or other resources as configuration data at runtime.", "$ref": "#/definitions/properties" }, "properties-metadata": { "description": "Additional information about the resource's properties.", "$ref": "#/definitions/properties-metadata" }, "parameters": { "description": "Configuration parameters that are used when provisioning the resource in the target runtime environment.", "$ref": "#/definitions/parameters" }, "parameters-metadata": { "description": "Additional information about the resource's parameters.", "$ref": "#/definitions/parameters-metadata" }, "includes": { "type": "array", "description": "It is possible to define parameters in external files. The \"includes\" section is used to point to those files.", "items": { "type": "object", "required": ["name", "path"], "properties": { "name": { "description": "The name of an \"includes\" section. This name is used by a builder to generate a parameter section in the deployment descriptor.", "type": "string" }, "path": { "description": "A path pointing to a file that contains a map of parameters, either in JSON or in YAML format.", "type": "string" } } } }, "optional": { "description": "If the resource is set to optional and the deployment tools are unable to allocate it, then the tools will issue a warning and continue the deployment process.", "type": "boolean", "default": false }, "processed-after": { "description": "A list containing the names of the resources that must be processed prior to this one.", "type": "array", "items": { "type": "string" } }, "active": { "description": "If a resource is declared to be inactive, the resource will not be allocated during the deployment process.", "type": "boolean", "default": true }, "requires": { "description": "A list of property sets provided by other modules and/or resources (providers) that this resource requires.", "type": "array", "items": { "type": "object", "required": ["name"], "properties": { "name": { "description": "The name of a provided property set or resource (provider) that this resource requires.", "type": "string", "pattern": "^[A-Za-z0-9_\\-\\.]+$" }, "properties": { "description": "Resource properties whose values are determined by the provided properties. These properties can be referenced by the tilde notation: \"~{<provided-property-name>}\" ", "$ref": "#/definitions/properties" }, "properties-metadata": { "description": "Additional information about the required properties.", "$ref": "#/definitions/properties-metadata" }, "parameters": { "description": "Configuration parameters that are used when provisioning the resource in the target runtime environment.", "$ref": "#/definitions/parameters" }, "parameters-metadata": { "description": "Additional information about the required parameters.", "$ref": "#/definitions/parameters-metadata" }, "includes": { "type": "array", "description": "It is possible to define parameters in external files. The \"includes\" section is used to point to those files.", "items": { "type": "object", "required": ["name", "path"], "properties": { "name": { "description": "The name of an \"includes\" section. This name is used by a builder to generate a parameter section in the deployment descriptor.", "type": "string" }, "path": { "description": "A path pointing to a file that contains a map of parameters, either in JSON or in YAML format.", "type": "string" } } } } } } } } } }, "parameters": { "description": "Global parameters that are used when building or deploying the application", "$ref": "#/definitions/parameters" }, "parameters-metadata": { "description": "Additional information about the global parameters.", "$ref": "#/definitions/parameters-metadata" }, "includes": { "type": "array", "description": "It is possible to define parameters in external files. The \"includes\" section is used to point to those files.", "items": { "type": "object", "required": ["name", "path"], "properties": { "name": { "description": "The name of an \"includes\" section. This name is used by a builder to generate a parameter section in the deployment descriptor.", "type": "string" }, "path": { "description": "A path pointing to a file that contains a map of parameters, either in JSON or in YAML format.", "type": "string" } } } } }, "required": ["_schema-version", "ID", "version"], "title": "com.sap.mta.mta-schema_3.3", "type": "object" }
jfrog-pipelines.json
{ "$id": "https://json.schemastore.org/jfrog-pipelines.json", "$ref": "#/definitions/JFrog-Pipelines", "$schema": "http://json-schema.org/draft-07/schema#", "definitions": { "JFrog-Pipelines": { "title": "JFrog-Pipelines", "description": "https://www.jfrog.com/confluence/display/JFROG/Pipelines+Developer+Guide", "type": "object", "additionalProperties": false, "properties": { "resources": { "type": "array", "items": { "$ref": "#/definitions/Resource" } }, "pipelines": { "type": "array", "items": { "$ref": "#/definitions/Pipeline" } }, "template": { "type": "boolean" }, "valuesFilePath": { "type": "string" } }, "anyOf": [ { "required": ["pipelines"] }, { "required": ["resources"] } ] }, "Resource": { "title": "Resource", "description": "https://www.jfrog.com/confluence/display/JFROG/Pipelines+Resources", "type": "object", "properties": { "name": { "type": "string" }, "type": { "type": "string", "enum": [ "Aql", "BuildInfo", "CronTrigger", "DistributionRule", "FileSpec", "GitRepo", "HelmChart", "Image", "IncomingWebhook", "OutgoingWebhook", "PropertyBag", "ReleaseBundle", "RemoteFile", "VmCluster" ] } }, "allOf": [ { "if": { "properties": { "type": { "enum": ["Aql"] } } }, "then": { "$ref": "#/definitions/resourceTypes/Aql" } }, { "if": { "properties": { "type": { "enum": ["BuildInfo"] } } }, "then": { "$ref": "#/definitions/resourceTypes/BuildInfo" } }, { "if": { "properties": { "type": { "enum": ["CronTrigger"] } } }, "then": { "$ref": "#/definitions/resourceTypes/CronTrigger" } }, { "if": { "properties": { "type": { "enum": ["DistributionRule"] } } }, "then": { "$ref": "#/definitions/resourceTypes/DistributionRule" } }, { "if": { "properties": { "type": { "enum": ["FileSpec"] } } }, "then": { "$ref": "#/definitions/resourceTypes/FileSpec" } }, { "if": { "properties": { "type": { "enum": ["GitRepo"] } } }, "then": { "$ref": "#/definitions/resourceTypes/GitRepo" } }, { "if": { "properties": { "type": { "enum": ["HelmChart"] } } }, "then": { "$ref": "#/definitions/resourceTypes/HelmChart" } }, { "if": { "properties": { "type": { "enum": ["Image"] } } }, "then": { "$ref": "#/definitions/resourceTypes/Image" } }, { "if": { "properties": { "type": { "enum": ["IncomingWebhook"] } } }, "then": { "$ref": "#/definitions/resourceTypes/IncomingWebhook" } }, { "if": { "properties": { "type": { "enum": ["OutgoingWebhook"] } } }, "then": { "$ref": "#/definitions/resourceTypes/OutgoingWebhook" } }, { "if": { "properties": { "type": { "enum": ["PropertyBag"] } } }, "then": { "$ref": "#/definitions/resourceTypes/PropertyBag" } }, { "if": { "properties": { "type": { "enum": ["ReleaseBundle"] } } }, "then": { "$ref": "#/definitions/resourceTypes/ReleaseBundle" } }, { "if": { "properties": { "type": { "enum": ["RemoteFile"] } } }, "then": { "$ref": "#/definitions/resourceTypes/RemoteFile" } }, { "if": { "properties": { "type": { "enum": ["VmCluster"] } } }, "then": { "$ref": "#/definitions/resourceTypes/VmCluster" } } ] }, "resourceTypes": { "Aql": { "type": "object", "additionalProperties": false, "properties": { "name": { "type": "string" }, "type": { "type": "string" }, "configuration": { "type": "object", "additionalProperties": false, "properties": { "sourceArtifactory": { "type": "string" }, "query": { "type": "string" }, "addedProperties": { "type": "object", "additionalProperties": { "type": ["string", "number"] } }, "mappings": { "type": "array", "minItems": 1, "items": { "type": "object", "properties": { "name": { "type": "string" }, "input": { "type": "string" }, "output": { "type": "string" } }, "additionalProperties": false } } }, "required": ["query", "sourceArtifactory"] } }, "required": ["name", "type", "configuration"] }, "BuildInfo": { "type": "object", "additionalProperties": false, "properties": { "name": { "type": "string" }, "type": { "type": "string" }, "configuration": { "type": "object", "additionalProperties": false, "properties": { "sourceArtifactory": { "type": "string" }, "buildNumber": { "type": ["integer", "string"] }, "buildName": { "type": "string" }, "externalCI": { "type": "string" }, "pin": { "type": "object", "additionalProperties": false, "properties": { "versionId": { "type": "integer", "minimum": 1 }, "buildName": { "type": "string" }, "buildNumber": { "type": ["integer", "string"] }, "targetRepo": { "type": "string" } }, "anyOf": [ { "required": ["versionId"] }, { "required": ["buildName", "buildNumber"] } ] } }, "required": ["sourceArtifactory"] } }, "required": ["name", "type", "configuration"] }, "CronTrigger": { "type": "object", "additionalProperties": false, "properties": { "name": { "type": "string" }, "type": { "type": "string" }, "configuration": { "type": "object", "additionalProperties": false, "properties": { "interval": { "type": "string" }, "branches": { "type": "object", "properties": { "include": { "type": "string" }, "exclude": { "type": "string" } } } }, "required": ["interval"] } }, "required": ["name", "type", "configuration"] }, "DistributionRule": { "type": "object", "properties": { "name": { "type": "string" }, "type": { "type": "string" }, "configuration": { "type": "object", "properties": { "sourceDistribution": { "type": "string" }, "serviceName": { "type": "string" }, "cityName": { "type": "string" }, "siteName": { "type": "string" }, "countryCodes": { "type": "array", "items": { "type": "string" }, "minItems": 1 } }, "required": [ "serviceName", "cityName", "siteName", "countryCodes", "sourceDistribution" ], "additionalProperties": false } }, "required": ["name", "type", "configuration"], "additionalProperties": false }, "FileSpec": { "type": "object", "additionalProperties": false, "properties": { "name": { "type": "string" }, "type": { "type": "string" }, "configuration": { "type": "object", "additionalProperties": false, "properties": { "sourceArtifactory": { "type": "string" }, "pattern": { "type": "string" }, "aql": { "type": "string" }, "target": { "type": "string" }, "props": { "type": "string" }, "recursive": { "type": ["boolean", "string"] }, "flat": { "type": ["boolean", "string"] }, "excludePatterns": { "type": "array", "items": { "type": "string" } }, "exclusions": { "type": "array", "items": { "type": "string" } }, "archiveEntries": { "type": "string" }, "buildNumber": { "type": ["integer", "string"] }, "buildName": { "type": "string" }, "sortBy": { "type": "array", "items": { "type": "string" } }, "sortOrder": { "type": "string" }, "limit": { "type": ["integer", "string"] }, "offset": { "type": ["integer", "string"] } }, "required": ["sourceArtifactory"] } }, "required": ["name", "type", "configuration"] }, "GitRepo": { "type": "object", "additionalProperties": false, "properties": { "name": { "type": "string" }, "type": { "type": "string" }, "configuration": { "type": "object", "additionalProperties": false, "properties": { "gitProvider": { "type": "string" }, "path": { "type": "string" }, "cloneProtocol": { "type": "string", "enum": ["ssh", "https"] }, "files": { "type": "object", "additionalProperties": false, "properties": { "include": { "type": "string", "format": "regex" }, "exclude": { "type": "string", "format": "regex" } } }, "branches": { "type": "object", "additionalProperties": false, "properties": { "include": { "type": "string", "format": "regex" }, "exclude": { "type": "string", "format": "regex" } } }, "pullRequestSourceBranches": { "type": "object", "additionalProperties": false, "properties": { "include": { "type": "string", "format": "regex" }, "exclude": { "type": "string", "format": "regex" } } }, "pullRequestTargetBranches": { "type": "object", "additionalProperties": false, "properties": { "include": { "type": "string", "format": "regex" }, "exclude": { "type": "string", "format": "regex" } } }, "tags": { "type": "object", "additionalProperties": false, "properties": { "include": { "type": "string", "format": "regex" }, "exclude": { "type": "string", "format": "regex" } } }, "buildOn": { "type": "object", "additionalProperties": false, "properties": { "commit": { "type": "boolean" }, "pullRequestCreate": { "type": "boolean" }, "pullRequestClose": { "type": "boolean" }, "releaseCreate": { "type": "boolean" }, "tagCreate": { "type": "boolean" } } }, "cancelPendingRunsOn": { "type": "object", "additionalProperties": false, "properties": { "newCommit": { "type": "boolean" }, "pullRequestUpdate": { "type": "boolean" } } }, "shallowDepth": { "type": "integer", "minimum": 1 }, "pin": { "type": "object", "additionalProperties": false, "properties": { "versionId": { "type": "integer", "minimum": 1 }, "sha": { "type": "string" } }, "anyOf": [ { "required": ["versionId"] }, { "required": ["sha"] } ] } }, "required": ["gitProvider", "path"] } }, "required": ["name", "type", "configuration"] }, "HelmChart": { "type": "object", "additionalProperties": false, "properties": { "name": { "type": "string" }, "type": { "type": "string" }, "configuration": { "type": "object", "additionalProperties": false, "properties": { "sourceArtifactory": { "type": "string" }, "repository": { "type": "string" }, "version": { "type": "string" }, "chart": { "type": "string" }, "pin": { "type": "object", "additionalProperties": false, "properties": { "versionId": { "type": "integer", "minimum": 1 }, "version": { "type": "string" } }, "anyOf": [ { "required": ["versionId"] }, { "required": ["version"] } ] } }, "required": ["sourceArtifactory", "repository", "chart", "version"] } }, "required": ["name", "type", "configuration"] }, "Image": { "type": "object", "additionalProperties": false, "properties": { "name": { "type": "string" }, "type": { "type": "string" }, "configuration": { "type": "object", "additionalProperties": false, "properties": { "registry": { "type": "string" }, "sourceRepository": { "type": "string" }, "imageName": { "type": "string" }, "imageTag": { "type": "string" }, "autoPull": { "type": ["boolean", "string"] }, "region": { "type": "string" }, "pin": { "type": "object", "additionalProperties": false, "properties": { "versionId": { "type": "integer", "minimum": 1 }, "imageTag": { "type": "string" } }, "anyOf": [ { "required": ["versionId"] }, { "required": ["imageTag"] } ] } }, "required": ["registry", "imageName", "imageTag"] } }, "required": ["name", "type", "configuration"] }, "IncomingWebhook": { "type": "object", "additionalProperties": false, "properties": { "name": { "type": "string" }, "type": { "type": "string" }, "configuration": { "type": "object", "additionalProperties": false, "properties": { "webhookName": { "type": "string" } }, "required": ["webhookName"] } }, "required": ["name", "type", "configuration"] }, "OutgoingWebhook": { "type": "object", "additionalProperties": false, "properties": { "name": { "type": "string" }, "type": { "type": "string" }, "configuration": { "type": "object", "additionalProperties": false, "properties": { "webhookName": { "type": "string" }, "method": { "type": "string", "enum": ["GET", "PUT", "POST", "DELETE", "PATCH"] }, "parameters": { "type": "string" }, "path": { "type": "string" }, "headers": { "type": "object" } }, "required": ["webhookName"] } }, "required": ["name", "type", "configuration"] }, "PropertyBag": { "type": "object", "additionalProperties": false, "properties": { "name": { "type": "string" }, "type": { "type": "string" }, "configuration": { "type": "object", "additionalProperties": true, "properties": { "pin": { "type": "object", "additionalProperties": true, "properties": { "versionId": { "type": "integer", "minimum": 1 } } } }, "required": [] } }, "required": ["name", "type", "configuration"] }, "ReleaseBundle": { "type": "object", "properties": { "name": { "type": "string" }, "type": { "type": "string" }, "configuration": { "type": "object", "properties": { "sourceDistribution": { "type": "string" }, "name": { "type": "string" }, "version": { "type": "string" }, "isSigned": { "type": ["boolean", "string"] }, "pin": { "type": "object", "additionalProperties": false, "properties": { "versionId": { "type": "integer", "minimum": 1 }, "name": { "type": "string" }, "version": { "type": "string" } }, "anyOf": [ { "required": ["versionId"] }, { "required": ["name", "version"] } ] } }, "required": ["name", "version", "sourceDistribution"], "additionalProperties": false } }, "required": ["name", "type", "configuration"], "additionalProperties": false }, "RemoteFile": { "type": "object", "additionalProperties": false, "properties": { "name": { "type": "string" }, "type": { "type": "string" }, "configuration": { "type": "object", "additionalProperties": false, "properties": { "source": { "type": "string" }, "fileLocation": { "type": "string" }, "fileName": { "type": "string" }, "fileDateTime": { "type": "string" } }, "anyOf": [ { "required": ["source", "fileLocation"] }, { "required": ["source", "fileName"] } ] } }, "required": ["name", "type", "configuration"] }, "VmCluster": { "type": "object", "additionalProperties": false, "properties": { "name": { "type": "string" }, "type": { "type": "string" }, "configuration": { "type": "object", "additionalProperties": false, "properties": { "sshKey": { "type": "string" }, "targets": { "type": "array", "items": { "type": "string" } } }, "required": ["sshKey", "targets"] } }, "required": ["name", "type", "configuration"] } }, "Pipeline": { "title": "Pipeline", "description": "https://www.jfrog.com/confluence/display/JFROG/Creating+Pipelines", "type": "object", "properties": { "name": { "type": "string" }, "configuration": { "type": "object", "additionalProperties": false, "properties": { "environmentVariables": { "type": "object", "properties": { "readOnly": { "type": "object", "additionalProperties": { "type": ["string", "number", "object"], "properties": { "description": { "type": "string" }, "default": { "type": ["string", "number"] }, "values": { "type": "array", "minItems": 1, "items": { "type": ["string", "number"] } }, "allowCustom": { "type": "boolean" } }, "required": ["default"] } } }, "required": ["readOnly"] }, "nodePool": { "type": "string" }, "affinityGroup": { "type": "string" }, "jfrogCliVersion": { "type": ["string", "integer"], "enum": ["1", "2", 1, 2] }, "runtime": { "type": "object", "properties": { "type": { "type": "string", "enum": ["image", "host"] } }, "required": ["type"], "if": { "properties": { "type": { "enum": ["image"] } } }, "then": { "properties": { "type": { "enum": ["image"] }, "image": { "type": "object", "additionalProperties": false, "properties": { "auto": { "type": "object", "required": ["language", "versions"], "properties": { "language": { "type": "string" }, "versions": { "type": "array", "items": { "type": ["string", "number"] } } } }, "custom": { "type": "object", "additionalProperties": false, "required": ["name", "tag"], "properties": { "name": { "type": "string" }, "tag": { "type": "string" }, "options": { "type": "string" }, "registry": { "type": "string" }, "sourceRepository": { "type": "string" }, "region": { "type": "string" }, "autoPull": { "type": "boolean" } } } }, "oneOf": [ { "required": ["auto"] }, { "required": ["custom"] } ] } }, "additionalProperties": false }, "else": { "properties": { "type": { "enum": ["host"] } }, "additionalProperties": false } }, "integrations": { "type": "array", "minItems": 1, "items": { "type": "object", "properties": { "name": { "type": "string" } }, "required": ["name"], "additionalProperties": false } }, "inputResources": { "type": "array", "minItems": 1, "items": { "type": "object", "properties": { "name": { "type": "string" }, "branch": { "type": "string" }, "trigger": { "type": "boolean" }, "newVersionOnly": { "type": "boolean" } }, "required": ["name"], "additionalProperties": false } }, "outputResources": { "type": "array", "minItems": 1, "items": { "type": "object", "properties": { "name": { "type": "string" }, "branch": { "type": "string" } }, "required": ["name"], "additionalProperties": false } }, "chronological": { "type": "boolean" }, "dependencyMode": { "type": "object", "properties": { "waitOnParentComplete": { "type": "boolean" }, "waitOnParentSuccess": { "type": "boolean" }, "waitOnChildComplete": { "type": "boolean" } }, "additionalProperties": false }, "retentionPolicy": { "type": "object", "properties": { "maxAgeDays": { "type": "number" }, "minRuns": { "type": "number" } }, "additionalProperties": false } } }, "steps": { "type": "array", "minItems": 1, "items": { "$ref": "#/definitions/Step" } } }, "required": ["name", "steps"], "additionalProperties": false }, "Step": { "title": "Step", "description": "https://www.jfrog.com/confluence/display/JFROG/Pipelines+Steps", "type": "object", "properties": { "name": { "type": "string" }, "type": { "type": "string", "enum": [ "Bash", "CreateReleaseBundle", "DistributeReleaseBundle", "DockerBuild", "DockerPush", "GoBuild", "GoPublishBinary", "GoPublishModule", "GradleBuild", "HelmBlueGreenCleanup", "HelmBlueGreenDeploy", "HelmBlueGreenRoleSwitch", "HelmDeploy", "HelmPublish", "Jenkins", "Matrix", "MvnBuild", "NpmBuild", "NpmPublish", "PostMatrix", "PowerShell", "PreMatrix", "PromoteBuild", "PublishBuildInfo", "PushArtifactoryPackage", "SignReleaseBundle", "TriggerPipeline", "XrayScan" ] } }, "allOf": [ { "if": { "properties": { "type": { "enum": ["Bash"] } } }, "then": { "$ref": "#/definitions/stepTypes/BashStep" } }, { "if": { "properties": { "type": { "enum": ["CreateReleaseBundle"] } } }, "then": { "$ref": "#/definitions/stepTypes/CreateReleaseBundle" } }, { "if": { "properties": { "type": { "enum": ["DistributeReleaseBundle"] } } }, "then": { "$ref": "#/definitions/stepTypes/DistributeReleaseBundle" } }, { "if": { "properties": { "type": { "enum": ["DockerBuild"] } } }, "then": { "$ref": "#/definitions/stepTypes/DockerBuild" } }, { "if": { "properties": { "type": { "enum": ["DockerPush"] } } }, "then": { "$ref": "#/definitions/stepTypes/DockerPush" } }, { "if": { "properties": { "type": { "enum": ["GoBuild"] } } }, "then": { "$ref": "#/definitions/stepTypes/GoBuild" } }, { "if": { "properties": { "type": { "enum": ["GoPublishBinary"] } } }, "then": { "$ref": "#/definitions/stepTypes/GoPublishBinary" } }, { "if": { "properties": { "type": { "enum": ["GoPublishModule"] } } }, "then": { "$ref": "#/definitions/stepTypes/GoPublishModule" } }, { "if": { "properties": { "type": { "enum": ["GradleBuild"] } } }, "then": { "$ref": "#/definitions/stepTypes/GradleBuild" } }, { "if": { "properties": { "type": { "enum": ["HelmBlueGreenCleanup"] } } }, "then": { "$ref": "#/definitions/stepTypes/HelmBlueGreenCleanup" } }, { "if": { "properties": { "type": { "enum": ["HelmBlueGreenDeploy"] } } }, "then": { "$ref": "#/definitions/stepTypes/HelmBlueGreenDeploy" } }, { "if": { "properties": { "type": { "enum": ["HelmBlueGreenRoleSwitch"] } } }, "then": { "$ref": "#/definitions/stepTypes/HelmBlueGreenRoleSwitch" } }, { "if": { "properties": { "type": { "enum": ["HelmDeploy"] } } }, "then": { "$ref": "#/definitions/stepTypes/HelmDeploy" } }, { "if": { "properties": { "type": { "enum": ["HelmPublish"] } } }, "then": { "$ref": "#/definitions/stepTypes/HelmPublish" } }, { "if": { "properties": { "type": { "enum": ["Jenkins"] } } }, "then": { "$ref": "#/definitions/stepTypes/Jenkins" } }, { "if": { "properties": { "type": { "enum": ["Matrix"] } } }, "then": { "$ref": "#/definitions/stepTypes/Matrix" } }, { "if": { "properties": { "type": { "enum": ["PreMatrix"] } } }, "then": { "$ref": "#/definitions/stepTypes/PreMatrix" } }, { "if": { "properties": { "type": { "enum": ["PostMatrix"] } } }, "then": { "$ref": "#/definitions/stepTypes/PostMatrix" } }, { "if": { "properties": { "type": { "enum": ["MvnBuild"] } } }, "then": { "$ref": "#/definitions/stepTypes/MvnBuild" } }, { "if": { "properties": { "type": { "enum": ["NpmBuild"] } } }, "then": { "$ref": "#/definitions/stepTypes/NpmBuild" } }, { "if": { "properties": { "type": { "enum": ["NpmPublish"] } } }, "then": { "$ref": "#/definitions/stepTypes/NpmPublish" } }, { "if": { "properties": { "type": { "enum": ["PowerShell"] } } }, "then": { "$ref": "#/definitions/stepTypes/PowerShell" } }, { "if": { "properties": { "type": { "enum": ["PromoteBuild"] } } }, "then": { "$ref": "#/definitions/stepTypes/PromoteBuild" } }, { "if": { "properties": { "type": { "enum": ["PublishBuildInfo"] } } }, "then": { "$ref": "#/definitions/stepTypes/PublishBuildInfo" } }, { "if": { "properties": { "type": { "enum": ["PushArtifactoryPackage"] } } }, "then": { "$ref": "#/definitions/stepTypes/PushArtifactoryPackage" } }, { "if": { "properties": { "type": { "enum": ["SignReleaseBundle"] } } }, "then": { "$ref": "#/definitions/stepTypes/SignReleaseBundle" } }, { "if": { "properties": { "type": { "enum": ["TriggerPipeline"] } } }, "then": { "$ref": "#/definitions/stepTypes/TriggerPipeline" } }, { "if": { "properties": { "type": { "enum": ["XrayScan"] } } }, "then": { "$ref": "#/definitions/stepTypes/XrayScan" } } ] }, "stepTypes": { "BashStep": { "type": "object", "properties": { "name": { "type": "string" }, "type": { "type": "string" }, "configuration": { "type": "object", "additionalProperties": false, "properties": { "affinityGroup": { "type": "string" }, "timeoutSeconds": { "type": "integer", "exclusiveMinimum": 0 }, "priority": { "type": "integer", "minimum": 0, "maximum": 10000 }, "nodePool": { "type": "string" }, "chronological": { "type": "boolean" }, "environmentVariables": { "$ref": "#/definitions/common/EnvironmentVariables" }, "runtime": { "type": "object", "properties": { "type": { "type": "string", "enum": ["image", "host"] } }, "required": ["type"], "if": { "properties": { "type": { "enum": ["image"] } } }, "then": { "properties": { "type": { "enum": ["image"] }, "image": { "type": "object", "if": { "properties": { "auto": { "type": "object" } }, "required": ["auto"] }, "then": { "properties": { "auto": { "type": "object", "required": ["language"], "oneOf": [ { "required": ["version"] }, { "required": ["versions"] } ], "properties": { "language": { "type": "string" }, "version": { "type": ["string", "number"] }, "versions": { "type": "array", "minItems": 1, "items": { "type": ["string", "number"] } }, "if": { "properties": { "version": { "type": ["string", "number"] } }, "required": ["version"] }, "then": { "properties": { "version": { "type": ["string", "number"] } } }, "else": { "properties": { "versions": { "type": "array", "minItems": 1, "items": { "type": ["string", "number"] } } } } }, "additionalProperties": false } }, "additionalProperties": false }, "else": { "additionalProperties": false, "properties": { "custom": { "type": "object", "additionalProperties": false, "required": ["name", "tag"], "properties": { "name": { "type": "string" }, "tag": { "type": "string" }, "registry": { "type": "string" }, "sourceRepository": { "type": "string" }, "region": { "type": "string" }, "options": { "type": "string" }, "autoPull": { "type": "boolean" } } } } } } }, "additionalProperties": false }, "else": { "if": { "properties": { "type": { "enum": ["host"] } } }, "then": { "properties": { "type": { "enum": ["host"] } }, "additionalProperties": false } } }, "integrations": { "type": "array", "minItems": 1, "items": { "type": "object", "properties": { "name": { "type": "string" } }, "required": ["name"], "additionalProperties": false } }, "inputSteps": { "type": "array", "minItems": 1, "items": { "type": "object", "properties": { "name": { "type": "string" }, "status": { "type": "array", "items": { "type": "string", "enum": [ "success", "failure", "error", "cancelled", "skipped", "unstable", "timeout", "stopped", "deleted", "cached" ] } } }, "required": ["name"], "additionalProperties": false } }, "inputResources": { "type": "array", "minItems": 1, "items": { "type": "object", "properties": { "name": { "type": "string" }, "branch": { "type": "string" }, "trigger": { "type": "boolean" }, "newVersionOnly": { "type": "boolean" } }, "required": ["name"], "additionalProperties": false } }, "outputResources": { "type": "array", "minItems": 1, "items": { "type": "object", "properties": { "name": { "type": "string" }, "branch": { "type": "string" } }, "required": ["name"], "additionalProperties": false } }, "requiresApproval": { "$ref": "#/definitions/common/RequiresApproval" } } }, "execution": { "type": "object", "additionalProperties": false, "properties": { "onStart": { "type": "array", "items": { "type": "string" } }, "onExecute": { "type": "array", "items": { "type": "string" } }, "onSuccess": { "type": "array", "items": { "type": "string" } }, "onFailure": { "type": "array", "items": { "type": "string" } }, "onComplete": { "type": "array", "items": { "type": "string" } }, "onCancel": { "type": "array", "items": { "type": "string" } } } } }, "required": ["name", "type", "execution"], "additionalProperties": false }, "CreateReleaseBundle": { "type": "object", "properties": { "name": { "type": "string" }, "type": { "type": "string" }, "configuration": { "type": "object", "additionalProperties": false, "properties": { "affinityGroup": { "type": "string" }, "timeoutSeconds": { "type": "integer", "exclusiveMinimum": 0 }, "priority": { "type": "integer", "minimum": 0, "maximum": 10000 }, "nodePool": { "type": "string" }, "chronological": { "type": "boolean" }, "failOnValidate": { "type": ["string", "boolean"] }, "environmentVariables": { "$ref": "#/definitions/common/EnvironmentVariables" }, "runtime": { "type": "object", "properties": { "type": { "type": "string", "enum": ["image", "host"] } }, "required": ["type"], "if": { "properties": { "type": { "enum": ["image"] } } }, "then": { "properties": { "type": { "enum": ["image"] }, "image": { "type": "object", "if": { "properties": { "auto": { "type": "object" } }, "required": ["auto"] }, "then": { "properties": { "auto": { "type": "object", "required": ["language"], "oneOf": [ { "required": ["version"] }, { "required": ["versions"] } ], "properties": { "language": { "type": "string" }, "version": { "type": ["string", "number"] }, "versions": { "type": "array", "minItems": 1, "items": { "type": ["string", "number"] } }, "if": { "properties": { "version": { "type": ["string", "number"] } }, "required": ["version"] }, "then": { "properties": { "version": { "type": ["string", "number"] } } }, "else": { "properties": { "versions": { "type": "array", "minItems": 1, "items": { "type": ["string", "number"] } } } } }, "additionalProperties": false } }, "additionalProperties": false }, "else": { "additionalProperties": false, "properties": { "custom": { "type": "object", "additionalProperties": false, "required": ["name", "tag"], "properties": { "name": { "type": "string" }, "tag": { "type": "string" }, "registry": { "type": "string" }, "sourceRepository": { "type": "string" }, "region": { "type": "string" }, "options": { "type": "string" }, "autoPull": { "type": "boolean" } } } } } } }, "additionalProperties": false }, "else": { "if": { "properties": { "type": { "enum": ["host"] } } }, "then": { "properties": { "type": { "enum": ["host"] } }, "additionalProperties": false } } }, "releaseBundleName": { "type": "string" }, "releaseBundleVersion": { "type": "string" }, "dryRun": { "type": ["string", "boolean"] }, "sign": { "type": ["string", "boolean"] }, "storeAtSourceArtifactory": { "type": "string" }, "description": { "type": "string" }, "releaseNotes": { "type": "object", "additionalProperties": false, "properties": { "content": { "type": "string" }, "syntax": { "type": "string", "enum": ["markdown", "asciidoc", "plain_text"] } }, "required": ["content"] }, "integrations": { "type": "array", "minItems": 1, "items": { "type": "object", "properties": { "name": { "type": "string" } }, "required": ["name"], "additionalProperties": false } }, "inputSteps": { "type": "array", "minItems": 1, "items": { "type": "object", "properties": { "name": { "type": "string" }, "status": { "type": "array", "items": { "type": "string", "enum": [ "success", "failure", "error", "cancelled", "skipped", "unstable", "timeout", "stopped", "deleted", "cached" ] } } }, "required": ["name"], "additionalProperties": false } }, "inputResources": { "type": "array", "minItems": 1, "items": { "type": "object", "properties": { "name": { "type": "string" }, "branch": { "type": "string" }, "trigger": { "type": "boolean" }, "newVersionOnly": { "type": "boolean" } }, "required": ["name"], "additionalProperties": false } }, "outputResources": { "type": "array", "minItems": 1, "items": { "type": "object", "properties": { "name": { "type": "string" }, "branch": { "type": "string" } }, "required": ["name"], "additionalProperties": false } }, "requiresApproval": { "$ref": "#/definitions/common/RequiresApproval" } }, "required": ["releaseBundleName", "releaseBundleVersion"] }, "execution": { "type": "object", "additionalProperties": false, "properties": { "onStart": { "type": "array", "items": { "type": "string" } }, "onSuccess": { "type": "array", "items": { "type": "string" } }, "onFailure": { "type": "array", "items": { "type": "string" } }, "onComplete": { "type": "array", "items": { "type": "string" } }, "onCancel": { "type": "array", "items": { "type": "string" } } } } }, "required": ["name", "type", "configuration"], "additionalProperties": false }, "DistributeReleaseBundle": { "type": "object", "properties": { "name": { "type": "string" }, "type": { "type": "string" }, "configuration": { "type": "object", "additionalProperties": false, "properties": { "affinityGroup": { "type": "string" }, "timeoutSeconds": { "type": "integer", "exclusiveMinimum": 0 }, "priority": { "type": "integer", "minimum": 0, "maximum": 10000 }, "nodePool": { "type": "string" }, "chronological": { "type": "boolean" }, "dryRun": { "type": ["string", "boolean"] }, "environmentVariables": { "$ref": "#/definitions/common/EnvironmentVariables" }, "runtime": { "type": "object", "properties": { "type": { "type": "string", "enum": ["image", "host"] } }, "required": ["type"], "if": { "properties": { "type": { "enum": ["image"] } } }, "then": { "properties": { "type": { "enum": ["image"] }, "image": { "type": "object", "if": { "properties": { "auto": { "type": "object" } }, "required": ["auto"] }, "then": { "properties": { "auto": { "type": "object", "required": ["language"], "oneOf": [ { "required": ["version"] }, { "required": ["versions"] } ], "properties": { "language": { "type": "string" }, "version": { "type": ["string", "number"] }, "versions": { "type": "array", "minItems": 1, "items": { "type": ["string", "number"] } }, "if": { "properties": { "version": { "type": ["string", "number"] } }, "required": ["version"] }, "then": { "properties": { "version": { "type": ["string", "number"] } } }, "else": { "properties": { "versions": { "type": "array", "minItems": 1, "items": { "type": ["string", "number"] } } } } }, "additionalProperties": false } }, "additionalProperties": false }, "else": { "additionalProperties": false, "properties": { "custom": { "type": "object", "additionalProperties": false, "required": ["name", "tag"], "properties": { "name": { "type": "string" }, "tag": { "type": "string" }, "registry": { "type": "string" }, "sourceRepository": { "type": "string" }, "region": { "type": "string" }, "options": { "type": "string" }, "autoPull": { "type": "boolean" } } } } } } }, "additionalProperties": false }, "else": { "if": { "properties": { "type": { "enum": ["host"] } } }, "then": { "properties": { "type": { "enum": ["host"] } }, "additionalProperties": false } } }, "integrations": { "type": "array", "minItems": 1, "items": { "type": "object", "properties": { "name": { "type": "string" } }, "required": ["name"], "additionalProperties": false } }, "inputSteps": { "type": "array", "minItems": 1, "items": { "type": "object", "properties": { "name": { "type": "string" }, "status": { "type": "array", "items": { "type": "string", "enum": [ "success", "failure", "error", "cancelled", "skipped", "unstable", "timeout", "stopped", "deleted", "cached" ] } } }, "required": ["name"], "additionalProperties": false } }, "inputResources": { "type": "array", "minItems": 1, "items": { "type": "object", "properties": { "name": { "type": "string" }, "branch": { "type": "string" }, "trigger": { "type": "boolean" }, "newVersionOnly": { "type": "boolean" } }, "required": ["name"], "additionalProperties": false } }, "outputResources": { "type": "array", "minItems": 1, "items": { "type": "object", "properties": { "name": { "type": "string" }, "branch": { "type": "string" } }, "required": ["name"], "additionalProperties": false } }, "requiresApproval": { "$ref": "#/definitions/common/RequiresApproval" } } }, "execution": { "type": "object", "additionalProperties": false, "properties": { "onStart": { "type": "array", "items": { "type": "string" } }, "onSuccess": { "type": "array", "items": { "type": "string" } }, "onFailure": { "type": "array", "items": { "type": "string" } }, "onComplete": { "type": "array", "items": { "type": "string" } }, "onCancel": { "type": "array", "items": { "type": "string" } } } } }, "required": ["name", "type"], "additionalProperties": false }, "DockerBuild": { "type": "object", "properties": { "name": { "type": "string" }, "type": { "type": "string" }, "configuration": { "type": "object", "additionalProperties": false, "properties": { "affinityGroup": { "type": "string" }, "timeoutSeconds": { "type": "integer", "exclusiveMinimum": 0 }, "priority": { "type": "integer", "minimum": 0, "maximum": 10000 }, "nodePool": { "type": "string" }, "chronological": { "type": "boolean" }, "environmentVariables": { "$ref": "#/definitions/common/EnvironmentVariables" }, "runtime": { "type": "object", "properties": { "type": { "type": "string", "enum": ["image", "host"] } }, "required": ["type"], "if": { "properties": { "type": { "enum": ["image"] } } }, "then": { "properties": { "type": { "enum": ["image"] }, "image": { "type": "object", "if": { "properties": { "auto": { "type": "object" } }, "required": ["auto"] }, "then": { "properties": { "auto": { "type": "object", "required": ["language"], "oneOf": [ { "required": ["version"] }, { "required": ["versions"] } ], "properties": { "language": { "type": "string" }, "version": { "type": ["string", "number"] }, "versions": { "type": "array", "minItems": 1, "items": { "type": ["string", "number"] } }, "if": { "properties": { "version": { "type": ["string", "number"] } }, "required": ["version"] }, "then": { "properties": { "version": { "type": ["string", "number"] } } }, "else": { "properties": { "versions": { "type": "array", "minItems": 1, "items": { "type": ["string", "number"] } } } } }, "additionalProperties": false } }, "additionalProperties": false }, "else": { "additionalProperties": false, "properties": { "custom": { "type": "object", "additionalProperties": false, "required": ["name", "tag"], "properties": { "name": { "type": "string" }, "tag": { "type": "string" }, "registry": { "type": "string" }, "sourceRepository": { "type": "string" }, "region": { "type": "string" }, "options": { "type": "string" }, "autoPull": { "type": "boolean" } } } } } } }, "additionalProperties": false }, "else": { "if": { "properties": { "type": { "enum": ["host"] } } }, "then": { "properties": { "type": { "enum": ["host"] } }, "additionalProperties": false } } }, "integrations": { "type": "array", "minItems": 1, "items": { "type": "object", "properties": { "name": { "type": "string" } }, "required": ["name"], "additionalProperties": false } }, "inputSteps": { "type": "array", "minItems": 1, "items": { "type": "object", "properties": { "name": { "type": "string" }, "status": { "type": "array", "items": { "type": "string", "enum": [ "success", "failure", "error", "cancelled", "skipped", "unstable", "timeout", "stopped", "deleted", "cached" ] } } }, "required": ["name"], "additionalProperties": false } }, "inputResources": { "type": "array", "minItems": 1, "items": { "type": "object", "properties": { "name": { "type": "string" }, "branch": { "type": "string" }, "trigger": { "type": "boolean" }, "newVersionOnly": { "type": "boolean" } }, "required": ["name"], "additionalProperties": false } }, "outputResources": { "type": "array", "minItems": 1, "items": { "type": "object", "properties": { "name": { "type": "string" }, "branch": { "type": "string" } }, "required": ["name"], "additionalProperties": false } }, "requiresApproval": { "$ref": "#/definitions/common/RequiresApproval" }, "dockerFileLocation": { "type": "string" }, "dockerFileName": { "type": "string" }, "dockerImageName": { "type": "string" }, "dockerImageTag": { "type": "string" }, "dockerOptions": { "type": "string" } }, "required": ["dockerImageName", "dockerImageTag"] }, "execution": { "type": "object", "additionalProperties": false, "properties": { "onStart": { "type": "array", "items": { "type": "string" } }, "onSuccess": { "type": "array", "items": { "type": "string" } }, "onFailure": { "type": "array", "items": { "type": "string" } }, "onComplete": { "type": "array", "items": { "type": "string" } }, "onCancel": { "type": "array", "items": { "type": "string" } } } } }, "required": ["name", "type", "configuration"], "additionalProperties": false }, "DockerPush": { "type": "object", "properties": { "name": { "type": "string" }, "type": { "type": "string" }, "configuration": { "type": "object", "additionalProperties": false, "properties": { "affinityGroup": { "type": "string" }, "timeoutSeconds": { "type": "integer", "exclusiveMinimum": 0 }, "priority": { "type": "integer", "minimum": 0, "maximum": 10000 }, "nodePool": { "type": "string" }, "chronological": { "type": "boolean" }, "targetRepository": { "type": "string" }, "forceXrayScan": { "type": ["string", "boolean"] }, "failOnScan": { "type": ["string", "boolean"] }, "autoPublishBuildInfo": { "type": ["string", "boolean"] }, "environmentVariables": { "$ref": "#/definitions/common/EnvironmentVariables" }, "runtime": { "type": "object", "properties": { "type": { "type": "string", "enum": ["image", "host"] } }, "required": ["type"], "if": { "properties": { "type": { "enum": ["image"] } } }, "then": { "properties": { "type": { "enum": ["image"] }, "image": { "type": "object", "if": { "properties": { "auto": { "type": "object" } }, "required": ["auto"] }, "then": { "properties": { "auto": { "type": "object", "required": ["language"], "oneOf": [ { "required": ["version"] }, { "required": ["versions"] } ], "properties": { "language": { "type": "string" }, "version": { "type": ["string", "number"] }, "versions": { "type": "array", "minItems": 1, "items": { "type": ["string", "number"] } }, "if": { "properties": { "version": { "type": ["string", "number"] } }, "required": ["version"] }, "then": { "properties": { "version": { "type": ["string", "number"] } } }, "else": { "properties": { "versions": { "type": "array", "minItems": 1, "items": { "type": ["string", "number"] } } } } }, "additionalProperties": false } }, "additionalProperties": false }, "else": { "additionalProperties": false, "properties": { "custom": { "type": "object", "additionalProperties": false, "required": ["name", "tag"], "properties": { "name": { "type": "string" }, "tag": { "type": "string" }, "registry": { "type": "string" }, "sourceRepository": { "type": "string" }, "region": { "type": "string" }, "options": { "type": "string" }, "autoPull": { "type": "boolean" } } } } } } }, "additionalProperties": false }, "else": { "if": { "properties": { "type": { "enum": ["host"] } } }, "then": { "properties": { "type": { "enum": ["host"] } }, "additionalProperties": false } } }, "integrations": { "type": "array", "minItems": 1, "items": { "type": "object", "properties": { "name": { "type": "string" } }, "required": ["name"], "additionalProperties": false } }, "inputSteps": { "type": "array", "minItems": 1, "items": { "type": "object", "properties": { "name": { "type": "string" }, "status": { "type": "array", "items": { "type": "string", "enum": [ "success", "failure", "error", "cancelled", "skipped", "unstable", "timeout", "stopped", "deleted", "cached" ] } } }, "required": ["name"], "additionalProperties": false } }, "inputResources": { "type": "array", "minItems": 1, "items": { "type": "object", "properties": { "name": { "type": "string" }, "branch": { "type": "string" }, "trigger": { "type": "boolean" }, "newVersionOnly": { "type": "boolean" } }, "required": ["name"], "additionalProperties": false } }, "outputResources": { "type": "array", "minItems": 1, "items": { "type": "object", "properties": { "name": { "type": "string" }, "branch": { "type": "string" } }, "required": ["name"], "additionalProperties": false } }, "requiresApproval": { "$ref": "#/definitions/common/RequiresApproval" } } }, "execution": { "type": "object", "additionalProperties": false, "properties": { "onStart": { "type": "array", "items": { "type": "string" } }, "onSuccess": { "type": "array", "items": { "type": "string" } }, "onFailure": { "type": "array", "items": { "type": "string" } }, "onComplete": { "type": "array", "items": { "type": "string" } }, "onCancel": { "type": "array", "items": { "type": "string" } } } } }, "required": ["name", "type", "configuration"], "additionalProperties": false }, "GoBuild": { "type": "object", "properties": { "name": { "type": "string" }, "type": { "type": "string" }, "configuration": { "type": "object", "additionalProperties": false, "properties": { "affinityGroup": { "type": "string" }, "timeoutSeconds": { "type": "integer", "exclusiveMinimum": 0 }, "priority": { "type": "integer", "minimum": 0, "maximum": 10000 }, "nodePool": { "type": "string" }, "chronological": { "type": "boolean" }, "environmentVariables": { "$ref": "#/definitions/common/EnvironmentVariables" }, "runtime": { "type": "object", "properties": { "type": { "type": "string", "enum": ["image", "host"] } }, "required": ["type"], "if": { "properties": { "type": { "enum": ["image"] } } }, "then": { "properties": { "type": { "enum": ["image"] }, "image": { "type": "object", "if": { "properties": { "auto": { "type": "object" } }, "required": ["auto"] }, "then": { "properties": { "auto": { "type": "object", "required": ["language"], "oneOf": [ { "required": ["version"] }, { "required": ["versions"] } ], "properties": { "language": { "type": "string" }, "version": { "type": ["string", "number"] }, "versions": { "type": "array", "minItems": 1, "items": { "type": ["string", "number"] } }, "if": { "properties": { "version": { "type": ["string", "number"] } }, "required": ["version"] }, "then": { "properties": { "version": { "type": ["string", "number"] } } }, "else": { "properties": { "versions": { "type": "array", "minItems": 1, "items": { "type": ["string", "number"] } } } } }, "additionalProperties": false } }, "additionalProperties": false }, "else": { "additionalProperties": false, "properties": { "custom": { "type": "object", "additionalProperties": false, "required": ["name", "tag"], "properties": { "name": { "type": "string" }, "tag": { "type": "string" }, "registry": { "type": "string" }, "sourceRepository": { "type": "string" }, "region": { "type": "string" }, "options": { "type": "string" }, "autoPull": { "type": "boolean" } } } } } } }, "additionalProperties": false }, "else": { "if": { "properties": { "type": { "enum": ["host"] } } }, "then": { "properties": { "type": { "enum": ["host"] } }, "additionalProperties": false } } }, "integrations": { "type": "array", "minItems": 1, "items": { "type": "object", "properties": { "name": { "type": "string" } }, "required": ["name"], "additionalProperties": false } }, "inputSteps": { "type": "array", "minItems": 1, "items": { "type": "object", "properties": { "name": { "type": "string" }, "status": { "type": "array", "items": { "type": "string", "enum": [ "success", "failure", "error", "cancelled", "skipped", "unstable", "timeout", "stopped", "deleted", "cached" ] } } }, "required": ["name"], "additionalProperties": false } }, "inputResources": { "type": "array", "minItems": 1, "items": { "type": "object", "properties": { "name": { "type": "string" }, "branch": { "type": "string" }, "trigger": { "type": "boolean" }, "newVersionOnly": { "type": "boolean" } }, "required": ["name"], "additionalProperties": false } }, "outputResources": { "type": "array", "minItems": 1, "items": { "type": "object", "properties": { "name": { "type": "string" }, "branch": { "type": "string" } }, "required": ["name"], "additionalProperties": false } }, "requiresApproval": { "$ref": "#/definitions/common/RequiresApproval" }, "sourceLocation": { "type": "string" }, "goCommand": { "type": "string" }, "noRegistry": { "type": ["string", "boolean"] }, "publishDeps": { "type": ["string", "boolean"] }, "repository": { "type": "string" }, "resolverRepo": { "type": "string" }, "outputLocation": { "type": "string" }, "outputFile": { "type": "string" } } }, "execution": { "type": "object", "additionalProperties": false, "properties": { "onStart": { "type": "array", "items": { "type": "string" } }, "onSuccess": { "type": "array", "items": { "type": "string" } }, "onFailure": { "type": "array", "items": { "type": "string" } }, "onComplete": { "type": "array", "items": { "type": "string" } }, "onCancel": { "type": "array", "items": { "type": "string" } } } } }, "required": ["name", "type"], "additionalProperties": false }, "GoPublishBinary": { "type": "object", "properties": { "name": { "type": "string" }, "type": { "type": "string" }, "configuration": { "type": "object", "additionalProperties": false, "properties": { "affinityGroup": { "type": "string" }, "timeoutSeconds": { "type": "integer", "exclusiveMinimum": 0 }, "priority": { "type": "integer", "minimum": 0, "maximum": 10000 }, "nodePool": { "type": "string" }, "chronological": { "type": "boolean" }, "environmentVariables": { "$ref": "#/definitions/common/EnvironmentVariables" }, "runtime": { "type": "object", "properties": { "type": { "type": "string", "enum": ["image", "host"] } }, "required": ["type"], "if": { "properties": { "type": { "enum": ["image"] } } }, "then": { "properties": { "type": { "enum": ["image"] }, "image": { "type": "object", "if": { "properties": { "auto": { "type": "object" } }, "required": ["auto"] }, "then": { "properties": { "auto": { "type": "object", "required": ["language"], "oneOf": [ { "required": ["version"] }, { "required": ["versions"] } ], "properties": { "language": { "type": "string" }, "version": { "type": ["string", "number"] }, "versions": { "type": "array", "minItems": 1, "items": { "type": ["string", "number"] } }, "if": { "properties": { "version": { "type": ["string", "number"] } }, "required": ["version"] }, "then": { "properties": { "version": { "type": ["string", "number"] } } }, "else": { "properties": { "versions": { "type": "array", "minItems": 1, "items": { "type": ["string", "number"] } } } } }, "additionalProperties": false } }, "additionalProperties": false }, "else": { "additionalProperties": false, "properties": { "custom": { "type": "object", "additionalProperties": false, "required": ["name", "tag"], "properties": { "name": { "type": "string" }, "tag": { "type": "string" }, "registry": { "type": "string" }, "sourceRepository": { "type": "string" }, "region": { "type": "string" }, "options": { "type": "string" }, "autoPull": { "type": "boolean" } } } } } } }, "additionalProperties": false }, "else": { "if": { "properties": { "type": { "enum": ["host"] } } }, "then": { "properties": { "type": { "enum": ["host"] } }, "additionalProperties": false } } }, "integrations": { "type": "array", "minItems": 1, "items": { "type": "object", "properties": { "name": { "type": "string" } }, "required": ["name"], "additionalProperties": false } }, "inputSteps": { "type": "array", "minItems": 1, "items": { "type": "object", "properties": { "name": { "type": "string" }, "status": { "type": "array", "items": { "type": "string", "enum": [ "success", "failure", "error", "cancelled", "skipped", "unstable", "timeout", "stopped", "deleted", "cached" ] } } }, "required": ["name"], "additionalProperties": false } }, "inputResources": { "type": "array", "minItems": 1, "items": { "type": "object", "properties": { "name": { "type": "string" }, "branch": { "type": "string" }, "trigger": { "type": "boolean" }, "newVersionOnly": { "type": "boolean" } }, "required": ["name"], "additionalProperties": false } }, "outputResources": { "type": "array", "minItems": 1, "items": { "type": "object", "properties": { "name": { "type": "string" }, "branch": { "type": "string" } }, "required": ["name"], "additionalProperties": false } }, "requiresApproval": { "$ref": "#/definitions/common/RequiresApproval" }, "targetRepository": { "type": "string" }, "forceXrayScan": { "type": ["string", "boolean"] }, "failOnScan": { "type": ["string", "boolean"] }, "autoPublishBuildInfo": { "type": ["string", "boolean"] } }, "required": ["inputSteps", "targetRepository"] }, "execution": { "type": "object", "additionalProperties": false, "properties": { "onStart": { "type": "array", "items": { "type": "string" } }, "onSuccess": { "type": "array", "items": { "type": "string" } }, "onFailure": { "type": "array", "items": { "type": "string" } }, "onComplete": { "type": "array", "items": { "type": "string" } }, "onCancel": { "type": "array", "items": { "type": "string" } } } } }, "required": ["name", "type", "configuration"], "additionalProperties": false }, "GoPublishModule": { "type": "object", "properties": { "name": { "type": "string" }, "type": { "type": "string" }, "configuration": { "type": "object", "additionalProperties": false, "properties": { "affinityGroup": { "type": "string" }, "timeoutSeconds": { "type": "integer", "exclusiveMinimum": 0 }, "priority": { "type": "integer", "minimum": 0, "maximum": 10000 }, "nodePool": { "type": "string" }, "chronological": { "type": "boolean" }, "environmentVariables": { "$ref": "#/definitions/common/EnvironmentVariables" }, "runtime": { "type": "object", "properties": { "type": { "type": "string", "enum": ["image", "host"] } }, "required": ["type"], "if": { "properties": { "type": { "enum": ["image"] } } }, "then": { "properties": { "type": { "enum": ["image"] }, "image": { "type": "object", "if": { "properties": { "auto": { "type": "object" } }, "required": ["auto"] }, "then": { "properties": { "auto": { "type": "object", "required": ["language"], "oneOf": [ { "required": ["version"] }, { "required": ["versions"] } ], "properties": { "language": { "type": "string" }, "version": { "type": ["string", "number"] }, "versions": { "type": "array", "minItems": 1, "items": { "type": ["string", "number"] } }, "if": { "properties": { "version": { "type": ["string", "number"] } }, "required": ["version"] }, "then": { "properties": { "version": { "type": ["string", "number"] } } }, "else": { "properties": { "versions": { "type": "array", "minItems": 1, "items": { "type": ["string", "number"] } } } } }, "additionalProperties": false } }, "additionalProperties": false }, "else": { "additionalProperties": false, "properties": { "custom": { "type": "object", "additionalProperties": false, "required": ["name", "tag"], "properties": { "name": { "type": "string" }, "tag": { "type": "string" }, "registry": { "type": "string" }, "sourceRepository": { "type": "string" }, "region": { "type": "string" }, "options": { "type": "string" }, "autoPull": { "type": "boolean" } } } } } } }, "additionalProperties": false }, "else": { "if": { "properties": { "type": { "enum": ["host"] } } }, "then": { "properties": { "type": { "enum": ["host"] } }, "additionalProperties": false } } }, "integrations": { "type": "array", "minItems": 1, "items": { "type": "object", "properties": { "name": { "type": "string" } }, "required": ["name"], "additionalProperties": false } }, "inputSteps": { "type": "array", "minItems": 1, "items": { "type": "object", "properties": { "name": { "type": "string" }, "status": { "type": "array", "items": { "type": "string", "enum": [ "success", "failure", "error", "cancelled", "skipped", "unstable", "timeout", "stopped", "deleted", "cached" ] } } }, "required": ["name"], "additionalProperties": false } }, "inputResources": { "type": "array", "minItems": 1, "items": { "type": "object", "properties": { "name": { "type": "string" }, "branch": { "type": "string" }, "trigger": { "type": "boolean" }, "newVersionOnly": { "type": "boolean" } }, "required": ["name"], "additionalProperties": false } }, "outputResources": { "type": "array", "minItems": 1, "items": { "type": "object", "properties": { "name": { "type": "string" }, "branch": { "type": "string" } }, "required": ["name"], "additionalProperties": false } }, "requiresApproval": { "$ref": "#/definitions/common/RequiresApproval" }, "sourceLocation": { "type": "string" }, "version": { "type": "string" }, "self": { "type": ["string", "boolean"] }, "deps": { "type": "string" }, "targetRepository": { "type": "string" }, "resolverRepo": { "type": "string" }, "forceXrayScan": { "type": ["string", "boolean"] }, "failOnScan": { "type": ["string", "boolean"] }, "autoPublishBuildInfo": { "type": ["string", "boolean"] } }, "required": ["version", "targetRepository"] }, "execution": { "type": "object", "additionalProperties": false, "properties": { "onStart": { "type": "array", "items": { "type": "string" } }, "onSuccess": { "type": "array", "items": { "type": "string" } }, "onFailure": { "type": "array", "items": { "type": "string" } }, "onComplete": { "type": "array", "items": { "type": "string" } }, "onCancel": { "type": "array", "items": { "type": "string" } } } } }, "required": ["name", "type", "configuration"], "additionalProperties": false }, "GradleBuild": { "type": "object", "properties": { "name": { "type": "string" }, "type": { "type": "string" }, "configuration": { "type": "object", "additionalProperties": false, "properties": { "affinityGroup": { "type": "string" }, "timeoutSeconds": { "type": "integer", "exclusiveMinimum": 0 }, "priority": { "type": "integer", "minimum": 0, "maximum": 10000 }, "nodePool": { "type": "string" }, "chronological": { "type": "boolean" }, "environmentVariables": { "$ref": "#/definitions/common/EnvironmentVariables" }, "runtime": { "type": "object", "properties": { "type": { "type": "string", "enum": ["image", "host"] } }, "required": ["type"], "if": { "properties": { "type": { "enum": ["image"] } } }, "then": { "properties": { "type": { "enum": ["image"] }, "image": { "type": "object", "if": { "properties": { "auto": { "type": "object" } }, "required": ["auto"] }, "then": { "properties": { "auto": { "type": "object", "required": ["language"], "oneOf": [ { "required": ["version"] }, { "required": ["versions"] } ], "properties": { "language": { "type": "string" }, "version": { "type": ["string", "number"] }, "versions": { "type": "array", "minItems": 1, "items": { "type": ["string", "number"] } }, "if": { "properties": { "version": { "type": ["string", "number"] } }, "required": ["version"] }, "then": { "properties": { "version": { "type": ["string", "number"] } } }, "else": { "properties": { "versions": { "type": "array", "minItems": 1, "items": { "type": ["string", "number"] } } } } }, "additionalProperties": false } }, "additionalProperties": false }, "else": { "additionalProperties": false, "properties": { "custom": { "type": "object", "additionalProperties": false, "required": ["name", "tag"], "properties": { "name": { "type": "string" }, "tag": { "type": "string" }, "registry": { "type": "string" }, "sourceRepository": { "type": "string" }, "region": { "type": "string" }, "options": { "type": "string" }, "autoPull": { "type": "boolean" } } } } } } }, "additionalProperties": false }, "else": { "if": { "properties": { "type": { "enum": ["host"] } } }, "then": { "properties": { "type": { "enum": ["host"] } }, "additionalProperties": false } } }, "integrations": { "type": "array", "minItems": 1, "items": { "type": "object", "properties": { "name": { "type": "string" } }, "required": ["name"], "additionalProperties": false } }, "inputSteps": { "type": "array", "minItems": 1, "items": { "type": "object", "properties": { "name": { "type": "string" }, "status": { "type": "array", "items": { "type": "string", "enum": [ "success", "failure", "error", "cancelled", "skipped", "unstable", "timeout", "stopped", "deleted", "cached" ] } } }, "required": ["name"], "additionalProperties": false } }, "inputResources": { "type": "array", "minItems": 1, "items": { "type": "object", "properties": { "name": { "type": "string" }, "branch": { "type": "string" }, "trigger": { "type": "boolean" }, "newVersionOnly": { "type": "boolean" } }, "required": ["name"], "additionalProperties": false } }, "outputResources": { "type": "array", "minItems": 1, "items": { "type": "object", "properties": { "name": { "type": "string" }, "branch": { "type": "string" } }, "required": ["name"], "additionalProperties": false } }, "requiresApproval": { "$ref": "#/definitions/common/RequiresApproval" }, "sourceLocation": { "type": "string" }, "gradleCommand": { "type": "string" }, "configFileLocation": { "type": "string" }, "configFileName": { "type": "string" }, "resolverRepo": { "type": "string" }, "deployerRepo": { "type": "string" }, "usesPlugin": { "type": ["string", "boolean"] }, "useWrapper": { "type": ["string", "boolean"] }, "forceXrayScan": { "type": ["string", "boolean"] }, "failOnScan": { "type": ["string", "boolean"] }, "autoPublishBuildInfo": { "type": ["string", "boolean"] } }, "required": ["gradleCommand"] }, "execution": { "type": "object", "additionalProperties": false, "properties": { "onStart": { "type": "array", "items": { "type": "string" } }, "onSuccess": { "type": "array", "items": { "type": "string" } }, "onFailure": { "type": "array", "items": { "type": "string" } }, "onComplete": { "type": "array", "items": { "type": "string" } }, "onCancel": { "type": "array", "items": { "type": "string" } } } } }, "required": ["name", "type", "configuration"], "additionalProperties": false }, "HelmBlueGreenCleanup": { "type": "object", "properties": { "name": { "type": "string" }, "type": { "type": "string" }, "configuration": { "type": "object", "additionalProperties": false, "properties": { "affinityGroup": { "type": "string" }, "timeoutSeconds": { "type": "integer", "exclusiveMinimum": 0 }, "priority": { "type": "integer", "minimum": 0, "maximum": 10000 }, "nodePool": { "type": "string" }, "chronological": { "type": "boolean" }, "deployStep": { "type": "string" }, "flags": { "type": "string" }, "environmentVariables": { "$ref": "#/definitions/common/EnvironmentVariables" }, "runtime": { "type": "object", "properties": { "type": { "type": "string", "enum": ["image", "host"] } }, "required": ["type"], "if": { "properties": { "type": { "enum": ["image"] } } }, "then": { "properties": { "type": { "enum": ["image"] }, "image": { "type": "object", "if": { "properties": { "auto": { "type": "object" } }, "required": ["auto"] }, "then": { "properties": { "auto": { "type": "object", "required": ["language"], "oneOf": [ { "required": ["version"] }, { "required": ["versions"] } ], "properties": { "language": { "type": "string" }, "version": { "type": ["string", "number"] }, "versions": { "type": "array", "minItems": 1, "items": { "type": ["string", "number"] } }, "if": { "properties": { "version": { "type": ["string", "number"] } }, "required": ["version"] }, "then": { "properties": { "version": { "type": ["string", "number"] } } }, "else": { "properties": { "versions": { "type": "array", "minItems": 1, "items": { "type": ["string", "number"] } } } } }, "additionalProperties": false } }, "additionalProperties": false }, "else": { "additionalProperties": false, "properties": { "custom": { "type": "object", "additionalProperties": false, "required": ["name", "tag"], "properties": { "name": { "type": "string" }, "tag": { "type": "string" }, "registry": { "type": "string" }, "sourceRepository": { "type": "string" }, "region": { "type": "string" }, "options": { "type": "string" }, "autoPull": { "type": "boolean" } } } } } } }, "additionalProperties": false }, "else": { "if": { "properties": { "type": { "enum": ["host"] } } }, "then": { "properties": { "type": { "enum": ["host"] } }, "additionalProperties": false } } }, "integrations": { "type": "array", "minItems": 1, "items": { "type": "object", "properties": { "name": { "type": "string" } }, "required": ["name"], "additionalProperties": false } }, "inputSteps": { "type": "array", "minItems": 1, "items": { "type": "object", "properties": { "name": { "type": "string" } }, "required": ["name"], "additionalProperties": false } }, "inputResources": { "type": "array", "minItems": 1, "items": { "type": "object", "properties": { "name": { "type": "string" }, "branch": { "type": "string" }, "trigger": { "type": "boolean" }, "newVersionOnly": { "type": "boolean" } }, "required": ["name"], "additionalProperties": false } }, "outputResources": { "type": "array", "minItems": 1, "items": { "type": "object", "properties": { "name": { "type": "string" }, "branch": { "type": "string" } }, "required": ["name"], "additionalProperties": false } }, "requiresApproval": { "$ref": "#/definitions/common/RequiresApproval" } }, "required": ["deployStep"] }, "execution": { "type": "object", "additionalProperties": false, "properties": { "onStart": { "type": "array", "items": { "type": "string" } }, "onSuccess": { "type": "array", "items": { "type": "string" } }, "onFailure": { "type": "array", "items": { "type": "string" } }, "onComplete": { "type": "array", "items": { "type": "string" } }, "onCancel": { "type": "array", "items": { "type": "string" } } } } }, "required": ["configuration", "name", "type"], "additionalProperties": false }, "HelmBlueGreenDeploy": { "type": "object", "properties": { "name": { "type": "string" }, "type": { "type": "string" }, "configuration": { "type": "object", "additionalProperties": false, "properties": { "affinityGroup": { "type": "string" }, "timeoutSeconds": { "type": "integer", "exclusiveMinimum": 0 }, "priority": { "type": "integer", "minimum": 0, "maximum": 10000 }, "nodePool": { "type": "string" }, "chronological": { "type": "boolean" }, "helmVersion": { "type": ["string", "integer"], "enum": ["2", "3", 2, 3] }, "namespace": { "type": "string" }, "blueReleaseName": { "type": "string" }, "blueValueFilePaths": { "type": "array" }, "blueFlags": { "type": "string" }, "greenReleaseName": { "type": "string" }, "greenValueFilePaths": { "type": "array" }, "greenFlags": { "type": "string" }, "roleServices": { "type": "array", "minItems": 1, "items": { "type": "object", "properties": { "blueReferenceName": { "type": "string" }, "greenReferenceName": { "type": "string" }, "idleName": { "type": "string" }, "idleCustomProperties": { "type": "string" }, "liveName": { "type": "string" }, "liveCustomProperties": { "type": "string" } }, "required": [ "blueReferenceName", "greenReferenceName", "idleName", "liveName" ], "additionalProperties": false } }, "chartPath": { "type": "string" }, "chartName": { "type": "string" }, "chartVersion": { "type": "string" }, "dryRun": { "type": ["string", "boolean"] }, "lint": { "type": ["string", "boolean"] }, "lintFlags": { "type": "string" }, "test": { "type": ["string", "boolean"] }, "testFlags": { "type": "string" }, "environmentVariables": { "$ref": "#/definitions/common/EnvironmentVariables" }, "runtime": { "type": "object", "properties": { "type": { "type": "string", "enum": ["image", "host"] } }, "required": ["type"], "if": { "properties": { "type": { "enum": ["image"] } } }, "then": { "properties": { "type": { "enum": ["image"] }, "image": { "type": "object", "if": { "properties": { "auto": { "type": "object" } }, "required": ["auto"] }, "then": { "properties": { "auto": { "type": "object", "required": ["language"], "oneOf": [ { "required": ["version"] }, { "required": ["versions"] } ], "properties": { "language": { "type": "string" }, "version": { "type": ["string", "number"] }, "versions": { "type": "array", "minItems": 1, "items": { "type": ["string", "number"] } }, "if": { "properties": { "version": { "type": ["string", "number"] } }, "required": ["version"] }, "then": { "properties": { "version": { "type": ["string", "number"] } } }, "else": { "properties": { "versions": { "type": "array", "minItems": 1, "items": { "type": ["string", "number"] } } } } }, "additionalProperties": false } }, "additionalProperties": false }, "else": { "additionalProperties": false, "properties": { "custom": { "type": "object", "additionalProperties": false, "required": ["name", "tag"], "properties": { "name": { "type": "string" }, "tag": { "type": "string" }, "registry": { "type": "string" }, "sourceRepository": { "type": "string" }, "region": { "type": "string" }, "options": { "type": "string" }, "autoPull": { "type": "boolean" } } } } } } }, "additionalProperties": false }, "else": { "if": { "properties": { "type": { "enum": ["host"] } } }, "then": { "properties": { "type": { "enum": ["host"] } }, "additionalProperties": false } } }, "integrations": { "type": "array", "minItems": 1, "items": { "type": "object", "properties": { "name": { "type": "string" } }, "required": ["name"], "additionalProperties": false } }, "inputSteps": { "type": "array", "minItems": 1, "items": { "type": "object", "properties": { "name": { "type": "string" } }, "required": ["name"], "additionalProperties": false } }, "inputResources": { "type": "array", "minItems": 1, "items": { "type": "object", "properties": { "name": { "type": "string" }, "branch": { "type": "string" }, "trigger": { "type": "boolean" }, "newVersionOnly": { "type": "boolean" } }, "required": ["name"], "additionalProperties": false } }, "outputResources": { "type": "array", "minItems": 1, "items": { "type": "object", "properties": { "name": { "type": "string" }, "branch": { "type": "string" } }, "required": ["name"], "additionalProperties": false } }, "requiresApproval": { "$ref": "#/definitions/common/RequiresApproval" } }, "required": [ "namespace", "blueReleaseName", "greenReleaseName", "roleServices" ] }, "execution": { "type": "object", "additionalProperties": false, "properties": { "onStart": { "type": "array", "items": { "type": "string" } }, "onSuccess": { "type": "array", "items": { "type": "string" } }, "onFailure": { "type": "array", "items": { "type": "string" } }, "onComplete": { "type": "array", "items": { "type": "string" } }, "onCancel": { "type": "array", "items": { "type": "string" } } } } }, "required": ["configuration", "name", "type"], "additionalProperties": false }, "HelmBlueGreenRoleSwitch": { "type": "object", "properties": { "name": { "type": "string" }, "type": { "type": "string" }, "configuration": { "type": "object", "additionalProperties": false, "properties": { "affinityGroup": { "type": "string" }, "timeoutSeconds": { "type": "integer", "exclusiveMinimum": 0 }, "priority": { "type": "integer", "minimum": 0, "maximum": 10000 }, "nodePool": { "type": "string" }, "chronological": { "type": "boolean" }, "deployStep": { "type": "string" }, "environmentVariables": { "$ref": "#/definitions/common/EnvironmentVariables" }, "runtime": { "type": "object", "properties": { "type": { "type": "string", "enum": ["image", "host"] } }, "required": ["type"], "if": { "properties": { "type": { "enum": ["image"] } } }, "then": { "properties": { "type": { "enum": ["image"] }, "image": { "type": "object", "if": { "properties": { "auto": { "type": "object" } }, "required": ["auto"] }, "then": { "properties": { "auto": { "type": "object", "required": ["language"], "oneOf": [ { "required": ["version"] }, { "required": ["versions"] } ], "properties": { "language": { "type": "string" }, "version": { "type": ["string", "number"] }, "versions": { "type": "array", "minItems": 1, "items": { "type": ["string", "number"] } }, "if": { "properties": { "version": { "type": ["string", "number"] } }, "required": ["version"] }, "then": { "properties": { "version": { "type": ["string", "number"] } } }, "else": { "properties": { "versions": { "type": "array", "minItems": 1, "items": { "type": ["string", "number"] } } } } }, "additionalProperties": false } }, "additionalProperties": false }, "else": { "additionalProperties": false, "properties": { "custom": { "type": "object", "additionalProperties": false, "required": ["name", "tag"], "properties": { "name": { "type": "string" }, "tag": { "type": "string" }, "registry": { "type": "string" }, "sourceRepository": { "type": "string" }, "region": { "type": "string" }, "options": { "type": "string" }, "autoPull": { "type": "boolean" } } } } } } }, "additionalProperties": false }, "else": { "if": { "properties": { "type": { "enum": ["host"] } } }, "then": { "properties": { "type": { "enum": ["host"] } }, "additionalProperties": false } } }, "integrations": { "type": "array", "minItems": 1, "items": { "type": "object", "properties": { "name": { "type": "string" } }, "required": ["name"], "additionalProperties": false } }, "inputSteps": { "type": "array", "minItems": 1, "items": { "type": "object", "properties": { "name": { "type": "string" } }, "required": ["name"], "additionalProperties": false } }, "inputResources": { "type": "array", "minItems": 1, "items": { "type": "object", "properties": { "name": { "type": "string" }, "branch": { "type": "string" }, "trigger": { "type": "boolean" }, "newVersionOnly": { "type": "boolean" } }, "required": ["name"], "additionalProperties": false } }, "outputResources": { "type": "array", "minItems": 1, "items": { "type": "object", "properties": { "name": { "type": "string" }, "branch": { "type": "string" } }, "required": ["name"], "additionalProperties": false } }, "requiresApproval": { "$ref": "#/definitions/common/RequiresApproval" } }, "required": ["deployStep"] }, "execution": { "type": "object", "additionalProperties": false, "properties": { "onStart": { "type": "array", "items": { "type": "string" } }, "onSuccess": { "type": "array", "items": { "type": "string" } }, "onFailure": { "type": "array", "items": { "type": "string" } }, "onComplete": { "type": "array", "items": { "type": "string" } }, "onCancel": { "type": "array", "items": { "type": "string" } } } } }, "required": ["configuration", "name", "type"], "additionalProperties": false }, "HelmDeploy": { "type": "object", "properties": { "name": { "type": "string" }, "type": { "type": "string" }, "configuration": { "type": "object", "additionalProperties": false, "properties": { "affinityGroup": { "type": "string" }, "timeoutSeconds": { "type": "integer", "exclusiveMinimum": 0 }, "priority": { "type": "integer", "minimum": 0, "maximum": 10000 }, "nodePool": { "type": "string" }, "chronological": { "type": "boolean" }, "helmVersion": { "type": ["string", "integer"], "enum": ["2", "3", 2, 3] }, "chartPath": { "type": "string" }, "chartName": { "type": "string" }, "chartVersion": { "type": "string" }, "releaseName": { "type": "string" }, "valueFilePaths": { "type": "array" }, "namespace": { "type": "string" }, "flags": { "type": "string" }, "dryRun": { "type": ["string", "boolean"] }, "lint": { "type": ["string", "boolean"] }, "lintFlags": { "type": "string" }, "test": { "type": ["string", "boolean"] }, "testFlags": { "type": "string" }, "environmentVariables": { "$ref": "#/definitions/common/EnvironmentVariables" }, "runtime": { "type": "object", "properties": { "type": { "type": "string", "enum": ["image", "host"] } }, "required": ["type"], "if": { "properties": { "type": { "enum": ["image"] } } }, "then": { "properties": { "type": { "enum": ["image"] }, "image": { "type": "object", "if": { "properties": { "auto": { "type": "object" } }, "required": ["auto"] }, "then": { "properties": { "auto": { "type": "object", "required": ["language"], "oneOf": [ { "required": ["version"] }, { "required": ["versions"] } ], "properties": { "language": { "type": "string" }, "version": { "type": ["string", "number"] }, "versions": { "type": "array", "minItems": 1, "items": { "type": ["string", "number"] } }, "if": { "properties": { "version": { "type": ["string", "number"] } }, "required": ["version"] }, "then": { "properties": { "version": { "type": ["string", "number"] } } }, "else": { "properties": { "versions": { "type": "array", "minItems": 1, "items": { "type": ["string", "number"] } } } } }, "additionalProperties": false } }, "additionalProperties": false }, "else": { "additionalProperties": false, "properties": { "custom": { "type": "object", "additionalProperties": false, "required": ["name", "tag"], "properties": { "name": { "type": "string" }, "tag": { "type": "string" }, "registry": { "type": "string" }, "sourceRepository": { "type": "string" }, "region": { "type": "string" }, "options": { "type": "string" }, "autoPull": { "type": "boolean" } } } } } } }, "additionalProperties": false }, "else": { "if": { "properties": { "type": { "enum": ["host"] } } }, "then": { "properties": { "type": { "enum": ["host"] } }, "additionalProperties": false } } }, "integrations": { "type": "array", "minItems": 1, "items": { "type": "object", "properties": { "name": { "type": "string" } }, "required": ["name"], "additionalProperties": false } }, "inputSteps": { "type": "array", "minItems": 1, "items": { "type": "object", "properties": { "name": { "type": "string" }, "status": { "type": "array", "items": { "type": "string", "enum": [ "success", "failure", "error", "cancelled", "skipped", "unstable", "timeout", "stopped", "deleted", "cached" ] } } }, "required": ["name"], "additionalProperties": false } }, "inputResources": { "type": "array", "minItems": 1, "items": { "type": "object", "properties": { "name": { "type": "string" }, "branch": { "type": "string" }, "trigger": { "type": "boolean" }, "newVersionOnly": { "type": "boolean" } }, "required": ["name"], "additionalProperties": false } }, "outputResources": { "type": "array", "minItems": 1, "items": { "type": "object", "properties": { "name": { "type": "string" }, "branch": { "type": "string" } }, "required": ["name"], "additionalProperties": false } }, "requiresApproval": { "$ref": "#/definitions/common/RequiresApproval" } }, "required": ["releaseName"] }, "execution": { "type": "object", "additionalProperties": false, "properties": { "onStart": { "type": "array", "items": { "type": "string" } }, "onSuccess": { "type": "array", "items": { "type": "string" } }, "onFailure": { "type": "array", "items": { "type": "string" } }, "onComplete": { "type": "array", "items": { "type": "string" } }, "onCancel": { "type": "array", "items": { "type": "string" } } } } }, "required": ["configuration", "name", "type"], "additionalProperties": false }, "HelmPublish": { "type": "object", "properties": { "name": { "type": "string" }, "type": { "type": "string" }, "configuration": { "type": "object", "additionalProperties": false, "properties": { "affinityGroup": { "type": "string" }, "timeoutSeconds": { "type": "integer", "exclusiveMinimum": 0 }, "priority": { "type": "integer", "minimum": 0, "maximum": 10000 }, "nodePool": { "type": "string" }, "chronological": { "type": "boolean" }, "chartPath": { "type": "string" }, "forceXrayScan": { "type": ["string", "boolean"] }, "autoPublishBuildInfo": { "type": ["string", "boolean"] }, "flags": { "type": "string" }, "helmVersion": { "type": ["string", "integer"], "enum": ["2", "3", 2, 3] }, "valueFilePaths": { "type": "array" }, "lint": { "type": ["string", "boolean"] }, "lintFlags": { "type": "string" }, "environmentVariables": { "$ref": "#/definitions/common/EnvironmentVariables" }, "runtime": { "type": "object", "properties": { "type": { "type": "string", "enum": ["image", "host"] } }, "required": ["type"], "if": { "properties": { "type": { "enum": ["image"] } } }, "then": { "properties": { "type": { "enum": ["image"] }, "image": { "type": "object", "if": { "properties": { "auto": { "type": "object" } }, "required": ["auto"] }, "then": { "properties": { "auto": { "type": "object", "required": ["language"], "oneOf": [ { "required": ["version"] }, { "required": ["versions"] } ], "properties": { "language": { "type": "string" }, "version": { "type": ["string", "number"] }, "versions": { "type": "array", "minItems": 1, "items": { "type": ["string", "number"] } }, "if": { "properties": { "version": { "type": ["string", "number"] } }, "required": ["version"] }, "then": { "properties": { "version": { "type": ["string", "number"] } } }, "else": { "properties": { "versions": { "type": "array", "minItems": 1, "items": { "type": ["string", "number"] } } } } }, "additionalProperties": false } }, "additionalProperties": false }, "else": { "additionalProperties": false, "properties": { "custom": { "type": "object", "additionalProperties": false, "required": ["name", "tag"], "properties": { "name": { "type": "string" }, "tag": { "type": "string" }, "registry": { "type": "string" }, "sourceRepository": { "type": "string" }, "region": { "type": "string" }, "options": { "type": "string" }, "autoPull": { "type": "boolean" } } } } } } }, "additionalProperties": false }, "else": { "if": { "properties": { "type": { "enum": ["host"] } } }, "then": { "properties": { "type": { "enum": ["host"] } }, "additionalProperties": false } } }, "integrations": { "type": "array", "minItems": 1, "items": { "type": "object", "properties": { "name": { "type": "string" } }, "required": ["name"], "additionalProperties": false } }, "inputSteps": { "type": "array", "minItems": 1, "items": { "type": "object", "properties": { "name": { "type": "string" }, "status": { "type": "array", "items": { "type": "string", "enum": [ "success", "failure", "error", "cancelled", "skipped", "unstable", "timeout", "stopped", "deleted", "cached" ] } } }, "required": ["name"], "additionalProperties": false } }, "inputResources": { "type": "array", "minItems": 1, "items": { "type": "object", "properties": { "name": { "type": "string" }, "branch": { "type": "string" }, "trigger": { "type": "boolean" }, "newVersionOnly": { "type": "boolean" } }, "required": ["name"], "additionalProperties": false } }, "outputResources": { "type": "array", "minItems": 1, "items": { "type": "object", "properties": { "name": { "type": "string" }, "branch": { "type": "string" } }, "required": ["name"], "additionalProperties": false } }, "requiresApproval": { "$ref": "#/definitions/common/RequiresApproval" } }, "required": ["chartPath"] }, "execution": { "type": "object", "additionalProperties": false, "properties": { "onStart": { "type": "array", "items": { "type": "string" } }, "onSuccess": { "type": "array", "items": { "type": "string" } }, "onFailure": { "type": "array", "items": { "type": "string" } }, "onComplete": { "type": "array", "items": { "type": "string" } }, "onCancel": { "type": "array", "items": { "type": "string" } } } } }, "required": ["configuration", "name", "type"], "additionalProperties": false }, "Jenkins": { "type": "object", "properties": { "name": { "type": "string" }, "type": { "type": "string" }, "configuration": { "type": "object", "additionalProperties": false, "properties": { "timeoutSeconds": { "type": "integer", "exclusiveMinimum": 0 }, "priority": { "type": "integer", "minimum": 0, "maximum": 10000 }, "chronological": { "type": "boolean" }, "jenkinsJobName": { "type": "string" }, "jenkinsBranchName": { "type": "string" }, "buildParameters": { "type": "object", "additionalProperties": { "type": ["string", "number"] } }, "inputSteps": { "type": "array", "minItems": 1, "items": { "type": "object", "properties": { "name": { "type": "string" } }, "required": ["name"], "additionalProperties": false } }, "inputResources": { "type": "array", "minItems": 1, "items": { "type": "object", "properties": { "name": { "type": "string" }, "branch": { "type": "string" }, "trigger": { "type": "boolean" }, "newVersionOnly": { "type": "boolean" } }, "required": ["name"], "additionalProperties": false } }, "outputResources": { "type": "array", "minItems": 1, "items": { "type": "object", "properties": { "name": { "type": "string" }, "branch": { "type": "string" } }, "required": ["name"], "additionalProperties": false } }, "requiresApproval": { "$ref": "#/definitions/common/RequiresApproval" }, "integrations": { "type": "array", "minItems": 1, "items": { "type": "object", "properties": { "name": { "type": "string" } }, "required": ["name"], "additionalProperties": false } } }, "required": ["jenkinsJobName"] } }, "required": ["configuration", "name", "type"], "additionalProperties": false }, "Matrix": { "type": "object", "properties": { "name": { "type": "string" }, "type": { "type": "string" }, "stepMode": { "type": "string", "enum": ["Bash", "Powershell"] }, "configuration": { "type": "object", "additionalProperties": false, "properties": { "affinityGroup": { "type": "string" }, "timeoutSeconds": { "type": "integer", "exclusiveMinimum": 0 }, "priority": { "type": "integer", "minimum": 0, "maximum": 10000 }, "nodePool": { "type": "string" }, "chronological": { "type": "boolean" }, "multiNode": { "type": "boolean" }, "environmentVariables": { "$ref": "#/definitions/common/EnvironmentVariables" }, "runtime": { "type": "object", "properties": { "type": { "type": "string", "enum": ["image", "host"] } }, "required": ["type"], "if": { "properties": { "type": { "enum": ["image"] } } }, "then": { "properties": { "type": { "enum": ["image"] }, "image": { "type": "object", "if": { "properties": { "auto": { "type": "object" } }, "required": ["auto"] }, "then": { "properties": { "auto": { "type": "object", "required": ["language"], "oneOf": [ { "required": ["version"] }, { "required": ["versions"] } ], "properties": { "language": { "type": "string" }, "version": { "type": ["string", "number"] }, "versions": { "type": "array", "minItems": 1, "items": { "type": ["string", "number"] } }, "if": { "properties": { "version": { "type": ["string", "number"] } }, "required": ["version"] }, "then": { "properties": { "version": { "type": ["string", "number"] } } }, "else": { "properties": { "versions": { "type": "array", "minItems": 1, "items": { "type": ["string", "number"] } } } } }, "additionalProperties": false } }, "additionalProperties": false }, "else": { "additionalProperties": false, "properties": { "custom": { "type": "object", "additionalProperties": false, "required": ["name", "tag"], "properties": { "name": { "type": "string" }, "tag": { "type": "string" }, "registry": { "type": "string" }, "sourceRepository": { "type": "string" }, "region": { "type": "string" }, "options": { "type": "string" }, "autoPull": { "type": "boolean" } } } } } } }, "additionalProperties": false }, "else": { "if": { "properties": { "type": { "enum": ["host"] } } }, "then": { "properties": { "type": { "enum": ["host"] } }, "additionalProperties": false } } }, "integrations": { "type": "array", "minItems": 1, "items": { "type": "object", "properties": { "name": { "type": "string" } }, "required": ["name"], "additionalProperties": false } }, "inputSteps": { "type": "array", "minItems": 1, "items": { "type": "object", "properties": { "name": { "type": "string" }, "status": { "type": "array", "items": { "type": "string", "enum": [ "success", "failure", "error", "cancelled", "skipped", "unstable", "timeout", "stopped", "deleted", "cached" ] } } }, "required": ["name"], "additionalProperties": false } }, "inputResources": { "type": "array", "minItems": 1, "items": { "type": "object", "properties": { "name": { "type": "string" }, "branch": { "type": "string" }, "trigger": { "type": "boolean" }, "newVersionOnly": { "type": "boolean" } }, "required": ["name"], "additionalProperties": false } }, "outputResources": { "type": "array", "minItems": 1, "items": { "type": "object", "properties": { "name": { "type": "string" }, "branch": { "type": "string" } }, "required": ["name"], "additionalProperties": false } }, "requiresApproval": { "$ref": "#/definitions/common/RequiresApproval" } } }, "stepletMultipliers": { "type": "object", "properties": { "environmentVariables": { "type": "array", "minItems": 1, "items": { "type": "object", "additionalProperties": true }, "additionalProperties": false }, "runtimes": { "type": "array", "minItems": 1, "items": { "type": "object", "properties": { "type": { "type": "string", "enum": ["image", "host"] } }, "required": ["type"], "if": { "properties": { "type": { "enum": ["image"] } } }, "then": { "properties": { "type": { "enum": ["image"] }, "image": { "type": "object", "if": { "properties": { "auto": { "type": "object" } }, "required": ["auto"] }, "then": { "additionalProperties": false, "properties": { "auto": { "type": "object", "additionalProperties": false, "required": ["language", "versions"], "properties": { "language": { "type": "string" }, "versions": { "type": "array", "minItems": 1, "items": { "type": ["string", "number"] } } } } } }, "else": { "additionalProperties": false, "properties": { "custom": { "type": "object", "additionalProperties": false, "required": ["name", "tag"], "properties": { "name": { "type": "string" }, "tag": { "type": "string" }, "registry": { "type": "string" }, "sourceRepository": { "type": "string" }, "region": { "type": "string" }, "options": { "type": "string" }, "autoPull": { "type": "boolean" } } } } } } }, "additionalProperties": false }, "else": { "if": { "properties": { "type": { "enum": ["host"] } } }, "then": { "properties": { "type": { "enum": ["host"] } }, "additionalProperties": false } } }, "additionalProperties": false }, "exclude": { "type": "array", "items": { "type": "object", "properties": { "environmentVariables": { "type": "object" }, "runtime": { "type": "object", "properties": { "type": { "type": "string", "enum": ["image", "host"] } }, "required": ["type"], "if": { "properties": { "type": { "enum": ["image"] } } }, "then": { "properties": { "type": { "enum": ["image"] }, "image": { "type": "object", "if": { "properties": { "auto": { "type": "object" } }, "required": ["auto"] }, "then": { "additionalProperties": false, "properties": { "auto": { "type": "object", "additionalProperties": false, "required": ["language", "versions"], "properties": { "language": { "type": "string" }, "versions": { "type": "array", "minItems": 1, "items": { "type": ["string", "number"] } } } } } }, "else": { "additionalProperties": false, "properties": { "custom": { "type": "object", "additionalProperties": false, "required": ["name", "tag"], "properties": { "name": { "type": "string" }, "tag": { "type": "string" }, "registry": { "type": "string" }, "sourceRepository": { "type": "string" }, "region": { "type": "string" }, "options": { "type": "string" }, "autoPull": { "type": "boolean" } } } } } } }, "additionalProperties": false }, "else": { "if": { "properties": { "type": { "enum": ["host"] } } }, "then": { "properties": { "type": { "enum": ["host"] } }, "additionalProperties": false } } }, "additionalProperties": false } }, "additionalProperties": false }, "fastFail": { "type": "boolean", "additionalProperties": false }, "allowFailures": { "type": "array", "items": { "type": "object", "properties": { "environmentVariables": { "type": "object" }, "runtime": { "type": "object", "properties": { "type": { "type": "string", "enum": ["image", "host"] } }, "required": ["type"], "if": { "properties": { "type": { "enum": ["image"] } } }, "then": { "properties": { "type": { "enum": ["image"] }, "image": { "type": "object", "if": { "properties": { "auto": { "type": "object" } }, "required": ["auto"] }, "then": { "additionalProperties": false, "properties": { "auto": { "type": "object", "additionalProperties": false, "required": ["language", "versions"], "properties": { "language": { "type": "string" }, "versions": { "type": "array", "minItems": 1, "items": { "type": ["string", "number"] } } } } } }, "else": { "additionalProperties": false, "properties": { "custom": { "type": "object", "additionalProperties": false, "required": ["name", "tag"], "properties": { "name": { "type": "string" }, "tag": { "type": "string" }, "registry": { "type": "string" }, "sourceRepository": { "type": "string" }, "region": { "type": "string" }, "options": { "type": "string" }, "autoPull": { "type": "boolean" } } } } } } }, "additionalProperties": false }, "else": { "if": { "properties": { "type": { "enum": ["host"] } } }, "then": { "properties": { "type": { "enum": ["host"] } }, "additionalProperties": false } } } }, "additionalProperties": false }, "additionalProperties": false }, "additionalProperties": false }, "additionalProperties": false }, "execution": { "type": "object", "additionalProperties": false, "properties": { "onStart": { "type": "array", "items": { "type": "string" } }, "onExecute": { "type": "array", "items": { "type": "string" } }, "onSuccess": { "type": "array", "items": { "type": "string" } }, "onFailure": { "type": "array", "items": { "type": "string" } }, "onComplete": { "type": "array", "items": { "type": "string" } }, "onCancel": { "type": "array", "items": { "type": "string" } } } } }, "required": ["name", "type", "execution"], "additionalProperties": false }, "PreMatrix": { "type": "object", "properties": { "name": { "type": "string" }, "type": { "type": "string" }, "configuration": { "type": "object", "additionalProperties": false, "properties": { "affinityGroup": { "type": "string" }, "timeoutSeconds": { "type": "integer", "exclusiveMinimum": 0 }, "priority": { "type": "integer", "minimum": 0, "maximum": 10000 }, "nodePool": { "type": "string" }, "chronological": { "type": "boolean" }, "environmentVariables": { "$ref": "#/definitions/common/EnvironmentVariables" }, "runtime": { "type": "object", "properties": { "type": { "type": "string", "enum": ["image", "host"] } }, "required": ["type"], "if": { "properties": { "type": { "enum": ["image"] } } }, "then": { "properties": { "type": { "enum": ["image"] }, "image": { "type": "object", "if": { "properties": { "auto": { "type": "object" } }, "required": ["auto"] }, "then": { "properties": { "auto": { "type": "object", "required": ["language"], "oneOf": [ { "required": ["version"] }, { "required": ["versions"] } ], "properties": { "language": { "type": "string" }, "version": { "type": ["string", "number"] }, "versions": { "type": "array", "minItems": 1, "items": { "type": ["string", "number"] } }, "if": { "properties": { "version": { "type": ["string", "number"] } }, "required": ["version"] }, "then": { "properties": { "version": { "type": ["string", "number"] } } }, "else": { "properties": { "versions": { "type": "array", "minItems": 1, "items": { "type": ["string", "number"] } } } } }, "additionalProperties": false } }, "additionalProperties": false }, "else": { "additionalProperties": false, "properties": { "custom": { "type": "object", "additionalProperties": false, "required": ["name", "tag"], "properties": { "name": { "type": "string" }, "tag": { "type": "string" }, "registry": { "type": "string" }, "sourceRepository": { "type": "string" }, "region": { "type": "string" }, "options": { "type": "string" }, "autoPull": { "type": "boolean" } } } } } } }, "additionalProperties": false }, "else": { "if": { "properties": { "type": { "enum": ["host"] } } }, "then": { "properties": { "type": { "enum": ["host"] } }, "additionalProperties": false } } }, "integrations": { "type": "array", "minItems": 1, "items": { "type": "object", "properties": { "name": { "type": "string" } }, "required": ["name"], "additionalProperties": false } }, "inputSteps": { "type": "array", "minItems": 1, "items": { "type": "object", "properties": { "name": { "type": "string" }, "status": { "type": "array", "items": { "type": "string", "enum": [ "success", "failure", "error", "cancelled", "skipped", "unstable", "timeout", "stopped", "deleted", "cached" ] } } }, "required": ["name"], "additionalProperties": false } }, "inputResources": { "type": "array", "minItems": 1, "items": { "type": "object", "properties": { "name": { "type": "string" }, "branch": { "type": "string" }, "trigger": { "type": "boolean" }, "newVersionOnly": { "type": "boolean" } }, "required": ["name"], "additionalProperties": false } }, "outputResources": { "type": "array", "minItems": 1, "items": { "type": "object", "properties": { "name": { "type": "string" }, "branch": { "type": "string" } }, "required": ["name"], "additionalProperties": false } }, "requiresApproval": { "$ref": "#/definitions/common/RequiresApproval" } } }, "execution": { "type": "object", "additionalProperties": false, "properties": { "onStart": { "type": "array", "items": { "type": "string" } }, "onExecute": { "type": "array", "items": { "type": "string" } }, "onSuccess": { "type": "array", "items": { "type": "string" } }, "onFailure": { "type": "array", "items": { "type": "string" } }, "onComplete": { "type": "array", "items": { "type": "string" } }, "onCancel": { "type": "array", "items": { "type": "string" } } } } }, "required": ["name", "type", "execution"], "additionalProperties": false }, "PostMatrix": { "type": "object", "properties": { "name": { "type": "string" }, "type": { "type": "string" }, "configuration": { "type": "object", "additionalProperties": false, "properties": { "affinityGroup": { "type": "string" }, "timeoutSeconds": { "type": "integer", "exclusiveMinimum": 0 }, "priority": { "type": "integer", "minimum": 0, "maximum": 10000 }, "nodePool": { "type": "string" }, "chronological": { "type": "boolean" }, "environmentVariables": { "$ref": "#/definitions/common/EnvironmentVariables" }, "runtime": { "type": "object", "properties": { "type": { "type": "string", "enum": ["image", "host"] } }, "required": ["type"], "if": { "properties": { "type": { "enum": ["image"] } } }, "then": { "properties": { "type": { "enum": ["image"] }, "image": { "type": "object", "if": { "properties": { "auto": { "type": "object" } }, "required": ["auto"] }, "then": { "properties": { "auto": { "type": "object", "required": ["language"], "oneOf": [ { "required": ["version"] }, { "required": ["versions"] } ], "properties": { "language": { "type": "string" }, "version": { "type": ["string", "number"] }, "versions": { "type": "array", "minItems": 1, "items": { "type": ["string", "number"] } }, "if": { "properties": { "version": { "type": ["string", "number"] } }, "required": ["version"] }, "then": { "properties": { "version": { "type": ["string", "number"] } } }, "else": { "properties": { "versions": { "type": "array", "minItems": 1, "items": { "type": ["string", "number"] } } } } }, "additionalProperties": false } }, "additionalProperties": false }, "else": { "additionalProperties": false, "properties": { "custom": { "type": "object", "additionalProperties": false, "required": ["name", "tag"], "properties": { "name": { "type": "string" }, "tag": { "type": "string" }, "registry": { "type": "string" }, "sourceRepository": { "type": "string" }, "region": { "type": "string" }, "options": { "type": "string" }, "autoPull": { "type": "boolean" } } } } } } }, "additionalProperties": false }, "else": { "if": { "properties": { "type": { "enum": ["host"] } } }, "then": { "properties": { "type": { "enum": ["host"] } }, "additionalProperties": false } } }, "integrations": { "type": "array", "minItems": 1, "items": { "type": "object", "properties": { "name": { "type": "string" } }, "required": ["name"], "additionalProperties": false } }, "inputSteps": { "type": "array", "minItems": 1, "items": { "type": "object", "properties": { "name": { "type": "string" }, "status": { "type": "array", "items": { "type": "string", "enum": [ "success", "failure", "error", "cancelled", "skipped", "unstable", "timeout", "stopped", "deleted", "cached" ] } } }, "required": ["name"], "additionalProperties": false } }, "inputResources": { "type": "array", "minItems": 1, "items": { "type": "object", "properties": { "name": { "type": "string" }, "branch": { "type": "string" }, "trigger": { "type": "boolean" }, "newVersionOnly": { "type": "boolean" } }, "required": ["name"], "additionalProperties": false } }, "outputResources": { "type": "array", "minItems": 1, "items": { "type": "object", "properties": { "name": { "type": "string" }, "branch": { "type": "string" } }, "required": ["name"], "additionalProperties": false } }, "requiresApproval": { "$ref": "#/definitions/common/RequiresApproval" } } }, "execution": { "type": "object", "additionalProperties": false, "properties": { "onStart": { "type": "array", "items": { "type": "string" } }, "onExecute": { "type": "array", "items": { "type": "string" } }, "onSuccess": { "type": "array", "items": { "type": "string" } }, "onFailure": { "type": "array", "items": { "type": "string" } }, "onComplete": { "type": "array", "items": { "type": "string" } }, "onCancel": { "type": "array", "items": { "type": "string" } } } } }, "required": ["name", "type", "execution"], "additionalProperties": false }, "MvnBuild": { "type": "object", "properties": { "name": { "type": "string" }, "type": { "type": "string" }, "configuration": { "type": "object", "additionalProperties": false, "properties": { "affinityGroup": { "type": "string" }, "timeoutSeconds": { "type": "integer", "exclusiveMinimum": 0 }, "priority": { "type": "integer", "minimum": 0, "maximum": 10000 }, "nodePool": { "type": "string" }, "chronological": { "type": "boolean" }, "forceXrayScan": { "type": ["string", "boolean"] }, "failOnScan": { "type": ["string", "boolean"] }, "autoPublishBuildInfo": { "type": ["string", "boolean"] }, "environmentVariables": { "$ref": "#/definitions/common/EnvironmentVariables" }, "runtime": { "type": "object", "properties": { "type": { "type": "string", "enum": ["image", "host"] } }, "required": ["type"], "if": { "properties": { "type": { "enum": ["image"] } } }, "then": { "properties": { "type": { "enum": ["image"] }, "image": { "type": "object", "if": { "properties": { "auto": { "type": "object" } }, "required": ["auto"] }, "then": { "properties": { "auto": { "type": "object", "required": ["language"], "oneOf": [ { "required": ["version"] }, { "required": ["versions"] } ], "properties": { "language": { "type": "string" }, "version": { "type": ["string", "number"] }, "versions": { "type": "array", "minItems": 1, "items": { "type": ["string", "number"] } }, "if": { "properties": { "version": { "type": ["string", "number"] } }, "required": ["version"] }, "then": { "properties": { "version": { "type": ["string", "number"] } } }, "else": { "properties": { "versions": { "type": "array", "minItems": 1, "items": { "type": ["string", "number"] } } } } }, "additionalProperties": false } }, "additionalProperties": false }, "else": { "additionalProperties": false, "properties": { "custom": { "type": "object", "additionalProperties": false, "required": ["name", "tag"], "properties": { "name": { "type": "string" }, "tag": { "type": "string" }, "registry": { "type": "string" }, "sourceRepository": { "type": "string" }, "region": { "type": "string" }, "options": { "type": "string" }, "autoPull": { "type": "boolean" } } } } } } }, "additionalProperties": false }, "else": { "if": { "properties": { "type": { "enum": ["host"] } } }, "then": { "properties": { "type": { "enum": ["host"] } }, "additionalProperties": false } } }, "integrations": { "type": "array", "minItems": 1, "items": { "type": "object", "properties": { "name": { "type": "string" } }, "required": ["name"], "additionalProperties": false } }, "inputSteps": { "type": "array", "minItems": 1, "items": { "type": "object", "properties": { "name": { "type": "string" }, "status": { "type": "array", "items": { "type": "string", "enum": [ "success", "failure", "error", "cancelled", "skipped", "unstable", "timeout", "stopped", "deleted", "cached" ] } } }, "required": ["name"], "additionalProperties": false } }, "inputResources": { "type": "array", "minItems": 1, "items": { "type": "object", "properties": { "name": { "type": "string" }, "branch": { "type": "string" }, "trigger": { "type": "boolean" }, "newVersionOnly": { "type": "boolean" } }, "required": ["name"], "additionalProperties": false } }, "outputResources": { "type": "array", "minItems": 1, "items": { "type": "object", "properties": { "name": { "type": "string" } }, "required": ["name"], "additionalProperties": false } }, "requiresApproval": { "$ref": "#/definitions/common/RequiresApproval" }, "sourceLocation": { "type": "string" }, "mvnCommand": { "type": "string" }, "configFileLocation": { "type": "string" }, "configFileName": { "type": "string" }, "resolverSnapshotRepo": { "type": "string" }, "resolverReleaseRepo": { "type": "string" }, "deployerSnapshotRepo": { "type": "string" }, "deployerReleaseRepo": { "type": "string" } } }, "execution": { "type": "object", "additionalProperties": false, "properties": { "onStart": { "type": "array", "items": { "type": "string" } }, "onSuccess": { "type": "array", "items": { "type": "string" } }, "onFailure": { "type": "array", "items": { "type": "string" } }, "onComplete": { "type": "array", "items": { "type": "string" } }, "onCancel": { "type": "array", "items": { "type": "string" } } } } }, "required": ["name", "type"], "additionalProperties": false }, "NpmBuild": { "type": "object", "properties": { "name": { "type": "string" }, "type": { "type": "string" }, "configuration": { "type": "object", "additionalProperties": false, "properties": { "affinityGroup": { "type": "string" }, "timeoutSeconds": { "type": "integer", "exclusiveMinimum": 0 }, "priority": { "type": "integer", "minimum": 0, "maximum": 10000 }, "nodePool": { "type": "string" }, "chronological": { "type": "boolean" }, "sourceLocation": { "type": "string" }, "npmArgs": { "type": "string" }, "repositoryName": { "type": "string" }, "resolverRepo": { "type": "string" }, "environmentVariables": { "$ref": "#/definitions/common/EnvironmentVariables" }, "runtime": { "type": "object", "properties": { "type": { "type": "string", "enum": ["image", "host"] } }, "required": ["type"], "if": { "properties": { "type": { "enum": ["image"] } } }, "then": { "properties": { "type": { "enum": ["image"] }, "image": { "type": "object", "if": { "properties": { "auto": { "type": "object" } }, "required": ["auto"] }, "then": { "properties": { "auto": { "type": "object", "required": ["language"], "oneOf": [ { "required": ["version"] }, { "required": ["versions"] } ], "properties": { "language": { "type": "string" }, "version": { "type": ["string", "number"] }, "versions": { "type": "array", "minItems": 1, "items": { "type": ["string", "number"] } }, "if": { "properties": { "version": { "type": ["string", "number"] } }, "required": ["version"] }, "then": { "properties": { "version": { "type": ["string", "number"] } } }, "else": { "properties": { "versions": { "type": "array", "minItems": 1, "items": { "type": ["string", "number"] } } } } }, "additionalProperties": false } }, "additionalProperties": false }, "else": { "additionalProperties": false, "properties": { "custom": { "type": "object", "additionalProperties": false, "required": ["name", "tag"], "properties": { "name": { "type": "string" }, "tag": { "type": "string" }, "registry": { "type": "string" }, "sourceRepository": { "type": "string" }, "region": { "type": "string" }, "options": { "type": "string" }, "autoPull": { "type": "boolean" } } } } } } }, "additionalProperties": false }, "else": { "if": { "properties": { "type": { "enum": ["host"] } } }, "then": { "properties": { "type": { "enum": ["host"] } }, "additionalProperties": false } } }, "integrations": { "type": "array", "minItems": 1, "items": { "type": "object", "properties": { "name": { "type": "string" } }, "required": ["name"], "additionalProperties": false } }, "inputSteps": { "type": "array", "minItems": 1, "items": { "type": "object", "properties": { "name": { "type": "string" }, "status": { "type": "array", "items": { "type": "string", "enum": [ "success", "failure", "error", "cancelled", "skipped", "unstable", "timeout", "stopped", "deleted", "cached" ] } } }, "required": ["name"], "additionalProperties": false } }, "inputResources": { "type": "array", "minItems": 1, "items": { "type": "object", "properties": { "name": { "type": "string" }, "branch": { "type": "string" }, "trigger": { "type": "boolean" }, "newVersionOnly": { "type": "boolean" } }, "required": ["name"], "additionalProperties": false } }, "outputResources": { "type": "array", "minItems": 1, "items": { "type": "object", "properties": { "name": { "type": "string" }, "branch": { "type": "string" } }, "required": ["name"], "additionalProperties": false } }, "requiresApproval": { "$ref": "#/definitions/common/RequiresApproval" } } }, "execution": { "type": "object", "additionalProperties": false, "properties": { "onStart": { "type": "array", "items": { "type": "string" } }, "onSuccess": { "type": "array", "items": { "type": "string" } }, "onFailure": { "type": "array", "items": { "type": "string" } }, "onComplete": { "type": "array", "items": { "type": "string" } }, "onCancel": { "type": "array", "items": { "type": "string" } } } } }, "required": ["name", "type"], "additionalProperties": false }, "NpmPublish": { "type": "object", "properties": { "name": { "type": "string" }, "type": { "type": "string" }, "configuration": { "type": "object", "additionalProperties": false, "properties": { "affinityGroup": { "type": "string" }, "timeoutSeconds": { "type": "integer", "exclusiveMinimum": 0 }, "priority": { "type": "integer", "minimum": 0, "maximum": 10000 }, "nodePool": { "type": "string" }, "chronological": { "type": "boolean" }, "repositoryName": { "type": "string" }, "deployerRepo": { "type": "string" }, "forceXrayScan": { "type": ["string", "boolean"] }, "failOnScan": { "type": ["string", "boolean"] }, "autoPublishBuildInfo": { "type": ["string", "boolean"] }, "environmentVariables": { "$ref": "#/definitions/common/EnvironmentVariables" }, "runtime": { "type": "object", "properties": { "type": { "type": "string", "enum": ["image", "host"] } }, "required": ["type"], "if": { "properties": { "type": { "enum": ["image"] } } }, "then": { "properties": { "type": { "enum": ["image"] }, "image": { "type": "object", "if": { "properties": { "auto": { "type": "object" } }, "required": ["auto"] }, "then": { "properties": { "auto": { "type": "object", "required": ["language"], "oneOf": [ { "required": ["version"] }, { "required": ["versions"] } ], "properties": { "language": { "type": "string" }, "version": { "type": ["string", "number"] }, "versions": { "type": "array", "minItems": 1, "items": { "type": ["string", "number"] } }, "if": { "properties": { "version": { "type": ["string", "number"] } }, "required": ["version"] }, "then": { "properties": { "version": { "type": ["string", "number"] } } }, "else": { "properties": { "versions": { "type": "array", "minItems": 1, "items": { "type": ["string", "number"] } } } } }, "additionalProperties": false } }, "additionalProperties": false }, "else": { "additionalProperties": false, "properties": { "custom": { "type": "object", "additionalProperties": false, "required": ["name", "tag"], "properties": { "name": { "type": "string" }, "tag": { "type": "string" }, "registry": { "type": "string" }, "sourceRepository": { "type": "string" }, "region": { "type": "string" }, "options": { "type": "string" }, "autoPull": { "type": "boolean" } } } } } } }, "additionalProperties": false }, "else": { "if": { "properties": { "type": { "enum": ["host"] } } }, "then": { "properties": { "type": { "enum": ["host"] } }, "additionalProperties": false } } }, "integrations": { "type": "array", "minItems": 1, "items": { "type": "object", "properties": { "name": { "type": "string" } }, "required": ["name"], "additionalProperties": false } }, "inputSteps": { "type": "array", "minItems": 1, "items": { "type": "object", "properties": { "name": { "type": "string" }, "status": { "type": "array", "items": { "type": "string", "enum": [ "success", "failure", "error", "cancelled", "skipped", "unstable", "timeout", "stopped", "deleted", "cached" ] } } }, "required": ["name"], "additionalProperties": false } }, "inputResources": { "type": "array", "minItems": 1, "items": { "type": "object", "properties": { "name": { "type": "string" }, "branch": { "type": "string" }, "trigger": { "type": "boolean" }, "newVersionOnly": { "type": "boolean" } }, "required": ["name"], "additionalProperties": false } }, "outputResources": { "type": "array", "minItems": 1, "items": { "type": "object", "properties": { "name": { "type": "string" }, "branch": { "type": "string" } }, "required": ["name"], "additionalProperties": false } }, "requiresApproval": { "$ref": "#/definitions/common/RequiresApproval" } }, "required": ["inputSteps"] }, "execution": { "type": "object", "additionalProperties": false, "properties": { "onStart": { "type": "array", "items": { "type": "string" } }, "onSuccess": { "type": "array", "items": { "type": "string" } }, "onFailure": { "type": "array", "items": { "type": "string" } }, "onComplete": { "type": "array", "items": { "type": "string" } }, "onCancel": { "type": "array", "items": { "type": "string" } } } } }, "required": ["configuration", "name", "type"], "additionalProperties": false }, "PowerShell": { "type": "object", "properties": { "name": { "type": "string" }, "type": { "type": "string" }, "configuration": { "type": "object", "additionalProperties": false, "properties": { "affinityGroup": { "type": "string" }, "timeoutSeconds": { "type": "integer", "exclusiveMinimum": 0 }, "priority": { "type": "integer", "minimum": 0, "maximum": 10000 }, "nodePool": { "type": "string" }, "chronological": { "type": "boolean" }, "environmentVariables": { "$ref": "#/definitions/common/EnvironmentVariables" }, "runtime": { "type": "object", "properties": { "type": { "type": "string", "enum": ["image", "host"] } }, "required": ["type"], "if": { "properties": { "type": { "enum": ["image"] } } }, "then": { "properties": { "type": { "enum": ["image"] }, "image": { "type": "object", "if": { "properties": { "auto": { "type": "object" } }, "required": ["auto"] }, "then": { "properties": { "auto": { "type": "object", "required": ["language"], "oneOf": [ { "required": ["version"] }, { "required": ["versions"] } ], "properties": { "language": { "type": "string" }, "version": { "type": ["string", "number"] }, "versions": { "type": "array", "minItems": 1, "items": { "type": ["string", "number"] } }, "if": { "properties": { "version": { "type": ["string", "number"] } }, "required": ["version"] }, "then": { "properties": { "version": { "type": ["string", "number"] } } }, "else": { "properties": { "versions": { "type": "array", "minItems": 1, "items": { "type": ["string", "number"] } } } } }, "additionalProperties": false } }, "additionalProperties": false }, "else": { "additionalProperties": false, "properties": { "custom": { "type": "object", "additionalProperties": false, "required": ["name", "tag"], "properties": { "name": { "type": "string" }, "tag": { "type": "string" }, "registry": { "type": "string" }, "sourceRepository": { "type": "string" }, "region": { "type": "string" }, "options": { "type": "string" }, "autoPull": { "type": "boolean" } } } } } } }, "additionalProperties": false }, "else": { "if": { "properties": { "type": { "enum": ["host"] } } }, "then": { "properties": { "type": { "enum": ["host"] } }, "additionalProperties": false } } }, "integrations": { "type": "array", "minItems": 1, "items": { "type": "object", "properties": { "name": { "type": "string" } }, "required": ["name"], "additionalProperties": false } }, "inputSteps": { "type": "array", "minItems": 1, "items": { "type": "object", "properties": { "name": { "type": "string" }, "status": { "type": "array", "items": { "type": "string", "enum": [ "success", "failure", "error", "cancelled", "skipped", "unstable", "timeout", "stopped", "deleted", "cached" ] } } }, "required": ["name"], "additionalProperties": false } }, "inputResources": { "type": "array", "minItems": 1, "items": { "type": "object", "properties": { "name": { "type": "string" }, "branch": { "type": "string" }, "trigger": { "type": "boolean" }, "newVersionOnly": { "type": "boolean" } }, "required": ["name"], "additionalProperties": false } }, "outputResources": { "type": "array", "minItems": 1, "items": { "type": "object", "properties": { "name": { "type": "string" }, "branch": { "type": "string" } }, "required": ["name"], "additionalProperties": false } }, "requiresApproval": { "$ref": "#/definitions/common/RequiresApproval" } } }, "execution": { "type": "object", "additionalProperties": false, "properties": { "onStart": { "type": "array", "items": { "type": "string" } }, "onExecute": { "type": "array", "items": { "type": "string" } }, "onSuccess": { "type": "array", "items": { "type": "string" } }, "onFailure": { "type": "array", "items": { "type": "string" } }, "onComplete": { "type": "array", "items": { "type": "string" } }, "onCancel": { "type": "array", "items": { "type": "string" } } } } }, "required": ["name", "type", "execution"], "additionalProperties": false }, "PromoteBuild": { "type": "object", "properties": { "name": { "type": "string" }, "type": { "type": "string" }, "configuration": { "type": "object", "additionalProperties": false, "required": ["targetRepository"], "properties": { "affinityGroup": { "type": "string" }, "timeoutSeconds": { "type": "integer", "exclusiveMinimum": 0 }, "priority": { "type": "integer", "minimum": 0, "maximum": 10000 }, "nodePool": { "type": "string" }, "chronological": { "type": "boolean" }, "targetRepository": { "type": "string" }, "includeDependencies": { "type": ["string", "boolean"] }, "status": { "type": "string" }, "comment": { "type": "string" }, "copy": { "type": ["string", "boolean"] }, "failOnValidate": { "type": ["string", "boolean"] }, "environmentVariables": { "$ref": "#/definitions/common/EnvironmentVariables" }, "runtime": { "type": "object", "properties": { "type": { "type": "string", "enum": ["image", "host"] } }, "required": ["type"], "if": { "properties": { "type": { "enum": ["image"] } } }, "then": { "properties": { "type": { "enum": ["image"] }, "image": { "type": "object", "if": { "properties": { "auto": { "type": "object" } }, "required": ["auto"] }, "then": { "properties": { "auto": { "type": "object", "required": ["language"], "oneOf": [ { "required": ["version"] }, { "required": ["versions"] } ], "properties": { "language": { "type": "string" }, "version": { "type": ["string", "number"] }, "versions": { "type": "array", "minItems": 1, "items": { "type": ["string", "number"] } }, "if": { "properties": { "version": { "type": ["string", "number"] } }, "required": ["version"] }, "then": { "properties": { "version": { "type": ["string", "number"] } } }, "else": { "properties": { "versions": { "type": "array", "minItems": 1, "items": { "type": ["string", "number"] } } } } }, "additionalProperties": false } }, "additionalProperties": false }, "else": { "additionalProperties": false, "properties": { "custom": { "type": "object", "additionalProperties": false, "required": ["name", "tag"], "properties": { "name": { "type": "string" }, "tag": { "type": "string" }, "registry": { "type": "string" }, "sourceRepository": { "type": "string" }, "region": { "type": "string" }, "options": { "type": "string" }, "autoPull": { "type": "boolean" } } } } } } }, "additionalProperties": false }, "else": { "if": { "properties": { "type": { "enum": ["host"] } } }, "then": { "properties": { "type": { "enum": ["host"] } }, "additionalProperties": false } } }, "integrations": { "type": "array", "minItems": 1, "items": { "type": "object", "properties": { "name": { "type": "string" } }, "required": ["name"], "additionalProperties": false } }, "inputSteps": { "type": "array", "minItems": 1, "items": { "type": "object", "properties": { "name": { "type": "string" }, "status": { "type": "array", "items": { "type": "string", "enum": [ "success", "failure", "error", "cancelled", "skipped", "unstable", "timeout", "stopped", "deleted", "cached" ] } } }, "required": ["name"], "additionalProperties": false } }, "inputResources": { "type": "array", "minItems": 1, "items": { "type": "object", "properties": { "name": { "type": "string" }, "branch": { "type": "string" }, "trigger": { "type": "boolean" }, "newVersionOnly": { "type": "boolean" } }, "required": ["name"], "additionalProperties": false } }, "outputResources": { "type": "array", "minItems": 1, "items": { "type": "object", "properties": { "name": { "type": "string" }, "branch": { "type": "string" } }, "required": ["name"], "additionalProperties": false } }, "requiresApproval": { "$ref": "#/definitions/common/RequiresApproval" } } }, "execution": { "type": "object", "additionalProperties": false, "properties": { "onStart": { "type": "array", "items": { "type": "string" } }, "onSuccess": { "type": "array", "items": { "type": "string" } }, "onFailure": { "type": "array", "items": { "type": "string" } }, "onComplete": { "type": "array", "items": { "type": "string" } }, "onCancel": { "type": "array", "items": { "type": "string" } } } } }, "required": ["name", "type", "configuration"], "additionalProperties": false }, "PublishBuildInfo": { "type": "object", "properties": { "name": { "type": "string" }, "type": { "type": "string" }, "configuration": { "type": "object", "additionalProperties": false, "required": ["inputSteps"], "properties": { "affinityGroup": { "type": "string" }, "timeoutSeconds": { "type": "integer", "exclusiveMinimum": 0 }, "priority": { "type": "integer", "minimum": 0, "maximum": 10000 }, "nodePool": { "type": "string" }, "chronological": { "type": "boolean" }, "envInclude": { "type": "string" }, "envExclude": { "type": "string" }, "forceXrayScan": { "type": ["string", "boolean"] }, "failOnScan": { "type": ["string", "boolean"] }, "runtime": { "type": "object", "properties": { "type": { "type": "string", "enum": ["image", "host"] } }, "required": ["type"], "if": { "properties": { "type": { "enum": ["image"] } } }, "then": { "properties": { "type": { "enum": ["image"] }, "image": { "type": "object", "if": { "properties": { "auto": { "type": "object" } }, "required": ["auto"] }, "then": { "properties": { "auto": { "type": "object", "required": ["language"], "oneOf": [ { "required": ["version"] }, { "required": ["versions"] } ], "properties": { "language": { "type": "string" }, "version": { "type": ["string", "number"] }, "versions": { "type": "array", "minItems": 1, "items": { "type": ["string", "number"] } }, "if": { "properties": { "version": { "type": ["string", "number"] } }, "required": ["version"] }, "then": { "properties": { "version": { "type": ["string", "number"] } } }, "else": { "properties": { "versions": { "type": "array", "minItems": 1, "items": { "type": ["string", "number"] } } } } }, "additionalProperties": false } }, "additionalProperties": false }, "else": { "additionalProperties": false, "properties": { "custom": { "type": "object", "additionalProperties": false, "required": ["name", "tag"], "properties": { "name": { "type": "string" }, "tag": { "type": "string" }, "registry": { "type": "string" }, "sourceRepository": { "type": "string" }, "region": { "type": "string" }, "options": { "type": "string" }, "autoPull": { "type": "boolean" } } } } } } }, "additionalProperties": false }, "else": { "if": { "properties": { "type": { "enum": ["host"] } } }, "then": { "properties": { "type": { "enum": ["host"] } }, "additionalProperties": false } } }, "environmentVariables": { "$ref": "#/definitions/common/EnvironmentVariables" }, "integrations": { "type": "array", "minItems": 1, "items": { "type": "object", "properties": { "name": { "type": "string" } }, "required": ["name"], "additionalProperties": false } }, "inputSteps": { "type": "array", "minItems": 1, "maxItems": 1, "items": { "type": "object", "properties": { "name": { "type": "string" }, "status": { "type": "array", "items": { "type": "string", "enum": [ "success", "failure", "error", "cancelled", "skipped", "unstable", "timeout", "stopped", "deleted", "cached" ] } } }, "required": ["name"], "additionalProperties": false } }, "inputResources": { "type": "array", "minItems": 0, "items": { "type": "object", "properties": { "name": { "type": "string" }, "branch": { "type": "string" }, "trigger": { "type": "boolean" }, "newVersionOnly": { "type": "boolean" } }, "required": ["name"], "additionalProperties": false } }, "outputResources": { "type": "array", "minItems": 1, "items": { "type": "object", "properties": { "name": { "type": "string" }, "branch": { "type": "string" } }, "required": ["name"], "additionalProperties": false } }, "requiresApproval": { "$ref": "#/definitions/common/RequiresApproval" } } }, "execution": { "type": "object", "additionalProperties": false, "properties": { "onStart": { "type": "array", "items": { "type": "string" } }, "onSuccess": { "type": "array", "items": { "type": "string" } }, "onFailure": { "type": "array", "items": { "type": "string" } }, "onComplete": { "type": "array", "items": { "type": "string" } }, "onCancel": { "type": "array", "items": { "type": "string" } } } } }, "required": ["name", "type", "configuration"], "additionalProperties": false }, "PushArtifactoryPackage": { "type": "object", "properties": { "name": { "type": "string" }, "type": { "type": "string" }, "configuration": { "type": "object", "additionalProperties": false, "properties": { "affinityGroup": { "type": "string" }, "timeoutSeconds": { "type": "integer", "exclusiveMinimum": 0 }, "priority": { "type": "integer", "minimum": 0, "maximum": 10000 }, "nodePool": { "type": "string" }, "chronological": { "type": "boolean" }, "targetRepo": { "type": "string" }, "forceXrayScan": { "type": ["string", "boolean"] }, "failOnScan": { "type": ["string", "boolean"] }, "autoPublishBuildInfo": { "type": ["string", "boolean"] }, "environmentVariables": { "$ref": "#/definitions/common/EnvironmentVariables" }, "runtime": { "type": "object", "properties": { "type": { "type": "string", "enum": ["image", "host"] } }, "required": ["type"], "if": { "properties": { "type": { "enum": ["image"] } } }, "then": { "properties": { "type": { "enum": ["image"] }, "image": { "type": "object", "if": { "properties": { "auto": { "type": "object" } }, "required": ["auto"] }, "then": { "properties": { "auto": { "type": "object", "required": ["language"], "oneOf": [ { "required": ["version"] }, { "required": ["versions"] } ], "properties": { "language": { "type": "string" }, "version": { "type": ["string", "number"] }, "versions": { "type": "array", "minItems": 1, "items": { "type": ["string", "number"] } }, "if": { "properties": { "version": { "type": ["string", "number"] } }, "required": ["version"] }, "then": { "properties": { "version": { "type": ["string", "number"] } } }, "else": { "properties": { "versions": { "type": "array", "minItems": 1, "items": { "type": ["string", "number"] } } } } }, "additionalProperties": false } }, "additionalProperties": false }, "else": { "additionalProperties": false, "properties": { "custom": { "type": "object", "additionalProperties": false, "required": ["name", "tag"], "properties": { "name": { "type": "string" }, "tag": { "type": "string" }, "registry": { "type": "string" }, "sourceRepository": { "type": "string" }, "region": { "type": "string" }, "options": { "type": "string" }, "autoPull": { "type": "boolean" } } } } } } }, "additionalProperties": false }, "else": { "if": { "properties": { "type": { "enum": ["host"] } } }, "then": { "properties": { "type": { "enum": ["host"] } }, "additionalProperties": false } } }, "integrations": { "type": "array", "minItems": 1, "items": { "type": "object", "properties": { "name": { "type": "string" } }, "required": ["name"], "additionalProperties": false } }, "inputSteps": { "type": "array", "minItems": 1, "items": { "type": "object", "properties": { "name": { "type": "string" }, "status": { "type": "array", "items": { "type": "string", "enum": [ "success", "failure", "error", "cancelled", "skipped", "unstable", "timeout", "stopped", "deleted", "cached" ] } } }, "required": ["name"], "additionalProperties": false } }, "inputResources": { "type": "array", "minItems": 1, "items": { "type": "object", "properties": { "name": { "type": "string" }, "trigger": { "type": "boolean" }, "newVersionOnly": { "type": "boolean" } }, "required": ["name"], "additionalProperties": false } }, "outputResources": { "type": "array", "minItems": 1, "items": { "type": "object", "properties": { "name": { "type": "string" }, "branch": { "type": "string" } }, "required": ["name"], "additionalProperties": false } }, "requiresApproval": { "$ref": "#/definitions/common/RequiresApproval" } }, "required": ["targetRepo", "inputSteps"] }, "execution": { "type": "object", "additionalProperties": false, "properties": { "onStart": { "type": "array", "items": { "type": "string" } }, "onSuccess": { "type": "array", "items": { "type": "string" } }, "onFailure": { "type": "array", "items": { "type": "string" } }, "onComplete": { "type": "array", "items": { "type": "string" } }, "onCancel": { "type": "array", "items": { "type": "string" } } } } }, "required": ["name", "type", "configuration"], "additionalProperties": false }, "SignReleaseBundle": { "type": "object", "properties": { "name": { "type": "string" }, "type": { "type": "string" }, "configuration": { "type": "object", "additionalProperties": false, "properties": { "affinityGroup": { "type": "string" }, "timeoutSeconds": { "type": "integer", "exclusiveMinimum": 0 }, "priority": { "type": "integer", "minimum": 0, "maximum": 10000 }, "nodePool": { "type": "string" }, "chronological": { "type": "boolean" }, "environmentVariables": { "$ref": "#/definitions/common/EnvironmentVariables" }, "runtime": { "type": "object", "properties": { "type": { "type": "string", "enum": ["image", "host"] } }, "required": ["type"], "if": { "properties": { "type": { "enum": ["image"] } } }, "then": { "properties": { "type": { "enum": ["image"] }, "image": { "type": "object", "if": { "properties": { "auto": { "type": "object" } }, "required": ["auto"] }, "then": { "properties": { "auto": { "type": "object", "required": ["language"], "oneOf": [ { "required": ["version"] }, { "required": ["versions"] } ], "properties": { "language": { "type": "string" }, "version": { "type": ["string", "number"] }, "versions": { "type": "array", "minItems": 1, "items": { "type": ["string", "number"] } }, "if": { "properties": { "version": { "type": ["string", "number"] } }, "required": ["version"] }, "then": { "properties": { "version": { "type": ["string", "number"] } } }, "else": { "properties": { "versions": { "type": "array", "minItems": 1, "items": { "type": ["string", "number"] } } } } }, "additionalProperties": false } }, "additionalProperties": false }, "else": { "additionalProperties": false, "properties": { "custom": { "type": "object", "additionalProperties": false, "required": ["name", "tag"], "properties": { "name": { "type": "string" }, "tag": { "type": "string" }, "registry": { "type": "string" }, "sourceRepository": { "type": "string" }, "region": { "type": "string" }, "options": { "type": "string" }, "autoPull": { "type": "boolean" } } } } } } }, "additionalProperties": false }, "else": { "if": { "properties": { "type": { "enum": ["host"] } } }, "then": { "properties": { "type": { "enum": ["host"] } }, "additionalProperties": false } } }, "integrations": { "type": "array", "minItems": 1, "items": { "type": "object", "properties": { "name": { "type": "string" } }, "required": ["name"], "additionalProperties": false } }, "inputSteps": { "type": "array", "minItems": 1, "items": { "type": "object", "properties": { "name": { "type": "string" }, "status": { "type": "array", "items": { "type": "string", "enum": [ "success", "failure", "error", "cancelled", "skipped", "unstable", "timeout", "stopped", "deleted", "cached" ] } } }, "required": ["name"], "additionalProperties": false } }, "inputResources": { "type": "array", "minItems": 1, "items": { "type": "object", "properties": { "name": { "type": "string" }, "branch": { "type": "string" }, "trigger": { "type": "boolean" }, "newVersionOnly": { "type": "boolean" } }, "required": ["name"], "additionalProperties": false } }, "outputResources": { "type": "array", "minItems": 1, "items": { "type": "object", "properties": { "name": { "type": "string" }, "branch": { "type": "string" } }, "required": ["name"], "additionalProperties": false } }, "requiresApproval": { "$ref": "#/definitions/common/RequiresApproval" } } }, "execution": { "type": "object", "additionalProperties": false, "properties": { "onStart": { "type": "array", "items": { "type": "string" } }, "onSuccess": { "type": "array", "items": { "type": "string" } }, "onFailure": { "type": "array", "items": { "type": "string" } }, "onComplete": { "type": "array", "items": { "type": "string" } }, "onCancel": { "type": "array", "items": { "type": "string" } } } } }, "required": ["name", "type"], "additionalProperties": false }, "TriggerPipeline": { "type": "object", "properties": { "name": { "type": "string" }, "type": { "type": "string" }, "configuration": { "type": "object", "additionalProperties": false, "properties": { "affinityGroup": { "type": "string" }, "timeoutSeconds": { "type": "integer", "exclusiveMinimum": 0 }, "priority": { "type": "integer", "minimum": 0, "maximum": 10000 }, "nodePool": { "type": "string" }, "chronological": { "type": "boolean" }, "environmentVariables": { "$ref": "#/definitions/common/EnvironmentVariables" }, "runtime": { "type": "object", "properties": { "type": { "type": "string", "enum": ["image", "host"] } }, "required": ["type"], "if": { "properties": { "type": { "enum": ["image"] } } }, "then": { "properties": { "type": { "enum": ["image"] }, "image": { "type": "object", "if": { "properties": { "auto": { "type": "object" } }, "required": ["auto"] }, "then": { "properties": { "auto": { "type": "object", "required": ["language"], "oneOf": [ { "required": ["version"] }, { "required": ["versions"] } ], "properties": { "language": { "type": "string" }, "version": { "type": ["string", "number"] }, "versions": { "type": "array", "minItems": 1, "items": { "type": ["string", "number"] } }, "if": { "properties": { "version": { "type": ["string", "number"] } }, "required": ["version"] }, "then": { "properties": { "version": { "type": ["string", "number"] } } }, "else": { "properties": { "versions": { "type": "array", "minItems": 1, "items": { "type": ["string", "number"] } } } } }, "additionalProperties": false } }, "additionalProperties": false }, "else": { "additionalProperties": false, "properties": { "custom": { "type": "object", "additionalProperties": false, "required": ["name", "tag"], "properties": { "name": { "type": "string" }, "tag": { "type": "string" }, "registry": { "type": "string" }, "sourceRepository": { "type": "string" }, "region": { "type": "string" }, "options": { "type": "string" }, "autoPull": { "type": "boolean" } } } } } } }, "additionalProperties": false }, "else": { "if": { "properties": { "type": { "enum": ["host"] } } }, "then": { "properties": { "type": { "enum": ["host"] } }, "additionalProperties": false } } }, "integrations": { "type": "array", "minItems": 1, "items": { "type": "object", "properties": { "name": { "type": "string" } }, "required": ["name"], "additionalProperties": false } }, "inputSteps": { "type": "array", "items": { "type": "object", "properties": { "name": { "type": "string" }, "status": { "type": "array", "items": { "type": "string", "enum": [ "success", "failure", "error", "cancelled", "skipped", "unstable", "timeout", "stopped", "deleted", "cached" ] } } }, "required": ["name"], "additionalProperties": false } }, "inputResources": { "type": "array", "items": { "type": "object", "properties": { "name": { "type": "string" }, "branch": { "type": "string" }, "trigger": { "type": "boolean" }, "newVersionOnly": { "type": "boolean" } }, "required": ["name"], "additionalProperties": false } }, "outputResources": { "type": "array", "items": { "type": "object", "properties": { "name": { "type": "string" }, "branch": { "type": "string" } }, "required": ["name"], "additionalProperties": false } }, "requiresApproval": { "$ref": "#/definitions/common/RequiresApproval" }, "pipelineName": { "type": "string" }, "stepName": { "type": "string" }, "branchName": { "type": "string" }, "projectKey": { "type": "string" } }, "required": ["pipelineName", "stepName"] }, "execution": { "type": "object", "additionalProperties": false, "properties": { "onStart": { "type": "array", "items": { "type": "string" } }, "onSuccess": { "type": "array", "items": { "type": "string" } }, "onFailure": { "type": "array", "items": { "type": "string" } }, "onComplete": { "type": "array", "items": { "type": "string" } }, "onCancel": { "type": "array", "items": { "type": "string" } } } } }, "required": ["name", "type"], "additionalProperties": false }, "XrayScan": { "type": "object", "properties": { "name": { "type": "string" }, "type": { "type": "string" }, "configuration": { "type": "object", "additionalProperties": false, "properties": { "affinityGroup": { "type": "string" }, "timeoutSeconds": { "type": "integer", "exclusiveMinimum": 0 }, "priority": { "type": "integer", "minimum": 0, "maximum": 10000 }, "nodePool": { "type": "string" }, "chronological": { "type": "boolean" }, "failOnScan": { "type": ["string", "boolean"] }, "environmentVariables": { "$ref": "#/definitions/common/EnvironmentVariables" }, "integrations": { "type": "array", "minItems": 1, "items": { "type": "object", "properties": { "name": { "type": "string" } }, "required": ["name"], "additionalProperties": false } }, "inputSteps": { "type": "array", "minItems": 1, "items": { "type": "object", "properties": { "name": { "type": "string" }, "status": { "type": "array", "items": { "type": "string", "enum": [ "success", "failure", "error", "cancelled", "skipped", "unstable", "timeout", "stopped", "deleted", "cached" ] } } }, "required": ["name"], "additionalProperties": false } }, "inputResources": { "type": "array", "minItems": 1, "items": { "type": "object", "properties": { "name": { "type": "string" }, "branch": { "type": "string" }, "trigger": { "type": "boolean" }, "newVersionOnly": { "type": "boolean" } }, "required": ["name"], "additionalProperties": false } }, "outputResources": { "type": "array", "minItems": 1, "items": { "type": "object", "properties": { "name": { "type": "string" }, "branch": { "type": "string" } }, "required": ["name"], "additionalProperties": false } }, "requiresApproval": { "$ref": "#/definitions/common/RequiresApproval" }, "runtime": { "type": "object", "properties": { "type": { "type": "string", "enum": ["image", "host"] } }, "required": ["type"], "if": { "properties": { "type": { "enum": ["image"] } } }, "then": { "properties": { "type": { "enum": ["image"] }, "image": { "type": "object", "if": { "properties": { "auto": { "type": "object" } }, "required": ["auto"] }, "then": { "properties": { "auto": { "type": "object", "required": ["language"], "oneOf": [ { "required": ["version"] }, { "required": ["versions"] } ], "properties": { "language": { "type": "string" }, "version": { "type": ["string", "number"] }, "versions": { "type": "array", "minItems": 1, "items": { "type": ["string", "number"] } }, "if": { "properties": { "version": { "type": ["string", "number"] } }, "required": ["version"] }, "then": { "properties": { "version": { "type": ["string", "number"] } } }, "else": { "properties": { "versions": { "type": "array", "minItems": 1, "items": { "type": ["string", "number"] } } } } }, "additionalProperties": false } }, "additionalProperties": false }, "else": { "additionalProperties": false, "properties": { "custom": { "type": "object", "additionalProperties": false, "required": ["name", "tag"], "properties": { "name": { "type": "string" }, "tag": { "type": "string" }, "registry": { "type": "string" }, "sourceRepository": { "type": "string" }, "region": { "type": "string" }, "options": { "type": "string" }, "autoPull": { "type": "boolean" } } } } } } }, "additionalProperties": false }, "else": { "if": { "properties": { "type": { "enum": ["host"] } } }, "then": { "properties": { "type": { "enum": ["host"] } }, "additionalProperties": false } } } } }, "execution": { "type": "object", "additionalProperties": false, "properties": { "onStart": { "type": "array", "items": { "type": "string" } }, "onSuccess": { "type": "array", "items": { "type": "string" } }, "onFailure": { "type": "array", "items": { "type": "string" } }, "onComplete": { "type": "array", "items": { "type": "string" } }, "onCancel": { "type": "array", "items": { "type": "string" } } } } }, "required": ["name", "type"], "additionalProperties": false } }, "common": { "EnvironmentVariables": { "type": "object", "additionalProperties": { "type": ["string", "number", "object"], "properties": { "description": { "type": "string" }, "default": { "type": ["string", "number"] }, "values": { "type": "array", "minItems": 1, "items": { "type": ["string", "number"] } }, "allowCustom": { "type": "boolean" } }, "required": ["default"] } }, "RequiresApproval": { "type": ["boolean", "object"], "additionalProperties": false, "properties": { "timeoutSeconds": { "type": "integer", "exclusiveMinimum": 0 }, "approvers": { "type": "array", "minItems": 1, "items": { "type": "string" } }, "notifications": { "type": "array", "minItems": 1, "items": { "type": "object", "additionalProperties": false, "properties": { "integrationName": { "type": "string" }, "recipients": { "type": "array", "minItems": 1, "items": { "type": "string" } } }, "required": ["integrationName"] } } } } } } }
io-package.json
{ "$schema": "http://json-schema.org/draft-07/schema#", "definitions": { "multilingual": { "type": "object", "required": [ "en" ], "patternProperties": { "en|de|ru|pt|nl|fr|it|es|pl|uk|zh-cn": { "type": "string" } }, "additionalProperties": false }, "iobrokerObject": { "type": "object", "required": [ "_id", "type" ], "properties": { "_id": { "type": "string" }, "type": { "type": "string" }, "common": { "type": "object" } } }, "isCompactTrue": { "properties": { "compact": { "const": true } }, "required": [ "compact" ] }, "disallowNodeProcessParams": { "not": { "required": [ "nodeProcessParams" ] } } }, "type": "object", "required": [ "common" ], "additionalProperties": false, "properties": { "$schema": { "description": "JSON schema for validation", "type": "string" }, "common": { "required": [ "name", "version", "platform", "titleLang", "news", "desc", "mode" ], "additionalProperties": false, "description": "Contains all common instance attributes", "type": "object", "properties": { "name": { "description": "Name of the adapter without ioBroker", "type": "string", "pattern": "^(?![i|I][o|O][b|B][r|R][o|O][k|K][e|E][r|R])" }, "version": { "description": "Current adapter version", "type": "string", "pattern": "^(0|[1-9]\\d*)\\.(0|[1-9]\\d*)\\.(0|[1-9]\\d*)(?:-((?:0|[1-9]\\d*|\\d*[a-zA-Z-][0-9a-zA-Z-]*)(?:\\.(?:0|[1-9]\\d*|\\d*[a-zA-Z-][0-9a-zA-Z-]*))*))?(?:\\+([0-9a-zA-Z-]+(?:\\.[0-9a-zA-Z-]+)*))?$" }, "platform": { "description": "Platform, normally Javascript/Node.js", "type": "string", "enum": [ "Javascript/Node.js" ] }, "title": { "description": "Longer name of adapter DEPRECATED: For admin version >= 5 this property is no longer required", "type": "string" }, "titleLang": { "description": "Longer name of adapter in all supported languages like {en: 'Adapter', de: 'adapter', ru: 'Драйвер'}", "$ref": "#/definitions/multilingual" }, "news": { "description": "Short form of changelog in all supported languages", "type": "object", "minProperties": 1, "maxProperties": 20, "patternProperties": { "^(0|[1-9]\\d*)\\.(0|[1-9]\\d*)\\.(0|[1-9]\\d*)(?:-((?:0|[1-9]\\d*|\\d*[a-zA-Z-][0-9a-zA-Z-]*)(?:\\.(?:0|[1-9]\\d*|\\d*[a-zA-Z-][0-9a-zA-Z-]*))*))?(?:\\+([0-9a-zA-Z-]+(?:\\.[0-9a-zA-Z-]+)*))?$": { "$ref": "#/definitions/multilingual" } }, "additionalProperties": false }, "desc": { "description": "Description, object for multilingual description", "$ref": "#/definitions/multilingual" }, "messagebox": { "description": "true if messagebox supported. Hence, the adapter can receive sendTo messages. Up from controller v5, please use common.supportedMessages.notifications.custom = true", "type": "boolean" }, "supportedMessages": { "description": "Object which defines, if the adapter supports receiving messages via sendTo. Additionally, it defines if specific messages are supported.", "type": "object", "additionalProperties": false, "properties": { "custom": { "description": "If custom messages are supported (same as legacy messagebox)", "type": "boolean" }, "notifications": { "description": "If notification handling is supported, for information, see https://github.com/foxriver76/ioBroker.notification-manager#requirements-for-messaging-adapters", "type": "boolean" }, "stopInstance": { "description": "If adapter supports signal stopInstance. Use number if you need more than 1000 ms for stop routine. The signal will be sent before stop to the adapter. (used if problems occurred with SIGTERM). (Same as legacy `supportStopInstance`)", "anyOf": [ { "type": "boolean" }, { "type": "number", "multipleOf": 1, "minimum": 1000 } ] }, "getHistory": { "description": "If adapter supports getHistory message. (Same as legacy `getHistory`, to avoid problems, set both flags in parallel for now)", "type": "boolean" } } }, "readme": { "description": "Url of the ReadMe file", "type": "string" }, "adminUI": { "description": "Type of the admin UI", "type": "object", "additionalProperties": false, "required": [ "config" ], "properties": { "custom": { "description": "UI type of custom tab inside admin UI", "type": "string", "const": "json" }, "config": { "description": "UI type of config page inside admin UI", "type": "string", "enum": [ "html", "json", "materialize", "none" ] }, "tab": { "description": "UI type of tab inside admin UI", "type": "string", "enum": [ "html", "materialize" ] } } }, "docs": { "description": "The structure like {\"en\": \"docs/en/README.md\", \"de\": [\"docs/de/README.md\", \"docs/de/README1.md\"]} that describes the documentation if not in README.md", "type": "object", "required": [ "en" ], "patternProperties": { "en|de|ru|pt|nl|fr|it|es|pl|uk|zh-cn": { "type": [ "string", "array" ], "minItems": 1, "items": { "type": "string" } } }, "additionalProperties": false }, "authors": { "description": "Array of authors as string", "type": "array", "minItems": 1, "items": { "anyOf": [ { "type": "string" }, { "type": "object", "additionalProperties": false, "required": [ "name" ], "properties": { "name": { "type": "string" }, "email": { "type": "string" } } } ] } }, "license": { "description": "License of the software", "type": "string", "enum": [ "LPL-1.02", "NTP", "OFL-1.1", "Bahyph", "Hippocratic-2.1", "VOSTROM", "CC-BY-3.0-AT", "CC-BY-NC-SA-2.5", "W3C-20150513", "LGPL-3.0-only", "GFDL-1.1-only", "CDL-1.0", "CC-BY-ND-2.5", "CC-BY-NC-SA-3.0-IGO", "OGC-1.0", "RPL-1.1", "GPL-2.0-or-later", "Sendmail", "LGPL-2.0-only", "OSL-3.0", "Libpng", "MS-RL", "MIT-CMU", "Linux-OpenIB", "Latex2e-translated-notice", "psutils", "Clips", "CC-BY-NC-SA-2.0-FR", "EUDatagrid", "CC-BY-ND-3.0", "w3m", "OLDAP-2.3", "AGPL-3.0-only", "AGPL-1.0-or-later", "TMate", "GFDL-1.3-invariants-only", "SchemeReport", "NAIST-2003", "BSD-4-Clause-Shortened", "PDDL-1.0", "XSkat", "CC-BY-ND-4.0", "BSD-3-Clause-LBNL", "MIT-open-group", "UnixCrypt", "LiLiQ-P-1.1", "Eurosym", "JPNIC", "NPL-1.1", "NLOD-2.0", "NPL-1.0", "CC-BY-SA-2.1-JP", "LGPLLR", "PHP-3.01", "Ruby", "CC-BY-2.0", "QPL-1.0-INRIA-2004", "Aladdin", "ODC-By-1.0", "Intel-ACPI", "LGPL-2.1-or-later", "MPL-2.0-no-copyleft-exception", "Parity-6.0.0", "Zlib", "CC-BY-SA-1.0", "CC-BY-SA-2.0-UK", "ADSL", "Net-SNMP", "YPL-1.0", "Baekmuk", "BitTorrent-1.1", "Arphic-1999", "BSD-3-Clause-No-Nuclear-Warranty", "MTLL", "JPL-image", "ZPL-2.0", "TCP-wrappers", "GPL-1.0-or-later", "PSF-2.0", "Nokia", "Entessa", "AMPAS", "TU-Berlin-1.0", "Adobe-Glyph", "DL-DE-BY-2.0", "MPL-1.0", "Dotseqn", "IBM-pibs", "Plexus", "HP-1986", "LPPL-1.1", "OLDAP-1.2", "ZPL-2.1", "LPL-1.0", "HPND-sell-variant-MIT-disclaimer", "OFFIS", "CrystalStacker", "Adobe-2006", "Zimbra-1.3", "CUA-OPL-1.0", "EUPL-1.1", "IJG", "Afmparse", "PolyForm-Noncommercial-1.0.0", "NCGL-UK-2.0", "EPL-2.0", "CC-BY-ND-1.0", "CC-BY-ND-2.0", "OFL-1.1-no-RFN", "HPND-Markus-Kuhn", "Xnet", "CNRI-Python", "Zimbra-1.4", "SGI-B-1.0", "MakeIndex", "GFDL-1.1-no-invariants-only", "TCL", "BSD-Protection", "Xdebug-1.03", "CC-BY-2.5-AU", "CECILL-C", "BSD-4.3RENO", "Brian-Gladman-3-Clause", "CC-BY-NC-SA-1.0", "OGTSL", "OLDAP-2.7", "HaskellReport", "RPL-1.5", "Unlicense", "XFree86-1.1", "CC-BY-SA-3.0", "OLDAP-2.2.2", "CC-BY-3.0-IGO", "snprintf", "CC-BY-NC-2.0", "dtoa", "MITNFA", "AML", "Artistic-2.0", "CECILL-2.0", "App-s2p", "SSH-short", "AAL", "VSL-1.0", "AFL-2.0", "OML", "CC-BY-3.0-US", "mplus", "Qhull", "FDK-AAC", "BSD-4-Clause-UC", "PolyForm-Small-Business-1.0.0", "Sleepycat", "OLDAP-2.2", "Spencer-99", "OGL-UK-1.0", "EUPL-1.2", "Linux-man-pages-copyleft-2-para", "FreeBSD-DOC", "RSCPL", "eGenix", "CC-BY-2.5", "HPND", "SCEA", "GPL-3.0-only", "Bitstream-Charter", "LAL-1.2", "APSL-1.0", "Caldera", "Xerox", "SWL", "MS-LPL", "Cube", "APSL-2.0", "APAFML", "Watcom-1.0", "SISSL", "CDDL-1.0", "CC-BY-SA-3.0-AT", "psfrag", "C-UDA-1.0", "MPL-1.1", "CC-BY-3.0-NL", "GFDL-1.2-invariants-only", "BSD-3-Clause-Attribution", "CC-BY-NC-3.0-DE", "GFDL-1.1-or-later", "NCSA", "BSD-1-Clause", "ANTLR-PD-fallback", "BSD-3-Clause-Modification", "COIL-1.0", "UPL-1.0", "CC-BY-1.0", "Leptonica", "Frameworx-1.0", "OLDAP-1.1", "FTL", "Artistic-1.0-cl8", "CC-BY-NC-ND-3.0-IGO", "CC-BY-SA-3.0-IGO", "OGL-Canada-2.0", "YPL-1.1", "CC-BY-NC-3.0", "AGPL-3.0-or-later", "SSPL-1.0", "IPL-1.0", "TPL-1.0", "Knuth-CTAN", "MIT", "Rdisc", "Abstyles", "CECILL-2.1", "libtiff", "ErlPL-1.1", "Kazlib", "RPSL-1.0", "BSD-3-Clause-Clear", "MIT-feh", "GPL-1.0-only", "MPL-2.0", "LPPL-1.3c", "CDLA-Permissive-1.0", "Xfig", "CC-PDDC", "Inner-Net-2.0", "ECL-1.0", "SMLNJ", "GFDL-1.2-only", "ECL-2.0", "Multics", "CC-BY-NC-4.0", "GFDL-1.3-no-invariants-only", "OFL-1.0-RFN", "OSL-2.1", "CC-BY-SA-2.0", "CATOSL-1.1", "ICU", "BUSL-1.1", "OPL-UK-3.0", "copyleft-next-0.3.0", "Symlinks", "Crossword", "DOC", "ISC", "Apache-2.0", "copyleft-next-0.3.1", "ASWF-Digital-Assets-1.1", "SISSL-1.2", "Unicode-TOU", "BSD-2-Clause", "CDLA-Permissive-2.0", "CC-BY-NC-SA-3.0", "HPND-export-US", "etalab-2.0", "OSET-PL-2.1", "GFDL-1.1-invariants-or-later", "OpenSSL", "ASWF-Digital-Assets-1.0", "SGI-B-2.0", "CC0-1.0", "BSD-Attribution-HPND-disclaimer", "mpich2", "Artistic-1.0", "GFDL-1.3-only", "OGDL-Taiwan-1.0", "GFDL-1.2-no-invariants-or-later", "LiLiQ-Rplus-1.1", "ImageMagick", "X11-distribute-modifications-variant", "dvipdfm", "MulanPSL-1.0", "Unicode-DFS-2015", "CC-BY-NC-1.0", "LGPL-3.0-or-later", "GD", "mpi-permissive", "OLDAP-2.6", "Minpack", "NGPL", "diffmark", "Latex2e", "OGL-UK-2.0", "AFL-2.1", "AFL-1.2", "Python-2.0.1", "CECILL-B", "OCCT-PL", "OSL-1.1", "Spencer-86", "xinetd", "GFDL-1.2-invariants-or-later", "Boehm-GC", "Graphics-Gems", "CAL-1.0-Combined-Work-Exception", "CC-BY-3.0-DE", "GLWTPL", "NIST-PD-fallback", "BSD-3-Clause", "NetCDF", "CC-BY-ND-3.0-DE", "Parity-7.0.0", "OLDAP-2.0.1", "DRL-1.0", "TU-Berlin-2.0", "Borceux", "OLDAP-1.3", "Giftware", "SGI-B-1.1", "BSD-3-Clause-No-Nuclear-License", "curl", "OLDAP-1.4", "SNIA", "W3C", "GFDL-1.3-or-later", "D-FSL-1.0", "CC-BY-NC-SA-4.0", "Naumen", "FSFAP", "BSD-3-Clause-No-Military-License", "CC-BY-SA-4.0", "xlock", "Sendmail-8.23", "MS-PL", "NIST-PD", "Community-Spec-1.0", "CERN-OHL-1.1", "GFDL-1.2-or-later", "LGPL-2.0-or-later", "Condor-1.1", "CDDL-1.1", "Glide", "OFL-1.0-no-RFN", "CMU-Mach", "ODbL-1.0", "LOOP", "Motosoto", "LGPL-2.1-only", "NASA-1.3", "EUPL-1.0", "zlib-acknowledgement", "SugarCRM-1.1.3", "Widget-Workshop", "Info-ZIP", "BSD-Advertising-Acknowledgement", "CC-BY-NC-ND-1.0", "MIT-0", "OCLC-2.0", "OSL-1.0", "Saxpath", "IJG-short", "Zend-2.0", "Cornell-Lossless-JPEG", "CECILL-1.0", "OpenPBS-2.3", "CC-BY-SA-2.5", "DSDP", "Martin-Birgmeier", "CPOL-1.02", "MIT-advertising", "IPA", "CC-BY-NC-ND-3.0-DE", "CC-BY-SA-3.0-DE", "AMDPLPA", "SimPL-2.0", "EPL-1.0", "AGPL-1.0-only", "SAX-PD", "GFDL-1.1-no-invariants-or-later", "bzip2-1.0.6", "FSFUL", "Spencer-94", "CFITSIO", "AdaCore-doc", "BSD-Source-Code", "Noweb", "SMPPL", "Linux-man-pages-copyleft-var", "Barr", "OLDAP-2.1", "TTWL", "CNRI-Python-GPL-Compatible", "OSL-2.0", "GFDL-1.3-invariants-or-later", "xpp", "W3C-19980720", "Linux-man-pages-1-para", "APL-1.0", "CPAL-1.0", "ClArtistic", "NIST-Software", "UCL-1.0", "OGL-UK-3.0", "TORQUE-1.1", "NOSL", "LiLiQ-R-1.1", "OFL-1.0", "CC-BY-NC-SA-2.0", "MIT-Wu", "RHeCos-1.1", "MIT-Festival", "HPND-sell-variant", "GPL-3.0-or-later", "TOSL", "GFDL-1.2-no-invariants-only", "BlueOak-1.0.0", "LPPL-1.2", "iMatix", "LZMA-SDK-9.11-to-9.20", "TPDL", "CC-BY-3.0", "Apache-1.0", "Fair", "EFL-2.0", "GPL-2.0-only", "CERN-OHL-P-2.0", "Wsuipa", "SPL-1.0", "BSD-3-Clause-No-Nuclear-License-2014", "MirOS", "blessing", "Jam", "OLDAP-2.4", "ANTLR-PD", "LZMA-SDK-9.22", "PHP-3.0", "OLDAP-2.2.1", "CC-BY-NC-SA-2.0-DE", "libpng-2.0", "UCAR", "gnuplot", "CC-BY-NC-2.5", "NRL", "Python-2.0", "CC-BY-NC-SA-2.0-UK", "GL2PS", "CC-BY-NC-ND-2.0", "AFL-1.1", "CC-BY-NC-ND-2.5", "MIT-enna", "CC-BY-NC-ND-4.0", "BSL-1.0", "Linux-man-pages-copyleft", "BSD-4-Clause", "QPL-1.0", "CERN-OHL-1.2", "metamail", "checkmk", "NTP-0", "Imlib2", "CC-BY-NC-ND-3.0", "APSL-1.2", "Mup", "SSH-OpenSSH", "OLFL-1.3", "BSD-3-Clause-Open-MPI", "EFL-1.0", "Intel", "Beerware", "CPL-1.0", "TermReadKey", "MulanPSL-2.0", "CNRI-Jython", "SHL-0.51", "CERN-OHL-W-2.0", "BSD-2-Clause-Patent", "SunPro", "TAPR-OHL-1.0", "CERN-OHL-S-2.0", "ZPL-1.1", "CC-BY-4.0", "BitTorrent-1.0", "libselinux-1.0", "AFL-3.0", "X11", "CC-BY-NC-SA-3.0-DE", "Bitstream-Vera", "RSA-MD", "BSD-4.3TAHOE", "EPICS", "OPL-1.0", "SHL-0.5", "FSFULLRWD", "WTFPL", "OPUBL-1.0", "LAL-1.3", "LPPL-1.3a", "NBPL-1.0", "OFL-1.1-RFN", "OLDAP-2.0", "SGP4", "GFDL-1.1-invariants-only", "CECILL-1.1", "GFDL-1.3-no-invariants-or-later", "Apache-1.1", "NLOD-1.0", "Vim", "PostgreSQL", "FSFULLR", "NLPL", "Glulxe", "libutil-David-Nugent", "Zed", "FreeImage", "0BSD", "CDLA-Sharing-1.0", "APSL-1.1", "JasPer-2.0", "HTMLTIDY", "Newsletr", "OLDAP-2.8", "LPPL-1.0", "O-UDA-1.0", "JSON", "Unicode-DFS-2016", "NICTA-1.0", "IEC-Code-Components-EULA", "Elastic-2.0", "MIT-Modern-Variant", "OLDAP-2.5", "Artistic-1.0-Perl", "CAL-1.0", "BSD-2-Clause-Views", "Interbase-1.0", "NPOSL-3.0", "gSOAP-1.3b" ] }, "type": { "description": "Type of the adapter", "type": "string", "enum": [ "alarm", "climate-control", "communication", "date-and-time", "energy", "metering", "garden", "general", "geoposition", "hardware", "health", "household", "infrastructure", "iot-systems", "lighting", "logic", "messaging", "misc-data", "multimedia", "network", "protocols", "storage", "utility", "vehicle", "visualization", "visualization-icons", "visualization-widgets", "weather" ] }, "unsafePerm": { "description": "if the package must be installed with \"npm --unsafe-perm\" parameter", "type": "boolean" }, "plugins": { "description": "ioBroker plugins to be used", "type": "object" }, "adminColumns": { "description": "Custom attributes, that must be shown in admin in the object browser. Like: [{\"name\": {\"en\": \"KNX address\"}, \"path\": \"native.address\", \"width\": 100, \"align\": \"left\"}, {\"name\": \"DPT\", \"path\": \"native.dpt\", \"width\": 100, \"align\": \"right\", \"type\": \"number\", \"edit\": true, \"objTypes\": [\"state\", \"channel\"]}]. type is a type of the attribute (e.g. string, number, boolean) and only needed if edit is enabled. objTypes is a list of the object types, that could have such attribute. Used only in edit mode too.", "type": "array", "minItems": 1, "items": { "type": "object", "required": [ "name", "path", "width", "align" ], "properties": { "name": { "anyOf": [ { "type": "string" }, { "$ref": "#/definitions/multilingual" } ] }, "path": { "type": "string" }, "width": { "type": "number", "minimum": 0 }, "align": { "type": "string", "enum": [ "left", "right", "center", "justify" ] }, "type": { "type": "string" }, "edit": { "type": "boolean" }, "objTypes": { "type": "array", "items": { "type": "string" } } } } }, "adminTab": { "description": "Adds a Tab which can be shown in admin adapter", "type": "object", "required": [ "fa-icon", "link", "name" ], "additionalProperties": false, "properties": { "fa-icon": { "description": "Font-Awesome icon name for TAB", "type": "string" }, "ignoreConfigUpdate": { "description": "Do not update config TAB if configuration changed (to enable configure settings in TAB)", "type": "boolean" }, "link": { "description": "Link for iframe in the TAB. You can use parameters replacement like this: \"https://%ip%:%port%\". IP will be replaced with host IP. \"port\" will be extracted from native.port.", "type": "string" }, "name": { "description": "Name of TAB (multilingual object) in admin", "$ref": "#/definitions/multilingual" }, "singleton": { "description": "If true, only one TAB for all instances will be shown.", "type": "boolean" } } }, "controller": { "description": "Only used by js-controller", "type": "boolean" }, "allowInit": { "description": "allow for \"scheduled\" adapter to be called \"not in the time schedule\", if settings changed or adapter started. Or allow scheduled adapter start once after configuration changed and then by schedule.", "type": "boolean" }, "availableModes": { "description": "values for common.mode if more than one mode is possible", "type": "array", "minItems": 1, "items": { "type": "string", "enum": [ "none", "daemon", "subscribe", "schedule", "once", "extension" ] } }, "blockly": { "description": "if adapter has custom blocks for blockly (admin/blockly.js required)", "type": "boolean" }, "connectionType": { "description": "Type of connection to device", "type": "string", "enum": [ "none", "local", "cloud" ] }, "compact": { "description": "If compact mode supported", "type": "boolean" }, "dataFolder": { "description": "Folder relative to iobroker-data where the adapter stores the data. This folder will be backed up and restored automatically. You can use variable '%INSTANCE%' in it", "type": "string" }, "dataSource": { "description": "How the data will be received from device", "type": "string", "enum": [ "none", "poll", "push", "assumption" ] }, "dependencies": { "description": "Array like [{\"js-controller\": \">=2.0.0\"}] that describes which ioBroker modules are required for this adapter on the same host", "type": "array", "items": { "type": [ "object", "string" ] } }, "enabled": { "description": "Value should be false so new instances are disabled by default", "type": "boolean" }, "eraseOnUpload": { "description": "erase all previous data in the directory before upload", "type": "boolean", "default": true }, "extIcon": { "description": "Link to external icon for uninstalled adapters. Normally on GitHub", "type": "string" }, "getHistory": { "description": "if adapter supports getHistory message. (Up from controller v5, please use `common.supportedMessages.getHistory`)", "type": "boolean" }, "globalDependencies": { "description": "Array like [{\"admin\": \">=2.0.0\"}] that describes which ioBroker modules are required for this adapter on one of the hosts", "type": "array", "items": { "type": [ "object", "string" ] } }, "icon": { "description": "name of the local icon (should be located in subdirectory \"admin\")", "type": "string" }, "keywords": { "description": "Similar to keywords in package.json, but can be defined in many languages.", "type": "array", "items": { "type": "string" } }, "localLinks": { "description": "Link to the web service of this adapter. E.g {\"_default\": \"http://localhost:5984/_utils\"} for button in admin", "type": "object", "patternProperties": { ".+": { "anyOf": [ { "type": "string" }, { "properties": { "link": { "type": "string" }, "color": { "type": "string" }, "pro": { "type": "boolean" }, "icon": { "type": "string" } }, "additionalProperties": false, "required": [ "link" ] } ] } } }, "loglevel": { "description": "Default Loglevel after instance creation", "type": "string", "enum": [ "silly", "debug", "info", "warn", "error" ] }, "logTransporter": { "description": "If this adapter receives logs from other hosts and adapters (e.g. to store them somewhere)", "type": "boolean" }, "main": { "description": "Name of the start file. DEPRECATED: For controller >= 3.3 please use package.json main.", "type": "string" }, "materialize": { "description": "If adapter supports > admin3 (materialize style) DEPRECATED: For admin version >= 5 please use the property 'adminUI'", "type": "boolean" }, "materializeTab": { "description": "If adapter supports > admin3 for tab (materialize style) DEPRECATED: For admin version >= 5 please use the property 'adminUI'", "type": "boolean" }, "mode": { "description": "Execution mode of the adapter", "type": "string", "enum": [ "none", "daemon", "subscribe", "schedule", "once", "extension" ] }, "noConfig": { "description": "Do not show configuration dialog for instance DEPRECATED: For admin version >= 5 please use adminUI.config = \"none\"", "type": "boolean" }, "noIntro": { "description": "never show instances of this adapter on Intro/Overview screen in admin (like icons, widgets)", "type": "boolean" }, "noRepository": { "description": "If adapter delivered with initial installation or has own repository", "type": "boolean" }, "nogit": { "description": "If true, no install from github directly is possible", "type": "boolean" }, "nondeletable": { "description": "This adapter cannot be deleted or updated. It will be updated together with controller.", "type": "boolean" }, "onlyWWW": { "description": "Say to controller, that adapter has only html files and no main.js, like rickshaw", "type": "boolean" }, "osDependencies": { "description": "OS packages which should be installed on adapter installation", "type": "object", "additionalProperties": false, "patternProperties": { "linux|darwin|win32": { "type": "array", "items": { "type": "string" } } } }, "os": { "description": "String or array of supported operation systems, e.g [\"linux\", \"darwin\"]", "anyOf": [ { "type": "string", "enum": [ "linux", "darwin", "win32" ] }, { "type": "array", "minItems": 1, "items": { "type": "string", "enum": [ "linux", "darwin", "win32" ] } } ] }, "preserveSettings": { "description": "String (or array) with names of attributes in common of instance, which will not be deleted. E.g. \"history\", so by setState('system.adapter.mqtt.0\", {..}) the field common.history will not be deleted even if new object does not have this field. To delete the attribute it must be explicitly done with common:{history: null}.", "type": [ "string", "array" ], "items": { "type": "string" } }, "restartAdapters": { "description": "Array with names of adapter that must be restarted after this adapter is installed, e.g. [\"vis\"]", "type": "array", "items": { "type": "string" } }, "restartSchedule": { "description": "CRON schedule to restart mode daemon adapters", "type": "string" }, "schedule": { "description": "CRON schedule if adapter runs in mode schedule", "type": "string" }, "serviceStates": { "description": "If adapter can deliver additional states. If true, the path adapter/lib/states.js (or given path as string) will be called and it give following parameters function (objects, states, instance, config, callback). The function must deliver the array of points with values like function (err, result) { result = [{id: 'id1', val: 1}, {id: 'id2', val: 2}]}", "type": [ "boolean", "string" ] }, "singletonHost": { "description": "Adapter can be installed only once on one host", "type": "boolean" }, "singleton": { "description": "Adapter can be installed only once in whole system", "type": "boolean" }, "stopBeforeUpdate": { "description": "If adapter must be stopped before update", "type": "boolean" }, "stopTimeout": { "description": "timeout in ms to wait, till adapter shut down", "type": "number", "default": 500, "minimum": 0, "multipleOf": 1 }, "subscribable": { "description": "Variables of this adapter must be subscribed with sendTo to enable updates", "type": "boolean" }, "subscribe": { "description": "Name of variable, that is subscribed automatically", "type": "string" }, "supportCustoms": { "description": "If the adapter support settings for every state. It has to have custom.html file in admin. Sample can be found in ioBroker.history", "type": "boolean" }, "supportStopInstance": { "description": "If adapter supports signal stopInstance (messagebox required). Use number if you need more than 1000 ms for stop routine. The signal will be sent before stop to the adapter. (used if problems occurred with SIGTERM). (Up from controller v5, please use `common.supportedMessages.stopInstance`)", "anyOf": [ { "type": "boolean" }, { "type": "number", "multipleOf": 1, "minimum": 1000 } ] }, "visWidgets": { "description": "Overview of vis 2 widgets provided by the adapter, define the name of the provided sets as keys", "minProperties": 1, "type": "object", "patternProperties": { ".+": { "description": "The key represents the name of a provided widget set", "required": [ "url", "components", "i18n" ], "type": "object", "properties": { "i18n": { "description": "Translation for the widget", "anyOf": [ { "description": "Translations will be loaded from visWidgets.<SET_NAME>.url and i18n/<LANG>.json", "const": true }, { "description": "Translations will be loaded from customComponent.js with name ./translations", "const": "component" }, { "description": "Define translations here", "type": "object", "patternProperties": { ".+": { "$ref": "#/definitions/multilingual" } } } ] }, "url": { "description": "Relative path ('http://ip:port/vis/widgets/' + url) or full url to load component from", "type": "string" }, "components": { "description": "Names of widgets which have to be shown, normally equal to the content of 'modulefederation.config.js'", "type": "array", "minItems": 1, "items": { "type": "string" } } } } } }, "wakeup": { "description": "Adapter will be started if some value is written into system.adapter.NAME.x.wakeup. Normally the adapter should stop after processing of event.", "type": "boolean" }, "webByVersion": { "description": "Show version as prefix in web adapter (usually - ip:port/material, webByVersion - ip:port/1.2.3/material)", "type": "boolean" }, "webExtendable": { "description": "If web server in this adapter can be extended with plugin/extensions like proxy, simple-api", "type": "boolean" }, "webExtension": { "description": "Relative filename to connect the web extension. E.g. in simple-api \"lib/simpleapi.js\" relative to the adapter root directory. Additionally is native.webInstance required to say where this extension will be included. Empty means, it must run as own web service. \"*\" means every web server must include it.", "type": "string" }, "webPreSettings": { "description": "Object of parameters that must be included into info.js by webServer adapter. (Example material)", "type": "object" }, "webservers": { "description": "Array of web server's instances that should serve content from the adapters www folder", "type": "array", "items": { "type": "string" } }, "welcomeScreen": { "description": "Array of pages, that should be shown on the \"web\" index.html page. [\"vis/edit.html\", \"vis/index.html\"] or [{\"link\": \"vis/edit.html\", \"name\": \"Vis editor\", \"img\": \"vis/img/edit.png\", \"color\": \"blue\"}, \"vis/index.html\"]", "type": "array", "items": { "type": [ "string", "object" ] } }, "welcomeScreenPro": { "description": "Array of pages used on access via ioBroker cloud, that should be shown on the \"web\" index.html page. [\"vis/edit.html\", \"vis/index.html\"] or [{\"link\": \"vis/edit.html\", \"name\": \"Vis editor\", \"img\": \"vis/img/edit.png\", \"color\": \"blue\"}, \"vis/index.html\"]", "type": "array", "items": { "type": [ "string", "object" ] } }, "wwwDontUpload": { "description": "Do not upload the www directory into DB. Used only for admin.", "type": "boolean" }, "tier": { "description": "Lower tiers are started before higher tiers instances, TIER 1: LOGIC, TIER 2: APIs & other data, TIER 3: not fastly needed data, like BackItUp, Visualization, etc.", "type": "number", "minimum": 1, "maximum": 3, "default": 3 }, "messages": { "description": "Messages can be shown on adapter installation, update and instance creation", "type": "array", "items": { "type": "object", "additionalProperties": false, "required": [ "title", "text", "buttons" ], "properties": { "condition": { "description": "Message will only be shown if condition matches", "additionalProperties": false, "type": "object", "properties": { "operand": { "description": "Operand to connect multiple rules", "enum": [ "or", "and" ], "default": "and" }, "rules": { "description": "Rules which need to be true, e.g. [\"oldVersion<2.0.0\", \"newVersion>=2.0.0\"]", "type": "array", "items": { "type": "string" } } } }, "title": { "description": "Title of the shown message", "$ref": "#/definitions/multilingual" }, "text": { "description": "Text of the shown message", "$ref": "#/definitions/multilingual" }, "link": { "description": "You can define a hyperlink, which will be shown, define its text with `linkText`", "type": "string" }, "level": { "description": "The importance of the message", "enum": [ "info", "warn", "error" ], "default": "warn" }, "linkText": { "description": "If a link is defined and should be embedded in text, you can define the text here", "$ref": "#/definitions/multilingual" }, "buttons": { "description": "Predefined buttons of the message window", "type": "array", "items": { "enum": [ "ok", "agree", "cancel" ] } } } } }, "nodeProcessParams": { "type": "array", "items": { "type": "string" } } }, "allOf": [ { "if": { "$ref": "#/definitions/isCompactTrue" }, "then": { "$ref": "#/definitions/disallowNodeProcessParams" } } ] }, "objects": { "description": "Objects which will be created for the adapter", "type": "array", "items": { "$ref": "#/definitions/iobrokerObject" } }, "instanceObjects": { "description": "Objects which will be created for each instance", "type": "array", "items": { "$ref": "#/definitions/iobrokerObject" } }, "notifications": { "description": "Register notifications for the built-in notification system", "type": "array", "items": { "type": "object", "required": [ "scope", "name", "description", "categories" ], "additionalProperties": false, "properties": { "scope": { "type": "string" }, "name": { "description": "Name which will be shown to the user", "$ref": "#/definitions/multilingual" }, "description": { "description": "Description which will be shown to the user", "$ref": "#/definitions/multilingual" }, "categories": { "type": "array", "items": { "type": "object", "additionalProperties": false, "required": [ "category", "name", "severity", "description", "regex", "limit" ], "properties": { "category": { "type": "string" }, "name": { "$ref": "#/definitions/multilingual" }, "severity": { "type": "string", "enum": [ "info", "notify", "alert" ], "description": "`info` will only be shown by admin, while `notify` might also be used by messaging adapters, `alert` ensures both" }, "description": { "$ref": "#/definitions/multilingual" }, "regex": { "type": "array", "items": { "type": "string" } }, "limit": { "type": "number", "description": "Maximum amount of notifications to collect of this type" } } } } } } }, "native": { "description": "Predefined attributes which are accessible in index_m.html and at runtime via adapter.config.<attribute>, e.g. {\"port\": 1234, \"password\": \"secret\"}", "type": "object" }, "protectedNative": { "description": "Array of config attributes which will only be accessible by the own adapter, e.g. [\"password\"]", "type": "array", "items": { "type": "string" } }, "encryptedNative": { "description": "Array of config attributes which will be automatically encrypted when stored via Admin configuration page and automatically decrypted at adapter runtime, e.g. [\"password\", \"token\"]", "type": "array", "items": { "type": "string" } } } }