Class CfnDataSourcePropsMixin.SharePointSourceConfigurationProperty
The endpoint information to connect to your SharePoint data source.
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.Bedrock.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnDataSourcePropsMixin.SharePointSourceConfigurationProperty : CfnDataSourcePropsMixin.ISharePointSourceConfigurationProperty
Syntax (vb)
Public Class CfnDataSourcePropsMixin.SharePointSourceConfigurationProperty Implements CfnDataSourcePropsMixin.ISharePointSourceConfigurationProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.Bedrock.Mixins;
var sharePointSourceConfigurationProperty = new SharePointSourceConfigurationProperty {
AuthType = "authType",
CredentialsSecretArn = "credentialsSecretArn",
Domain = "domain",
HostType = "hostType",
SiteUrls = new [] { "siteUrls" },
TenantId = "tenantId"
};
Synopsis
Constructors
| SharePointSourceConfigurationProperty() | The endpoint information to connect to your SharePoint data source. |
Properties
| AuthType | The supported authentication type to authenticate and connect to your SharePoint site/sites. |
| CredentialsSecretArn | The Amazon Resource Name of an AWS Secrets Manager secret that stores your authentication credentials for your SharePoint site/sites. |
| Domain | The domain of your SharePoint instance or site URL/URLs. |
| HostType | The supported host type, whether online/cloud or server/on-premises. |
| SiteUrls | A list of one or more SharePoint site URLs. |
| TenantId | The identifier of your Microsoft 365 tenant. |
Constructors
SharePointSourceConfigurationProperty()
The endpoint information to connect to your SharePoint data source.
public SharePointSourceConfigurationProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.Bedrock.Mixins;
var sharePointSourceConfigurationProperty = new SharePointSourceConfigurationProperty {
AuthType = "authType",
CredentialsSecretArn = "credentialsSecretArn",
Domain = "domain",
HostType = "hostType",
SiteUrls = new [] { "siteUrls" },
TenantId = "tenantId"
};
Properties
AuthType
The supported authentication type to authenticate and connect to your SharePoint site/sites.
public string? AuthType { get; set; }
Property Value
Remarks
CredentialsSecretArn
The Amazon Resource Name of an AWS Secrets Manager secret that stores your authentication credentials for your SharePoint site/sites.
public string? CredentialsSecretArn { get; set; }
Property Value
Remarks
For more information on the key-value pairs that must be included in your secret, depending on your authentication type, see SharePoint connection configuration .
Domain
The domain of your SharePoint instance or site URL/URLs.
public string? Domain { get; set; }
Property Value
Remarks
HostType
The supported host type, whether online/cloud or server/on-premises.
public string? HostType { get; set; }
Property Value
Remarks
SiteUrls
A list of one or more SharePoint site URLs.
public string[]? SiteUrls { get; set; }
Property Value
string[]
Remarks
TenantId
The identifier of your Microsoft 365 tenant.
public string? TenantId { get; set; }