AWS SDK Version 3 for .NET
API Reference

AWS services or capabilities described in AWS Documentation may vary by region/location. Click Getting Started with Amazon AWS to see specific differences applicable to the China (Beijing) Region.

Container for the parameters to the DescribeDBEngineVersions operation. Returns a list of the available DB engines.

Inheritance Hierarchy

System.Object
  Amazon.Runtime.AmazonWebServiceRequest
    Amazon.Neptune.AmazonNeptuneRequest
      Amazon.Neptune.Model.DescribeDBEngineVersionsRequest

Namespace: Amazon.Neptune.Model
Assembly: AWSSDK.Neptune.dll
Version: 3.x.y.z

Syntax

C#
public class DescribeDBEngineVersionsRequest : AmazonNeptuneRequest
         IAmazonWebServiceRequest

The DescribeDBEngineVersionsRequest type exposes the following members

Constructors

Properties

NameTypeDescription
Public Property DBParameterGroupFamily System.String

Gets and sets the property DBParameterGroupFamily.

The name of a specific DB parameter group family to return details for.

Constraints:

  • If supplied, must match an existing DBParameterGroupFamily.

Public Property DefaultOnly System.Boolean

Gets and sets the property DefaultOnly.

Indicates that only the default version of the specified engine or engine and major version combination is returned.

Public Property Engine System.String

Gets and sets the property Engine.

The database engine to return.

Public Property EngineVersion System.String

Gets and sets the property EngineVersion.

The database engine version to return.

Example: 5.1.49

Public Property Filters System.Collections.Generic.List<Amazon.Neptune.Model.Filter>

Gets and sets the property Filters.

Not currently supported.

Public Property ListSupportedCharacterSets System.Boolean

Gets and sets the property ListSupportedCharacterSets.

If this parameter is specified and the requested engine supports the CharacterSetName parameter for CreateDBInstance, the response includes a list of supported character sets for each engine version.

Public Property ListSupportedTimezones System.Boolean

Gets and sets the property ListSupportedTimezones.

If this parameter is specified and the requested engine supports the TimeZone parameter for CreateDBInstance, the response includes a list of supported time zones for each engine version.

Public Property Marker System.String

Gets and sets the property Marker.

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.

Public Property MaxRecords System.Int32

Gets and sets the property MaxRecords.

The maximum number of records to include in the response. If more than the MaxRecords value is available, a pagination token called a marker is included in the response so that the following results can be retrieved.

Default: 100

Constraints: Minimum 20, maximum 100.

Examples

This example lists settings for the specified DB engine version.

To list DB engine version settings


var response = client.DescribeDBEngineVersions(new DescribeDBEngineVersionsRequest 
{
    DBParameterGroupFamily = "mysql5.6",
    DefaultOnly = true,
    Engine = "mysql",
    EngineVersion = "5.6",
    ListSupportedCharacterSets = true
});


            

Version Information

.NET Core App:
Supported in: 3.1

.NET Standard:
Supported in: 2.0

.NET Framework:
Supported in: 4.5, 4.0, 3.5