Struct aws_sdk_ec2::model::ReservedInstancesModification
source · #[non_exhaustive]pub struct ReservedInstancesModification { /* private fields */ }
Expand description
Describes a Reserved Instance modification.
Implementations§
source§impl ReservedInstancesModification
impl ReservedInstancesModification
sourcepub fn client_token(&self) -> Option<&str>
pub fn client_token(&self) -> Option<&str>
A unique, case-sensitive key supplied by the client to ensure that the request is idempotent. For more information, see Ensuring Idempotency.
sourcepub fn create_date(&self) -> Option<&DateTime>
pub fn create_date(&self) -> Option<&DateTime>
The time when the modification request was created.
sourcepub fn effective_date(&self) -> Option<&DateTime>
pub fn effective_date(&self) -> Option<&DateTime>
The time for the modification to become effective.
sourcepub fn modification_results(
&self
) -> Option<&[ReservedInstancesModificationResult]>
pub fn modification_results(
&self
) -> Option<&[ReservedInstancesModificationResult]>
Contains target configurations along with their corresponding new Reserved Instance IDs.
sourcepub fn reserved_instances_ids(&self) -> Option<&[ReservedInstancesId]>
pub fn reserved_instances_ids(&self) -> Option<&[ReservedInstancesId]>
The IDs of one or more Reserved Instances.
sourcepub fn reserved_instances_modification_id(&self) -> Option<&str>
pub fn reserved_instances_modification_id(&self) -> Option<&str>
A unique ID for the Reserved Instance modification.
sourcepub fn status(&self) -> Option<&str>
pub fn status(&self) -> Option<&str>
The status of the Reserved Instances modification request.
sourcepub fn status_message(&self) -> Option<&str>
pub fn status_message(&self) -> Option<&str>
The reason for the status.
sourcepub fn update_date(&self) -> Option<&DateTime>
pub fn update_date(&self) -> Option<&DateTime>
The time when the modification request was last updated.
source§impl ReservedInstancesModification
impl ReservedInstancesModification
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ReservedInstancesModification
.
Trait Implementations§
source§impl Clone for ReservedInstancesModification
impl Clone for ReservedInstancesModification
source§fn clone(&self) -> ReservedInstancesModification
fn clone(&self) -> ReservedInstancesModification
Returns a copy 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 PartialEq<ReservedInstancesModification> for ReservedInstancesModification
impl PartialEq<ReservedInstancesModification> for ReservedInstancesModification
source§fn eq(&self, other: &ReservedInstancesModification) -> bool
fn eq(&self, other: &ReservedInstancesModification) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.