Struct aws_sdk_ec2::types::FailedQueuedPurchaseDeletion
source · #[non_exhaustive]pub struct FailedQueuedPurchaseDeletion {
pub error: Option<DeleteQueuedReservedInstancesError>,
pub reserved_instances_id: Option<String>,
}Expand description
Describes a Reserved Instance whose queued purchase was not deleted.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.error: Option<DeleteQueuedReservedInstancesError>The error.
reserved_instances_id: Option<String>The ID of the Reserved Instance.
Implementations§
source§impl FailedQueuedPurchaseDeletion
impl FailedQueuedPurchaseDeletion
sourcepub fn error(&self) -> Option<&DeleteQueuedReservedInstancesError>
pub fn error(&self) -> Option<&DeleteQueuedReservedInstancesError>
The error.
sourcepub fn reserved_instances_id(&self) -> Option<&str>
pub fn reserved_instances_id(&self) -> Option<&str>
The ID of the Reserved Instance.
source§impl FailedQueuedPurchaseDeletion
impl FailedQueuedPurchaseDeletion
sourcepub fn builder() -> FailedQueuedPurchaseDeletionBuilder
pub fn builder() -> FailedQueuedPurchaseDeletionBuilder
Creates a new builder-style object to manufacture FailedQueuedPurchaseDeletion.
Trait Implementations§
source§impl Clone for FailedQueuedPurchaseDeletion
impl Clone for FailedQueuedPurchaseDeletion
source§fn clone(&self) -> FailedQueuedPurchaseDeletion
fn clone(&self) -> FailedQueuedPurchaseDeletion
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 Debug for FailedQueuedPurchaseDeletion
impl Debug for FailedQueuedPurchaseDeletion
source§impl PartialEq for FailedQueuedPurchaseDeletion
impl PartialEq for FailedQueuedPurchaseDeletion
source§fn eq(&self, other: &FailedQueuedPurchaseDeletion) -> bool
fn eq(&self, other: &FailedQueuedPurchaseDeletion) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for FailedQueuedPurchaseDeletion
Auto Trait Implementations§
impl Freeze for FailedQueuedPurchaseDeletion
impl RefUnwindSafe for FailedQueuedPurchaseDeletion
impl Send for FailedQueuedPurchaseDeletion
impl Sync for FailedQueuedPurchaseDeletion
impl Unpin for FailedQueuedPurchaseDeletion
impl UnwindSafe for FailedQueuedPurchaseDeletion
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
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>
Creates a shared type from an unshared type.