Interface CfnDataSourcePropsMixin.ConfluenceSourceConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDataSourcePropsMixin.ConfluenceSourceConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnDataSourcePropsMixin
@Stability(Stable)
public static interface CfnDataSourcePropsMixin.ConfluenceSourceConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.cfnpropertymixins.services.bedrock.*;
ConfluenceSourceConfigurationProperty confluenceSourceConfigurationProperty = ConfluenceSourceConfigurationProperty.builder()
.authType("authType")
.credentialsSecretArn("credentialsSecretArn")
.hostType("hostType")
.hostUrl("hostUrl")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnDataSourcePropsMixin.ConfluenceSourceConfigurationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe supported authentication type to authenticate and connect to your Confluence instance.default StringThe Amazon Resource Name of an AWS Secrets Manager secret that stores your authentication credentials for your Confluence instance URL.default StringThe supported host type, whether online/cloud or server/on-premises.default StringThe Confluence host URL or instance URL.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAuthType
The supported authentication type to authenticate and connect to your Confluence instance.- See Also:
-
getCredentialsSecretArn
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 .
- See Also:
-
getHostType
The supported host type, whether online/cloud or server/on-premises.- See Also:
-
getHostUrl
The Confluence host URL or instance URL.- See Also:
-
builder
@Stability(Stable) static CfnDataSourcePropsMixin.ConfluenceSourceConfigurationProperty.Builder builder()
-