pub struct ClusterSubnetGroupMessage {
pub cluster_subnet_groups: Option<Vec<ClusterSubnetGroup>>,
pub marker: Option<String>,
}
Expand description
Contains the output from the DescribeClusterSubnetGroups action.
Fields§
§cluster_subnet_groups: Option<Vec<ClusterSubnetGroup>>
A list of ClusterSubnetGroup instances.
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 ClusterSubnetGroupMessage
impl Clone for ClusterSubnetGroupMessage
Source§fn clone(&self) -> ClusterSubnetGroupMessage
fn clone(&self) -> ClusterSubnetGroupMessage
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 ClusterSubnetGroupMessage
impl Debug for ClusterSubnetGroupMessage
Source§impl Default for ClusterSubnetGroupMessage
impl Default for ClusterSubnetGroupMessage
Source§fn default() -> ClusterSubnetGroupMessage
fn default() -> ClusterSubnetGroupMessage
Returns the “default value” for a type. Read more
impl StructuralPartialEq for ClusterSubnetGroupMessage
Auto Trait Implementations§
impl Freeze for ClusterSubnetGroupMessage
impl RefUnwindSafe for ClusterSubnetGroupMessage
impl Send for ClusterSubnetGroupMessage
impl Sync for ClusterSubnetGroupMessage
impl Unpin for ClusterSubnetGroupMessage
impl UnwindSafe for ClusterSubnetGroupMessage
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