Struct aws_sdk_memorydb::client::Client  
source · [−]pub struct Client { /* private fields */ }Expand description
Client for Amazon MemoryDB
Client for invoking operations on Amazon MemoryDB. Each operation on Amazon MemoryDB is a method on this
this struct. .send() MUST be invoked on the generated operations to dispatch the request to the service.
Examples
Constructing a client and invoking an operation
    // create a shared configuration. This can be used & shared between multiple service clients.
    let shared_config = aws_config::load_from_env().await;
    let client = aws_sdk_memorydb::Client::new(&shared_config);
    // invoke an operation
    /* let rsp = client
        .<operation_name>().
        .<param>("some value")
        .send().await; */Constructing a client with custom configuration
use aws_config::RetryConfig;
let shared_config = aws_config::load_from_env().await;
let config = aws_sdk_memorydb::config::Builder::from(&shared_config)
  .retry_config(RetryConfig::disabled())
  .build();
let client = aws_sdk_memorydb::Client::from_conf(config);Implementations
sourceimpl Client
 
impl Client
sourcepub fn with_config(
    client: Client<DynConnector, DynMiddleware<DynConnector>>, 
    conf: Config
) -> Self
 
pub fn with_config(
    client: Client<DynConnector, DynMiddleware<DynConnector>>, 
    conf: Config
) -> Self
Creates a client with the given service configuration.
sourceimpl Client
 
impl Client
sourcepub fn batch_update_cluster(&self) -> BatchUpdateCluster
 
pub fn batch_update_cluster(&self) -> BatchUpdateCluster
Constructs a fluent builder for the BatchUpdateCluster operation.
- The fluent builder is configurable:
cluster_names(Vec<String>)/set_cluster_names(Option<Vec<String>>):The cluster names to apply the updates.
service_update(ServiceUpdateRequest)/set_service_update(Option<ServiceUpdateRequest>):The unique ID of the service update
 - On success, responds with 
BatchUpdateClusterOutputwith field(s):processed_clusters(Option<Vec<Cluster>>):The list of clusters that have been updated.
unprocessed_clusters(Option<Vec<UnprocessedCluster>>):The list of clusters where updates have not been applied.
 - On failure, responds with 
SdkError<BatchUpdateClusterError> 
sourcepub fn copy_snapshot(&self) -> CopySnapshot
 
pub fn copy_snapshot(&self) -> CopySnapshot
Constructs a fluent builder for the CopySnapshot operation.
- The fluent builder is configurable:
source_snapshot_name(impl Into<String>)/set_source_snapshot_name(Option<String>):The name of an existing snapshot from which to make a copy.
target_snapshot_name(impl Into<String>)/set_target_snapshot_name(Option<String>):A name for the snapshot copy. MemoryDB does not permit overwriting a snapshot, therefore this name must be unique within its context - MemoryDB or an Amazon S3 bucket if exporting.
target_bucket(impl Into<String>)/set_target_bucket(Option<String>):The Amazon S3 bucket to which the snapshot is exported. This parameter is used only when exporting a snapshot for external access. When using this parameter to export a snapshot, be sure MemoryDB has the needed permissions to this S3 bucket. For more information, see Step 2: Grant MemoryDB Access to Your Amazon S3 Bucket.
kms_key_id(impl Into<String>)/set_kms_key_id(Option<String>):The ID of the KMS key used to encrypt the target snapshot.
tags(Vec<Tag>)/set_tags(Option<Vec<Tag>>):A list of tags to be added to this resource. A tag is a key-value pair. A tag key must be accompanied by a tag value, although null is accepted.
 - On success, responds with 
CopySnapshotOutputwith field(s):snapshot(Option<Snapshot>):Represents a copy of an entire cluster as of the time when the snapshot was taken.
 - On failure, responds with 
SdkError<CopySnapshotError> 
sourcepub fn create_acl(&self) -> CreateACL
 
pub fn create_acl(&self) -> CreateACL
Constructs a fluent builder for the CreateACL operation.
- The fluent builder is configurable:
acl_name(impl Into<String>)/set_acl_name(Option<String>):The name of the Access Control List.
user_names(Vec<String>)/set_user_names(Option<Vec<String>>):The list of users that belong to the Access Control List.
tags(Vec<Tag>)/set_tags(Option<Vec<Tag>>):A list of tags to be added to this resource. A tag is a key-value pair. A tag key must be accompanied by a tag value, although null is accepted.
 - On success, responds with 
CreateAclOutputwith field(s):acl(Option<Acl>):The newly-created Access Control List.
 - On failure, responds with 
SdkError<CreateACLError> 
sourcepub fn create_cluster(&self) -> CreateCluster
 
