Class: Aws::QuickSight::Types::RedshiftParameters
- Inherits:
-
Struct
- Object
- Struct
- Aws::QuickSight::Types::RedshiftParameters
- Defined in:
- gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb
Overview
Note:
When making an API call, you may pass RedshiftParameters data as a hash:
{
host: "Host",
port: 1,
database: "Database", # required
cluster_id: "ClusterId",
}
The parameters for Amazon Redshift. The ClusterId
field can be blank
if Host
and Port
are both set. The Host
and Port
fields can be
blank if the ClusterId
field is set.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#cluster_id ⇒ String
Cluster ID.
-
#database ⇒ String
Database.
-
#host ⇒ String
Host.
-
#port ⇒ Integer
Port.
Instance Attribute Details
#cluster_id ⇒ String
Cluster ID. This field can be blank if the Host
and Port
are
provided.
10174 10175 10176 10177 10178 10179 10180 10181 |
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 10174 class RedshiftParameters < Struct.new( :host, :port, :database, :cluster_id) SENSITIVE = [] include Aws::Structure end |
#database ⇒ String
Database.
10174 10175 10176 10177 10178 10179 10180 10181 |
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 10174 class RedshiftParameters < Struct.new( :host, :port, :database, :cluster_id) SENSITIVE = [] include Aws::Structure end |
#host ⇒ String
Host. This field can be blank if ClusterId
is provided.
10174 10175 10176 10177 10178 10179 10180 10181 |
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 10174 class RedshiftParameters < Struct.new( :host, :port, :database, :cluster_id) SENSITIVE = [] include Aws::Structure end |
#port ⇒ Integer
Port. This field can be blank if the ClusterId
is provided.
10174 10175 10176 10177 10178 10179 10180 10181 |
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 10174 class RedshiftParameters < Struct.new( :host, :port, :database, :cluster_id) SENSITIVE = [] include Aws::Structure end |