pub struct DescribeClustersResponse {
pub clusters: Vec<Cluster>,
pub marker: Option<String>,
}Expand description
Contains the output from the DescribeClusters action.
AWS API: redshift.v1.ClustersMessage
Reference: https://docs.aws.amazon.com/redshift/latest/APIReference//ClustersMessage
Fields§
§clusters: Vec<Cluster>A list of Cluster objects, where each object describes one cluster.
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.
Trait Implementations§
Source§impl Clone for DescribeClustersResponse
impl Clone for DescribeClustersResponse
Source§fn clone(&self) -> DescribeClustersResponse
fn clone(&self) -> DescribeClustersResponse
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 Debug for DescribeClustersResponse
impl Debug for DescribeClustersResponse
Source§impl Default for DescribeClustersResponse
impl Default for DescribeClustersResponse
Source§fn default() -> DescribeClustersResponse
fn default() -> DescribeClustersResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DescribeClustersResponse
impl<'de> Deserialize<'de> for DescribeClustersResponse
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for DescribeClustersResponse
impl RefUnwindSafe for DescribeClustersResponse
impl Send for DescribeClustersResponse
impl Sync for DescribeClustersResponse
impl Unpin for DescribeClustersResponse
impl UnsafeUnpin for DescribeClustersResponse
impl UnwindSafe for DescribeClustersResponse
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