interface ConfluenceDataSourceConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Bedrock.CfnDataSourcePropsMixin.ConfluenceDataSourceConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbedrock#CfnDataSourcePropsMixin_ConfluenceDataSourceConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.bedrock.CfnDataSourcePropsMixin.ConfluenceDataSourceConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_bedrock.CfnDataSourcePropsMixin.ConfluenceDataSourceConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_bedrock » 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 { aws_bedrock as bedrock } from '@aws-cdk/cfn-property-mixins';
const confluenceDataSourceConfigurationProperty: bedrock.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