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
The Amazon Resource Name (ARN) of an Secrets Manager secret.
-
#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
permalink #credentials ⇒ String
The Amazon Resource Name (ARN) of an Secrets Manager secret. You create a secret to store your credentials 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
650 651 652 653 654 655 656 |
# File 'lib/aws-sdk-kendra/types.rb', line 650 class BasicAuthenticationConfiguration < Struct.new( :host, :port, :credentials) SENSITIVE = [] include Aws::Structure end |
permalink #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”.
650 651 652 653 654 655 656 |
# File 'lib/aws-sdk-kendra/types.rb', line 650 class BasicAuthenticationConfiguration < Struct.new( :host, :port, :credentials) SENSITIVE = [] include Aws::Structure end |
permalink #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.
650 651 652 653 654 655 656 |
# File 'lib/aws-sdk-kendra/types.rb', line 650 class BasicAuthenticationConfiguration < Struct.new( :host, :port, :credentials) SENSITIVE = [] include Aws::Structure end |