pub fn create_cluster(&self) -> CreateCluster
Constructs a fluent builder for the CreateCluster operation.
- The fluent builder is configurable:
cluster_name(impl Into<String>)/set_cluster_name(Option<String>):The name of the cluster. This value must be unique as it also serves as the cluster identifier.
node_type(impl Into<String>)/set_node_type(Option<String>):The compute and memory capacity of the nodes in the cluster.
parameter_group_name(impl Into<String>)/set_parameter_group_name(Option<String>):The name of the parameter group associated with the cluster.
description(impl Into<String>)/set_description(Option<String>):An optional description of the cluster.
num_shards(i32)/set_num_shards(Option<i32>):The number of shards the cluster will contain. The default value is 1.
num_replicas_per_shard(i32)/set_num_replicas_per_shard(Option<i32>):The number of replicas to apply to each shard. The default value is 1. The maximum is 5.
subnet_group_name(impl Into<String>)/set_subnet_group_name(Option<String>):The name of the subnet group to be used for the cluster.
security_group_ids(Vec<String>)/set_security_group_ids(Option<Vec<String>>):A list of security group names to associate with this cluster.
maintenance_window(impl Into<String>)/set_maintenance_window(Option<String>):Specifies the weekly time range during which maintenance on the cluster is performed. It is specified as a range in the format
ddd:hh24:mi-ddd:hh24:mi(24H Clock UTC). The minimum maintenance window is a 60 minute period.port(i32)/set_port(Option<i32>):The port number on which each of the nodes accepts connections.
sns_topic_arn(impl Into<String>)/set_sns_topic_arn(Option<String>):The Amazon Resource Name (ARN) of the Amazon Simple Notification Service (SNS) topic to which notifications are sent.
tls_enabled(bool)/set_tls_enabled(Option<bool>):A flag to enable in-transit encryption on the cluster.
kms_key_id(impl Into<String>)/set_kms_key_id(Option<String>):The ID of the KMS key used to encrypt the cluster.
snapshot_arns(Vec<String>)/set_snapshot_arns(Option<Vec<String>>):A list of Amazon Resource Names (ARN) that uniquely identify the RDB snapshot files stored in Amazon S3. The snapshot files are used to populate the new cluster. The Amazon S3 object name in the ARN cannot contain any commas.
snapshot_name(impl Into<String>)/set_snapshot_name(Option<String>):The name of a snapshot from which to restore data into the new cluster. The snapshot status changes to restoring while the new cluster is being created.
snapshot_retention_limit(i32)/set_snapshot_retention_limit(Option<i32>):The number of days for which MemoryDB retains automatic snapshots before deleting them. For example, if you set SnapshotRetentionLimit to 5, a snapshot that was taken today is retained for 5 days before being deleted.
tags(Vec<Tag>)/set_tags(Option<Vec<Tag>>):A list of tags to be added to this resource. Tags are comma-separated key,value pairs (e.g. Key=myKey, Value=myKeyValue. You can include multiple tags as shown following: Key=myKey, Value=myKeyValue Key=mySecondKey, Value=mySecondKeyValue.
snapshot_window(impl Into<String>)/set_snapshot_window(Option<String>):The daily time range (in UTC) during which MemoryDB begins taking a daily snapshot of your shard.
Example: 05:00-09:00
If you do not specify this parameter, MemoryDB automatically chooses an appropriate time range.
acl_name(impl Into<String>)/set_acl_name(Option<String>):The name of the Access Control List to associate with the cluster.
engine_version(impl Into<String>)/set_engine_version(Option<String>):The version number of the Redis engine to be used for the cluster.
auto_minor_version_upgrade(bool)/set_auto_minor_version_upgrade(Option<bool>):When set to true, the cluster will automatically receive minor engine version upgrades after launch.
 - On success, responds with 
CreateClusterOutputwith field(s):cluster(Option<Cluster>):The newly-created cluster.
 - On failure, responds with 
SdkError<CreateClusterError> 
sourcepub fn create_parameter_group(&self) -> CreateParameterGroup
 
pub fn create_parameter_group(&self) -> CreateParameterGroup
Constructs a fluent builder for the CreateParameterGroup operation.
- The fluent builder is configurable:
parameter_group_name(impl Into<String>)/set_parameter_group_name(Option<String>):The name of the parameter group.
family(impl Into<String>)/set_family(Option<String>):The name of the parameter group family that the parameter group can be used with.
description(impl Into<String>)/set_description(Option<String>):An optional description of the parameter group.
tags(Vec<Tag>)/set_tags(Option<Vec<Tag>>):A list of tags to be added to this resource. A tag is a key-value pair. A tag key must be accompanied by a tag value, although null is accepted.
 - On success, responds with 
CreateParameterGroupOutputwith field(s):parameter_group(Option<ParameterGroup>):The newly-created parameter group.
 - On failure, responds with 
SdkError<CreateParameterGroupError> 
sourcepub fn create_snapshot(&self) -> CreateSnapshot
 
pub fn create_snapshot(&self) -> CreateSnapshot
Constructs a fluent builder for the CreateSnapshot operation.
- The fluent builder is configurable:
cluster_name(impl Into<String>)/set_cluster_name(Option<String>):The snapshot is created from this cluster.
snapshot_name(impl Into<String>)/set_snapshot_name(Option<String>):A name for the snapshot being created.
kms_key_id(impl Into<String>)/set_kms_key_id(Option<String>):The ID of the KMS key used to encrypt the snapshot.
tags(Vec<Tag>)/set_tags(Option<Vec<Tag>>):A list of tags to be added to this resource. A tag is a key-value pair. A tag key must be accompanied by a tag value, although null is accepted.
 - On success, responds with 
CreateSnapshotOutputwith field(s):snapshot(Option<Snapshot>):The newly-created snapshot.
 - On failure, responds with 
SdkError<CreateSnapshotError> 
sourcepub fn create_subnet_group(&self) -> CreateSubnetGroup
 
pub fn create_subnet_group(&self) -> CreateSubnetGroup
Constructs a fluent builder for the CreateSubnetGroup operation.
- The fluent builder is configurable:
subnet_group_name(impl Into<String>)/set_subnet_group_name(Option<String>):The name of the subnet group.
description(impl Into<String>)/set_description(Option<String>):A description for the subnet group.
subnet_ids(Vec<String>)/set_subnet_ids(Option<Vec<String>>):A list of VPC subnet IDs for the subnet group.
tags(Vec<Tag>)/set_tags(Option<Vec<Tag>>):A list of tags to be added to this resource. A tag is a key-value pair. A tag key must be accompanied by a tag value, although null is accepted.
 - On success, responds with 
CreateSubnetGroupOutputwith field(s):subnet_group(Option<SubnetGroup>):The newly-created subnet group
 - On failure, responds with 
SdkError<CreateSubnetGroupError> 
sourcepub fn create_user(&self) -> CreateUser
 
pub fn create_user(&self) -> CreateUser
Constructs a fluent builder for the CreateUser operation.
- The fluent builder is configurable:
user_name(impl Into<String>)/set_user_name(Option<String>):The name of the user. This value must be unique as it also serves as the user identifier.
authentication_mode(AuthenticationMode)/set_authentication_mode(Option<AuthenticationMode>):Denotes the user’s authentication properties, such as whether it requires a password to authenticate.
access_string(impl Into<String>)/set_access_string(Option<String>):Access permissions string used for this user.
tags(Vec<Tag>)/set_tags(Option<Vec<Tag>>):A list of tags to be added to this resource. A tag is a key-value pair. A tag key must be accompanied by a tag value, although null is accepted.
 - On success, responds with 
CreateUserOutputwith field(s):user(Option<User>):The newly-created user.
 - On failure, responds with 
SdkError<CreateUserError> 
sourcepub fn delete_acl(&self) -> DeleteACL
 
pub fn delete_acl(&self) -> DeleteACL
Constructs a fluent builder for the DeleteACL operation.
- The fluent builder is configurable:
acl_name(impl Into<String>)/set_acl_name(Option<String>):The name of the Access Control List to delete
 - On success, responds with 
DeleteAclOutputwith field(s):acl(Option<Acl>):The Access Control List object that has been deleted.
 - On failure, responds with 
SdkError<DeleteACLError> 
sourcepub fn delete_cluster(&self) -> DeleteCluster
 
pub fn delete_cluster(&self) -> DeleteCluster
Constructs a fluent builder for the DeleteCluster operation.
- The fluent builder is configurable:
cluster_name(impl Into<String>)/set_cluster_name(Option<String>):The name of the cluster to be deleted
final_snapshot_name(impl Into<String>)/set_final_snapshot_name(Option<String>):The user-supplied name of a final cluster snapshot. This is the unique name that identifies the snapshot. MemoryDB creates the snapshot, and then deletes the cluster immediately afterward.
 - On success, responds with 
DeleteClusterOutputwith field(s):cluster(Option<Cluster>):The cluster object that has been deleted
 - On failure, responds with 
SdkError<DeleteClusterError> 
sourcepub fn delete_parameter_group(&self) -> DeleteParameterGroup
 
pub fn delete_parameter_group(&self) -> DeleteParameterGroup
Constructs a fluent builder for the DeleteParameterGroup operation.
- The fluent builder is configurable:
parameter_group_name(impl Into<String>)/set_parameter_group_name(Option<String>):The name of the parameter group to delete.
 - On success, responds with 
DeleteParameterGroupOutputwith field(s):parameter_group(Option<ParameterGroup>):The parameter group that has been deleted.
 - On failure, responds with 
SdkError<DeleteParameterGroupError> 
sourcepub fn delete_snapshot(&self) -> DeleteSnapshot
 
pub fn delete_snapshot(&self) -> DeleteSnapshot
Constructs a fluent builder for the DeleteSnapshot operation.
- The fluent builder is configurable:
snapshot_name(impl Into<String>)/set_snapshot_name(Option<String>):The name of the snapshot to delete
 - On success, responds with 
DeleteSnapshotOutputwith field(s):snapshot(Option<Snapshot>):The snapshot object that has been deleted.
 - On failure, responds with 
SdkError<DeleteSnapshotError> 
sourcepub fn delete_subnet_group(&self) -> DeleteSubnetGroup
 
pub fn delete_subnet_group(&self) -> DeleteSubnetGroup
Constructs a fluent builder for the DeleteSubnetGroup operation.
- The fluent builder is configurable:
subnet_group_name(impl Into<String>)/set_subnet_group_name(Option<String>):The name of the subnet group to delete
 - On success, responds with 
DeleteSubnetGroupOutputwith field(s):subnet_group(Option<SubnetGroup>):The subnet group object that has been deleted.
 - On failure, responds with 
SdkError<DeleteSubnetGroupError> 
sourcepub fn delete_user(&self) -> DeleteUser
 
pub fn delete_user(&self) -> DeleteUser
Constructs a fluent builder for the DeleteUser operation.
- The fluent builder is configurable:
user_name(impl Into<String>)/set_user_name(Option<String>):The name of the user to delete
 - On success, responds with 
DeleteUserOutputwith field(s):user(Option<User>):The user object that has been deleted.
 - On failure, responds with 
SdkError<DeleteUserError> 
sourcepub fn describe_ac_ls(&self) -> DescribeACLs
 
pub fn describe_ac_ls(&self) -> DescribeACLs
Constructs a fluent builder for the DescribeACLs operation.
- The fluent builder is configurable:
acl_name(impl Into<String>)/set_acl_name(Option<String>):The name of the ACL
max_results(i32)/set_max_results(Option<i32>):The maximum number of records to include in the response. If more records exist than the specified MaxResults value, a token is included in the response so that the remaining results can be retrieved.
next_token(impl Into<String>)/set_next_token(Option<String>):An optional argument to pass in case the total number of records exceeds the value of MaxResults. If nextToken is returned, there are more results available. The value of nextToken is a unique pagination token for each page. Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged.
 - On success, responds with 
DescribeAcLsOutputwith field(s):ac_ls(Option<Vec<Acl>>):The list of ACLs
next_token(Option<String>):If nextToken is returned, there are more results available. The value of nextToken is a unique pagination token for each page. Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged.
 - On failure, responds with 
SdkError<DescribeACLsError> 
sourcepub fn describe_clusters(&self) -> DescribeClusters
 
pub fn describe_clusters(&self) -> DescribeClusters
Constructs a fluent builder for the DescribeClusters operation.
- The fluent builder is configurable:
cluster_name(impl Into<String>)/set_cluster_name(Option<String>):The name of the cluster
max_results(i32)/set_max_results(Option<i32>):The maximum number of records to include in the response. If more records exist than the specified MaxResults value, a token is included in the response so that the remaining results can be retrieved.
next_token(impl Into<String>)/set_next_token(Option<String>):An optional argument to pass in case the total number of records exceeds the value of MaxResults. If nextToken is returned, there are more results available. The value of nextToken is a unique pagination token for each page. Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged.
show_shard_details(bool)/set_show_shard_details(Option<bool>):An optional flag that can be included in the request to retrieve information about the individual shard(s).
 - On success, responds with 
DescribeClustersOutputwith field(s):next_token(Option<String>):An optional argument to pass in case the total number of records exceeds the value of MaxResults. If nextToken is returned, there are more results available. The value of nextToken is a unique pagination token for each page. Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged.
clusters(Option<Vec<Cluster>>):A list of clusters
 - On failure, responds with 
SdkError<DescribeClustersError> 
sourcepub fn describe_engine_versions(&self) -> DescribeEngineVersions
 
pub fn describe_engine_versions(&self) -> DescribeEngineVersions
Constructs a fluent builder for the DescribeEngineVersions operation.
- The fluent builder is configurable:
engine_version(impl Into<String>)/set_engine_version(Option<String>):The Redis engine version
parameter_group_family(impl Into<String>)/set_parameter_group_family(Option<String>):The name of a specific parameter group family to return details for.
max_results(i32)/set_max_results(Option<i32>):The maximum number of records to include in the response. If more records exist than the specified MaxResults value, a token is included in the response so that the remaining results can be retrieved.
next_token(impl Into<String>)/set_next_token(Option<String>):An optional argument to pass in case the total number of records exceeds the value of MaxResults. If nextToken is returned, there are more results available. The value of nextToken is a unique pagination token for each page. Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged.
default_only(bool)/set_default_only(bool):If true, specifies that only the default version of the specified engine or engine and major version combination is to be returned.
 - On success, responds with 
DescribeEngineVersionsOutputwith field(s):next_token(Option<String>):An optional argument to pass in case the total number of records exceeds the value of MaxResults. If nextToken is returned, there are more results available. The value of nextToken is a unique pagination token for each page. Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged.
engine_versions(Option<Vec<EngineVersionInfo>>):A list of engine version details. Each element in the list contains detailed information about one engine version.
 - On failure, responds with 
SdkError<DescribeEngineVersionsError> 
sourcepub fn describe_events(&self) -> DescribeEvents
 
pub fn describe_events(&self) -> DescribeEvents
Constructs a fluent builder for the DescribeEvents operation.
- The fluent builder is configurable:
source_name(impl Into<String>)/set_source_name(Option<String>):The identifier of the event source for which events are returned. If not specified, all sources are included in the response.
source_type(SourceType)/set_source_type(Option<SourceType>):The event source to retrieve events for. If no value is specified, all events are returned.
start_time(DateTime)/set_start_time(Option<DateTime>):The beginning of the time interval to retrieve events for, specified in ISO 8601 format. Example: 2017-03-30T07:03:49.555Z
end_time(DateTime)/set_end_time(Option<DateTime>):The end of the time interval for which to retrieve events, specified in ISO 8601 format. Example: 2017-03-30T07:03:49.555Z
duration(i32)/set_duration(Option<i32>):The number of minutes worth of events to retrieve.
max_results(i32)/set_max_results(Option<i32>):The maximum number of records to include in the response. If more records exist than the specified MaxResults value, a token is included in the response so that the remaining results can be retrieved.
next_token(impl Into<String>)/set_next_token(Option<String>):An optional argument to pass in case the total number of records exceeds the value of MaxResults. If nextToken is returned, there are more results available. The value of nextToken is a unique pagination token for each page. Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged.
 - On success, responds with 
DescribeEventsOutputwith field(s):next_token(Option<String>):An optional argument to pass in case the total number of records exceeds the value of MaxResults. If nextToken is returned, there are more results available. The value of nextToken is a unique pagination token for each page. Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged.
events(Option<Vec<Event>>):A list of events. Each element in the list contains detailed information about one event.
 - On failure, responds with 
SdkError<DescribeEventsError> 
sourcepub fn describe_parameter_groups(&self) -> DescribeParameterGroups
 
pub fn describe_parameter_groups(&self) -> DescribeParameterGroups
Constructs a fluent builder for the DescribeParameterGroups operation.
- The fluent builder is configurable:
parameter_group_name(impl Into<String>)/set_parameter_group_name(Option<String>):The name of a specific parameter group to return details for.
max_results(i32)/set_max_results(Option<i32>):The maximum number of records to include in the response. If more records exist than the specified MaxResults value, a token is included in the response so that the remaining results can be retrieved.
next_token(impl Into<String>)/set_next_token(Option<String>):An optional argument to pass in case the total number of records exceeds the value of MaxResults. If nextToken is returned, there are more results available. The value of nextToken is a unique pagination token for each page. Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged.
 - On success, responds with 
DescribeParameterGroupsOutputwith field(s):next_token(Option<String>):An optional argument to pass in case the total number of records exceeds the value of MaxResults. If nextToken is returned, there are more results available. The value of nextToken is a unique pagination token for each page. Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged.
parameter_groups(Option<Vec<ParameterGroup>>):A list of parameter groups. Each element in the list contains detailed information about one parameter group.
 - On failure, responds with 
SdkError<DescribeParameterGroupsError> 
sourcepub fn describe_parameters(&self) -> DescribeParameters
 
pub fn describe_parameters(&self) -> DescribeParameters
Constructs a fluent builder for the DescribeParameters operation.
- The fluent builder is configurable:
parameter_group_name(impl Into<String>)/set_parameter_group_name(Option<String>):he name of a specific parameter group to return details for.
max_results(i32)/set_max_results(Option<i32>):The maximum number of records to include in the response. If more records exist than the specified MaxResults value, a token is included in the response so that the remaining results can be retrieved.
next_token(impl Into<String>)/set_next_token(Option<String>):An optional argument to pass in case the total number of records exceeds the value of MaxResults. If nextToken is returned, there are more results available. The value of nextToken is a unique pagination token for each page. Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged.
 - On success, responds with 
DescribeParametersOutputwith field(s):next_token(Option<String>):An optional argument to pass in case the total number of records exceeds the value of MaxResults. If nextToken is returned, there are more results available. The value of nextToken is a unique pagination token for each page. Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged.
parameters(Option<Vec<Parameter>>):A list of parameters specific to a particular parameter group. Each element in the list contains detailed information about one parameter.
 - On failure, responds with 
SdkError<DescribeParametersError> 
sourcepub fn describe_service_updates(&self) -> DescribeServiceUpdates
 
pub fn describe_service_updates(&self) -> DescribeServiceUpdates
Constructs a fluent builder for the DescribeServiceUpdates operation.
- The fluent builder is configurable:
service_update_name(impl Into<String>)/set_service_update_name(Option<String>):The unique ID of the service update to describe.
cluster_names(Vec<String>)/set_cluster_names(Option<Vec<String>>):The list of cluster names to identify service updates to apply
status(Vec<ServiceUpdateStatus>)/set_status(Option<Vec<ServiceUpdateStatus>>):The status(es) of the service updates to filter on
max_results(i32)/set_max_results(Option<i32>):The maximum number of records to include in the response. If more records exist than the specified MaxResults value, a token is included in the response so that the remaining results can be retrieved.
next_token(impl Into<String>)/set_next_token(Option<String>):An optional argument to pass in case the total number of records exceeds the value of MaxResults. If nextToken is returned, there are more results available. The value of nextToken is a unique pagination token for each page. Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged.
 - On success, responds with 
DescribeServiceUpdatesOutputwith field(s):next_token(Option<String>):An optional argument to pass in case the total number of records exceeds the value of MaxResults. If nextToken is returned, there are more results available. The value of nextToken is a unique pagination token for each page. Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged.
service_updates(Option<Vec<ServiceUpdate>>):A list of service updates
 - On failure, responds with 
SdkError<DescribeServiceUpdatesError> 
sourcepub fn describe_snapshots(&self) -> DescribeSnapshots
 
pub fn describe_snapshots(&self) -> DescribeSnapshots
Constructs a fluent builder for the DescribeSnapshots operation.
- The fluent builder is configurable:
cluster_name(impl Into<String>)/set_cluster_name(Option<String>):A user-supplied cluster identifier. If this parameter is specified, only snapshots associated with that specific cluster are described.
snapshot_name(impl Into<String>)/set_snapshot_name(Option<String>):A user-supplied name of the snapshot. If this parameter is specified, only this named snapshot is described.
source(impl Into<String>)/set_source(Option<String>):If set to system, the output shows snapshots that were automatically created by MemoryDB. If set to user the output shows snapshots that were manually created. If omitted, the output shows both automatically and manually created snapshots.
next_token(impl Into<String>)/set_next_token(Option<String>):An optional argument to pass in case the total number of records exceeds the value of MaxResults. If nextToken is returned, there are more results available. The value of nextToken is a unique pagination token for each page. Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged.
max_results(i32)/set_max_results(Option<i32>):The maximum number of records to include in the response. If more records exist than the specified MaxResults value, a token is included in the response so that the remaining results can be retrieved.
show_detail(bool)/set_show_detail(Option<bool>):A Boolean value which if true, the shard configuration is included in the snapshot description.
 - On success, responds with 
DescribeSnapshotsOutputwith field(s):next_token(Option<String>):An optional argument to pass in case the total number of records exceeds the value of MaxResults. If nextToken is returned, there are more results available. The value of nextToken is a unique pagination token for each page. Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged.
snapshots(Option<Vec<Snapshot>>):A list of snapshots. Each item in the list contains detailed information about one snapshot.
 - On failure, responds with 
SdkError<DescribeSnapshotsError> 
sourcepub fn describe_subnet_groups(&self) -> DescribeSubnetGroups
 
pub fn describe_subnet_groups(&self) -> DescribeSubnetGroups
Constructs a fluent builder for the DescribeSubnetGroups operation.
- The fluent builder is configurable:
subnet_group_name(impl Into<String>)/set_subnet_group_name(Option<String>):The name of the subnet group to return details for.
max_results(i32)/set_max_results(Option<i32>):The maximum number of records to include in the response. If more records exist than the specified MaxResults value, a token is included in the response so that the remaining results can be retrieved.
next_token(impl Into<String>)/set_next_token(Option<String>):An optional argument to pass in case the total number of records exceeds the value of MaxResults. If nextToken is returned, there are more results available. The value of nextToken is a unique pagination token for each page. Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged.
 - On success, responds with 
DescribeSubnetGroupsOutputwith field(s):next_token(Option<String>):An optional argument to pass in case the total number of records exceeds the value of MaxResults. If nextToken is returned, there are more results available. The value of nextToken is a unique pagination token for each page. Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged.
subnet_groups(Option<Vec<SubnetGroup>>):A list of subnet groups. Each element in the list contains detailed information about one group.
 - On failure, responds with 
SdkError<DescribeSubnetGroupsError> 
sourcepub fn describe_users(&self) -> DescribeUsers
 
pub fn describe_users(&self) -> DescribeUsers
Constructs a fluent builder for the DescribeUsers operation.
- The fluent builder is configurable:
user_name(impl Into<String>)/set_user_name(Option<String>):The name of the user
filters(Vec<Filter>)/set_filters(Option<Vec<Filter>>):Filter to determine the list of users to return.
max_results(i32)/set_max_results(Option<i32>):The maximum number of records to include in the response. If more records exist than the specified MaxResults value, a token is included in the response so that the remaining results can be retrieved.
next_token(impl Into<String>)/set_next_token(Option<String>):An optional argument to pass in case the total number of records exceeds the value of MaxResults. If nextToken is returned, there are more results available. The value of nextToken is a unique pagination token for each page. Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged.
 - On success, responds with 
DescribeUsersOutputwith field(s):users(Option<Vec<User>>):A list of users.
next_token(Option<String>):An optional argument to pass in case the total number of records exceeds the value of MaxResults. If nextToken is returned, there are more results available. The value of nextToken is a unique pagination token for each page. Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged.
 - On failure, responds with 
SdkError<DescribeUsersError> 
sourcepub fn failover_shard(&self) -> FailoverShard
 
pub fn failover_shard(&self) -> FailoverShard
Constructs a fluent builder for the FailoverShard operation.
- The fluent builder is configurable:
cluster_name(impl Into<String>)/set_cluster_name(Option<String>):The cluster being failed over
shard_name(impl Into<String>)/set_shard_name(Option<String>):The name of the shard
 - On success, responds with 
FailoverShardOutputwith field(s):cluster(Option<Cluster>):The cluster being failed over
 - On failure, responds with 
SdkError<FailoverShardError> 
sourcepub fn list_allowed_node_type_updates(&self) -> ListAllowedNodeTypeUpdates
 
pub fn list_allowed_node_type_updates(&self) -> ListAllowedNodeTypeUpdates
Constructs a fluent builder for the ListAllowedNodeTypeUpdates operation.
- The fluent builder is configurable:
cluster_name(impl Into<String>)/set_cluster_name(Option<String>):The name of the cluster you want to scale. MemoryDB uses the cluster name to identify the current node type being used by this cluster, and from that to create a list of node types you can scale up to.
 - On success, responds with 
ListAllowedNodeTypeUpdatesOutputwith field(s):scale_up_node_types(Option<Vec<String>>):A list node types which you can use to scale up your cluster.
scale_down_node_types(Option<Vec<String>>):A list node types which you can use to scale down your cluster.
 - On failure, responds with 
SdkError<ListAllowedNodeTypeUpdatesError> 
Constructs a fluent builder for the ListTags operation.
- The fluent builder is configurable:
resource_arn(impl Into<String>)/set_resource_arn(Option<String>):The Amazon Resource Name (ARN) of the resource for which you want the list of tags
 - On success, responds with 
ListTagsOutputwith field(s):tag_list(Option<Vec<Tag>>):A list of tags as key-value pairs.
 - On failure, responds with 
SdkError<ListTagsError> 
sourcepub fn reset_parameter_group(&self) -> ResetParameterGroup
 
pub fn reset_parameter_group(&self) -> ResetParameterGroup
Constructs a fluent builder for the ResetParameterGroup operation.
- The fluent builder is configurable:
parameter_group_name(impl Into<String>)/set_parameter_group_name(Option<String>):The name of the parameter group to reset.
all_parameters(bool)/set_all_parameters(bool):If true, all parameters in the parameter group are reset to their default values. If false, only the parameters listed by ParameterNames are reset to their default values.
parameter_names(Vec<String>)/set_parameter_names(Option<Vec<String>>):An array of parameter names to reset to their default values. If AllParameters is true, do not use ParameterNames. If AllParameters is false, you must specify the name of at least one parameter to reset.
 - On success, responds with 
ResetParameterGroupOutputwith field(s):parameter_group(Option<ParameterGroup>):The parameter group being reset.
 - On failure, responds with 
SdkError<ResetParameterGroupError> 
sourcepub fn tag_resource(&self) -> TagResource
 
pub fn tag_resource(&self) -> TagResource
Constructs a fluent builder for the TagResource operation.
- The fluent builder is configurable:
resource_arn(impl Into<String>)/set_resource_arn(Option<String>):The Amazon Resource Name (ARN) of the resource to which the tags are to be added
tags(Vec<Tag>)/set_tags(Option<Vec<Tag>>):A list of tags to be added to this resource. A tag is a key-value pair. A tag key must be accompanied by a tag value, although null is accepted.
 - On success, responds with 
TagResourceOutputwith field(s):tag_list(Option<Vec<Tag>>):A list of tags as key-value pairs.
 - On failure, responds with 
SdkError<TagResourceError> 
sourcepub fn untag_resource(&self) -> UntagResource
 
pub fn untag_resource(&self) -> UntagResource
Constructs a fluent builder for the UntagResource operation.
- The fluent builder is configurable:
resource_arn(impl Into<String>)/set_resource_arn(Option<String>):The Amazon Resource Name (ARN) of the resource to which the tags are to be removed
tag_keys(Vec<String>)/set_tag_keys(Option<Vec<String>>):The list of keys of the tags that are to be removed
 - On success, responds with 
UntagResourceOutputwith field(s):tag_list(Option<Vec<Tag>>):The list of tags removed
 - On failure, responds with 
SdkError<UntagResourceError> 
sourcepub fn update_acl(&self) -> UpdateACL
 
pub fn update_acl(&self) -> UpdateACL
Constructs a fluent builder for the UpdateACL operation.
- The fluent builder is configurable:
acl_name(impl Into<String>)/set_acl_name(Option<String>):The name of the Access Control List
user_names_to_add(Vec<String>)/set_user_names_to_add(Option<Vec<String>>):The list of users to add to the Access Control List
user_names_to_remove(Vec<String>)/set_user_names_to_remove(Option<Vec<String>>):The list of users to remove from the Access Control List
 - On success, responds with 
UpdateAclOutputwith field(s):acl(Option<Acl>):The updated Access Control List
 - On failure, responds with 
SdkError<UpdateACLError> 
sourcepub fn update_cluster(&self) -> UpdateCluster
 
pub fn update_cluster(&self) -> UpdateCluster
Constructs a fluent builder for the UpdateCluster operation.
- The fluent builder is configurable:
cluster_name(impl Into<String>)/set_cluster_name(Option<String>):The name of the cluster to update
description(impl Into<String>)/set_description(Option<String>):The description of the cluster to update
security_group_ids(Vec<String>)/set_security_group_ids(Option<Vec<String>>):The SecurityGroupIds to update
maintenance_window(impl Into<String>)/set_maintenance_window(Option<String>):The maintenance window to update
sns_topic_arn(impl Into<String>)/set_sns_topic_arn(Option<String>):The SNS topic ARN to update
sns_topic_status(impl Into<String>)/set_sns_topic_status(Option<String>):The status of the Amazon SNS notification topic. Notifications are sent only if the status is active.
parameter_group_name(impl Into<String>)/set_parameter_group_name(Option<String>):The name of the parameter group to update
snapshot_window(impl Into<String>)/set_snapshot_window(Option<String>):The daily time range (in UTC) during which MemoryDB begins taking a daily snapshot of your cluster.
snapshot_retention_limit(i32)/set_snapshot_retention_limit(Option<i32>):The number of days for which MemoryDB retains automatic cluster snapshots before deleting them. For example, if you set SnapshotRetentionLimit to 5, a snapshot that was taken today is retained for 5 days before being deleted.
node_type(impl Into<String>)/set_node_type(Option<String>):A valid node type that you want to scale this cluster up or down to.
engine_version(impl Into<String>)/set_engine_version(Option<String>):The upgraded version of the engine to be run on the nodes. You can upgrade to a newer engine version, but you cannot downgrade to an earlier engine version. If you want to use an earlier engine version, you must delete the existing cluster and create it anew with the earlier engine version.
replica_configuration(ReplicaConfigurationRequest)/set_replica_configuration(Option<ReplicaConfigurationRequest>):The number of replicas that will reside in each shard
shard_configuration(ShardConfigurationRequest)/set_shard_configuration(Option<ShardConfigurationRequest>):The number of shards in the cluster
acl_name(impl Into<String>)/set_acl_name(Option<String>):The Access Control List that is associated with the cluster
 - On success, responds with 
UpdateClusterOutputwith field(s):cluster(Option<Cluster>):The updated cluster
 - On failure, responds with 
SdkError<UpdateClusterError> 
sourcepub fn update_parameter_group(&self) -> UpdateParameterGroup
 
pub fn update_parameter_group(&self) -> UpdateParameterGroup
Constructs a fluent builder for the UpdateParameterGroup operation.
- The fluent builder is configurable:
parameter_group_name(impl Into<String>)/set_parameter_group_name(Option<String>):The name of the parameter group to update.
parameter_name_values(Vec<ParameterNameValue>)/set_parameter_name_values(Option<Vec<ParameterNameValue>>):An array of parameter names and values for the parameter update. You must supply at least one parameter name and value; subsequent arguments are optional. A maximum of 20 parameters may be updated per request.
 - On success, responds with 
UpdateParameterGroupOutputwith field(s):parameter_group(Option<ParameterGroup>):The updated parameter group
 - On failure, responds with 
SdkError<UpdateParameterGroupError> 
sourcepub fn update_subnet_group(&self) -> UpdateSubnetGroup
 
pub fn update_subnet_group(&self) -> UpdateSubnetGroup
Constructs a fluent builder for the UpdateSubnetGroup operation.
- The fluent builder is configurable:
subnet_group_name(impl Into<String>)/set_subnet_group_name(Option<String>):The name of the subnet group
description(impl Into<String>)/set_description(Option<String>):A description of the subnet group
subnet_ids(Vec<String>)/set_subnet_ids(Option<Vec<String>>):The EC2 subnet IDs for the subnet group.
 - On success, responds with 
UpdateSubnetGroupOutputwith field(s):subnet_group(Option<SubnetGroup>):The updated subnet group
 - On failure, responds with 
SdkError<UpdateSubnetGroupError> 
sourcepub fn update_user(&self) -> UpdateUser
 
pub fn update_user(&self) -> UpdateUser
Constructs a fluent builder for the UpdateUser operation.
- The fluent builder is configurable:
user_name(impl Into<String>)/set_user_name(Option<String>):The name of the user
authentication_mode(AuthenticationMode)/set_authentication_mode(Option<AuthenticationMode>):Denotes the user’s authentication properties, such as whether it requires a password to authenticate.
access_string(impl Into<String>)/set_access_string(Option<String>):Access permissions string used for this user.
 - On success, responds with 
UpdateUserOutputwith field(s):user(Option<User>):The updated user
 - On failure, responds with 
SdkError<UpdateUserError> 
sourceimpl Client
 
impl Client
sourcepub fn from_conf_conn<C, E>(conf: Config, conn: C) -> Self where
    C: SmithyConnector<Error = E> + Send + 'static,
    E: Into<ConnectorError>, 
 
pub fn from_conf_conn<C, E>(conf: Config, conn: C) -> Self where
    C: SmithyConnector<Error = E> + Send + 'static,
    E: Into<ConnectorError>, 
Creates a client with the given service config and connector override.
Trait Implementations
sourceimpl From<Client<DynConnector, DynMiddleware<DynConnector>, Standard>> for Client
 
impl From<Client<DynConnector, DynMiddleware<DynConnector>, Standard>> for Client
sourcefn from(client: Client<DynConnector, DynMiddleware<DynConnector>>) -> Self
 
fn from(client: Client<DynConnector, DynMiddleware<DynConnector>>) -> Self
Converts to this type from the input type.
Auto Trait Implementations
impl !RefUnwindSafe for Client
impl Send for Client
impl Sync for Client
impl Unpin for Client
impl !UnwindSafe for Client
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
    T: ?Sized, 
 
impl<T> BorrowMut<T> for T where
    T: ?Sized, 
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
 
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
 
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
 
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
 
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
 
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
    S: Into<Dispatch>, 
 
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
    S: Into<Dispatch>, 
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
 
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more