pub struct ListAllowedNodeTypeModificationsMessage {
pub cache_cluster_id: Option<String>,
pub replication_group_id: Option<String>,
}
Expand description
The input parameters for the ListAllowedNodeTypeModifications
operation.
Fields§
§cache_cluster_id: Option<String>
The name of the cluster you want to scale up to a larger node instanced type. ElastiCache uses the cluster id to identify the current node type of this cluster and from that to create a list of node types you can scale up to.
You must provide a value for either the CacheClusterId
or the ReplicationGroupId
.
replication_group_id: Option<String>
The name of the replication group want to scale up to a larger node type. ElastiCache uses the replication group id to identify the current node type being used by this replication group, and from that to create a list of node types you can scale up to.
You must provide a value for either the CacheClusterId
or the ReplicationGroupId
.
Trait Implementations§
Source§impl Clone for ListAllowedNodeTypeModificationsMessage
impl Clone for ListAllowedNodeTypeModificationsMessage
Source§fn clone(&self) -> ListAllowedNodeTypeModificationsMessage
fn clone(&self) -> ListAllowedNodeTypeModificationsMessage
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 Default for ListAllowedNodeTypeModificationsMessage
impl Default for ListAllowedNodeTypeModificationsMessage
Source§fn default() -> ListAllowedNodeTypeModificationsMessage
fn default() -> ListAllowedNodeTypeModificationsMessage
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListAllowedNodeTypeModificationsMessage
impl PartialEq for ListAllowedNodeTypeModificationsMessage
Source§fn eq(&self, other: &ListAllowedNodeTypeModificationsMessage) -> bool
fn eq(&self, other: &ListAllowedNodeTypeModificationsMessage) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ListAllowedNodeTypeModificationsMessage
Auto Trait Implementations§
impl Freeze for ListAllowedNodeTypeModificationsMessage
impl RefUnwindSafe for ListAllowedNodeTypeModificationsMessage
impl Send for ListAllowedNodeTypeModificationsMessage
impl Sync for ListAllowedNodeTypeModificationsMessage
impl Unpin for ListAllowedNodeTypeModificationsMessage
impl UnwindSafe for ListAllowedNodeTypeModificationsMessage
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