Class: Aws::Kendra::Types::BasicAuthenticationConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::Kendra::Types::BasicAuthenticationConfiguration
- 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
-
#credentials ⇒ String
Your secret ARN, which you can create in [Secrets Manager].
-
#host ⇒ String
The name of the website host you want to connect to using authentication credentials.
-
#port ⇒ Integer
The port number of the website host you want to connect to using authentication credentials.
Instance Attribute Details
#credentials ⇒ String
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
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 |
#host ⇒ String
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”.
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 |
#port ⇒ Integer
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.
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 |