Class AmazonS3LinkedService
Linked service for Amazon S3.
Inherited Members
Namespace: System.Dynamic.ExpandoObject
Assembly: Azure.Analytics.Synapse.Artifacts.dll
Syntax
[System.Text.Json.Serialization.JsonConverter(typeof(Azure.Analytics.Synapse.Artifacts.Models.AmazonS3LinkedService/AmazonS3LinkedServiceConverter))]
public class AmazonS3LinkedService : Azure.Analytics.Synapse.Artifacts.Models.LinkedService
Constructors
AmazonS3LinkedService()
Properties
AccessKeyId
The access key identifier of the Amazon S3 Identity and Access Management (IAM) user. Type: string (or Expression with resultType string).
Declaration
public object AccessKeyId { get; set; }
Property Value
|
System.Object
|
AuthenticationType
The authentication type of S3. Allowed value: AccessKey (default) or TemporarySecurityCredentials. Type: string (or Expression with resultType string).
Declaration
public object AuthenticationType { 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
|
SecretAccessKey
The secret access key of the Amazon S3 Identity and Access Management (IAM) user. 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 SecretAccessKey { get; set; }
Property Value
|
SecretBase
|
ServiceUrl
This value specifies the endpoint to access with the S3 Connector. This is an optional property; change it only if you want to try a different service endpoint or want to switch between https and http. Type: string (or Expression with resultType string).
Declaration
public object ServiceUrl { get; set; }
Property Value
|
System.Object
|
SessionToken
The session token for the S3 temporary security credential. 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 SessionToken { get; set; }
Property Value
|
SecretBase
|