Class: Aws::ElastiCache::Types::CacheClusterMessage
- Inherits:
-
Struct
- Object
- Struct
- Aws::ElastiCache::Types::CacheClusterMessage
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-elasticache/types.rb
Overview
Represents the output of a ‘DescribeCacheClusters` operation.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#cache_clusters ⇒ Array<Types::CacheCluster>
A list of clusters.
-
#marker ⇒ String
Provides an identifier to allow retrieval of paginated results.
Instance Attribute Details
#cache_clusters ⇒ Array<Types::CacheCluster>
A list of clusters. Each item in the list contains detailed information about one cluster.
631 632 633 634 635 636 |
# File 'lib/aws-sdk-elasticache/types.rb', line 631 class CacheClusterMessage < Struct.new( :marker, :cache_clusters) SENSITIVE = [] include Aws::Structure end |
#marker ⇒ String
Provides an identifier to allow retrieval of paginated results.
631 632 633 634 635 636 |
# File 'lib/aws-sdk-elasticache/types.rb', line 631 class CacheClusterMessage < Struct.new( :marker, :cache_clusters) SENSITIVE = [] include Aws::Structure end |