Struct aws_sdk_ec2::operation::describe_host_reservation_offerings::DescribeHostReservationOfferingsInput
source · #[non_exhaustive]pub struct DescribeHostReservationOfferingsInput {
pub filter: Option<Vec<Filter>>,
pub max_duration: Option<i32>,
pub max_results: Option<i32>,
pub min_duration: Option<i32>,
pub next_token: Option<String>,
pub offering_id: Option<String>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.filter: Option<Vec<Filter>>The filters.
-
instance-family- The instance family of the offering (for example,m4). -
payment-option- The payment option (NoUpfront|PartialUpfront|AllUpfront).
max_duration: Option<i32>This is the maximum duration of the reservation to purchase, specified in seconds. Reservations are available in one-year and three-year terms. The number of seconds specified must be the number of seconds in a year (365x24x60x60) times one of the supported durations (1 or 3). For example, specify 94608000 for three years.
max_results: Option<i32>The maximum number of results to return for the request in a single page. The remaining results can be seen by sending another request with the returned nextToken value. This value can be between 5 and 500. If maxResults is given a larger value than 500, you receive an error.
min_duration: Option<i32>This is the minimum duration of the reservation you'd like to purchase, specified in seconds. Reservations are available in one-year and three-year terms. The number of seconds specified must be the number of seconds in a year (365x24x60x60) times one of the supported durations (1 or 3). For example, specify 31536000 for one year.
next_token: Option<String>The token to use to retrieve the next page of results.
offering_id: Option<String>The ID of the reservation offering.
Implementations§
source§impl DescribeHostReservationOfferingsInput
impl DescribeHostReservationOfferingsInput
sourcepub fn filter(&self) -> Option<&[Filter]>
pub fn filter(&self) -> Option<&[Filter]>
The filters.
-
instance-family- The instance family of the offering (for example,m4). -
payment-option- The payment option (NoUpfront|PartialUpfront|AllUpfront).
sourcepub fn max_duration(&self) -> Option<i32>
pub fn max_duration(&self) -> Option<i32>
This is the maximum duration of the reservation to purchase, specified in seconds. Reservations are available in one-year and three-year terms. The number of seconds specified must be the number of seconds in a year (365x24x60x60) times one of the supported durations (1 or 3). For example, specify 94608000 for three years.
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
The maximum number of results to return for the request in a single page. The remaining results can be seen by sending another request with the returned nextToken value. This value can be between 5 and 500. If maxResults is given a larger value than 500, you receive an error.
sourcepub fn min_duration(&self) -> Option<i32>
pub fn min_duration(&self) -> Option<i32>
This is the minimum duration of the reservation you'd like to purchase, specified in seconds. Reservations are available in one-year and three-year terms. The number of seconds specified must be the number of seconds in a year (365x24x60x60) times one of the supported durations (1 or 3). For example, specify 31536000 for one year.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
The token to use to retrieve the next page of results.
sourcepub fn offering_id(&self) -> Option<&str>
pub fn offering_id(&self) -> Option<&str>
The ID of the reservation offering.
source§impl DescribeHostReservationOfferingsInput
impl DescribeHostReservationOfferingsInput
sourcepub fn builder() -> DescribeHostReservationOfferingsInputBuilder
pub fn builder() -> DescribeHostReservationOfferingsInputBuilder
Creates a new builder-style object to manufacture DescribeHostReservationOfferingsInput.
Trait Implementations§
source§impl Clone for DescribeHostReservationOfferingsInput
impl Clone for DescribeHostReservationOfferingsInput
source§fn clone(&self) -> DescribeHostReservationOfferingsInput
fn clone(&self) -> DescribeHostReservationOfferingsInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl PartialEq<DescribeHostReservationOfferingsInput> for DescribeHostReservationOfferingsInput
impl PartialEq<DescribeHostReservationOfferingsInput> for DescribeHostReservationOfferingsInput
source§fn eq(&self, other: &DescribeHostReservationOfferingsInput) -> bool
fn eq(&self, other: &DescribeHostReservationOfferingsInput) -> bool
self and other values to be equal, and is used
by ==.