Struct rusoto_rds::DescribeReservedDBInstancesMessage [] [src]

pub struct DescribeReservedDBInstancesMessage {
    pub db_instance_class: Option<String>,
    pub duration: Option<String>,
    pub filters: Option<Vec<Filter>>,
    pub marker: Option<String>,
    pub max_records: Option<i64>,
    pub multi_az: Option<bool>,
    pub offering_type: Option<String>,
    pub product_description: Option<String>,
    pub reserved_db_instance_id: Option<String>,
    pub reserved_db_instances_offering_id: Option<String>,
}

Fields

The DB instance class filter value. Specify this parameter to show only those reservations matching the specified DB instances class.

The duration filter value, specified in years or seconds. Specify this parameter to show only reservations for this duration.

Valid Values: 1 | 3 | 31536000 | 94608000

This parameter is not currently supported.

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.

The Multi-AZ filter value. Specify this parameter to show only those reservations matching the specified Multi-AZ parameter.

The offering type filter value. Specify this parameter to show only the available offerings matching the specified offering type.

Valid Values: "Partial Upfront" | "All Upfront" | "No Upfront"

The product description filter value. Specify this parameter to show only those reservations matching the specified product description.

The reserved DB instance identifier filter value. Specify this parameter to show only the reservation that matches the specified reservation ID.

The offering identifier filter value. Specify this parameter to show only purchased reservations matching the specified offering identifier.

Trait Implementations

impl Default for DescribeReservedDBInstancesMessage
[src]

[src]

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

impl Debug for DescribeReservedDBInstancesMessage
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for DescribeReservedDBInstancesMessage
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations