Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

MemoryDB

import { MemoryDB } from "https://aws-api.deno.dev/v0.3/services/memorydb.ts?docs=full";
class MemoryDB {
constructor(apiFactory: client.ApiFactory);
async batchUpdateCluster(params: BatchUpdateClusterRequest, opts?: client.RequestOptions): Promise<BatchUpdateClusterResponse>;
async copySnapshot(params: CopySnapshotRequest, opts?: client.RequestOptions): Promise<CopySnapshotResponse>;
async createACL(params: CreateACLRequest, opts?: client.RequestOptions): Promise<CreateACLResponse>;
async createCluster(params: CreateClusterRequest, opts?: client.RequestOptions): Promise<CreateClusterResponse>;
async createParameterGroup(params: CreateParameterGroupRequest, opts?: client.RequestOptions): Promise<CreateParameterGroupResponse>;
async createSnapshot(params: CreateSnapshotRequest, opts?: client.RequestOptions): Promise<CreateSnapshotResponse>;
async createSubnetGroup(params: CreateSubnetGroupRequest, opts?: client.RequestOptions): Promise<CreateSubnetGroupResponse>;
async createUser(params: CreateUserRequest, opts?: client.RequestOptions): Promise<CreateUserResponse>;
async deleteACL(params: DeleteACLRequest, opts?: client.RequestOptions): Promise<DeleteACLResponse>;
async deleteCluster(params: DeleteClusterRequest, opts?: client.RequestOptions): Promise<DeleteClusterResponse>;
async deleteParameterGroup(params: DeleteParameterGroupRequest, opts?: client.RequestOptions): Promise<DeleteParameterGroupResponse>;
async deleteSnapshot(params: DeleteSnapshotRequest, opts?: client.RequestOptions): Promise<DeleteSnapshotResponse>;
async deleteSubnetGroup(params: DeleteSubnetGroupRequest, opts?: client.RequestOptions): Promise<DeleteSubnetGroupResponse>;
async deleteUser(params: DeleteUserRequest, opts?: client.RequestOptions): Promise<DeleteUserResponse>;
async describeACLs(params?: DescribeACLsRequest, opts?: client.RequestOptions): Promise<DescribeACLsResponse>;
async describeClusters(params?: DescribeClustersRequest, opts?: client.RequestOptions): Promise<DescribeClustersResponse>;
async describeEngineVersions(params?: DescribeEngineVersionsRequest, opts?: client.RequestOptions): Promise<DescribeEngineVersionsResponse>;
async describeEvents(params?: DescribeEventsRequest, opts?: client.RequestOptions): Promise<DescribeEventsResponse>;
async describeParameterGroups(params?: DescribeParameterGroupsRequest, opts?: client.RequestOptions): Promise<DescribeParameterGroupsResponse>;
async describeParameters(params: DescribeParametersRequest, opts?: client.RequestOptions): Promise<DescribeParametersResponse>;
async describeServiceUpdates(params?: DescribeServiceUpdatesRequest, opts?: client.RequestOptions): Promise<DescribeServiceUpdatesResponse>;
async describeSnapshots(params?: DescribeSnapshotsRequest, opts?: client.RequestOptions): Promise<DescribeSnapshotsResponse>;
async describeSubnetGroups(params?: DescribeSubnetGroupsRequest, opts?: client.RequestOptions): Promise<DescribeSubnetGroupsResponse>;
async describeUsers(params?: DescribeUsersRequest, opts?: client.RequestOptions): Promise<DescribeUsersResponse>;
async failoverShard(params: FailoverShardRequest, opts?: client.RequestOptions): Promise<FailoverShardResponse>;
async listAllowedNodeTypeUpdates(params: ListAllowedNodeTypeUpdatesRequest, opts?: client.RequestOptions): Promise<ListAllowedNodeTypeUpdatesResponse>;
async listTags(params: ListTagsRequest, opts?: client.RequestOptions): Promise<ListTagsResponse>;
async resetParameterGroup(params: ResetParameterGroupRequest, opts?: client.RequestOptions): Promise<ResetParameterGroupResponse>;
async tagResource(params: TagResourceRequest, opts?: client.RequestOptions): Promise<TagResourceResponse>;
async untagResource(params: UntagResourceRequest, opts?: client.RequestOptions): Promise<UntagResourceResponse>;
async updateACL(params: UpdateACLRequest, opts?: client.RequestOptions): Promise<UpdateACLResponse>;
async updateCluster(params: UpdateClusterRequest, opts?: client.RequestOptions): Promise<UpdateClusterResponse>;
async updateParameterGroup(params: UpdateParameterGroupRequest, opts?: client.RequestOptions): Promise<UpdateParameterGroupResponse>;
async updateSubnetGroup(params: UpdateSubnetGroupRequest, opts?: client.RequestOptions): Promise<UpdateSubnetGroupResponse>;
async updateUser(params: UpdateUserRequest, opts?: client.RequestOptions): Promise<UpdateUserResponse>;
 
static ApiMetadata: client.ApiMetadata;
}

