Specifies the credentials of the stage.
{ "$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" } } }