Amazon.ElastiCache.AmazonElastiCacheClient.DeleteReplicationGroup C# (CSharp) Method

DeleteReplicationGroup() public method

Deletes an existing replication group. By default, this operation deletes the entire replication group, including the primary/primaries and all of the read replicas. If the replication group has only one primary, you can optionally delete only the read replicas, while retaining the primary by setting RetainPrimaryCluster=true.

When you receive a successful response from this operation, Amazon ElastiCache immediately begins deleting the selected resources; you cannot cancel or revert this operation.

This operation is valid for Redis only.

/// Two or more incompatible parameters were specified. /// /// The value for a parameter is invalid. /// /// The requested replication group is not in the available state. /// /// The specified replication group does not exist. /// /// You already have a snapshot with the given name. /// /// You attempted one of the following operations: /// ///
  • /// /// Creating a snapshot of a Redis cache cluster running on a cache.t1.micro /// cache node. /// ///
  • /// /// Creating a snapshot of a cache cluster that is running Memcached rather than Redis. /// ///
/// /// Neither of these are supported by ElastiCache. /// /// /// The request cannot be processed because it would exceed the maximum number of snapshots. ///
public DeleteReplicationGroup ( DeleteReplicationGroupRequest request ) : DeleteReplicationGroupResponse
request DeleteReplicationGroupRequest Container for the necessary parameters to execute the DeleteReplicationGroup service method.
return DeleteReplicationGroupResponse
        public DeleteReplicationGroupResponse DeleteReplicationGroup(DeleteReplicationGroupRequest request)
        {
            var marshaller = new DeleteReplicationGroupRequestMarshaller();
            var unmarshaller = DeleteReplicationGroupResponseUnmarshaller.Instance;

            return Invoke<DeleteReplicationGroupRequest,DeleteReplicationGroupResponse>(request, marshaller, unmarshaller);
        }
AmazonElastiCacheClient