pub struct DescribeInstanceCreditSpecificationsRequest {
pub dry_run: Option<bool>,
pub filters: Option<Vec<Filter>>,
pub instance_ids: Option<Vec<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>>The filters.
-
instance-id- The ID of the instance.
instance_ids: Option<Vec<String>>The instance IDs.
Default: Describes all your instances.
Constraints: Maximum 1000 explicitly specified instance IDs.
max_results: Option<i64>The maximum number of results to return in a single call. To retrieve the remaining results, make another call with the returned NextToken value. This value can be between 5 and 1000. You cannot specify this parameter and the instance IDs parameter in the same call.
next_token: Option<String>The token to retrieve the next page of results.
Trait Implementations§
Source§impl Clone for DescribeInstanceCreditSpecificationsRequest
impl Clone for DescribeInstanceCreditSpecificationsRequest
Source§fn clone(&self) -> DescribeInstanceCreditSpecificationsRequest
fn clone(&self) -> DescribeInstanceCreditSpecificationsRequest
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 DescribeInstanceCreditSpecificationsRequest
impl Default for DescribeInstanceCreditSpecificationsRequest
Source§fn default() -> DescribeInstanceCreditSpecificationsRequest
fn default() -> DescribeInstanceCreditSpecificationsRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for DescribeInstanceCreditSpecificationsRequest
impl PartialEq for DescribeInstanceCreditSpecificationsRequest
Source§fn eq(&self, other: &DescribeInstanceCreditSpecificationsRequest) -> bool
fn eq(&self, other: &DescribeInstanceCreditSpecificationsRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DescribeInstanceCreditSpecificationsRequest
Auto Trait Implementations§
impl Freeze for DescribeInstanceCreditSpecificationsRequest
impl RefUnwindSafe for DescribeInstanceCreditSpecificationsRequest
impl Send for DescribeInstanceCreditSpecificationsRequest
impl Sync for DescribeInstanceCreditSpecificationsRequest
impl Unpin for DescribeInstanceCreditSpecificationsRequest
impl UnwindSafe for DescribeInstanceCreditSpecificationsRequest
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