pub struct ResizeClusterMessage {
pub classic: Option<bool>,
pub cluster_identifier: String,
pub cluster_type: Option<String>,
pub node_type: Option<String>,
pub number_of_nodes: Option<i64>,
}
Fields§
§classic: Option<bool>
A boolean value indicating whether the resize operation is using the classic resize process. If you don't provide this parameter or set the value to false
, the resize type is elastic.
cluster_identifier: String
The unique identifier for the cluster to resize.
cluster_type: Option<String>
The new cluster type for the specified cluster.
node_type: Option<String>
The new node type for the nodes you are adding. If not specified, the cluster's current node type is used.
number_of_nodes: Option<i64>
The new number of nodes for the cluster.
Trait Implementations§
Source§impl Clone for ResizeClusterMessage
impl Clone for ResizeClusterMessage
Source§fn clone(&self) -> ResizeClusterMessage
fn clone(&self) -> ResizeClusterMessage
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 ResizeClusterMessage
impl Debug for ResizeClusterMessage
Source§impl Default for ResizeClusterMessage
impl Default for ResizeClusterMessage
Source§fn default() -> ResizeClusterMessage
fn default() -> ResizeClusterMessage
Returns the “default value” for a type. Read more
Source§impl PartialEq for ResizeClusterMessage
impl PartialEq for ResizeClusterMessage
impl StructuralPartialEq for ResizeClusterMessage
Auto Trait Implementations§
impl Freeze for ResizeClusterMessage
impl RefUnwindSafe for ResizeClusterMessage
impl Send for ResizeClusterMessage
impl Sync for ResizeClusterMessage
impl Unpin for ResizeClusterMessage
impl UnwindSafe for ResizeClusterMessage
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