Show / Hide Table of Contents

Class CfnDataSourcePropsMixin.WebCrawlerAuthenticationConfigurationProperty

Provides the configuration information to connect to websites that require user authentication.

Inheritance
object
CfnDataSourcePropsMixin.WebCrawlerAuthenticationConfigurationProperty
Implements
CfnDataSourcePropsMixin.IWebCrawlerAuthenticationConfigurationProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.Mixins.Preview.AWS.Kendra.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnDataSourcePropsMixin.WebCrawlerAuthenticationConfigurationProperty : CfnDataSourcePropsMixin.IWebCrawlerAuthenticationConfigurationProperty
Syntax (vb)
Public Class CfnDataSourcePropsMixin.WebCrawlerAuthenticationConfigurationProperty Implements CfnDataSourcePropsMixin.IWebCrawlerAuthenticationConfigurationProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-webcrawlerauthenticationconfiguration.html

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.Kendra.Mixins;

             var webCrawlerAuthenticationConfigurationProperty = new WebCrawlerAuthenticationConfigurationProperty {
                 BasicAuthentication = new [] { new WebCrawlerBasicAuthenticationProperty {
                     Credentials = "credentials",
                     Host = "host",
                     Port = 123
                 } }
             };

Synopsis

Constructors

WebCrawlerAuthenticationConfigurationProperty()

Provides the configuration information to connect to websites that require user authentication.

Properties

BasicAuthentication

The list of configuration information that's required to connect to and crawl a website host using basic authentication credentials.

Constructors

WebCrawlerAuthenticationConfigurationProperty()

Provides the configuration information to connect to websites that require user authentication.

public WebCrawlerAuthenticationConfigurationProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-webcrawlerauthenticationconfiguration.html

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.Kendra.Mixins;

             var webCrawlerAuthenticationConfigurationProperty = new WebCrawlerAuthenticationConfigurationProperty {
                 BasicAuthentication = new [] { new WebCrawlerBasicAuthenticationProperty {
                     Credentials = "credentials",
                     Host = "host",
                     Port = 123
                 } }
             };

Properties

BasicAuthentication

The list of configuration information that's required to connect to and crawl a website host using basic authentication credentials.

public object? BasicAuthentication { get; set; }
Property Value

object

Remarks

The list includes the name and port number of the website host.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-webcrawlerauthenticationconfiguration.html#cfn-kendra-datasource-webcrawlerauthenticationconfiguration-basicauthentication

Type union: either IResolvable or (either IResolvable or CfnDataSourcePropsMixin.IWebCrawlerBasicAuthenticationProperty)[]

Implements

CfnDataSourcePropsMixin.IWebCrawlerAuthenticationConfigurationProperty
Back to top Generated by DocFX