Method: Aws::RDS::Types::CreateDBInstanceReadReplicaMessage#db_instance_class

Defined in:
lib/aws-sdk-rds/types.rb

#db_instance_classString

The compute and memory capacity of the read replica, for example db.m4.large. Not all DB instance classes are available in all Amazon Web Services Regions, or for all database engines. For the full list of DB instance classes, and availability for your engine, see [DB Instance Class] in the *Amazon RDS User Guide*.

Default: Inherits the value from the source DB instance.

[1]: docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.DBInstanceClass.html

Returns:

  • (String)


5423
5424
5425
5426
5427
5428
5429
5430
5431
5432
5433
5434
5435
5436
5437
5438
5439
5440
5441
5442
5443
5444
5445
5446
5447
5448
5449
5450
5451
5452
5453
5454
5455
5456
5457
5458
5459
5460
5461
5462
5463
5464
5465
5466
5467
5468
5469
5470
5471
5472
# File 'lib/aws-sdk-rds/types.rb', line 5423

class CreateDBInstanceReadReplicaMessage < Struct.new(
  :db_instance_identifier,
  :source_db_instance_identifier,
  :db_instance_class,
  :availability_zone,
  :port,
  :multi_az,
  :auto_minor_version_upgrade,
  :iops,
  :option_group_name,
  :db_parameter_group_name,
  :publicly_accessible,
  :tags,
  :db_subnet_group_name,
  :vpc_security_group_ids,
  :storage_type,
  :copy_tags_to_snapshot,
  :monitoring_interval,
  :monitoring_role_arn,
  :kms_key_id,
  :pre_signed_url,
  :enable_iam_database_authentication,
  :enable_performance_insights,
  :performance_insights_kms_key_id,
  :performance_insights_retention_period,
  :enable_cloudwatch_logs_exports,
  :processor_features,
  :use_default_processor_features,
  :deletion_protection,
  :domain,
  :domain_iam_role_name,
  :domain_fqdn,
  :domain_ou,
  :domain_auth_secret_arn,
  :domain_dns_ips,
  :replica_mode,
  :max_allocated_storage,
  :custom_iam_instance_profile,
  :network_type,
  :storage_throughput,
  :enable_customer_owned_ip,
  :allocated_storage,
  :source_db_cluster_identifier,
  :dedicated_log_volume,
  :upgrade_storage_config,
  :ca_certificate_identifier,
  :source_region)
  SENSITIVE = []
  include Aws::Structure
end