NAME
Paws::ElastiCache::ListAllowedNodeTypeModifications - Arguments for method ListAllowedNodeTypeModifications on Paws::ElastiCache
DESCRIPTION
This class represents the parameters used for calling the method ListAllowedNodeTypeModifications on the Amazon ElastiCache service. Use the attributes of this class as arguments to method ListAllowedNodeTypeModifications.
You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to ListAllowedNodeTypeModifications.
SYNOPSIS
my $elasticache = Paws->service('ElastiCache');
# ListAllowedNodeTypeModifications
# Lists all available node types that you can scale your Redis cluster's or
# replication group's current node type up to.
my $AllowedNodeTypeModificationsMessage =
$elasticache->ListAllowedNodeTypeModifications(
'ReplicationGroupId' => 'myreplgroup' );
# Results:
my $ScaleUpModifications =
$AllowedNodeTypeModificationsMessage->ScaleUpModifications;
# Returns a L<Paws::ElastiCache::AllowedNodeTypeModificationsMessage> object.
# ListAllowedNodeTypeModifications
# Lists all available node types that you can scale your Redis cluster's or
# replication group's current node type up to.
my $AllowedNodeTypeModificationsMessage =
$elasticache->ListAllowedNodeTypeModifications(
'CacheClusterId' => 'mycluster' );
# Results:
my $ScaleUpModifications =
$AllowedNodeTypeModificationsMessage->ScaleUpModifications;
# Returns a L<Paws::ElastiCache::AllowedNodeTypeModificationsMessage> object.
Values for attributes that are native types (Int, String, Float, etc) can passed as-is (scalar values). Values for complex Types (objects) can be passed as a HashRef. The keys and values of the hashref will be used to instance the underlying object. For the AWS API documentation, see https://docs.aws.amazon.com/goto/WebAPI/elasticache/ListAllowedNodeTypeModifications
ATTRIBUTES
CacheClusterId => Str
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
.
ReplicationGroupId => Str
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
.
SEE ALSO
This class forms part of Paws, documenting arguments for method ListAllowedNodeTypeModifications in Paws::ElastiCache
BUGS and CONTRIBUTIONS
The source code is located here: https://github.com/pplu/aws-sdk-perl
Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues