interface ConfluenceDataSourceConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Bedrock.Mixins.CfnDataSourcePropsMixin.ConfluenceDataSourceConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsbedrock/mixins#CfnDataSourcePropsMixin_ConfluenceDataSourceConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.bedrock.mixins.CfnDataSourcePropsMixin.ConfluenceDataSourceConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_bedrock.mixins.CfnDataSourcePropsMixin.ConfluenceDataSourceConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_bedrock » mixins » CfnDataSourcePropsMixin » ConfluenceDataSourceConfigurationProperty |
The configuration information to connect to Confluence as your 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 confluenceDataSourceConfigurationProperty: bedrock_mixins.CfnDataSourcePropsMixin.ConfluenceDataSourceConfigurationProperty = {
crawlerConfiguration: {
filterConfiguration: {
patternObjectFilter: {
filters: [{
exclusionFilters: ['exclusionFilters'],
inclusionFilters: ['inclusionFilters'],
objectType: 'objectType',
}],
},
type: 'type',
},
},
sourceConfiguration: {
authType: 'authType',
credentialsSecretArn: 'credentialsSecretArn',
hostType: 'hostType',
hostUrl: 'hostUrl',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| crawler | IResolvable | Confluence | The configuration of the Confluence content. |
| source | IResolvable | Confluence | The endpoint information to connect to your Confluence data source. |
crawlerConfiguration?
Type:
IResolvable | Confluence
(optional)
The configuration of the Confluence content.
For example, configuring specific types of Confluence content.
sourceConfiguration?
Type:
IResolvable | Confluence
(optional)
The endpoint information to connect to your Confluence data source.

.NET
Go
Java
Python
TypeScript