Struct aws_sdk_ec2::operation::describe_reserved_instances_modifications::DescribeReservedInstancesModificationsInput
source · #[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. -
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§
source§impl DescribeReservedInstancesModificationsInput
impl DescribeReservedInstancesModificationsInput
sourcepub fn filters(&self) -> &[Filter]
pub fn filters(&self) -> &[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. -
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.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .filters.is_none()
.
sourcepub fn reserved_instances_modification_ids(&self) -> &[String]
pub fn reserved_instances_modification_ids(&self) -> &[String]
IDs for the submitted modification request.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .reserved_instances_modification_ids.is_none()
.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
The token to retrieve the next page of results.
source§impl DescribeReservedInstancesModificationsInput
impl DescribeReservedInstancesModificationsInput
sourcepub fn builder() -> DescribeReservedInstancesModificationsInputBuilder
pub fn builder() -> DescribeReservedInstancesModificationsInputBuilder
Creates a new builder-style object to manufacture DescribeReservedInstancesModificationsInput
.
Trait Implementations§
source§impl Clone for DescribeReservedInstancesModificationsInput
impl Clone for DescribeReservedInstancesModificationsInput
source§fn clone(&self) -> DescribeReservedInstancesModificationsInput
fn clone(&self) -> DescribeReservedInstancesModificationsInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for DescribeReservedInstancesModificationsInput
impl PartialEq for DescribeReservedInstancesModificationsInput
source§fn eq(&self, other: &DescribeReservedInstancesModificationsInput) -> bool
fn eq(&self, other: &DescribeReservedInstancesModificationsInput) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for DescribeReservedInstancesModificationsInput
Auto Trait Implementations§
impl Freeze for DescribeReservedInstancesModificationsInput
impl RefUnwindSafe for DescribeReservedInstancesModificationsInput
impl Send for DescribeReservedInstancesModificationsInput
impl Sync for DescribeReservedInstancesModificationsInput
impl Unpin for DescribeReservedInstancesModificationsInput
impl UnwindSafe for DescribeReservedInstancesModificationsInput
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more