pub struct OrderableClusterOptionsMessage {
pub marker: Option<String>,
pub orderable_cluster_options: Option<Vec<OrderableClusterOption>>,
}
Expand description
Contains the output from the DescribeOrderableClusterOptions action.
Fields§
§marker: Option<String>
A value that indicates the starting point for the next set of response records in a subsequent request. If a value is returned in a response, you can retrieve the next set of records by providing this returned marker value in the Marker
parameter and retrying the command. If the Marker
field is empty, all response records have been retrieved for the request.
orderable_cluster_options: Option<Vec<OrderableClusterOption>>
An OrderableClusterOption
structure containing information about orderable options for the cluster.
Trait Implementations§
Source§impl Clone for OrderableClusterOptionsMessage
impl Clone for OrderableClusterOptionsMessage
Source§fn clone(&self) -> OrderableClusterOptionsMessage
fn clone(&self) -> OrderableClusterOptionsMessage
Returns a duplicate 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 Default for OrderableClusterOptionsMessage
impl Default for OrderableClusterOptionsMessage
Source§fn default() -> OrderableClusterOptionsMessage
fn default() -> OrderableClusterOptionsMessage
Returns the “default value” for a type. Read more
Source§impl PartialEq for OrderableClusterOptionsMessage
impl PartialEq for OrderableClusterOptionsMessage
Source§fn eq(&self, other: &OrderableClusterOptionsMessage) -> bool
fn eq(&self, other: &OrderableClusterOptionsMessage) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for OrderableClusterOptionsMessage
Auto Trait Implementations§
impl Freeze for OrderableClusterOptionsMessage
impl RefUnwindSafe for OrderableClusterOptionsMessage
impl Send for OrderableClusterOptionsMessage
impl Sync for OrderableClusterOptionsMessage
impl Unpin for OrderableClusterOptionsMessage
impl UnwindSafe for OrderableClusterOptionsMessage
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