Class: Aws::MemoryDB::Types::Cluster
- Inherits:
-
Struct
- Object
- Struct
- Aws::MemoryDB::Types::Cluster
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-memorydb/types.rb
Overview
Contains all of the attributes of a specific cluster.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#acl_name ⇒ String
The name of the Access Control List associated with this cluster.
-
#arn ⇒ String
The Amazon Resource Name (ARN) of the cluster.
-
#auto_minor_version_upgrade ⇒ Boolean
When set to true, the cluster will automatically receive minor engine version upgrades after launch.
-
#availability_mode ⇒ String
Indicates if the cluster has a Multi-AZ configuration (multiaz) or not (singleaz).
-
#cluster_endpoint ⇒ Types::Endpoint
The cluster’s configuration endpoint.
-
#data_tiering ⇒ String
Enables data tiering.
-
#description ⇒ String
A description of the cluster.
-
#engine ⇒ String
The Redis OSS or Valkey engine used by the cluster.
-
#engine_patch_version ⇒ String
The engine patch version used by the cluster.
-
#engine_version ⇒ String
The Redis engine version used by the cluster.
-
#kms_key_id ⇒ String
The ID of the KMS key used to encrypt the cluster.
-
#maintenance_window ⇒ String
Specifies the weekly time range during which maintenance on the cluster is performed.
-
#name ⇒ String
The user-supplied name of the cluster.
-
#node_type ⇒ String
The cluster’s node type.
-
#number_of_shards ⇒ Integer
The number of shards in the cluster.
-
#parameter_group_name ⇒ String
The name of the parameter group used by the cluster.
-
#parameter_group_status ⇒ String
The status of the parameter group used by the cluster, for example ‘active’ or ‘applying’.
-
#pending_updates ⇒ Types::ClusterPendingUpdates
A group of settings that are currently being applied.
-
#security_groups ⇒ Array<Types::SecurityGroupMembership>
A list of security groups used by the cluster.
-
#shards ⇒ Array<Types::Shard>
A list of shards that are members of the cluster.
-
#snapshot_retention_limit ⇒ Integer
The number of days for which MemoryDB retains automatic snapshots before deleting them.
-
#snapshot_window ⇒ String
The daily time range (in UTC) during which MemoryDB begins taking a daily snapshot of your shard.
-
#sns_topic_arn ⇒ String
The Amazon Resource Name (ARN) of the SNS notification topic.
-
#sns_topic_status ⇒ String
The SNS topic must be in Active status to receive notifications.
-
#status ⇒ String
The status of the cluster.
-
#subnet_group_name ⇒ String
The name of the subnet group used by the cluster.
-
#tls_enabled ⇒ Boolean
A flag to indicate if In-transit encryption is enabled.
Instance Attribute Details
#acl_name ⇒ String
The name of the Access Control List associated with this cluster.
332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 |
# File 'lib/aws-sdk-memorydb/types.rb', line 332 class Cluster < Struct.new( :name, :description, :status, :pending_updates, :number_of_shards, :shards, :availability_mode, :cluster_endpoint, :node_type, :engine, :engine_version, :engine_patch_version, :parameter_group_name, :parameter_group_status, :security_groups, :subnet_group_name, :tls_enabled, :kms_key_id, :arn, :sns_topic_arn, :sns_topic_status, :snapshot_retention_limit, :maintenance_window, :snapshot_window, :acl_name, :auto_minor_version_upgrade, :data_tiering) SENSITIVE = [] include Aws::Structure end |
#arn ⇒ String
The Amazon Resource Name (ARN) of the cluster.
332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 |
# File 'lib/aws-sdk-memorydb/types.rb', line 332 class Cluster < Struct.new( :name, :description, :status, :pending_updates, :number_of_shards, :shards, :availability_mode, :cluster_endpoint, :node_type, :engine, :engine_version, :engine_patch_version, :parameter_group_name, :parameter_group_status, :security_groups, :subnet_group_name, :tls_enabled, :kms_key_id, :arn, :sns_topic_arn, :sns_topic_status, :snapshot_retention_limit, :maintenance_window, :snapshot_window, :acl_name, :auto_minor_version_upgrade, :data_tiering) SENSITIVE = [] include Aws::Structure end |
#auto_minor_version_upgrade ⇒ Boolean
When set to true, the cluster will automatically receive minor engine version upgrades after launch.
332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 |
# File 'lib/aws-sdk-memorydb/types.rb', line 332 class Cluster < Struct.new( :name, :description, :status, :pending_updates, :number_of_shards, :shards, :availability_mode, :cluster_endpoint, :node_type, :engine, :engine_version, :engine_patch_version, :parameter_group_name, :parameter_group_status, :security_groups, :subnet_group_name, :tls_enabled, :kms_key_id, :arn, :sns_topic_arn, :sns_topic_status, :snapshot_retention_limit, :maintenance_window, :snapshot_window, :acl_name, :auto_minor_version_upgrade, :data_tiering) SENSITIVE = [] include Aws::Structure end |
#availability_mode ⇒ String
Indicates if the cluster has a Multi-AZ configuration (multiaz) or not (singleaz).
332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 |
# File 'lib/aws-sdk-memorydb/types.rb', line 332 class Cluster < Struct.new( :name, :description, :status, :pending_updates, :number_of_shards, :shards, :availability_mode, :cluster_endpoint, :node_type, :engine, :engine_version, :engine_patch_version, :parameter_group_name, :parameter_group_status, :security_groups, :subnet_group_name, :tls_enabled, :kms_key_id, :arn, :sns_topic_arn, :sns_topic_status, :snapshot_retention_limit, :maintenance_window, :snapshot_window, :acl_name, :auto_minor_version_upgrade, :data_tiering) SENSITIVE = [] include Aws::Structure end |
#cluster_endpoint ⇒ Types::Endpoint
The cluster’s configuration endpoint
332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 |
# File 'lib/aws-sdk-memorydb/types.rb', line 332 class Cluster < Struct.new( :name, :description, :status, :pending_updates, :number_of_shards, :shards, :availability_mode, :cluster_endpoint, :node_type, :engine, :engine_version, :engine_patch_version, :parameter_group_name, :parameter_group_status, :security_groups, :subnet_group_name, :tls_enabled, :kms_key_id, :arn, :sns_topic_arn, :sns_topic_status, :snapshot_retention_limit, :maintenance_window, :snapshot_window, :acl_name, :auto_minor_version_upgrade, :data_tiering) SENSITIVE = [] include Aws::Structure end |
#data_tiering ⇒ String
Enables data tiering. Data tiering is only supported for clusters using the r6gd node type. This parameter must be set when using r6gd nodes. For more information, see [Data tiering].
[1]: docs.aws.amazon.com/memorydb/latest/devguide/data-tiering.html
332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 |
# File 'lib/aws-sdk-memorydb/types.rb', line 332 class Cluster < Struct.new( :name, :description, :status, :pending_updates, :number_of_shards, :shards, :availability_mode, :cluster_endpoint, :node_type, :engine, :engine_version, :engine_patch_version, :parameter_group_name, :parameter_group_status, :security_groups, :subnet_group_name, :tls_enabled, :kms_key_id, :arn, :sns_topic_arn, :sns_topic_status, :snapshot_retention_limit, :maintenance_window, :snapshot_window, :acl_name, :auto_minor_version_upgrade, :data_tiering) SENSITIVE = [] include Aws::Structure end |
#description ⇒ String
A description of the cluster
332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 |
# File 'lib/aws-sdk-memorydb/types.rb', line 332 class Cluster < Struct.new( :name, :description, :status, :pending_updates, :number_of_shards, :shards, :availability_mode, :cluster_endpoint, :node_type, :engine, :engine_version, :engine_patch_version, :parameter_group_name, :parameter_group_status, :security_groups, :subnet_group_name, :tls_enabled, :kms_key_id, :arn, :sns_topic_arn, :sns_topic_status, :snapshot_retention_limit, :maintenance_window, :snapshot_window, :acl_name, :auto_minor_version_upgrade, :data_tiering) SENSITIVE = [] include Aws::Structure end |
#engine ⇒ String
The Redis OSS or Valkey engine used by the cluster.
332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 |
# File 'lib/aws-sdk-memorydb/types.rb', line 332 class Cluster < Struct.new( :name, :description, :status, :pending_updates, :number_of_shards, :shards, :availability_mode, :cluster_endpoint, :node_type, :engine, :engine_version, :engine_patch_version, :parameter_group_name, :parameter_group_status, :security_groups, :subnet_group_name, :tls_enabled, :kms_key_id, :arn, :sns_topic_arn, :sns_topic_status, :snapshot_retention_limit, :maintenance_window, :snapshot_window, :acl_name, :auto_minor_version_upgrade, :data_tiering) SENSITIVE = [] include Aws::Structure end |
#engine_patch_version ⇒ String
The engine patch version used by the cluster
332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 |
# File 'lib/aws-sdk-memorydb/types.rb', line 332 class Cluster < Struct.new( :name, :description, :status, :pending_updates, :number_of_shards, :shards, :availability_mode, :cluster_endpoint, :node_type, :engine, :engine_version, :engine_patch_version, :parameter_group_name, :parameter_group_status, :security_groups, :subnet_group_name, :tls_enabled, :kms_key_id, :arn, :sns_topic_arn, :sns_topic_status, :snapshot_retention_limit, :maintenance_window, :snapshot_window, :acl_name, :auto_minor_version_upgrade, :data_tiering) SENSITIVE = [] include Aws::Structure end |
#engine_version ⇒ String
The Redis engine version used by the cluster
332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 |
# File 'lib/aws-sdk-memorydb/types.rb', line 332 class Cluster < Struct.new( :name, :description, :status, :pending_updates, :number_of_shards, :shards, :availability_mode, :cluster_endpoint, :node_type, :engine, :engine_version, :engine_patch_version, :parameter_group_name, :parameter_group_status, :security_groups, :subnet_group_name, :tls_enabled, :kms_key_id, :arn, :sns_topic_arn, :sns_topic_status, :snapshot_retention_limit, :maintenance_window, :snapshot_window, :acl_name, :auto_minor_version_upgrade, :data_tiering) SENSITIVE = [] include Aws::Structure end |
#kms_key_id ⇒ String
The ID of the KMS key used to encrypt the cluster
332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 |
# File 'lib/aws-sdk-memorydb/types.rb', line 332 class Cluster < Struct.new( :name, :description, :status, :pending_updates, :number_of_shards, :shards, :availability_mode, :cluster_endpoint, :node_type, :engine, :engine_version, :engine_patch_version, :parameter_group_name, :parameter_group_status, :security_groups, :subnet_group_name, :tls_enabled, :kms_key_id, :arn, :sns_topic_arn, :sns_topic_status, :snapshot_retention_limit, :maintenance_window, :snapshot_window, :acl_name, :auto_minor_version_upgrade, :data_tiering) 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.
332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 |
# File 'lib/aws-sdk-memorydb/types.rb', line 332 class Cluster < Struct.new( :name, :description, :status, :pending_updates, :number_of_shards, :shards, :availability_mode, :cluster_endpoint, :node_type, :engine, :engine_version, :engine_patch_version, :parameter_group_name, :parameter_group_status, :security_groups, :subnet_group_name, :tls_enabled, :kms_key_id, :arn, :sns_topic_arn, :sns_topic_status, :snapshot_retention_limit, :maintenance_window, :snapshot_window, :acl_name, :auto_minor_version_upgrade, :data_tiering) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The user-supplied name of the cluster. This identifier is a unique key that identifies a cluster.
332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 |
# File 'lib/aws-sdk-memorydb/types.rb', line 332 class Cluster < Struct.new( :name, :description, :status, :pending_updates, :number_of_shards, :shards, :availability_mode, :cluster_endpoint, :node_type, :engine, :engine_version, :engine_patch_version, :parameter_group_name, :parameter_group_status, :security_groups, :subnet_group_name, :tls_enabled, :kms_key_id, :arn, :sns_topic_arn, :sns_topic_status, :snapshot_retention_limit, :maintenance_window, :snapshot_window, :acl_name, :auto_minor_version_upgrade, :data_tiering) SENSITIVE = [] include Aws::Structure end |
#node_type ⇒ String
The cluster’s node type
332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 |
# File 'lib/aws-sdk-memorydb/types.rb', line 332 class Cluster < Struct.new( :name, :description, :status, :pending_updates, :number_of_shards, :shards, :availability_mode, :cluster_endpoint, :node_type, :engine, :engine_version, :engine_patch_version, :parameter_group_name, :parameter_group_status, :security_groups, :subnet_group_name, :tls_enabled, :kms_key_id, :arn, :sns_topic_arn, :sns_topic_status, :snapshot_retention_limit, :maintenance_window, :snapshot_window, :acl_name, :auto_minor_version_upgrade, :data_tiering) SENSITIVE = [] include Aws::Structure end |
#number_of_shards ⇒ Integer
The number of shards in the cluster
332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 |
# File 'lib/aws-sdk-memorydb/types.rb', line 332 class Cluster < Struct.new( :name, :description, :status, :pending_updates, :number_of_shards, :shards, :availability_mode, :cluster_endpoint, :node_type, :engine, :engine_version, :engine_patch_version, :parameter_group_name, :parameter_group_status, :security_groups, :subnet_group_name, :tls_enabled, :kms_key_id, :arn, :sns_topic_arn, :sns_topic_status, :snapshot_retention_limit, :maintenance_window, :snapshot_window, :acl_name, :auto_minor_version_upgrade, :data_tiering) SENSITIVE = [] include Aws::Structure end |
#parameter_group_name ⇒ String
The name of the parameter group used by the cluster
332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 |
# File 'lib/aws-sdk-memorydb/types.rb', line 332 class Cluster < Struct.new( :name, :description, :status, :pending_updates, :number_of_shards, :shards, :availability_mode, :cluster_endpoint, :node_type, :engine, :engine_version, :engine_patch_version, :parameter_group_name, :parameter_group_status, :security_groups, :subnet_group_name, :tls_enabled, :kms_key_id, :arn, :sns_topic_arn, :sns_topic_status, :snapshot_retention_limit, :maintenance_window, :snapshot_window, :acl_name, :auto_minor_version_upgrade, :data_tiering) SENSITIVE = [] include Aws::Structure end |
#parameter_group_status ⇒ String
The status of the parameter group used by the cluster, for example ‘active’ or ‘applying’.
332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 |
# File 'lib/aws-sdk-memorydb/types.rb', line 332 class Cluster < Struct.new( :name, :description, :status, :pending_updates, :number_of_shards, :shards, :availability_mode, :cluster_endpoint, :node_type, :engine, :engine_version, :engine_patch_version, :parameter_group_name, :parameter_group_status, :security_groups, :subnet_group_name, :tls_enabled, :kms_key_id, :arn, :sns_topic_arn, :sns_topic_status, :snapshot_retention_limit, :maintenance_window, :snapshot_window, :acl_name, :auto_minor_version_upgrade, :data_tiering) SENSITIVE = [] include Aws::Structure end |
#pending_updates ⇒ Types::ClusterPendingUpdates
A group of settings that are currently being applied.
332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 |
# File 'lib/aws-sdk-memorydb/types.rb', line 332 class Cluster < Struct.new( :name, :description, :status, :pending_updates, :number_of_shards, :shards, :availability_mode, :cluster_endpoint, :node_type, :engine, :engine_version, :engine_patch_version, :parameter_group_name, :parameter_group_status, :security_groups, :subnet_group_name, :tls_enabled, :kms_key_id, :arn, :sns_topic_arn, :sns_topic_status, :snapshot_retention_limit, :maintenance_window, :snapshot_window, :acl_name, :auto_minor_version_upgrade, :data_tiering) SENSITIVE = [] include Aws::Structure end |
#security_groups ⇒ Array<Types::SecurityGroupMembership>
A list of security groups used by the cluster
332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 |
# File 'lib/aws-sdk-memorydb/types.rb', line 332 class Cluster < Struct.new( :name, :description, :status, :pending_updates, :number_of_shards, :shards, :availability_mode, :cluster_endpoint, :node_type, :engine, :engine_version, :engine_patch_version, :parameter_group_name, :parameter_group_status, :security_groups, :subnet_group_name, :tls_enabled, :kms_key_id, :arn, :sns_topic_arn, :sns_topic_status, :snapshot_retention_limit, :maintenance_window, :snapshot_window, :acl_name, :auto_minor_version_upgrade, :data_tiering) SENSITIVE = [] include Aws::Structure end |
#shards ⇒ Array<Types::Shard>
A list of shards that are members of the cluster.
332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 |
# File 'lib/aws-sdk-memorydb/types.rb', line 332 class Cluster < Struct.new( :name, :description, :status, :pending_updates, :number_of_shards, :shards, :availability_mode, :cluster_endpoint, :node_type, :engine, :engine_version, :engine_patch_version, :parameter_group_name, :parameter_group_status, :security_groups, :subnet_group_name, :tls_enabled, :kms_key_id, :arn, :sns_topic_arn, :sns_topic_status, :snapshot_retention_limit, :maintenance_window, :snapshot_window, :acl_name, :auto_minor_version_upgrade, :data_tiering) SENSITIVE = [] include Aws::Structure end |
#snapshot_retention_limit ⇒ Integer
The number of days for which MemoryDB retains automatic 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.
332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 |
# File 'lib/aws-sdk-memorydb/types.rb', line 332 class Cluster < Struct.new( :name, :description, :status, :pending_updates, :number_of_shards, :shards, :availability_mode, :cluster_endpoint, :node_type, :engine, :engine_version, :engine_patch_version, :parameter_group_name, :parameter_group_status, :security_groups, :subnet_group_name, :tls_enabled, :kms_key_id, :arn, :sns_topic_arn, :sns_topic_status, :snapshot_retention_limit, :maintenance_window, :snapshot_window, :acl_name, :auto_minor_version_upgrade, :data_tiering) SENSITIVE = [] include Aws::Structure end |
#snapshot_window ⇒ String
The daily time range (in UTC) during which MemoryDB begins taking a daily snapshot of your shard. Example: 05:00-09:00 If you do not specify this parameter, MemoryDB automatically chooses an appropriate time range.
332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 |
# File 'lib/aws-sdk-memorydb/types.rb', line 332 class Cluster < Struct.new( :name, :description, :status, :pending_updates, :number_of_shards, :shards, :availability_mode, :cluster_endpoint, :node_type, :engine, :engine_version, :engine_patch_version, :parameter_group_name, :parameter_group_status, :security_groups, :subnet_group_name, :tls_enabled, :kms_key_id, :arn, :sns_topic_arn, :sns_topic_status, :snapshot_retention_limit, :maintenance_window, :snapshot_window, :acl_name, :auto_minor_version_upgrade, :data_tiering) SENSITIVE = [] include Aws::Structure end |
#sns_topic_arn ⇒ String
The Amazon Resource Name (ARN) of the SNS notification topic
332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 |
# File 'lib/aws-sdk-memorydb/types.rb', line 332 class Cluster < Struct.new( :name, :description, :status, :pending_updates, :number_of_shards, :shards, :availability_mode, :cluster_endpoint, :node_type, :engine, :engine_version, :engine_patch_version, :parameter_group_name, :parameter_group_status, :security_groups, :subnet_group_name, :tls_enabled, :kms_key_id, :arn, :sns_topic_arn, :sns_topic_status, :snapshot_retention_limit, :maintenance_window, :snapshot_window, :acl_name, :auto_minor_version_upgrade, :data_tiering) SENSITIVE = [] include Aws::Structure end |
#sns_topic_status ⇒ String
The SNS topic must be in Active status to receive notifications
332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 |
# File 'lib/aws-sdk-memorydb/types.rb', line 332 class Cluster < Struct.new( :name, :description, :status, :pending_updates, :number_of_shards, :shards, :availability_mode, :cluster_endpoint, :node_type, :engine, :engine_version, :engine_patch_version, :parameter_group_name, :parameter_group_status, :security_groups, :subnet_group_name, :tls_enabled, :kms_key_id, :arn, :sns_topic_arn, :sns_topic_status, :snapshot_retention_limit, :maintenance_window, :snapshot_window, :acl_name, :auto_minor_version_upgrade, :data_tiering) SENSITIVE = [] include Aws::Structure end |
#status ⇒ String
The status of the cluster. For example, Available, Updating, Creating.
332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 |
# File 'lib/aws-sdk-memorydb/types.rb', line 332 class Cluster < Struct.new( :name, :description, :status, :pending_updates, :number_of_shards, :shards, :availability_mode, :cluster_endpoint, :node_type, :engine, :engine_version, :engine_patch_version, :parameter_group_name, :parameter_group_status, :security_groups, :subnet_group_name, :tls_enabled, :kms_key_id, :arn, :sns_topic_arn, :sns_topic_status, :snapshot_retention_limit, :maintenance_window, :snapshot_window, :acl_name, :auto_minor_version_upgrade, :data_tiering) SENSITIVE = [] include Aws::Structure end |
#subnet_group_name ⇒ String
The name of the subnet group used by the cluster
332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 |
# File 'lib/aws-sdk-memorydb/types.rb', line 332 class Cluster < Struct.new( :name, :description, :status, :pending_updates, :number_of_shards, :shards, :availability_mode, :cluster_endpoint, :node_type, :engine, :engine_version, :engine_patch_version, :parameter_group_name, :parameter_group_status, :security_groups, :subnet_group_name, :tls_enabled, :kms_key_id, :arn, :sns_topic_arn, :sns_topic_status, :snapshot_retention_limit, :maintenance_window, :snapshot_window, :acl_name, :auto_minor_version_upgrade, :data_tiering) SENSITIVE = [] include Aws::Structure end |
#tls_enabled ⇒ Boolean
A flag to indicate if In-transit encryption is enabled
332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 |
# File 'lib/aws-sdk-memorydb/types.rb', line 332 class Cluster < Struct.new( :name, :description, :status, :pending_updates, :number_of_shards, :shards, :availability_mode, :cluster_endpoint, :node_type, :engine, :engine_version, :engine_patch_version, :parameter_group_name, :parameter_group_status, :security_groups, :subnet_group_name, :tls_enabled, :kms_key_id, :arn, :sns_topic_arn, :sns_topic_status, :snapshot_retention_limit, :maintenance_window, :snapshot_window, :acl_name, :auto_minor_version_upgrade, :data_tiering) SENSITIVE = [] include Aws::Structure end |