Interface CfnDataSource.SharePointSourceConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDataSource.SharePointSourceConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnDataSource
@Stability(Stable)
public static interface CfnDataSource.SharePointSourceConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
The endpoint information to connect to your SharePoint 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.*; SharePointSourceConfigurationProperty sharePointSourceConfigurationProperty = SharePointSourceConfigurationProperty.builder() .authType("authType") .credentialsSecretArn("credentialsSecretArn") .domain("domain") .hostType("hostType") .siteUrls(List.of("siteUrls")) // the properties below are optional .tenantId("tenantId") .build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnDataSource.SharePointSourceConfigurationProperty
static final class
An implementation forCfnDataSource.SharePointSourceConfigurationProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
The supported authentication type to authenticate and connect to your SharePoint site/sites.The Amazon Resource Name of an AWS Secrets Manager secret that stores your authentication credentials for your SharePoint site/sites.The domain of your SharePoint instance or site URL/URLs.The supported host type, whether online/cloud or server/on-premises.A list of one or more SharePoint site URLs.default String
The identifier of your Microsoft 365 tenant.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAuthType
The supported authentication type to authenticate and connect to your SharePoint site/sites.- See Also:
-
getCredentialsSecretArn
The Amazon Resource Name of an AWS Secrets Manager secret that stores your authentication credentials for your SharePoint site/sites.For more information on the key-value pairs that must be included in your secret, depending on your authentication type, see SharePoint connection configuration .
- See Also:
-
getDomain
The domain of your SharePoint instance or site URL/URLs.- See Also:
-
getHostType
The supported host type, whether online/cloud or server/on-premises.- See Also:
-
getSiteUrls
A list of one or more SharePoint site URLs.- See Also:
-
getTenantId
The identifier of your Microsoft 365 tenant.- See Also:
-
builder
-