Interface CfnDataSource.ConfluenceDataSourceConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDataSource.ConfluenceDataSourceConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnDataSource
@Stability(Stable)
public static interface CfnDataSource.ConfluenceDataSourceConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.bedrock.*; ConfluenceDataSourceConfigurationProperty confluenceDataSourceConfigurationProperty = ConfluenceDataSourceConfigurationProperty.builder() .sourceConfiguration(ConfluenceSourceConfigurationProperty.builder() .authType("authType") .credentialsSecretArn("credentialsSecretArn") .hostType("hostType") .hostUrl("hostUrl") .build()) // the properties below are optional .crawlerConfiguration(ConfluenceCrawlerConfigurationProperty.builder() .filterConfiguration(CrawlFilterConfigurationProperty.builder() .type("type") // the properties below are optional .patternObjectFilter(PatternObjectFilterConfigurationProperty.builder() .filters(List.of(PatternObjectFilterProperty.builder() .objectType("objectType") // the properties below are optional .exclusionFilters(List.of("exclusionFilters")) .inclusionFilters(List.of("inclusionFilters")) .build())) .build()) .build()) .build()) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnDataSource.ConfluenceDataSourceConfigurationProperty
static final class
An implementation forCfnDataSource.ConfluenceDataSourceConfigurationProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getSourceConfiguration
The endpoint information to connect to your Confluence data source.- See Also:
-
getCrawlerConfiguration
The configuration of the Confluence content.For example, configuring specific types of Confluence content.
- See Also:
-
builder
-