Smaws_Client_DAX
DAX client library built on EIO.
val service : Smaws_Lib.Service.descriptor
type subnet = {
subnet_availability_zone : string option;
The Availability Zone (AZ) for the subnet.
*)subnet_identifier : string option;
The system-assigned identifier for the subnet.
*)}
Represents the subnet associated with a DAX cluster. This parameter refers to subnets defined in Amazon Virtual Private Cloud (Amazon VPC) and used with DAX.
type subnet_group = {
subnets : subnet list option;
A list of subnets associated with the subnet group.
*)vpc_id : string option;
The Amazon Virtual Private Cloud identifier (VPC ID) of the subnet group.
*)description : string option;
The description of the subnet group.
*)subnet_group_name : string option;
The name of the subnet group.
*)}
Represents the output of one of the following actions:
type update_subnet_group_response = {
subnet_group : subnet_group option;
The subnet group that has been modified.
*)}
The request cannot be processed because it would exceed the allowed number of subnets in a subnet group.
The requested subnet is being used by another subnet group.
The requested subnet group name does not refer to an existing subnet group.
The specified service linked role (SLR) was not found.
type parameter_group = {
description : string option;
A description of the parameter group.
*)parameter_group_name : string option;
The name of the parameter group.
*)}
A named set of parameters that are applied to all of the nodes in a DAX cluster.
type update_parameter_group_response = {
parameter_group : parameter_group option;
The parameter group that has been modified.
*)}
type parameter_name_value = {
parameter_value : string option;
The value of the parameter.
*)parameter_name : string option;
The name of the parameter.
*)}
An individual DAX parameter.
type update_parameter_group_request = {
parameter_name_values : parameter_name_value list;
An array of name-value pairs for the parameters in the group. Each element in the array represents a single parameter.
record-ttl-millis
and query-ttl-millis
are the only supported parameter names. For more details, see Configuring TTL Settings.
parameter_group_name : string;
The name of the parameter group.
*)}
The specified parameter group does not exist.
The value for a parameter is invalid.
One or more parameters in a parameter group are in an invalid state.
Two or more incompatible parameters were specified.
type endpoint = {
ur_l : string option;
The URL that applications should use to connect to the endpoint. The default ports are 8111 for the "dax" protocol and 9111 for the "daxs" protocol.
*)port : int option;
The port number that applications should use to connect to the endpoint.
*)address : string option;
The DNS hostname of the endpoint.
*)}
Represents the information required for client programs to connect to the endpoint for a DAX cluster.
type node = {
parameter_group_status : string option;
The status of the parameter group associated with this node. For example, in-sync
.
node_status : string option;
The current status of the node. For example: available
.
availability_zone : string option;
The Availability Zone (AZ) in which the node has been deployed.
*)node_create_time : float option;
The date and time (in UNIX epoch format) when the node was launched.
*)endpoint : endpoint option;
The endpoint for the node, consisting of a DNS name and a port number. Client applications can connect directly to a node endpoint, if desired (as an alternative to allowing DAX client software to intelligently route requests and responses to nodes in the DAX cluster.
*)node_id : string option;
A system-generated identifier for the node.
*)}
Represents an individual node within a DAX cluster.
type notification_configuration = {
topic_status : string option;
The current state of the topic. A value of “active” means that notifications will be sent to the topic. A value of “inactive” means that notifications will not be sent to the topic.
*)topic_arn : string option;
The Amazon Resource Name (ARN) that identifies the topic.
*)}
Describes a notification topic and its status. Notification topics are used for publishing DAX events to subscribers using Amazon Simple Notification Service (SNS).
type security_group_membership = {
status : string option;
The status of this security group.
*)security_group_identifier : string option;
The unique ID for this security group.
*)}
An individual VPC security group and its status.
type parameter_group_status = {
node_ids_to_reboot : string list option;
The node IDs of one or more nodes to be rebooted.
*)parameter_apply_status : string option;
The status of parameter updates.
*)parameter_group_name : string option;
The name of the parameter group.
*)}
The status of a parameter group.
type sse_description = {
status : sse_status option;
The current state of server-side encryption:
ENABLING
- Server-side encryption is being enabled.ENABLED
- Server-side encryption is enabled.DISABLING
- Server-side encryption is being disabled.DISABLED
- Server-side encryption is disabled.}
The description of the server-side encryption status on the specified DAX cluster.
type cluster = {
cluster_endpoint_encryption_type : cluster_endpoint_encryption_type option;
The type of encryption supported by the cluster's endpoint. Values are:
NONE
for no encryption
TLS
for Transport Layer Security
sse_description : sse_description option;
The description of the server-side encryption status on the specified DAX cluster.
*)parameter_group : parameter_group_status option;
The parameter group being used by nodes in the cluster.
*)iam_role_arn : string option;
A valid Amazon Resource Name (ARN) that identifies an IAM role. At runtime, DAX will assume this role and use the role's permissions to access DynamoDB on your behalf.
*)security_groups : security_group_membership list option;
A list of security groups, and the status of each, for the nodes in the cluster.
*)subnet_group : string option;
The subnet group where the DAX cluster is running.
*)notification_configuration : notification_configuration option;
Describes a notification topic and its status. Notification topics are used for publishing DAX events to subscribers using Amazon Simple Notification Service (SNS).
*)preferred_maintenance_window : string option;
A range of time when maintenance of DAX cluster software will be performed. For example: sun:01:00-sun:09:00
. Cluster maintenance normally takes less than 30 minutes, and is performed automatically within the maintenance window.
nodes : node list option;
A list of nodes that are currently in the cluster.
*)node_ids_to_remove : string list option;
A list of nodes to be removed from the cluster.
*)cluster_discovery_endpoint : endpoint option;
The endpoint for this DAX cluster, consisting of a DNS name, a port number, and a URL. Applications should use the URL to configure the DAX client to find their cluster.
*)status : string option;
The current status of the cluster.
*)node_type : string option;
The node type for the nodes in the cluster. (All nodes in a DAX cluster are of the same type.)
*)active_nodes : int option;
The number of nodes in the cluster that are active (i.e., capable of serving requests).
*)total_nodes : int option;
The total number of nodes in the cluster.
*)cluster_arn : string option;
The Amazon Resource Name (ARN) that uniquely identifies the cluster.
*)description : string option;
The description of the cluster.
*)cluster_name : string option;
The name of the DAX cluster.
*)}
Contains all of the attributes of a specific DAX cluster.
type update_cluster_response = {
cluster : cluster option;
A description of the DAX cluster, after it has been modified.
*)}
type update_cluster_request = {
security_group_ids : string list option;
A list of user-specified security group IDs to be assigned to each node in the DAX cluster. If this parameter is not specified, DAX assigns the default VPC security group to each node.
*)parameter_group_name : string option;
The name of a parameter group for this cluster.
*)notification_topic_status : string option;
The current state of the topic. A value of “active” means that notifications will be sent to the topic. A value of “inactive” means that notifications will not be sent to the topic.
*)notification_topic_arn : string option;
The Amazon Resource Name (ARN) that identifies the topic.
*)preferred_maintenance_window : string option;
A range of time when maintenance of DAX cluster software will be performed. For example: sun:01:00-sun:09:00
. Cluster maintenance normally takes less than 30 minutes, and is performed automatically within the maintenance window.
description : string option;
A description of the changes being made to the cluster.
*)cluster_name : string;
The name of the DAX cluster to be modified.
*)}
The requested DAX cluster is not in the available state.
The requested cluster ID does not refer to an existing DAX cluster.
type tag = {
value : string option;
The value of the tag. Tag values are case-sensitive and can be null.
*)key : string option;
The key for the tag. Tag keys are case sensitive. Every DAX cluster can only have one tag with the same key. If you try to add an existing tag (same key), the existing tag value will be updated to the new value.
*)}
A description of a tag. Every tag is a key-value pair. You can add up to 50 tags to a single DAX cluster.
AWS-assigned tag names and values are automatically assigned the aws:
prefix, which the user cannot assign. AWS-assigned tag names do not count towards the tag limit of 50. User-assigned tag names have the prefix user:
.
You cannot backdate the application of a tag.
The Amazon Resource Name (ARN) supplied in the request is not valid.
You have exceeded the maximum number of tags for this DAX cluster.
The request cannot be processed because it would exceed the allowed number of subnets in a subnet group.
The specified subnet group is currently in use.
The specified subnet group already exists.
You have reached the maximum number of x509 certificates that can be created for encrypted clusters in a 30 day period. Contact AWS customer support to discuss options for continuing to create encrypted clusters.
type sse_specification = {
enabled : bool;
Indicates whether server-side encryption is enabled (true) or disabled (false) on the cluster.
*)}
Represents the settings used to enable server-side encryption.
type reboot_node_response = {
cluster : cluster option;
A description of the DAX cluster after a node has been rebooted.
*)}
None of the nodes in the cluster have the given node ID.
type node_type_specific_value = {
value : string option;
The parameter value for this node type.
*)node_type : string option;
A node type to which the parameter value applies.
*)}
Represents a parameter value that is applicable to a particular node type.
type parameter = {
change_type : change_type option;
The conditions under which changes to this parameter can be applied. For example, requires-reboot
indicates that a new value for this parameter will only take effect if a node is rebooted.
is_modifiable : is_modifiable option;
Whether the customer is allowed to modify the parameter.
*)allowed_values : string option;
A range of values within which the parameter can be set.
*)data_type : string option;
The data type of the parameter. For example, integer
:
source : string option;
How the parameter is defined. For example, system
denotes a system-defined parameter.
description : string option;
A description of the parameter
*)node_type_specific_values : node_type_specific_value list option;
A list of node types, and specific parameter values for each node.
*)parameter_value : string option;
The value for the parameter.
*)parameter_type : parameter_type option;
Determines whether the parameter can be applied to any nodes, or only nodes of a particular type.
*)parameter_name : string option;
The name of the parameter.
*)}
Describes an individual setting that controls some aspect of DAX behavior.
You have attempted to exceed the maximum number of parameter groups.
The specified parameter group already exists.
You have attempted to exceed the maximum number of nodes for your AWS account.
You have attempted to exceed the maximum number of nodes for a DAX cluster.
The VPC network is in an invalid state.
There are not enough system resources to create the cluster you requested (or to resize an already-existing cluster).
type increase_replication_factor_response = {
cluster : cluster option;
A description of the DAX cluster. with its new replication factor.
*)}
type increase_replication_factor_request = {
availability_zones : string list option;
The Availability Zones (AZs) in which the cluster nodes will be created. All nodes belonging to the cluster are placed in these Availability Zones. Use this parameter if you want to distribute the nodes across multiple AZs.
*)new_replication_factor : int;
The new number of nodes for the DAX cluster.
*)cluster_name : string;
The name of the DAX cluster that will receive additional nodes.
*)}
type event = {
date : float option;
The date and time when the event occurred.
*)message : string option;
A user-defined message associated with the event.
*)source_type : source_type option;
Specifies the origin of this event - a cluster, a parameter group, a node ID, etc.
*)source_name : string option;
The source of the event. For example, if the event occurred at the node level, the source would be the node ID.
*)}
Represents a single occurrence of something interesting within the system. Some examples of events are creating a DAX cluster, adding or removing a node, or rebooting a node.
type describe_subnet_groups_response = {
subnet_groups : subnet_group list option;
An array of subnet groups. Each element in the array represents a single subnet group.
*)next_token : string option;
Provides an identifier to allow retrieval of paginated results.
*)}
type describe_subnet_groups_request = {
next_token : string option;
An optional token returned from a prior request. Use this token for pagination of results from this action. If this parameter is specified, the response includes only results beyond the token, up to the value specified by MaxResults
.
max_results : int option;
The maximum number of results to include in the response. If more results exist than the specified MaxResults
value, a token is included in the response so that the remaining results can be retrieved.
The value for MaxResults
must be between 20 and 100.
subnet_group_names : string list option;
The name of the subnet group.
*)}
type describe_parameters_response = {
parameters : parameter list option;
A list of parameters within a parameter group. Each element in the list represents one parameter.
*)next_token : string option;
Provides an identifier to allow retrieval of paginated results.
*)}
type describe_parameters_request = {
next_token : string option;
An optional token returned from a prior request. Use this token for pagination of results from this action. If this parameter is specified, the response includes only results beyond the token, up to the value specified by MaxResults
.
max_results : int option;
The maximum number of results to include in the response. If more results exist than the specified MaxResults
value, a token is included in the response so that the remaining results can be retrieved.
The value for MaxResults
must be between 20 and 100.
source : string option;
How the parameter is defined. For example, system
denotes a system-defined parameter.
parameter_group_name : string;
The name of the parameter group.
*)}
type describe_parameter_groups_response = {
parameter_groups : parameter_group list option;
An array of parameter groups. Each element in the array represents one parameter group.
*)next_token : string option;
Provides an identifier to allow retrieval of paginated results.
*)}
type describe_parameter_groups_request = {
next_token : string option;
An optional token returned from a prior request. Use this token for pagination of results from this action. If this parameter is specified, the response includes only results beyond the token, up to the value specified by MaxResults
.
max_results : int option;
The maximum number of results to include in the response. If more results exist than the specified MaxResults
value, a token is included in the response so that the remaining results can be retrieved.
The value for MaxResults
must be between 20 and 100.
parameter_group_names : string list option;
The names of the parameter groups.
*)}
type describe_events_response = {
events : event list option;
An array of events. Each element in the array represents one event.
*)next_token : string option;
Provides an identifier to allow retrieval of paginated results.
*)}
type describe_events_request = {
next_token : string option;
An optional token returned from a prior request. Use this token for pagination of results from this action. If this parameter is specified, the response includes only results beyond the token, up to the value specified by MaxResults
.
max_results : int option;
The maximum number of results to include in the response. If more results exist than the specified MaxResults
value, a token is included in the response so that the remaining results can be retrieved.
The value for MaxResults
must be between 20 and 100.
duration : int option;
The number of minutes' worth of events to retrieve.
*)end_time : float option;
The end of the time interval for which to retrieve events, specified in ISO 8601 format.
*)start_time : float option;
The beginning of the time interval to retrieve events for, specified in ISO 8601 format.
*)source_type : source_type option;
The event source to retrieve events for. If no value is specified, all events are returned.
*)source_name : string option;
The identifier of the event source for which events will be returned. If not specified, then all sources are included in the response.
*)}
type describe_default_parameters_response = {
parameters : parameter list option;
A list of parameters. Each element in the list represents one parameter.
*)next_token : string option;
Provides an identifier to allow retrieval of paginated results.
*)}
type describe_default_parameters_request = {
next_token : string option;
An optional token returned from a prior request. Use this token for pagination of results from this action. If this parameter is specified, the response includes only results beyond the token, up to the value specified by MaxResults
.
max_results : int option;
The maximum number of results to include in the response. If more results exist than the specified MaxResults
value, a token is included in the response so that the remaining results can be retrieved.
The value for MaxResults
must be between 20 and 100.
}
type describe_clusters_response = {
clusters : cluster list option;
The descriptions of your DAX clusters, in response to a DescribeClusters request.
*)next_token : string option;
Provides an identifier to allow retrieval of paginated results.
*)}
type describe_clusters_request = {
next_token : string option;
An optional token returned from a prior request. Use this token for pagination of results from this action. If this parameter is specified, the response includes only results beyond the token, up to the value specified by MaxResults
.
max_results : int option;
The maximum number of results to include in the response. If more results exist than the specified MaxResults
value, a token is included in the response so that the remaining results can be retrieved.
The value for MaxResults
must be between 20 and 100.
cluster_names : string list option;
The names of the DAX clusters being described.
*)}
type delete_cluster_response = {
cluster : cluster option;
A description of the DAX cluster that is being deleted.
*)}
type decrease_replication_factor_response = {
cluster : cluster option;
A description of the DAX cluster, after you have decreased its replication factor.
*)}
type decrease_replication_factor_request = {
node_ids_to_remove : string list option;
The unique identifiers of the nodes to be removed from the cluster.
*)availability_zones : string list option;
The Availability Zone(s) from which to remove nodes.
*)new_replication_factor : int;
The new number of nodes for the DAX cluster.
*)cluster_name : string;
The name of the DAX cluster from which you want to remove nodes.
*)}
type create_subnet_group_response = {
subnet_group : subnet_group option;
Represents the output of a CreateSubnetGroup operation.
*)}
type create_parameter_group_response = {
parameter_group : parameter_group option;
Represents the output of a CreateParameterGroup action.
*)}
type create_cluster_response = {
cluster : cluster option;
A description of the DAX cluster that you have created.
*)}
type create_cluster_request = {
cluster_endpoint_encryption_type : cluster_endpoint_encryption_type option;
The type of encryption the cluster's endpoint should support. Values are:
NONE
for no encryptionTLS
for Transport Layer Securitysse_specification : sse_specification option;
Represents the settings used to enable server-side encryption on the cluster.
*)parameter_group_name : string option;
The parameter group to be associated with the DAX cluster.
*)iam_role_arn : string;
A valid Amazon Resource Name (ARN) that identifies an IAM role. At runtime, DAX will assume this role and use the role's permissions to access DynamoDB on your behalf.
*)notification_topic_arn : string option;
The Amazon Resource Name (ARN) of the Amazon SNS topic to which notifications will be sent.
The Amazon SNS topic owner must be same as the DAX cluster owner.
*)preferred_maintenance_window : string option;
Specifies the weekly time range during which maintenance on the DAX 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. Valid values for ddd
are:
sun
mon
tue
wed
thu
fri
sat
Example: sun:05:00-sun:09:00
If you don't specify a preferred maintenance window when you create or modify a cache cluster, DAX assigns a 60-minute maintenance window on a randomly selected day of the week.
*)security_group_ids : string list option;
A list of security group IDs to be assigned to each node in the DAX cluster. (Each of the security group ID is system-generated.)
If this parameter is not specified, DAX assigns the default VPC security group to each node.
*)subnet_group_name : string option;
The name of the subnet group to be used for the replication group.
DAX clusters can only run in an Amazon VPC environment. All of the subnets that you specify in a subnet group must exist in the same VPC.
*)availability_zones : string list option;
The Availability Zones (AZs) in which the cluster nodes will reside after the cluster has been created or updated. If provided, the length of this list must equal the ReplicationFactor
parameter. If you omit this parameter, DAX will spread the nodes across Availability Zones for the highest availability.
replication_factor : int;
The number of nodes in the DAX cluster. A replication factor of 1 will create a single-node cluster, without any read replicas. For additional fault tolerance, you can create a multiple node cluster with one or more read replicas. To do this, set ReplicationFactor
to a number between 3 (one primary and two read replicas) and 10 (one primary and nine read replicas). If the AvailabilityZones
parameter is provided, its length must equal the ReplicationFactor
.
AWS recommends that you have at least two read replicas per cluster.
*)description : string option;
A description of the cluster.
*)node_type : string;
The compute and memory capacity of the nodes in the cluster.
*)cluster_name : string;
The cluster identifier. This parameter is stored as a lowercase string.
Constraints:
}
You have attempted to exceed the maximum number of DAX clusters for your AWS account.
You already have a DAX cluster with the given identifier.
DAX is a managed caching service engineered for Amazon DynamoDB. DAX dramatically speeds up database reads by caching frequently-accessed data from DynamoDB, so applications can access that data with sub-millisecond latency. You can create a DAX cluster easily, using the AWS Management Console. With a few simple modifications to your code, your application can begin taking advantage of the DAX cluster and realize significant improvements in read performance.
type base_document = Smaws_Lib.Json.t
val make_subnet :
?subnet_availability_zone:string ->
?subnet_identifier:string ->
unit ->
subnet
Create a subnet
type
val make_subnet_group :
?subnets:subnet list ->
?vpc_id:string ->
?description:string ->
?subnet_group_name:string ->
unit ->
subnet_group
Create a subnet_group
type
val make_update_subnet_group_response :
?subnet_group:subnet_group ->
unit ->
update_subnet_group_response
Create a update_subnet_group_response
type
val make_update_subnet_group_request :
?subnet_ids:string list ->
?description:string ->
subnet_group_name:string ->
unit ->
update_subnet_group_request
Create a update_subnet_group_request
type
val make_parameter_group :
?description:string ->
?parameter_group_name:string ->
unit ->
parameter_group
Create a parameter_group
type
val make_update_parameter_group_response :
?parameter_group:parameter_group ->
unit ->
update_parameter_group_response
Create a update_parameter_group_response
type
val make_parameter_name_value :
?parameter_value:string ->
?parameter_name:string ->
unit ->
parameter_name_value
Create a parameter_name_value
type
val make_update_parameter_group_request :
parameter_name_values:parameter_name_value list ->
parameter_group_name:string ->
unit ->
update_parameter_group_request
Create a update_parameter_group_request
type
val make_endpoint :
?ur_l:string ->
?port:int ->
?address:string ->
unit ->
endpoint
Create a endpoint
type
val make_node :
?parameter_group_status:string ->
?node_status:string ->
?availability_zone:string ->
?node_create_time:float ->
?endpoint:endpoint ->
?node_id:string ->
unit ->
node
Create a node
type
val make_notification_configuration :
?topic_status:string ->
?topic_arn:string ->
unit ->
notification_configuration
Create a notification_configuration
type
val make_security_group_membership :
?status:string ->
?security_group_identifier:string ->
unit ->
security_group_membership
Create a security_group_membership
type
val make_parameter_group_status :
?node_ids_to_reboot:string list ->
?parameter_apply_status:string ->
?parameter_group_name:string ->
unit ->
parameter_group_status
Create a parameter_group_status
type
val make_sse_description : ?status:sse_status -> unit -> sse_description
Create a sse_description
type
val make_cluster :
?cluster_endpoint_encryption_type:cluster_endpoint_encryption_type ->
?sse_description:sse_description ->
?parameter_group:parameter_group_status ->
?iam_role_arn:string ->
?security_groups:security_group_membership list ->
?subnet_group:string ->
?notification_configuration:notification_configuration ->
?preferred_maintenance_window:string ->
?nodes:node list ->
?node_ids_to_remove:string list ->
?cluster_discovery_endpoint:endpoint ->
?status:string ->
?node_type:string ->
?active_nodes:int ->
?total_nodes:int ->
?cluster_arn:string ->
?description:string ->
?cluster_name:string ->
unit ->
cluster
Create a cluster
type
val make_update_cluster_response :
?cluster:cluster ->
unit ->
update_cluster_response
Create a update_cluster_response
type
val make_update_cluster_request :
?security_group_ids:string list ->
?parameter_group_name:string ->
?notification_topic_status:string ->
?notification_topic_arn:string ->
?preferred_maintenance_window:string ->
?description:string ->
cluster_name:string ->
unit ->
update_cluster_request
Create a update_cluster_request
type
val make_untag_resource_response :
?tags:tag list ->
unit ->
untag_resource_response
Create a untag_resource_response
type
val make_untag_resource_request :
tag_keys:string list ->
resource_name:string ->
unit ->
untag_resource_request
Create a untag_resource_request
type
val make_tag_resource_response :
?tags:tag list ->
unit ->
tag_resource_response
Create a tag_resource_response
type
val make_tag_resource_request :
tags:tag list ->
resource_name:string ->
unit ->
tag_resource_request
Create a tag_resource_request
type
val make_sse_specification : enabled:bool -> unit -> sse_specification
Create a sse_specification
type
val make_reboot_node_response :
?cluster:cluster ->
unit ->
reboot_node_response
Create a reboot_node_response
type
val make_reboot_node_request :
node_id:string ->
cluster_name:string ->
unit ->
reboot_node_request
Create a reboot_node_request
type
val make_node_type_specific_value :
?value:string ->
?node_type:string ->
unit ->
node_type_specific_value
Create a node_type_specific_value
type
val make_parameter :
?change_type:change_type ->
?is_modifiable:is_modifiable ->
?allowed_values:string ->
?data_type:string ->
?source:string ->
?description:string ->
?node_type_specific_values:node_type_specific_value list ->
?parameter_value:string ->
?parameter_type:parameter_type ->
?parameter_name:string ->
unit ->
parameter
Create a parameter
type
val make_list_tags_response :
?next_token:string ->
?tags:tag list ->
unit ->
list_tags_response
Create a list_tags_response
type
val make_list_tags_request :
?next_token:string ->
resource_name:string ->
unit ->
list_tags_request
Create a list_tags_request
type
val make_increase_replication_factor_response :
?cluster:cluster ->
unit ->
increase_replication_factor_response
Create a increase_replication_factor_response
type
val make_increase_replication_factor_request :
?availability_zones:string list ->
new_replication_factor:int ->
cluster_name:string ->
unit ->
increase_replication_factor_request
Create a increase_replication_factor_request
type
val make_event :
?date:float ->
?message:string ->
?source_type:source_type ->
?source_name:string ->
unit ->
event
Create a event
type
val make_describe_subnet_groups_response :
?subnet_groups:subnet_group list ->
?next_token:string ->
unit ->
describe_subnet_groups_response
Create a describe_subnet_groups_response
type
val make_describe_subnet_groups_request :
?next_token:string ->
?max_results:int ->
?subnet_group_names:string list ->
unit ->
describe_subnet_groups_request
Create a describe_subnet_groups_request
type
val make_describe_parameters_response :
?parameters:parameter list ->
?next_token:string ->
unit ->
describe_parameters_response
Create a describe_parameters_response
type
val make_describe_parameters_request :
?next_token:string ->
?max_results:int ->
?source:string ->
parameter_group_name:string ->
unit ->
describe_parameters_request
Create a describe_parameters_request
type
val make_describe_parameter_groups_response :
?parameter_groups:parameter_group list ->
?next_token:string ->
unit ->
describe_parameter_groups_response
Create a describe_parameter_groups_response
type
val make_describe_parameter_groups_request :
?next_token:string ->
?max_results:int ->
?parameter_group_names:string list ->
unit ->
describe_parameter_groups_request
Create a describe_parameter_groups_request
type
val make_describe_events_response :
?events:event list ->
?next_token:string ->
unit ->
describe_events_response
Create a describe_events_response
type
val make_describe_events_request :
?next_token:string ->
?max_results:int ->
?duration:int ->
?end_time:float ->
?start_time:float ->
?source_type:source_type ->
?source_name:string ->
unit ->
describe_events_request
Create a describe_events_request
type
val make_describe_default_parameters_response :
?parameters:parameter list ->
?next_token:string ->
unit ->
describe_default_parameters_response
Create a describe_default_parameters_response
type
val make_describe_default_parameters_request :
?next_token:string ->
?max_results:int ->
unit ->
describe_default_parameters_request
Create a describe_default_parameters_request
type
val make_describe_clusters_response :
?clusters:cluster list ->
?next_token:string ->
unit ->
describe_clusters_response
Create a describe_clusters_response
type
val make_describe_clusters_request :
?next_token:string ->
?max_results:int ->
?cluster_names:string list ->
unit ->
describe_clusters_request
Create a describe_clusters_request
type
val make_delete_subnet_group_response :
?deletion_message:string ->
unit ->
delete_subnet_group_response
Create a delete_subnet_group_response
type
val make_delete_subnet_group_request :
subnet_group_name:string ->
unit ->
delete_subnet_group_request
Create a delete_subnet_group_request
type
val make_delete_parameter_group_response :
?deletion_message:string ->
unit ->
delete_parameter_group_response
Create a delete_parameter_group_response
type
val make_delete_parameter_group_request :
parameter_group_name:string ->
unit ->
delete_parameter_group_request
Create a delete_parameter_group_request
type
val make_delete_cluster_response :
?cluster:cluster ->
unit ->
delete_cluster_response
Create a delete_cluster_response
type
val make_delete_cluster_request :
cluster_name:string ->
unit ->
delete_cluster_request
Create a delete_cluster_request
type
val make_decrease_replication_factor_response :
?cluster:cluster ->
unit ->
decrease_replication_factor_response
Create a decrease_replication_factor_response
type
val make_decrease_replication_factor_request :
?node_ids_to_remove:string list ->
?availability_zones:string list ->
new_replication_factor:int ->
cluster_name:string ->
unit ->
decrease_replication_factor_request
Create a decrease_replication_factor_request
type
val make_create_subnet_group_response :
?subnet_group:subnet_group ->
unit ->
create_subnet_group_response
Create a create_subnet_group_response
type
val make_create_subnet_group_request :
?description:string ->
subnet_ids:string list ->
subnet_group_name:string ->
unit ->
create_subnet_group_request
Create a create_subnet_group_request
type
val make_create_parameter_group_response :
?parameter_group:parameter_group ->
unit ->
create_parameter_group_response
Create a create_parameter_group_response
type
val make_create_parameter_group_request :
?description:string ->
parameter_group_name:string ->
unit ->
create_parameter_group_request
Create a create_parameter_group_request
type
val make_create_cluster_response :
?cluster:cluster ->
unit ->
create_cluster_response
Create a create_cluster_response
type
val make_create_cluster_request :
?cluster_endpoint_encryption_type:cluster_endpoint_encryption_type ->
?sse_specification:sse_specification ->
?tags:tag list ->
?parameter_group_name:string ->
?notification_topic_arn:string ->
?preferred_maintenance_window:string ->
?security_group_ids:string list ->
?subnet_group_name:string ->
?availability_zones:string list ->
?description:string ->
iam_role_arn:string ->
replication_factor:int ->
node_type:string ->
cluster_name:string ->
unit ->
create_cluster_request
Create a create_cluster_request
type
module CreateCluster : sig ... end
module CreateParameterGroup : sig ... end
module CreateSubnetGroup : sig ... end
module DecreaseReplicationFactor : sig ... end
module DeleteCluster : sig ... end
module DeleteParameterGroup : sig ... end
module DeleteSubnetGroup : sig ... end
module DescribeClusters : sig ... end
module DescribeDefaultParameters : sig ... end
module DescribeEvents : sig ... end
module DescribeParameterGroups : sig ... end
module DescribeParameters : sig ... end
module DescribeSubnetGroups : sig ... end
module IncreaseReplicationFactor : sig ... end
module ListTags : sig ... end
module RebootNode : sig ... end
module TagResource : sig ... end
module UntagResource : sig ... end
module UpdateCluster : sig ... end
module UpdateParameterGroup : sig ... end
module UpdateSubnetGroup : sig ... end