Class: Aws::QuickSight::Types::MySqlParameters
- Inherits:
-
Struct
- Object
- Struct
- Aws::QuickSight::Types::MySqlParameters
- Defined in:
- gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb
Overview
Note:
When making an API call, you may pass MySqlParameters data as a hash:
{
host: "Host", # required
port: 1, # required
database: "Database", # required
}
The parameters for MySQL.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#database ⇒ String
Database.
-
#host ⇒ String
Host.
-
#port ⇒ Integer
Port.
Instance Attribute Details
#database ⇒ String
Database.
9723 9724 9725 9726 9727 9728 9729 |
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 9723 class MySqlParameters < Struct.new( :host, :port, :database) SENSITIVE = [] include Aws::Structure end |
#host ⇒ String
Host.
9723 9724 9725 9726 9727 9728 9729 |
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 9723 class MySqlParameters < Struct.new( :host, :port, :database) SENSITIVE = [] include Aws::Structure end |
#port ⇒ Integer
Port.
9723 9724 9725 9726 9727 9728 9729 |
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 9723 class MySqlParameters < Struct.new( :host, :port, :database) SENSITIVE = [] include Aws::Structure end |