Class CfnDataSource.ConfluenceSourceConfigurationProperty
The endpoint information to connect to your Confluence data source.
Inherited Members
Namespace: Amazon.CDK.AWS.Bedrock
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnDataSource.ConfluenceSourceConfigurationProperty : CfnDataSource.IConfluenceSourceConfigurationProperty
Syntax (vb)
Public Class CfnDataSource.ConfluenceSourceConfigurationProperty Implements CfnDataSource.IConfluenceSourceConfigurationProperty
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 confluenceSourceConfigurationProperty = new ConfluenceSourceConfigurationProperty {
AuthType = "authType",
CredentialsSecretArn = "credentialsSecretArn",
HostType = "hostType",
HostUrl = "hostUrl"
};
Synopsis
Constructors
| ConfluenceSourceConfigurationProperty() | The endpoint information to connect to your Confluence data source. |
Properties
| AuthType | The supported authentication type to authenticate and connect to your Confluence instance. |
| CredentialsSecretArn | The Amazon Resource Name of an AWS Secrets Manager secret that stores your authentication credentials for your Confluence instance URL. |
| HostType | The supported host type, whether online/cloud or server/on-premises. |
| HostUrl | The Confluence host URL or instance URL. |
Constructors
ConfluenceSourceConfigurationProperty()
The endpoint information to connect to your Confluence data source.
public ConfluenceSourceConfigurationProperty()
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 confluenceSourceConfigurationProperty = new ConfluenceSourceConfigurationProperty {
AuthType = "authType",
CredentialsSecretArn = "credentialsSecretArn",
HostType = "hostType",
HostUrl = "hostUrl"
};
Properties
AuthType
The supported authentication type to authenticate and connect to your Confluence 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 Confluence 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 Confluence connection configuration .
HostType
The supported host type, whether online/cloud or server/on-premises.
public string HostType { get; set; }
Property Value
Remarks
HostUrl
The Confluence host URL or instance URL.
public string HostUrl { get; set; }