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 ==.