interface ConfluenceSourceConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Bedrock.Mixins.CfnDataSourcePropsMixin.ConfluenceSourceConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsbedrock/mixins#CfnDataSourcePropsMixin_ConfluenceSourceConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.bedrock.mixins.CfnDataSourcePropsMixin.ConfluenceSourceConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_bedrock.mixins.CfnDataSourcePropsMixin.ConfluenceSourceConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_bedrock » mixins » CfnDataSourcePropsMixin » ConfluenceSourceConfigurationProperty |
The endpoint information to connect to your Confluence data source.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as bedrock_mixins } from '@aws-cdk/mixins-preview/aws-bedrock';
const confluenceSourceConfigurationProperty: bedrock_mixins.CfnDataSourcePropsMixin.ConfluenceSourceConfigurationProperty = {
authType: 'authType',
credentialsSecretArn: 'credentialsSecretArn',
hostType: 'hostType',
hostUrl: 'hostUrl',
};
Properties
| Name | Type | Description |
|---|---|---|
| auth | string | The supported authentication type to authenticate and connect to your Confluence instance. |
| credentials | string | The Amazon Resource Name of an AWS Secrets Manager secret that stores your authentication credentials for your Confluence instance URL. |
| host | string | The supported host type, whether online/cloud or server/on-premises. |
| host | string | The Confluence host URL or instance URL. |
authType?
Type:
string
(optional)
The supported authentication type to authenticate and connect to your Confluence instance.
credentialsSecretArn?
Type:
string
(optional)
The Amazon Resource Name of an AWS Secrets Manager secret that stores your authentication credentials for your Confluence instance URL.
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?
Type:
string
(optional)
The supported host type, whether online/cloud or server/on-premises.
hostUrl?
Type:
string
(optional)
The Confluence host URL or instance URL.

.NET
Go
Java
Python
TypeScript