#[non_exhaustive]pub struct DescribeReservedInstancesModificationsInput {
pub filters: Option<Vec<Filter>>,
pub reserved_instances_modification_ids: Option<Vec<String>>,
pub next_token: Option<String>,
}
Expand description
Contains the parameters for DescribeReservedInstancesModifications.
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.filters: Option<Vec<Filter>>
One or more filters.
-
client-token
- The idempotency token for the modification request. -
create-date
- The time when the modification request was created. -
effective-date
- The time when the modification becomes effective. -
modification-result.reserved-instances-id
- The ID for the Reserved Instances created as part of the modification request. This ID is only available when the status of the modification isfulfilled
. -
modification-result.target-configuration.availability-zone
- The Availability Zone for the new Reserved Instances. -
modification-result.target-configuration.instance-count
- The number of new Reserved Instances. -
modification-result.target-configuration.instance-type
- The instance type of the new Reserved Instances. -
modification-result.target-configuration.platform
- The network platform of the new Reserved Instances (EC2-Classic
|EC2-VPC
). -
reserved-instances-id
- The ID of the Reserved Instances modified. -
reserved-instances-modification-id
- The ID of the modification request. -
status
- The status of the Reserved Instances modification request (processing
|fulfilled
|failed
). -
status-message
- The reason for the status. -
update-date
- The time when the modification request was last updated.
reserved_instances_modification_ids: Option<Vec<String>>
IDs for the submitted modification request.
next_token: Option<String>
The token to retrieve the next page of results.
Implementations
sourceimpl DescribeReservedInstancesModificationsInput
impl DescribeReservedInstancesModificationsInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<DescribeReservedInstancesModifications, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<DescribeReservedInstancesModifications, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<DescribeReservedInstancesModifications
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture DescribeReservedInstancesModificationsInput
.
sourceimpl DescribeReservedInstancesModificationsInput
impl DescribeReservedInstancesModificationsInput
sourcepub fn filters(&self) -> Option<&[Filter]>
pub fn filters(&self) -> Option<&[Filter]>
One or more filters.
-
client-token
- The idempotency token for the modification request. -
create-date
- The time when the modification request was created. -
effective-date
- The time when the modification becomes effective. -
modification-result.reserved-instances-id
- The ID for the Reserved Instances created as part of the modification request. This ID is only available when the status of the modification isfulfilled
. -
modification-result.target-configuration.availability-zone
- The Availability Zone for the new Reserved Instances. -
modification-result.target-configuration.instance-count
- The number of new Reserved Instances. -
modification-result.target-configuration.instance-type
- The instance type of the new Reserved Instances. -
modification-result.target-configuration.platform
- The network platform of the new Reserved Instances (EC2-Classic
|EC2-VPC
). -
reserved-instances-id
- The ID of the Reserved Instances modified. -
reserved-instances-modification-id
- The ID of the modification request. -
status
- The status of the Reserved Instances modification request (processing
|fulfilled
|failed
). -
status-message
- The reason for the status. -
update-date
- The time when the modification request was last updated.
sourcepub fn reserved_instances_modification_ids(&self) -> Option<&[String]>
pub fn reserved_instances_modification_ids(&self) -> Option<&[String]>
IDs for the submitted modification request.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
The token to retrieve the next page of results.
Trait Implementations
sourceimpl Clone for DescribeReservedInstancesModificationsInput
impl Clone for DescribeReservedInstancesModificationsInput
sourcefn clone(&self) -> DescribeReservedInstancesModificationsInput
fn clone(&self) -> DescribeReservedInstancesModificationsInput
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<DescribeReservedInstancesModificationsInput> for DescribeReservedInstancesModificationsInput
impl PartialEq<DescribeReservedInstancesModificationsInput> for DescribeReservedInstancesModificationsInput
sourcefn eq(&self, other: &DescribeReservedInstancesModificationsInput) -> bool
fn eq(&self, other: &DescribeReservedInstancesModificationsInput) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &DescribeReservedInstancesModificationsInput) -> bool
fn ne(&self, other: &DescribeReservedInstancesModificationsInput) -> bool
This method tests for !=
.
impl StructuralPartialEq for DescribeReservedInstancesModificationsInput
Auto Trait Implementations
impl RefUnwindSafe for DescribeReservedInstancesModificationsInput
impl Send for DescribeReservedInstancesModificationsInput
impl Sync for DescribeReservedInstancesModificationsInput
impl Unpin for DescribeReservedInstancesModificationsInput
impl UnwindSafe for DescribeReservedInstancesModificationsInput
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