Struct aws_sdk_elasticsearch::operation::describe_reserved_elasticsearch_instances::DescribeReservedElasticsearchInstancesOutput   
source · #[non_exhaustive]pub struct DescribeReservedElasticsearchInstancesOutput {
    pub next_token: Option<String>,
    pub reserved_elasticsearch_instances: Option<Vec<ReservedElasticsearchInstance>>,
    /* private fields */
}Expand description
Container for results from DescribeReservedElasticsearchInstances
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.next_token: Option<String>Provides an identifier to allow retrieval of paginated results.
reserved_elasticsearch_instances: Option<Vec<ReservedElasticsearchInstance>>List of reserved Elasticsearch instances.
Implementations§
source§impl DescribeReservedElasticsearchInstancesOutput
 
impl DescribeReservedElasticsearchInstancesOutput
sourcepub fn next_token(&self) -> Option<&str>
 
pub fn next_token(&self) -> Option<&str>
Provides an identifier to allow retrieval of paginated results.
sourcepub fn reserved_elasticsearch_instances(
    &self
) -> Option<&[ReservedElasticsearchInstance]>
 
pub fn reserved_elasticsearch_instances( &self ) -> Option<&[ReservedElasticsearchInstance]>
List of reserved Elasticsearch instances.
source§impl DescribeReservedElasticsearchInstancesOutput
 
impl DescribeReservedElasticsearchInstancesOutput
sourcepub fn builder() -> DescribeReservedElasticsearchInstancesOutputBuilder
 
pub fn builder() -> DescribeReservedElasticsearchInstancesOutputBuilder
Creates a new builder-style object to manufacture DescribeReservedElasticsearchInstancesOutput.
Trait Implementations§
source§impl Clone for DescribeReservedElasticsearchInstancesOutput
 
impl Clone for DescribeReservedElasticsearchInstancesOutput
source§fn clone(&self) -> DescribeReservedElasticsearchInstancesOutput
 
fn clone(&self) -> DescribeReservedElasticsearchInstancesOutput
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<DescribeReservedElasticsearchInstancesOutput> for DescribeReservedElasticsearchInstancesOutput
 
impl PartialEq<DescribeReservedElasticsearchInstancesOutput> for DescribeReservedElasticsearchInstancesOutput
source§fn eq(&self, other: &DescribeReservedElasticsearchInstancesOutput) -> bool
 
fn eq(&self, other: &DescribeReservedElasticsearchInstancesOutput) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.source§impl RequestId for DescribeReservedElasticsearchInstancesOutput
 
impl RequestId for DescribeReservedElasticsearchInstancesOutput
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 DescribeReservedElasticsearchInstancesOutput
Auto Trait Implementations§
impl RefUnwindSafe for DescribeReservedElasticsearchInstancesOutput
impl Send for DescribeReservedElasticsearchInstancesOutput
impl Sync for DescribeReservedElasticsearchInstancesOutput
impl Unpin for DescribeReservedElasticsearchInstancesOutput
impl UnwindSafe for DescribeReservedElasticsearchInstancesOutput
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