Class CfnDataSource.SalesforceSourceConfigurationProperty
The endpoint information to connect to your Salesforce data source.
Inherited Members
Namespace: Amazon.CDK.AWS.Bedrock
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnDataSource.SalesforceSourceConfigurationProperty : CfnDataSource.ISalesforceSourceConfigurationProperty
Syntax (vb)
Public Class CfnDataSource.SalesforceSourceConfigurationProperty Implements CfnDataSource.ISalesforceSourceConfigurationProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Bedrock;
var salesforceSourceConfigurationProperty = new SalesforceSourceConfigurationProperty {
AuthType = "authType",
CredentialsSecretArn = "credentialsSecretArn",
HostUrl = "hostUrl"
};
Synopsis
Constructors
| SalesforceSourceConfigurationProperty() | The endpoint information to connect to your Salesforce data source. |
Properties
| AuthType | The supported authentication type to authenticate and connect to your Salesforce instance. |
| CredentialsSecretArn | The Amazon Resource Name of an AWS Secrets Manager secret that stores your authentication credentials for your Salesforce instance URL. |
| HostUrl | The Salesforce host URL or instance URL. |
Constructors
SalesforceSourceConfigurationProperty()
The endpoint information to connect to your Salesforce data source.
public SalesforceSourceConfigurationProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Bedrock;
var salesforceSourceConfigurationProperty = new SalesforceSourceConfigurationProperty {
AuthType = "authType",
CredentialsSecretArn = "credentialsSecretArn",
HostUrl = "hostUrl"
};
Properties
AuthType
The supported authentication type to authenticate and connect to your Salesforce instance.
public string AuthType { get; set; }
Property Value
Remarks
CredentialsSecretArn
The Amazon Resource Name of an AWS Secrets Manager secret that stores your authentication credentials for your Salesforce instance URL.
public string CredentialsSecretArn { get; set; }
Property Value
Remarks
For more information on the key-value pairs that must be included in your secret, depending on your authentication type, see Salesforce connection configuration .
HostUrl
The Salesforce host URL or instance URL.
public string HostUrl { get; set; }