Class AmazonRedshiftLinkedService
Linked service for Amazon Redshift.
Inherited Members
Namespace: System.Dynamic.ExpandoObject
Assembly: Azure.Analytics.Synapse.Artifacts.dll
Syntax
[System.Text.Json.Serialization.JsonConverter(typeof(Azure.Analytics.Synapse.Artifacts.Models.AmazonRedshiftLinkedService/AmazonRedshiftLinkedServiceConverter))]
public class AmazonRedshiftLinkedService : Azure.Analytics.Synapse.Artifacts.Models.LinkedService
Constructors
AmazonRedshiftLinkedService(Object, Object)
Initializes a new instance of AmazonRedshiftLinkedService.
Declaration
public AmazonRedshiftLinkedService (object server, object database);
Parameters
|
System.Object
server
The name of the Amazon Redshift server. Type: string (or Expression with resultType string). |
|
System.Object
database
The database name of the Amazon Redshift source. Type: string (or Expression with resultType string). |
Exceptions
|
System.ArgumentNullException
|
Properties
Database
The database name of the Amazon Redshift source. Type: string (or Expression with resultType string).
Declaration
public object Database { get; set; }
Property Value
|
System.Object
|
EncryptedCredential
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).
Declaration
public object EncryptedCredential { get; set; }
Property Value
|
System.Object
|
Password
The password of the Amazon Redshift source. Please note SecretBase is the base class. According to the scenario, a derived class of the base class might need to be assigned here, or this property needs to be casted to one of the possible derived classes. The available derived classes include AzureKeyVaultSecretReference and SecureString.
Declaration
public Azure.Analytics.Synapse.Artifacts.Models.SecretBase Password { get; set; }
Property Value
|
SecretBase
|
Port
The TCP port number that the Amazon Redshift server uses to listen for client connections. The default value is 5439. Type: integer (or Expression with resultType integer).
Declaration
public object Port { get; set; }
Property Value
|
System.Object
|
Server
The name of the Amazon Redshift server. Type: string (or Expression with resultType string).
Declaration
public object Server { get; set; }
Property Value
|
System.Object
|
Username
The username of the Amazon Redshift source. Type: string (or Expression with resultType string).
Declaration
public object Username { get; set; }
Property Value
|
System.Object
|