Class: Aws::Redshift::Types::ClusterDbRevisionsMessage
- Inherits:
-
Struct
- Object
- Struct
- Aws::Redshift::Types::ClusterDbRevisionsMessage
- Defined in:
- gems/aws-sdk-redshift/lib/aws-sdk-redshift/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#cluster_db_revisions ⇒ Array<Types::ClusterDbRevision>
A list of revisions.
-
#marker ⇒ String
A string representing the starting point for the next set of revisions.
Instance Attribute Details
#cluster_db_revisions ⇒ Array<Types::ClusterDbRevision>
A list of revisions.
1148 1149 1150 1151 1152 1153 |
# File 'gems/aws-sdk-redshift/lib/aws-sdk-redshift/types.rb', line 1148 class ClusterDbRevisionsMessage < Struct.new( :marker, :cluster_db_revisions) SENSITIVE = [] include Aws::Structure end |
#marker ⇒ String
A string representing the starting point for the next set of
revisions. If a value is returned in a response, you can retrieve
the next set of revisions by providing the value in the marker
parameter and retrying the command. If the marker field is empty,
all revisions have already been returned.
1148 1149 1150 1151 1152 1153 |
# File 'gems/aws-sdk-redshift/lib/aws-sdk-redshift/types.rb', line 1148 class ClusterDbRevisionsMessage < Struct.new( :marker, :cluster_db_revisions) SENSITIVE = [] include Aws::Structure end |