Class: Aws::RDS::Types::CreateTenantDatabaseMessage
- Inherits:
-
Struct
- Object
- Struct
- Aws::RDS::Types::CreateTenantDatabaseMessage
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-rds/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[:master_user_password]
Instance Attribute Summary collapse
-
#character_set_name ⇒ String
The character set for your tenant database.
-
#db_instance_identifier ⇒ String
The user-supplied DB instance identifier.
-
#master_user_password ⇒ String
The password for the master user in your tenant database.
-
#master_username ⇒ String
The name for the master user account in your tenant database.
-
#nchar_character_set_name ⇒ String
The ‘NCHAR` value for the tenant database.
-
#tags ⇒ Array<Types::Tag>
A list of tags.
-
#tenant_db_name ⇒ String
The user-supplied name of the tenant database that you want to create in your DB instance.
Instance Attribute Details
#character_set_name ⇒ String
The character set for your tenant database. If you don’t specify a value, the character set name defaults to ‘AL32UTF8`.
6707 6708 6709 6710 6711 6712 6713 6714 6715 6716 6717 |
# File 'lib/aws-sdk-rds/types.rb', line 6707 class CreateTenantDatabaseMessage < Struct.new( :db_instance_identifier, :tenant_db_name, :master_username, :master_user_password, :character_set_name, :nchar_character_set_name, :tags) SENSITIVE = [:master_user_password] include Aws::Structure end |
#db_instance_identifier ⇒ String
The user-supplied DB instance identifier. RDS creates your tenant database in this DB instance. This parameter isn’t case-sensitive.
6707 6708 6709 6710 6711 6712 6713 6714 6715 6716 6717 |
# File 'lib/aws-sdk-rds/types.rb', line 6707 class CreateTenantDatabaseMessage < Struct.new( :db_instance_identifier, :tenant_db_name, :master_username, :master_user_password, :character_set_name, :nchar_character_set_name, :tags) SENSITIVE = [:master_user_password] include Aws::Structure end |
#master_user_password ⇒ String
The password for the master user in your tenant database.
Constraints:
-
Must be 8 to 30 characters.
-
Can include any printable ASCII character except forward slash (‘/`), double quote (`“`), at symbol (`@`), ampersand (`&`), or single quote (`’‘).
6707 6708 6709 6710 6711 6712 6713 6714 6715 6716 6717 |
# File 'lib/aws-sdk-rds/types.rb', line 6707 class CreateTenantDatabaseMessage < Struct.new( :db_instance_identifier, :tenant_db_name, :master_username, :master_user_password, :character_set_name, :nchar_character_set_name, :tags) SENSITIVE = [:master_user_password] include Aws::Structure end |
#master_username ⇒ String
The name for the master user account in your tenant database. RDS creates this user account in the tenant database and grants privileges to the master user. This parameter is case-sensitive.
Constraints:
-
Must be 1 to 16 letters, numbers, or underscores.
-
First character must be a letter.
-
Can’t be a reserved word for the chosen database engine.
6707 6708 6709 6710 6711 6712 6713 6714 6715 6716 6717 |
# File 'lib/aws-sdk-rds/types.rb', line 6707 class CreateTenantDatabaseMessage < Struct.new( :db_instance_identifier, :tenant_db_name, :master_username, :master_user_password, :character_set_name, :nchar_character_set_name, :tags) SENSITIVE = [:master_user_password] include Aws::Structure end |
#nchar_character_set_name ⇒ String
The ‘NCHAR` value for the tenant database.
6707 6708 6709 6710 6711 6712 6713 6714 6715 6716 6717 |
# File 'lib/aws-sdk-rds/types.rb', line 6707 class CreateTenantDatabaseMessage < Struct.new( :db_instance_identifier, :tenant_db_name, :master_username, :master_user_password, :character_set_name, :nchar_character_set_name, :tags) SENSITIVE = [:master_user_password] include Aws::Structure end |
#tags ⇒ Array<Types::Tag>
A list of tags.
For more information, see [Tagging Amazon RDS resources] in the *Amazon RDS User Guide* or [Tagging Amazon Aurora and Amazon RDS resources] in the *Amazon Aurora User Guide*.
[1]: docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html [2]: docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html
6707 6708 6709 6710 6711 6712 6713 6714 6715 6716 6717 |
# File 'lib/aws-sdk-rds/types.rb', line 6707 class CreateTenantDatabaseMessage < Struct.new( :db_instance_identifier, :tenant_db_name, :master_username, :master_user_password, :character_set_name, :nchar_character_set_name, :tags) SENSITIVE = [:master_user_password] include Aws::Structure end |
#tenant_db_name ⇒ String
The user-supplied name of the tenant database that you want to create in your DB instance. This parameter has the same constraints as ‘DBName` in `CreateDBInstance`.
6707 6708 6709 6710 6711 6712 6713 6714 6715 6716 6717 |
# File 'lib/aws-sdk-rds/types.rb', line 6707 class CreateTenantDatabaseMessage < Struct.new( :db_instance_identifier, :tenant_db_name, :master_username, :master_user_password, :character_set_name, :nchar_character_set_name, :tags) SENSITIVE = [:master_user_password] include Aws::Structure end |