Method: Aws::RDS::Types::DBCluster#reader_endpoint

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

#reader_endpointString

The reader endpoint for the DB cluster. The reader endpoint for a DB cluster load-balances connections across the Aurora Replicas that are available in a DB cluster. As clients request new connections to the reader endpoint, Aurora distributes the connection requests among the Aurora Replicas in the DB cluster. This functionality can help balance your read workload across multiple Aurora Replicas in your DB cluster.

If a failover occurs, and the Aurora Replica that you are connected to is promoted to be the primary instance, your connection is dropped. To continue sending your read workload to other Aurora Replicas in the cluster, you can then reconnect to the reader endpoint.

Returns:

  • (String)


7940
7941
7942
7943
7944
7945
7946
7947
7948
7949
7950
7951
7952
7953
7954
7955
7956
7957
7958
7959
7960
7961
7962
7963
7964
7965
7966
7967
7968
7969
7970
7971
7972
7973
7974
7975
7976
7977
7978
7979
7980
7981
7982
7983
7984
7985
7986
7987
7988
7989
7990
7991
7992
7993
7994
7995
7996
7997
7998
7999
8000
8001
8002
8003
8004
8005
8006
8007
8008
8009
8010
8011
8012
8013
8014
8015
8016
8017
8018
8019
8020
8021
8022
8023
8024
8025
8026
8027
8028
# File 'lib/aws-sdk-rds/types.rb', line 7940

class DBCluster < Struct.new(
  :allocated_storage,
  :availability_zones,
  :backup_retention_period,
  :character_set_name,
  :database_name,
  :db_cluster_identifier,
  :db_cluster_parameter_group,
  :db_subnet_group,
  :status,
  :percent_progress,
  :earliest_restorable_time,
  :endpoint,
  :reader_endpoint,
  :custom_endpoints,
  :multi_az,
  :engine,
  :engine_version,
  :latest_restorable_time,
  :port,
  :master_username,
  :db_cluster_option_group_memberships,
  :preferred_backup_window,
  :preferred_maintenance_window,
  :upgrade_rollout_order,
  :replication_source_identifier,
  :read_replica_identifiers,
  :status_infos,
  :db_cluster_members,
  :vpc_security_groups,
  :hosted_zone_id,
  :storage_encrypted,
  :kms_key_id,
  :db_cluster_resource_id,
  :db_cluster_arn,
  :associated_roles,
  :iam_database_authentication_enabled,
  :clone_group_id,
  :cluster_create_time,
  :earliest_backtrack_time,
  :backtrack_window,
  :backtrack_consumed_change_records,
  :enabled_cloudwatch_logs_exports,
  :capacity,
  :pending_modified_values,
  :engine_mode,
  :scaling_configuration_info,
  :rds_custom_cluster_configuration,
  :db_cluster_instance_class,
  :storage_type,
  :iops,
  :storage_throughput,
  :io_optimized_next_allowed_modification_time,
  :publicly_accessible,
  :auto_minor_version_upgrade,
  :deletion_protection,
  :http_endpoint_enabled,
  :activity_stream_mode,
  :activity_stream_status,
  :activity_stream_kms_key_id,
  :activity_stream_kinesis_stream_name,
  :copy_tags_to_snapshot,
  :cross_account_clone,
  :domain_memberships,
  :tag_list,
  :global_cluster_identifier,
  :global_write_forwarding_status,
  :global_write_forwarding_requested,
  :network_type,
  :automatic_restart_time,
  :serverless_v2_scaling_configuration,
  :serverless_v2_platform_version,
  :monitoring_interval,
  :monitoring_role_arn,
  :database_insights_mode,
  :performance_insights_enabled,
  :performance_insights_kms_key_id,
  :performance_insights_retention_period,
  :db_system_id,
  :master_user_secret,
  :local_write_forwarding_status,
  :aws_backup_recovery_point_arn,
  :limitless_database,
  :cluster_scalability_type,
  :certificate_details,
  :engine_lifecycle_support)
  SENSITIVE = []
  include Aws::Structure
end