pub struct DescribeInstanceTypeOfferingsRequest {
pub dry_run: Option<bool>,
pub filters: Option<Vec<Filter>>,
pub location_type: Option<String>,
pub max_results: Option<i64>,
pub next_token: Option<String>,
}Fields§
§dry_run: Option<bool>Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.
filters: Option<Vec<Filter>>One or more filters. Filter names and values are case-sensitive.
-
location- This depends on the location type. For example, if the location type isregion(default), the location is the Region code (for example,us-east-2.) -
instance-type- The instance type.
location_type: Option<String>The location type.
max_results: Option<i64>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 next token value.
next_token: Option<String>The token to retrieve the next page of results.
Trait Implementations§
Source§impl Clone for DescribeInstanceTypeOfferingsRequest
impl Clone for DescribeInstanceTypeOfferingsRequest
Source§fn clone(&self) -> DescribeInstanceTypeOfferingsRequest
fn clone(&self) -> DescribeInstanceTypeOfferingsRequest
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Default for DescribeInstanceTypeOfferingsRequest
impl Default for DescribeInstanceTypeOfferingsRequest
Source§fn default() -> DescribeInstanceTypeOfferingsRequest
fn default() -> DescribeInstanceTypeOfferingsRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for DescribeInstanceTypeOfferingsRequest
impl PartialEq for DescribeInstanceTypeOfferingsRequest
Source§fn eq(&self, other: &DescribeInstanceTypeOfferingsRequest) -> bool
fn eq(&self, other: &DescribeInstanceTypeOfferingsRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DescribeInstanceTypeOfferingsRequest
Auto Trait Implementations§
impl Freeze for DescribeInstanceTypeOfferingsRequest
impl RefUnwindSafe for DescribeInstanceTypeOfferingsRequest
impl Send for DescribeInstanceTypeOfferingsRequest
impl Sync for DescribeInstanceTypeOfferingsRequest
impl Unpin for DescribeInstanceTypeOfferingsRequest
impl UnwindSafe for DescribeInstanceTypeOfferingsRequest
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more