Class: Aws::Redshift::Types::Endpoint

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

Overview

Describes a connection endpoint.

Instance Attribute Summary collapse

Instance Attribute Details

#addressString

The DNS address of the Cluster.

Returns:

  • (String)


4618
4619
4620
4621
4622
# File 'lib/aws-sdk-redshift/types.rb', line 4618

class Endpoint < Struct.new(
  :address,
  :port)
  include Aws::Structure
end

#portInteger

The port that the database engine is listening on.

Returns:

  • (Integer)


4618
4619
4620
4621
4622
# File 'lib/aws-sdk-redshift/types.rb', line 4618

class Endpoint < Struct.new(
  :address,
  :port)
  include Aws::Structure
end