Struct rusoto_rds::DescribeReservedDBInstancesOfferingsMessage [] [src]

pub struct DescribeReservedDBInstancesOfferingsMessage {
    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_instances_offering_id: Option<String>,
}

Fields

The DB instance class filter value. Specify this parameter to show only the available offerings matching the specified DB instance class.

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 the available offerings 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"

Product description filter value. Specify this parameter to show only the available offerings matching the specified product description.

The offering identifier filter value. Specify this parameter to show only the available offering that matches the specified reservation identifier.

Example: 438012d3-4052-4cc7-b2e3-8d3372e0e706

Trait Implementations

impl Default for DescribeReservedDBInstancesOfferingsMessage
[src]

[src]

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

impl Debug for DescribeReservedDBInstancesOfferingsMessage
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for DescribeReservedDBInstancesOfferingsMessage
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations