Class: Aws::Kendra::Types::ConnectionConfiguration

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

Overview

Provides the configuration information that's required to connect to a database.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#database_hostString

The name of the host for the database. Can be either a string (host.subdomain.domain.tld) or an IPv4 or IPv6 address.

Returns:

  • (String)


1799
1800
1801
1802
1803
1804
1805
1806
1807
# File 'gems/aws-sdk-kendra/lib/aws-sdk-kendra/types.rb', line 1799

class ConnectionConfiguration < Struct.new(
  :database_host,
  :database_port,
  :database_name,
  :table_name,
  :secret_arn)
  SENSITIVE = []
  include Aws::Structure
end

#database_nameString

The name of the database containing the document data.

Returns:

  • (String)


1799
1800
1801
1802
1803
1804
1805
1806
1807
# File 'gems/aws-sdk-kendra/lib/aws-sdk-kendra/types.rb', line 1799

class ConnectionConfiguration < Struct.new(
  :database_host,
  :database_port,
  :database_name,
  :table_name,
  :secret_arn)
  SENSITIVE = []
  include Aws::Structure
end

#database_portInteger

The port that the database uses for connections.

Returns:

  • (Integer)


1799
1800
1801
1802
1803
1804
1805
1806
1807
# File 'gems/aws-sdk-kendra/lib/aws-sdk-kendra/types.rb', line 1799

class ConnectionConfiguration < Struct.new(
  :database_host,
  :database_port,
  :database_name,
  :table_name,
  :secret_arn)
  SENSITIVE = []
  include Aws::Structure
end

#secret_arnString

The Amazon Resource Name (ARN) of credentials stored in Secrets Manager. The credentials should be a user/password pair. For more information, see Using a Database Data Source. For more information about Secrets Manager, see What Is Secrets Manager in the Secrets Manager user guide.

Returns:

  • (String)


1799
1800
1801
1802
1803
1804
1805
1806
1807
# File 'gems/aws-sdk-kendra/lib/aws-sdk-kendra/types.rb', line 1799

class ConnectionConfiguration < Struct.new(
  :database_host,
  :database_port,
  :database_name,
  :table_name,
  :secret_arn)
  SENSITIVE = []
  include Aws::Structure
end

#table_nameString

The name of the table that contains the document data.

Returns:

  • (String)


1799
1800
1801
1802
1803
1804
1805
1806
1807
# File 'gems/aws-sdk-kendra/lib/aws-sdk-kendra/types.rb', line 1799

class ConnectionConfiguration < Struct.new(
  :database_host,
  :database_port,
  :database_name,
  :table_name,
  :secret_arn)
  SENSITIVE = []
  include Aws::Structure
end