§Constructors

§
new MemoryDB(apiFactory: client.ApiFactory)
[src]

§Methods

§

Apply the service update to a list of clusters supplied. For more information on service updates and applying them, see Applying the service updates.

§

Makes a copy of an existing snapshot.

§

Creates an Access Control List. For more information, see Authenticating users with Access Contol Lists (ACLs).

§

Creates a cluster. All nodes in the cluster run the same protocol-compliant engine software.

§

Creates a new MemoryDB parameter group. A parameter group is a collection of parameters and their values that are applied to all of the nodes in any cluster. For more information, see Configuring engine parameters using parameter groups.

§

Creates a copy of an entire cluster at a specific moment in time.

§

Creates a subnet group. A subnet group is a collection of subnets (typically private) that you can designate for your clusters running in an Amazon Virtual Private Cloud (VPC) environment. When you create a cluster in an Amazon VPC, you must specify a subnet group. MemoryDB uses that subnet group to choose a subnet and IP addresses within that subnet to associate with your nodes. For more information, see Subnets and subnet groups.

§

Creates a MemoryDB user. For more information, see Authenticating users with Access Contol Lists (ACLs).

§

Deletes an Access Control List. The ACL must first be disassociated from the cluster before it can be deleted. For more information, see Authenticating users with Access Contol Lists (ACLs).

§

Deletes a cluster. It also deletes all associated nodes and node endpoints

§

Deletes the specified parameter group. You cannot delete a parameter group if it is associated with any clusters. You cannot delete the default parameter groups in your account.

§

Deletes an existing snapshot. When you receive a successful response from this operation, MemoryDB immediately begins deleting the snapshot; you cannot cancel or revert this operation.

§

Deletes a subnet group. You cannot delete a default subnet group or one that is associated with any clusters.

§

Deletes a user. The user will be removed from all ACLs and in turn removed from all clusters.

§

Returns a list of ACLs

§

Returns information about all provisioned clusters if no cluster identifier is specified, or about a specific cluster if a cluster name is supplied.

§

Returns a list of the available Redis engine versions.

§

Returns events related to clusters, security groups, and parameter groups. You can obtain events specific to a particular cluster, security group, or parameter group by providing the name as a parameter. By default, only the events occurring within the last hour are returned; however, you can retrieve up to 14 days' worth of events if necessary.

§

Returns a list of parameter group descriptions. If a parameter group name is specified, the list contains only the descriptions for that group.

§

Returns the detailed parameter list for a particular parameter group.

§

Returns details of the service updates

§

Returns information about cluster snapshots. By default, DescribeSnapshots lists all of your snapshots; it can optionally describe a single snapshot, or just the snapshots associated with a particular cluster.

§

Returns a list of subnet group descriptions. If a subnet group name is specified, the list contains only the description of that group.

§

Returns a list of users.

§

Used to failover a shard

§

Lists all available node types that you can scale to from your cluster's current node type. When you use the UpdateCluster operation to scale your cluster, the value of the NodeType parameter must be one of the node types returned by this operation.

§
listTags(params: ListTagsRequest, opts?: client.RequestOptions): Promise<ListTagsResponse>
[src]

Lists all tags currently on a named resource. A tag is a key-value pair where the key and value are case-sensitive. You can use tags to categorize and track your MemoryDB resources. For more information, see Tagging your MemoryDB resources

§

Modifies the parameters of a parameter group to the engine or system default value. You can reset specific parameters by submitting a list of parameter names. To reset the entire parameter group, specify the AllParameters and ParameterGroupName parameters.

§

A tag is a key-value pair where the key and value are case-sensitive. You can use tags to categorize and track all your MemoryDB resources. When you add or remove tags on clusters, those actions will be replicated to all nodes in the cluster. For more information, see Resource-level permissions.

For example, you can use cost-allocation tags to your MemoryDB resources, Amazon generates a cost allocation report as a comma-separated value (CSV) file with your usage and costs aggregated by your tags. You can apply tags that represent business categories (such as cost centers, application names, or owners) to organize your costs across multiple services. For more information, see Using Cost Allocation Tags.

§

Use this operation to remove tags on a resource

§

Changes the list of users that belong to the Access Control List.

§

Modifies the settings for a cluster. You can use this operation to change one or more cluster configuration settings by specifying the settings and the new values.

§

Updates the parameters of a parameter group. You can modify up to 20 parameters in a single request by submitting a list parameter name and value pairs.

§

Updates a subnet group. For more information, see Updating a subnet group

§

Changes user password(s) and/or access string.

§Static Properties