Snowflake · Schema

Credentials

Specifies the credentials of the stage.

Data LakesData SharingData WarehousingDatabaseSQL

Properties

Name Type Description
credential_type string Type of the credential, can be either AWS or AZURE.
View JSON Schema on GitHub

JSON Schema

snowflake-credentials-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Credentials",
  "title": "Credentials",
  "type": "object",
  "description": "Specifies the credentials of the stage.",
  "properties": {
    "credential_type": {
      "description": "Type of the credential, can be either AWS or AZURE.",
      "type": "string",
      "example": "example_value"
    }
  },
  "discriminator": {
    "propertyName": "credential_type",
    "mapping": {
      "AWS": "AwsCredentials",
      "AZURE": "AzureCredentials"
    }
  }
}