Struct rusoto_elasticache::ListAllowedNodeTypeModificationsMessage[][src]

pub struct ListAllowedNodeTypeModificationsMessage {
    pub cache_cluster_id: Option<String>,
    pub replication_group_id: Option<String>,
}

The input parameters for the ListAllowedNodeTypeModifications operation.

Fields

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.

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

impl Default for ListAllowedNodeTypeModificationsMessage
[src]

Returns the "default value" for a type. Read more

impl Debug for ListAllowedNodeTypeModificationsMessage
[src]

Formats the value using the given formatter. Read more

impl Clone for ListAllowedNodeTypeModificationsMessage
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for ListAllowedNodeTypeModificationsMessage
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations