Struct aws_sdk_redshift::operation::describe_reserved_node_exchange_status::DescribeReservedNodeExchangeStatusOutput
source · #[non_exhaustive]pub struct DescribeReservedNodeExchangeStatusOutput {
pub reserved_node_exchange_status_details: Option<Vec<ReservedNodeExchangeStatus>>,
pub marker: Option<String>,
/* private fields */
}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.reserved_node_exchange_status_details: Option<Vec<ReservedNodeExchangeStatus>>The details of the reserved-node exchange request, including the status, request time, source reserved-node identifier, and additional details.
marker: Option<String>A pagination token provided by a previous DescribeReservedNodeExchangeStatus request.
Implementations§
source§impl DescribeReservedNodeExchangeStatusOutput
impl DescribeReservedNodeExchangeStatusOutput
sourcepub fn reserved_node_exchange_status_details(
&self
) -> Option<&[ReservedNodeExchangeStatus]>
pub fn reserved_node_exchange_status_details( &self ) -> Option<&[ReservedNodeExchangeStatus]>
The details of the reserved-node exchange request, including the status, request time, source reserved-node identifier, and additional details.
source§impl DescribeReservedNodeExchangeStatusOutput
impl DescribeReservedNodeExchangeStatusOutput
sourcepub fn builder() -> DescribeReservedNodeExchangeStatusOutputBuilder
pub fn builder() -> DescribeReservedNodeExchangeStatusOutputBuilder
Creates a new builder-style object to manufacture DescribeReservedNodeExchangeStatusOutput.
Trait Implementations§
source§impl Clone for DescribeReservedNodeExchangeStatusOutput
impl Clone for DescribeReservedNodeExchangeStatusOutput
source§fn clone(&self) -> DescribeReservedNodeExchangeStatusOutput
fn clone(&self) -> DescribeReservedNodeExchangeStatusOutput
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<DescribeReservedNodeExchangeStatusOutput> for DescribeReservedNodeExchangeStatusOutput
impl PartialEq<DescribeReservedNodeExchangeStatusOutput> for DescribeReservedNodeExchangeStatusOutput
source§fn eq(&self, other: &DescribeReservedNodeExchangeStatusOutput) -> bool
fn eq(&self, other: &DescribeReservedNodeExchangeStatusOutput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl RequestId for DescribeReservedNodeExchangeStatusOutput
impl RequestId for DescribeReservedNodeExchangeStatusOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None if the service could not be reached.impl StructuralPartialEq for DescribeReservedNodeExchangeStatusOutput
Auto Trait Implementations§
impl RefUnwindSafe for DescribeReservedNodeExchangeStatusOutput
impl Send for DescribeReservedNodeExchangeStatusOutput
impl Sync for DescribeReservedNodeExchangeStatusOutput
impl Unpin for DescribeReservedNodeExchangeStatusOutput
impl UnwindSafe for DescribeReservedNodeExchangeStatusOutput
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