Class: Aws::DocDB::Types::DBEngineVersionMessage
- Inherits:
-
Struct
- Object
- Struct
- Aws::DocDB::Types::DBEngineVersionMessage
- Defined in:
- gems/aws-sdk-docdb/lib/aws-sdk-docdb/types.rb
Overview
Represents the output of DescribeDBEngineVersions.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#db_engine_versions ⇒ Array<Types::DBEngineVersion>
Detailed information about one or more engine versions.
-
#marker ⇒ String
An optional pagination token provided by a previous request.
Instance Attribute Details
#db_engine_versions ⇒ Array<Types::DBEngineVersion>
Detailed information about one or more engine versions.
1916 1917 1918 1919 1920 1921 |
# File 'gems/aws-sdk-docdb/lib/aws-sdk-docdb/types.rb', line 1916 class DBEngineVersionMessage < Struct.new( :marker, :db_engine_versions) SENSITIVE = [] include Aws::Structure end |
#marker ⇒ String
An optional pagination token provided by a previous request. If this
parameter is specified, the response includes only records beyond
the marker, up to the value specified by MaxRecords
.
1916 1917 1918 1919 1920 1921 |
# File 'gems/aws-sdk-docdb/lib/aws-sdk-docdb/types.rb', line 1916 class DBEngineVersionMessage < Struct.new( :marker, :db_engine_versions) SENSITIVE = [] include Aws::Structure end |