[][src]Enum rusoto_elasticache::CreateReplicationGroupError

pub enum CreateReplicationGroupError {
    CacheClusterNotFoundFault(String),
    CacheParameterGroupNotFoundFault(String),
    CacheSecurityGroupNotFoundFault(String),
    CacheSubnetGroupNotFoundFault(String),
    ClusterQuotaForCustomerExceededFault(String),
    GlobalReplicationGroupNotFoundFault(String),
    InsufficientCacheClusterCapacityFault(String),
    InvalidCacheClusterStateFault(String),
    InvalidGlobalReplicationGroupStateFault(String),
    InvalidParameterCombination(String),
    InvalidParameterValue(String),
    InvalidUserGroupStateFault(String),
    InvalidVPCNetworkStateFault(String),
    NodeGroupsPerReplicationGroupQuotaExceededFault(String),
    NodeQuotaForClusterExceededFault(String),
    NodeQuotaForCustomerExceededFault(String),
    ReplicationGroupAlreadyExistsFault(String),
    TagQuotaPerResourceExceeded(String),
    UserGroupNotFoundFault(String),
}

Errors returned by CreateReplicationGroup

Variants

CacheClusterNotFoundFault(String)

The requested cluster ID does not refer to an existing cluster.

CacheParameterGroupNotFoundFault(String)

The requested cache parameter group name does not refer to an existing cache parameter group.

CacheSecurityGroupNotFoundFault(String)

The requested cache security group name does not refer to an existing cache security group.

CacheSubnetGroupNotFoundFault(String)

The requested cache subnet group name does not refer to an existing cache subnet group.

ClusterQuotaForCustomerExceededFault(String)

The request cannot be processed because it would exceed the allowed number of clusters per customer.

GlobalReplicationGroupNotFoundFault(String)

The Global Datastore does not exist

InsufficientCacheClusterCapacityFault(String)

The requested cache node type is not available in the specified Availability Zone. For more information, see InsufficientCacheClusterCapacity in the ElastiCache User Guide.

InvalidCacheClusterStateFault(String)

The requested cluster is not in the available state.

InvalidGlobalReplicationGroupStateFault(String)

The Global Datastore is not available or in primary-only state.

InvalidParameterCombination(String)

Two or more incompatible parameters were specified.

InvalidParameterValue(String)

The value for a parameter is invalid.

InvalidUserGroupStateFault(String)

The user group is not in an active state.

InvalidVPCNetworkStateFault(String)

The VPC network is in an invalid state.

NodeGroupsPerReplicationGroupQuotaExceededFault(String)

The request cannot be processed because it would exceed the maximum allowed number of node groups (shards) in a single replication group. The default maximum is 90

NodeQuotaForClusterExceededFault(String)

The request cannot be processed because it would exceed the allowed number of cache nodes in a single cluster.

NodeQuotaForCustomerExceededFault(String)

The request cannot be processed because it would exceed the allowed number of cache nodes per customer.

ReplicationGroupAlreadyExistsFault(String)

The specified replication group already exists.

TagQuotaPerResourceExceeded(String)

The request cannot be processed because it would cause the resource to have more than the allowed number of tags. The maximum number of tags permitted on a resource is 50.

UserGroupNotFoundFault(String)

The user group was not found or does not exist

Implementations

impl CreateReplicationGroupError[src]

Trait Implementations

impl Debug for CreateReplicationGroupError[src]

impl Display for CreateReplicationGroupError[src]

impl Error for CreateReplicationGroupError[src]

impl PartialEq<CreateReplicationGroupError> for CreateReplicationGroupError[src]

impl StructuralPartialEq for CreateReplicationGroupError[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.