#[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
sourceimpl DescribeHostReservationOfferingsInput
impl DescribeHostReservationOfferingsInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<DescribeHostReservationOfferings, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<DescribeHostReservationOfferings, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<DescribeHostReservationOfferings
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture DescribeHostReservationOfferingsInput
.
sourceimpl 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.
Trait Implementations
sourceimpl Clone for DescribeHostReservationOfferingsInput
impl Clone for DescribeHostReservationOfferingsInput
sourcefn clone(&self) -> DescribeHostReservationOfferingsInput
fn clone(&self) -> DescribeHostReservationOfferingsInput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl PartialEq<DescribeHostReservationOfferingsInput> for DescribeHostReservationOfferingsInput
impl PartialEq<DescribeHostReservationOfferingsInput> for DescribeHostReservationOfferingsInput
sourcefn eq(&self, other: &DescribeHostReservationOfferingsInput) -> bool
fn eq(&self, other: &DescribeHostReservationOfferingsInput) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &DescribeHostReservationOfferingsInput) -> bool
fn ne(&self, other: &DescribeHostReservationOfferingsInput) -> bool
This method tests for !=
.
impl StructuralPartialEq for DescribeHostReservationOfferingsInput
Auto Trait Implementations
impl RefUnwindSafe for DescribeHostReservationOfferingsInput
impl Send for DescribeHostReservationOfferingsInput
impl Sync for DescribeHostReservationOfferingsInput
impl Unpin for DescribeHostReservationOfferingsInput
impl UnwindSafe for DescribeHostReservationOfferingsInput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more