Class: Aws::Kendra::Types::BasicAuthenticationConfiguration

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-kendra/types.rb

Overview

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

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#credentialsString

Your secret ARN, which you can create in [Secrets Manager]

You use a secret if basic authentication credentials are required to connect to a website. The secret stores your credentials of user name and password.

[1]: docs.aws.amazon.com/secretsmanager/latest/userguide/intro.html

Returns:

  • (String)


649
650
651
652
653
654
655
# File 'lib/aws-sdk-kendra/types.rb', line 649

class BasicAuthenticationConfiguration < Struct.new(
  :host,
  :port,
  :credentials)
  SENSITIVE = []
  include Aws::Structure
end

#hostString

The name of the website host you want to connect to using authentication credentials.

For example, the host name of a.example.com/page1.html is “a.example.com”.

Returns:

  • (String)


649
650
651
652
653
654
655
# File 'lib/aws-sdk-kendra/types.rb', line 649

class BasicAuthenticationConfiguration < Struct.new(
  :host,
  :port,
  :credentials)
  SENSITIVE = []
  include Aws::Structure
end

#portInteger

The port number of the website host you want to connect to using authentication credentials.

For example, the port for a.example.com/page1.html is 443, the standard port for HTTPS.

Returns:

  • (Integer)


649
650
651
652
653
654
655
# File 'lib/aws-sdk-kendra/types.rb', line 649

class BasicAuthenticationConfiguration < Struct.new(
  :host,
  :port,
  :credentials)
  SENSITIVE = []
  include Aws::Structure
end