Interface CfnDataSourcePropsMixin.SalesforceSourceConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDataSourcePropsMixin.SalesforceSourceConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnDataSourcePropsMixin
@Stability(Stable)
public static interface CfnDataSourcePropsMixin.SalesforceSourceConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
The endpoint information to connect to your Salesforce data source.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.bedrock.*;
SalesforceSourceConfigurationProperty salesforceSourceConfigurationProperty = SalesforceSourceConfigurationProperty.builder()
.authType("authType")
.credentialsSecretArn("credentialsSecretArn")
.hostUrl("hostUrl")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnDataSourcePropsMixin.SalesforceSourceConfigurationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe supported authentication type to authenticate and connect to your Salesforce instance.default StringThe Amazon Resource Name of an AWS Secrets Manager secret that stores your authentication credentials for your Salesforce instance URL.default StringThe Salesforce host URL or instance URL.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAuthType
The supported authentication type to authenticate and connect to your Salesforce instance.- See Also:
-
getCredentialsSecretArn
The Amazon Resource Name of an AWS Secrets Manager secret that stores your authentication credentials for your Salesforce instance URL.For more information on the key-value pairs that must be included in your secret, depending on your authentication type, see Salesforce connection configuration .
- See Also:
-
getHostUrl
The Salesforce host URL or instance URL.- See Also:
-
builder
@Stability(Stable) static CfnDataSourcePropsMixin.SalesforceSourceConfigurationProperty.Builder builder()
-