pub struct DescribeOrderableDBInstanceOptionsMessage {
pub db_instance_class: Option<String>,
pub engine: String,
pub engine_version: Option<String>,
pub filters: Option<Vec<Filter>>,
pub license_model: Option<String>,
pub marker: Option<String>,
pub max_records: Option<i64>,
pub vpc: Option<bool>,
}
Expand description
Represents the input to DescribeOrderableDBInstanceOptions.
Fields§
§db_instance_class: Option<String>
The instance class filter value. Specify this parameter to show only the available offerings that match the specified instance class.
engine: String
The name of the engine to retrieve instance options for.
engine_version: Option<String>
The engine version filter value. Specify this parameter to show only the available offerings that match the specified engine version.
filters: Option<Vec<Filter>>
This parameter is not currently supported.
license_model: Option<String>
The license model filter value. Specify this parameter to show only the available offerings that match the specified license model.
marker: Option<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
.
max_records: Option<i64>
The maximum number of records to include in the response. If more records exist than the specified MaxRecords
value, a pagination token (marker) is included in the response so that the remaining results can be retrieved.
Default: 100
Constraints: Minimum 20, maximum 100.
vpc: Option<bool>
The virtual private cloud (VPC) filter value. Specify this parameter to show only the available VPC or non-VPC offerings.
Trait Implementations§
Source§impl Clone for DescribeOrderableDBInstanceOptionsMessage
impl Clone for DescribeOrderableDBInstanceOptionsMessage
Source§fn clone(&self) -> DescribeOrderableDBInstanceOptionsMessage
fn clone(&self) -> DescribeOrderableDBInstanceOptionsMessage
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Default for DescribeOrderableDBInstanceOptionsMessage
impl Default for DescribeOrderableDBInstanceOptionsMessage
Source§fn default() -> DescribeOrderableDBInstanceOptionsMessage
fn default() -> DescribeOrderableDBInstanceOptionsMessage
Source§impl PartialEq for DescribeOrderableDBInstanceOptionsMessage
impl PartialEq for DescribeOrderableDBInstanceOptionsMessage
Source§fn eq(&self, other: &DescribeOrderableDBInstanceOptionsMessage) -> bool
fn eq(&self, other: &DescribeOrderableDBInstanceOptionsMessage) -> bool
self
and other
values to be equal, and is used by ==
.