Struct rusoto_rds::DescribeDBEngineVersionsMessage [] [src]

pub struct DescribeDBEngineVersionsMessage {
    pub db_parameter_group_family: Option<String>,
    pub default_only: Option<bool>,
    pub engine: Option<String>,
    pub engine_version: Option<String>,
    pub filters: Option<Vec<Filter>>,
    pub list_supported_character_sets: Option<bool>,
    pub list_supported_timezones: Option<bool>,
    pub marker: Option<String>,
    pub max_records: Option<i64>,
}

Fields

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

Constraints:

  • Must be 1 to 255 alphanumeric characters

  • First character must be a letter

  • Cannot end with a hyphen or contain two consecutive hyphens

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

The database engine to return.

The database engine version to return.

Example: 5.1.49

Not currently supported.

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.

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.

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.

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.

Trait Implementations

impl Default for DescribeDBEngineVersionsMessage
[src]

Returns the "default value" for a type. Read more

impl Debug for DescribeDBEngineVersionsMessage
[src]

Formats the value using the given formatter.

impl Clone for DescribeDBEngineVersionsMessage
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more