Class: Aws::MemoryDB::Types::UpdateClusterRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::MemoryDB::Types::UpdateClusterRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-memorydb/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#acl_name ⇒ String
The Access Control List that is associated with the cluster.
-
#cluster_name ⇒ String
The name of the cluster to update.
-
#description ⇒ String
The description of the cluster to update.
-
#engine ⇒ String
The name of the engine to be used for the nodes in this cluster.
-
#engine_version ⇒ String
The upgraded version of the engine to be run on the nodes.
-
#maintenance_window ⇒ String
Specifies the weekly time range during which maintenance on the cluster is performed.
-
#node_type ⇒ String
A valid node type that you want to scale this cluster up or down to.
-
#parameter_group_name ⇒ String
The name of the parameter group to update.
-
#replica_configuration ⇒ Types::ReplicaConfigurationRequest
The number of replicas that will reside in each shard.
-
#security_group_ids ⇒ Array<String>
The SecurityGroupIds to update.
-
#shard_configuration ⇒ Types::ShardConfigurationRequest
The number of shards in the cluster.
-
#snapshot_retention_limit ⇒ Integer
The number of days for which MemoryDB retains automatic cluster snapshots before deleting them.
-
#snapshot_window ⇒ String
The daily time range (in UTC) during which MemoryDB begins taking a daily snapshot of your cluster.
-
#sns_topic_arn ⇒ String
The SNS topic ARN to update.
-
#sns_topic_status ⇒ String
The status of the Amazon SNS notification topic.
Instance Attribute Details
#acl_name ⇒ String
The Access Control List that is associated with the cluster
3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 |
# File 'lib/aws-sdk-memorydb/types.rb', line 3180 class UpdateClusterRequest < Struct.new( :cluster_name, :description, :security_group_ids, :maintenance_window, :sns_topic_arn, :sns_topic_status, :parameter_group_name, :snapshot_window, :snapshot_retention_limit, :node_type, :engine, :engine_version, :replica_configuration, :shard_configuration, :acl_name) SENSITIVE = [] include Aws::Structure end |
#cluster_name ⇒ String
The name of the cluster to update
3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 |
# File 'lib/aws-sdk-memorydb/types.rb', line 3180 class UpdateClusterRequest < Struct.new( :cluster_name, :description, :security_group_ids, :maintenance_window, :sns_topic_arn, :sns_topic_status, :parameter_group_name, :snapshot_window, :snapshot_retention_limit, :node_type, :engine, :engine_version, :replica_configuration, :shard_configuration, :acl_name) SENSITIVE = [] include Aws::Structure end |
#description ⇒ String
The description of the cluster to update
3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 |
# File 'lib/aws-sdk-memorydb/types.rb', line 3180 class UpdateClusterRequest < Struct.new( :cluster_name, :description, :security_group_ids, :maintenance_window, :sns_topic_arn, :sns_topic_status, :parameter_group_name, :snapshot_window, :snapshot_retention_limit, :node_type, :engine, :engine_version, :replica_configuration, :shard_configuration, :acl_name) SENSITIVE = [] include Aws::Structure end |
#engine ⇒ String
The name of the engine to be used for the nodes in this cluster. The value must be set to either Redis or Valkey.
3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 |
# File 'lib/aws-sdk-memorydb/types.rb', line 3180 class UpdateClusterRequest < Struct.new( :cluster_name, :description, :security_group_ids, :maintenance_window, :sns_topic_arn, :sns_topic_status, :parameter_group_name, :snapshot_window, :snapshot_retention_limit, :node_type, :engine, :engine_version, :replica_configuration, :shard_configuration, :acl_name) SENSITIVE = [] include Aws::Structure end |
#engine_version ⇒ String
The upgraded version of the engine to be run on the nodes. You can upgrade to a newer engine version, but you cannot downgrade to an earlier engine version. If you want to use an earlier engine version, you must delete the existing cluster and create it anew with the earlier engine version.
3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 |
# File 'lib/aws-sdk-memorydb/types.rb', line 3180 class UpdateClusterRequest < Struct.new( :cluster_name, :description, :security_group_ids, :maintenance_window, :sns_topic_arn, :sns_topic_status, :parameter_group_name, :snapshot_window, :snapshot_retention_limit, :node_type, :engine, :engine_version, :replica_configuration, :shard_configuration, :acl_name) SENSITIVE = [] include Aws::Structure end |
#maintenance_window ⇒ String
Specifies the weekly time range during which maintenance on the cluster is performed. It is specified as a range in the format ddd:hh24:mi-ddd:hh24:mi (24H Clock UTC). The minimum maintenance window is a 60 minute period.
Valid values for ‘ddd` are:
-
‘sun`
-
‘mon`
-
‘tue`
-
‘wed`
-
‘thu`
-
‘fri`
-
‘sat`
Example: ‘sun:23:00-mon:01:30`
3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 |
# File 'lib/aws-sdk-memorydb/types.rb', line 3180 class UpdateClusterRequest < Struct.new( :cluster_name, :description, :security_group_ids, :maintenance_window, :sns_topic_arn, :sns_topic_status, :parameter_group_name, :snapshot_window, :snapshot_retention_limit, :node_type, :engine, :engine_version, :replica_configuration, :shard_configuration, :acl_name) SENSITIVE = [] include Aws::Structure end |
#node_type ⇒ String
A valid node type that you want to scale this cluster up or down to.
3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 |
# File 'lib/aws-sdk-memorydb/types.rb', line 3180 class UpdateClusterRequest < Struct.new( :cluster_name, :description, :security_group_ids, :maintenance_window, :sns_topic_arn, :sns_topic_status, :parameter_group_name, :snapshot_window, :snapshot_retention_limit, :node_type, :engine, :engine_version, :replica_configuration, :shard_configuration, :acl_name) SENSITIVE = [] include Aws::Structure end |
#parameter_group_name ⇒ String
The name of the parameter group to update
3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 |
# File 'lib/aws-sdk-memorydb/types.rb', line 3180 class UpdateClusterRequest < Struct.new( :cluster_name, :description, :security_group_ids, :maintenance_window, :sns_topic_arn, :sns_topic_status, :parameter_group_name, :snapshot_window, :snapshot_retention_limit, :node_type, :engine, :engine_version, :replica_configuration, :shard_configuration, :acl_name) SENSITIVE = [] include Aws::Structure end |
#replica_configuration ⇒ Types::ReplicaConfigurationRequest
The number of replicas that will reside in each shard
3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 |
# File 'lib/aws-sdk-memorydb/types.rb', line 3180 class UpdateClusterRequest < Struct.new( :cluster_name, :description, :security_group_ids, :maintenance_window, :sns_topic_arn, :sns_topic_status, :parameter_group_name, :snapshot_window, :snapshot_retention_limit, :node_type, :engine, :engine_version, :replica_configuration, :shard_configuration, :acl_name) SENSITIVE = [] include Aws::Structure end |
#security_group_ids ⇒ Array<String>
The SecurityGroupIds to update
3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 |
# File 'lib/aws-sdk-memorydb/types.rb', line 3180 class UpdateClusterRequest < Struct.new( :cluster_name, :description, :security_group_ids, :maintenance_window, :sns_topic_arn, :sns_topic_status, :parameter_group_name, :snapshot_window, :snapshot_retention_limit, :node_type, :engine, :engine_version, :replica_configuration, :shard_configuration, :acl_name) SENSITIVE = [] include Aws::Structure end |
#shard_configuration ⇒ Types::ShardConfigurationRequest
The number of shards in the cluster
3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 |
# File 'lib/aws-sdk-memorydb/types.rb', line 3180 class UpdateClusterRequest < Struct.new( :cluster_name, :description, :security_group_ids, :maintenance_window, :sns_topic_arn, :sns_topic_status, :parameter_group_name, :snapshot_window, :snapshot_retention_limit, :node_type, :engine, :engine_version, :replica_configuration, :shard_configuration, :acl_name) SENSITIVE = [] include Aws::Structure end |
#snapshot_retention_limit ⇒ Integer
The number of days for which MemoryDB retains automatic cluster snapshots before deleting them. For example, if you set SnapshotRetentionLimit to 5, a snapshot that was taken today is retained for 5 days before being deleted.
3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 |
# File 'lib/aws-sdk-memorydb/types.rb', line 3180 class UpdateClusterRequest < Struct.new( :cluster_name, :description, :security_group_ids, :maintenance_window, :sns_topic_arn, :sns_topic_status, :parameter_group_name, :snapshot_window, :snapshot_retention_limit, :node_type, :engine, :engine_version, :replica_configuration, :shard_configuration, :acl_name) SENSITIVE = [] include Aws::Structure end |
#snapshot_window ⇒ String
The daily time range (in UTC) during which MemoryDB begins taking a daily snapshot of your cluster.
3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 |
# File 'lib/aws-sdk-memorydb/types.rb', line 3180 class UpdateClusterRequest < Struct.new( :cluster_name, :description, :security_group_ids, :maintenance_window, :sns_topic_arn, :sns_topic_status, :parameter_group_name, :snapshot_window, :snapshot_retention_limit, :node_type, :engine, :engine_version, :replica_configuration, :shard_configuration, :acl_name) SENSITIVE = [] include Aws::Structure end |
#sns_topic_arn ⇒ String
The SNS topic ARN to update
3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 |
# File 'lib/aws-sdk-memorydb/types.rb', line 3180 class UpdateClusterRequest < Struct.new( :cluster_name, :description, :security_group_ids, :maintenance_window, :sns_topic_arn, :sns_topic_status, :parameter_group_name, :snapshot_window, :snapshot_retention_limit, :node_type, :engine, :engine_version, :replica_configuration, :shard_configuration, :acl_name) SENSITIVE = [] include Aws::Structure end |
#sns_topic_status ⇒ String
The status of the Amazon SNS notification topic. Notifications are sent only if the status is active.
3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 |
# File 'lib/aws-sdk-memorydb/types.rb', line 3180 class UpdateClusterRequest < Struct.new( :cluster_name, :description, :security_group_ids, :maintenance_window, :sns_topic_arn, :sns_topic_status, :parameter_group_name, :snapshot_window, :snapshot_retention_limit, :node_type, :engine, :engine_version, :replica_configuration, :shard_configuration, :acl_name) SENSITIVE = [] include Aws::Structure end |