Method: Aws::ElastiCache::Types::CreateReplicationGroupMessage#engine_version
- Defined in:
- lib/aws-sdk-elasticache/types.rb
#engine_version ⇒ String
The version number of the cache engine to be used for the clusters in this replication group. To view the supported cache engine versions, use the DescribeCacheEngineVersions operation.
Important: You can upgrade to a newer engine version (see [Selecting a Cache Engine and Version]) in the *ElastiCache User Guide*, but you cannot downgrade to an earlier engine version. If you want to use an earlier engine version, you must delete the existing cluster or replication group and create it anew with the earlier engine version.
[1]: docs.aws.amazon.com/AmazonElastiCache/latest/dg/SelectEngine.html#VersionManagement
2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 |
# File 'lib/aws-sdk-elasticache/types.rb', line 2824 class CreateReplicationGroupMessage < Struct.new( :replication_group_id, :replication_group_description, :global_replication_group_id, :primary_cluster_id, :automatic_failover_enabled, :multi_az_enabled, :num_cache_clusters, :preferred_cache_cluster_a_zs, :num_node_groups, :replicas_per_node_group, :node_group_configuration, :cache_node_type, :engine, :engine_version, :cache_parameter_group_name, :cache_subnet_group_name, :cache_security_group_names, :security_group_ids, :tags, :snapshot_arns, :snapshot_name, :preferred_maintenance_window, :port, :notification_topic_arn, :auto_minor_version_upgrade, :snapshot_retention_limit, :snapshot_window, :auth_token, :transit_encryption_enabled, :at_rest_encryption_enabled, :kms_key_id, :user_group_ids, :log_delivery_configurations, :data_tiering_enabled, :network_type, :ip_discovery, :transit_encryption_mode, :cluster_mode, :serverless_cache_snapshot_name) SENSITIVE = [] include Aws::Structure end |