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