Class: Aws::SecurityHub::Types::AwsRedshiftClusterEndpoint
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecurityHub::Types::AwsRedshiftClusterEndpoint
- Defined in:
- gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb
Overview
Note:
When making an API call, you may pass AwsRedshiftClusterEndpoint data as a hash:
{
address: "NonEmptyString",
port: 1,
}
The connection endpoint for an Amazon Redshift cluster.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#address ⇒ String
The DNS address of the cluster.
-
#port ⇒ Integer
The port that the database engine listens on.
Instance Attribute Details
#address ⇒ String
The DNS address of the cluster.
17570 17571 17572 17573 17574 17575 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 17570 class AwsRedshiftClusterEndpoint < Struct.new( :address, :port) SENSITIVE = [] include Aws::Structure end |
#port ⇒ Integer
The port that the database engine listens on.
17570 17571 17572 17573 17574 17575 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 17570 class AwsRedshiftClusterEndpoint < Struct.new( :address, :port) SENSITIVE = [] include Aws::Structure end |