Class: Aws::Redshift::Types::DescribeClusterTracksMessage
- Inherits:
-
Struct
- Object
- Struct
- Aws::Redshift::Types::DescribeClusterTracksMessage
- Defined in:
- gems/aws-sdk-redshift/lib/aws-sdk-redshift/types.rb
Overview
When making an API call, you may pass DescribeClusterTracksMessage data as a hash:
{
maintenance_track_name: "String",
max_records: 1,
marker: "String",
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#maintenance_track_name ⇒ String
The name of the maintenance track.
-
#marker ⇒ String
An optional parameter that specifies the starting point to return a set of response records.
-
#max_records ⇒ Integer
An integer value for the maximum number of maintenance tracks to return.
Instance Attribute Details
#maintenance_track_name ⇒ String
The name of the maintenance track.
4465 4466 4467 4468 4469 4470 4471 |
# File 'gems/aws-sdk-redshift/lib/aws-sdk-redshift/types.rb', line 4465 class DescribeClusterTracksMessage < Struct.new( :maintenance_track_name, :max_records, :marker) SENSITIVE = [] include Aws::Structure end |
#marker ⇒ String
An optional parameter that specifies the starting point to return a
set of response records. When the results of a
DescribeClusterTracks
request exceed the value specified in
MaxRecords
, Amazon Redshift returns a value in the Marker
field
of the response. You can retrieve the next set of response records
by providing the returned marker value in the Marker
parameter and
retrying the request.
4465 4466 4467 4468 4469 4470 4471 |
# File 'gems/aws-sdk-redshift/lib/aws-sdk-redshift/types.rb', line 4465 class DescribeClusterTracksMessage < Struct.new( :maintenance_track_name, :max_records, :marker) SENSITIVE = [] include Aws::Structure end |
#max_records ⇒ Integer
An integer value for the maximum number of maintenance tracks to return.
4465 4466 4467 4468 4469 4470 4471 |
# File 'gems/aws-sdk-redshift/lib/aws-sdk-redshift/types.rb', line 4465 class DescribeClusterTracksMessage < Struct.new( :maintenance_track_name, :max_records, :marker) SENSITIVE = [] include Aws::Structure end |