R/dax_interfaces.R

Defines functions update_subnet_group_output update_subnet_group_input update_parameter_group_output update_parameter_group_input update_cluster_output update_cluster_input untag_resource_output untag_resource_input tag_resource_output tag_resource_input reboot_node_output reboot_node_input list_tags_output list_tags_input increase_replication_factor_output increase_replication_factor_input describe_subnet_groups_output describe_subnet_groups_input describe_parameters_output describe_parameters_input describe_parameter_groups_output describe_parameter_groups_input describe_events_output describe_events_input describe_default_parameters_output describe_default_parameters_input describe_clusters_output describe_clusters_input delete_subnet_group_output delete_subnet_group_input delete_parameter_group_output delete_parameter_group_input delete_cluster_output delete_cluster_input decrease_replication_factor_output decrease_replication_factor_input create_subnet_group_output create_subnet_group_input create_parameter_group_output create_parameter_group_input create_cluster_output create_cluster_input

# This file is generated by make.paws. Please do not edit here.
#' @importFrom paws.common populate
#' @include dax_service.R
NULL

.dax$create_cluster_input <- function(...) {
  args <- c(as.list(environment()), list(...))
  shape <- structure(list(ClusterName = structure(logical(0), tags = list(type = "string")), NodeType = structure(logical(0), tags = list(type = "string")), Description = structure(logical(0), tags = list(type = "string")), ReplicationFactor = structure(logical(0), tags = list(type = "integer")), AvailabilityZones = structure(list(structure(logical(0), tags = list(type = "string"))), tags = list(type = "list")), SubnetGroupName = structure(logical(0), tags = list(type = "string")), SecurityGroupIds = structure(list(structure(logical(0), tags = list(type = "string"))), tags = list(type = "list")), PreferredMaintenanceWindow = structure(logical(0), tags = list(type = "string")), NotificationTopicArn = structure(logical(0), tags = list(type = "string")), IamRoleArn = structure(logical(0), tags = list(type = "string")), ParameterGroupName = structure(logical(0), tags = list(type = "string")), Tags = structure(list(structure(list(Key = structure(logical(0), tags = list(type = "string")), Value = structure(logical(0), tags = list(type = "string"))), tags = list(type = "structure"))), tags = list(type = "list")), SSESpecification = structure(list(Enabled = structure(logical(0), tags = list(type = "boolean"))), tags = list(type = "structure")), ClusterEndpointEncryptionType = structure(logical(0), tags = list(type = "string"))), tags = list(type = "structure"))
  return(populate(args, shape))
}

.dax$create_cluster_output <- function(...) {
  args <- c(as.list(environment()), list(...))
  shape <- structure(list(Cluster = structure(list(ClusterName = structure(logical(0), tags = list(type = "string")), Description = structure(logical(0), tags = list(type = "string")), ClusterArn = structure(logical(0), tags = list(type = "string")), TotalNodes = structure(logical(0), tags = list(type = "integer")), ActiveNodes = structure(logical(0), tags = list(type = "integer")), NodeType = structure(logical(0), tags = list(type = "string")), Status = structure(logical(0), tags = list(type = "string")), ClusterDiscoveryEndpoint = structure(list(Address = structure(logical(0), tags = list(type = "string")), Port = structure(logical(0), tags = list(type = "integer")), URL = structure(logical(0), tags = list(type = "string"))), tags = list(type = "structure")), NodeIdsToRemove = structure(list(structure(logical(0), tags = list(type = "string"))), tags = list(type = "list")), Nodes = structure(list(structure(list(NodeId = structure(logical(0), tags = list(type = "string")), Endpoint = structure(list(Address = structure(logical(0), tags = list(type = "string")), Port = structure(logical(0), tags = list(type = "integer")), URL = structure(logical(0), tags = list(type = "string"))), tags = list(type = "structure")), NodeCreateTime = structure(logical(0), tags = list(type = "timestamp")), AvailabilityZone = structure(logical(0), tags = list(type = "string")), NodeStatus = structure(logical(0), tags = list(type = "string")), ParameterGroupStatus = structure(logical(0), tags = list(type = "string"))), tags = list(type = "structure"))), tags = list(type = "list")), PreferredMaintenanceWindow = structure(logical(0), tags = list(type = "string")), NotificationConfiguration = structure(list(TopicArn = structure(logical(0), tags = list(type = "string")), TopicStatus = structure(logical(0), tags = list(type = "string"))), tags = list(type = "structure")), SubnetGroup = structure(logical(0), tags = list(type = "string")), SecurityGroups = structure(list(structure(list(SecurityGroupIdentifier = structure(logical(0), tags = list(type = "string")), Status = structure(logical(0), tags = list(type = "string"))), tags = list(type = "structure"))), tags = list(type = "list")), IamRoleArn = structure(logical(0), tags = list(type = "string")), ParameterGroup = structure(list(ParameterGroupName = structure(logical(0), tags = list(type = "string")), ParameterApplyStatus = structure(logical(0), tags = list(type = "string")), NodeIdsToReboot = structure(list(structure(logical(0), tags = list(type = "string"))), tags = list(type = "list"))), tags = list(type = "structure")), SSEDescription = structure(list(Status = structure(logical(0), tags = list(type = "string"))), tags = list(type = "structure")), ClusterEndpointEncryptionType = structure(logical(0), tags = list(type = "string"))), tags = list(type = "structure"))), tags = list(type = "structure"))
  return(populate(args, shape))
}

.dax$create_parameter_group_input <- function(...) {
  args <- c(as.list(environment()), list(...))
  shape <- structure(list(ParameterGroupName = structure(logical(0), tags = list(type = "string")), Description = structure(logical(0), tags = list(type = "string"))), tags = list(type = "structure"))
  return(populate(args, shape))
}

.dax$create_parameter_group_output <- function(...) {
  args <- c(as.list(environment()), list(...))
  shape <- structure(list(ParameterGroup = structure(list(ParameterGroupName = structure(logical(0), tags = list(type = "string")), Description = structure(logical(0), tags = list(type = "string"))), tags = list(type = "structure"))), tags = list(type = "structure"))
  return(populate(args, shape))
}

.dax$create_subnet_group_input <- function(...) {
  args <- c(as.list(environment()), list(...))
  shape <- structure(list(SubnetGroupName = structure(logical(0), tags = list(type = "string")), Description = structure(logical(0), tags = list(type = "string")), SubnetIds = structure(list(structure(logical(0), tags = list(type = "string"))), tags = list(type = "list"))), tags = list(type = "structure"))
  return(populate(args, shape))
}

.dax$create_subnet_group_output <- function(...) {
  args <- c(as.list(environment()), list(...))
  shape <- structure(list(SubnetGroup = structure(list(SubnetGroupName = structure(logical(0), tags = list(type = "string")), Description = structure(logical(0), tags = list(type = "string")), VpcId = structure(logical(0), tags = list(type = "string")), Subnets = structure(list(structure(list(SubnetIdentifier = structure(logical(0), tags = list(type = "string")), SubnetAvailabilityZone = structure(logical(0), tags = list(type = "string"))), tags = list(type = "structure"))), tags = list(type = "list"))), tags = list(type = "structure"))), tags = list(type = "structure"))
  return(populate(args, shape))
}

.dax$decrease_replication_factor_input <- function(...) {
  args <- c(as.list(environment()), list(...))
  shape <- structure(list(ClusterName = structure(logical(0), tags = list(type = "string")), NewReplicationFactor = structure(logical(0), tags = list(type = "integer")), AvailabilityZones = structure(list(structure(logical(0), tags = list(type = "string"))), tags = list(type = "list")), NodeIdsToRemove = structure(list(structure(logical(0), tags = list(type = "string"))), tags = list(type = "list"))), tags = list(type = "structure"))
  return(populate(args, shape))
}

.dax$decrease_replication_factor_output <- function(...) {
  args <- c(as.list(environment()), list(...))
  shape <- structure(list(Cluster = structure(list(ClusterName = structure(logical(0), tags = list(type = "string")), Description = structure(logical(0), tags = list(type = "string")), ClusterArn = structure(logical(0), tags = list(type = "string")), TotalNodes = structure(logical(0), tags = list(type = "integer")), ActiveNodes = structure(logical(0), tags = list(type = "integer")), NodeType = structure(logical(0), tags = list(type = "string")), Status = structure(logical(0), tags = list(type = "string")), ClusterDiscoveryEndpoint = structure(list(Address = structure(logical(0), tags = list(type = "string")), Port = structure(logical(0), tags = list(type = "integer")), URL = structure(logical(0), tags = list(type = "string"))), tags = list(type = "structure")), NodeIdsToRemove = structure(list(structure(logical(0), tags = list(type = "string"))), tags = list(type = "list")), Nodes = structure(list(structure(list(NodeId = structure(logical(0), tags = list(type = "string")), Endpoint = structure(list(Address = structure(logical(0), tags = list(type = "string")), Port = structure(logical(0), tags = list(type = "integer")), URL = structure(logical(0), tags = list(type = "string"))), tags = list(type = "structure")), NodeCreateTime = structure(logical(0), tags = list(type = "timestamp")), AvailabilityZone = structure(logical(0), tags = list(type = "string")), NodeStatus = structure(logical(0), tags = list(type = "string")), ParameterGroupStatus = structure(logical(0), tags = list(type = "string"))), tags = list(type = "structure"))), tags = list(type = "list")), PreferredMaintenanceWindow = structure(logical(0), tags = list(type = "string")), NotificationConfiguration = structure(list(TopicArn = structure(logical(0), tags = list(type = "string")), TopicStatus = structure(logical(0), tags = list(type = "string"))), tags = list(type = "structure")), SubnetGroup = structure(logical(0), tags = list(type = "string")), SecurityGroups = structure(list(structure(list(SecurityGroupIdentifier = structure(logical(0), tags = list(type = "string")), Status = structure(logical(0), tags = list(type = "string"))), tags = list(type = "structure"))), tags = list(type = "list")), IamRoleArn = structure(logical(0), tags = list(type = "string")), ParameterGroup = structure(list(ParameterGroupName = structure(logical(0), tags = list(type = "string")), ParameterApplyStatus = structure(logical(0), tags = list(type = "string")), NodeIdsToReboot = structure(list(structure(logical(0), tags = list(type = "string"))), tags = list(type = "list"))), tags = list(type = "structure")), SSEDescription = structure(list(Status = structure(logical(0), tags = list(type = "string"))), tags = list(type = "structure")), ClusterEndpointEncryptionType = structure(logical(0), tags = list(type = "string"))), tags = list(type = "structure"))), tags = list(type = "structure"))
  return(populate(args, shape))
}

.dax$delete_cluster_input <- function(...) {
  args <- c(as.list(environment()), list(...))
  shape <- structure(list(ClusterName = structure(logical(0), tags = list(type = "string"))), tags = list(type = "structure"))
  return(populate(args, shape))
}

.dax$delete_cluster_output <- function(...) {
  args <- c(as.list(environment()), list(...))
  shape <- structure(list(Cluster = structure(list(ClusterName = structure(logical(0), tags = list(type = "string")), Description = structure(logical(0), tags = list(type = "string")), ClusterArn = structure(logical(0), tags = list(type = "string")), TotalNodes = structure(logical(0), tags = list(type = "integer")), ActiveNodes = structure(logical(0), tags = list(type = "integer")), NodeType = structure(logical(0), tags = list(type = "string")), Status = structure(logical(0), tags = list(type = "string")), ClusterDiscoveryEndpoint = structure(list(Address = structure(logical(0), tags = list(type = "string")), Port = structure(logical(0), tags = list(type = "integer")), URL = structure(logical(0), tags = list(type = "string"))), tags = list(type = "structure")), NodeIdsToRemove = structure(list(structure(logical(0), tags = list(type = "string"))), tags = list(type = "list")), Nodes = structure(list(structure(list(NodeId = structure(logical(0), tags = list(type = "string")), Endpoint = structure(list(Address = structure(logical(0), tags = list(type = "string")), Port = structure(logical(0), tags = list(type = "integer")), URL = structure(logical(0), tags = list(type = "string"))), tags = list(type = "structure")), NodeCreateTime = structure(logical(0), tags = list(type = "timestamp")), AvailabilityZone = structure(logical(0), tags = list(type = "string")), NodeStatus = structure(logical(0), tags = list(type = "string")), ParameterGroupStatus = structure(logical(0), tags = list(type = "string"))), tags = list(type = "structure"))), tags = list(type = "list")), PreferredMaintenanceWindow = structure(logical(0), tags = list(type = "string")), NotificationConfiguration = structure(list(TopicArn = structure(logical(0), tags = list(type = "string")), TopicStatus = structure(logical(0), tags = list(type = "string"))), tags = list(type = "structure")), SubnetGroup = structure(logical(0), tags = list(type = "string")), SecurityGroups = structure(list(structure(list(SecurityGroupIdentifier = structure(logical(0), tags = list(type = "string")), Status = structure(logical(0), tags = list(type = "string"))), tags = list(type = "structure"))), tags = list(type = "list")), IamRoleArn = structure(logical(0), tags = list(type = "string")), ParameterGroup = structure(list(ParameterGroupName = structure(logical(0), tags = list(type = "string")), ParameterApplyStatus = structure(logical(0), tags = list(type = "string")), NodeIdsToReboot = structure(list(structure(logical(0), tags = list(type = "string"))), tags = list(type = "list"))), tags = list(type = "structure")), SSEDescription = structure(list(Status = structure(logical(0), tags = list(type = "string"))), tags = list(type = "structure")), ClusterEndpointEncryptionType = structure(logical(0), tags = list(type = "string"))), tags = list(type = "structure"))), tags = list(type = "structure"))
  return(populate(args, shape))
}

.dax$delete_parameter_group_input <- function(...) {
  args <- c(as.list(environment()), list(...))
  shape <- structure(list(ParameterGroupName = structure(logical(0), tags = list(type = "string"))), tags = list(type = "structure"))
  return(populate(args, shape))
}

.dax$delete_parameter_group_output <- function(...) {
  args <- c(as.list(environment()), list(...))
  shape <- structure(list(DeletionMessage = structure(logical(0), tags = list(type = "string"))), tags = list(type = "structure"))
  return(populate(args, shape))
}

.dax$delete_subnet_group_input <- function(...) {
  args <- c(as.list(environment()), list(...))
  shape <- structure(list(SubnetGroupName = structure(logical(0), tags = list(type = "string"))), tags = list(type = "structure"))
  return(populate(args, shape))
}

.dax$delete_subnet_group_output <- function(...) {
  args <- c(as.list(environment()), list(...))
  shape <- structure(list(DeletionMessage = structure(logical(0), tags = list(type = "string"))), tags = list(type = "structure"))
  return(populate(args, shape))
}

.dax$describe_clusters_input <- function(...) {
  args <- c(as.list(environment()), list(...))
  shape <- structure(list(ClusterNames = structure(list(structure(logical(0), tags = list(type = "string"))), tags = list(type = "list")), MaxResults = structure(logical(0), tags = list(type = "integer")), NextToken = structure(logical(0), tags = list(type = "string"))), tags = list(type = "structure"))
  return(populate(args, shape))
}

.dax$describe_clusters_output <- function(...) {
  args <- c(as.list(environment()), list(...))
  shape <- structure(list(NextToken = structure(logical(0), tags = list(type = "string")), Clusters = structure(list(structure(list(ClusterName = structure(logical(0), tags = list(type = "string")), Description = structure(logical(0), tags = list(type = "string")), ClusterArn = structure(logical(0), tags = list(type = "string")), TotalNodes = structure(logical(0), tags = list(type = "integer")), ActiveNodes = structure(logical(0), tags = list(type = "integer")), NodeType = structure(logical(0), tags = list(type = "string")), Status = structure(logical(0), tags = list(type = "string")), ClusterDiscoveryEndpoint = structure(list(Address = structure(logical(0), tags = list(type = "string")), Port = structure(logical(0), tags = list(type = "integer")), URL = structure(logical(0), tags = list(type = "string"))), tags = list(type = "structure")), NodeIdsToRemove = structure(list(structure(logical(0), tags = list(type = "string"))), tags = list(type = "list")), Nodes = structure(list(structure(list(NodeId = structure(logical(0), tags = list(type = "string")), Endpoint = structure(list(Address = structure(logical(0), tags = list(type = "string")), Port = structure(logical(0), tags = list(type = "integer")), URL = structure(logical(0), tags = list(type = "string"))), tags = list(type = "structure")), NodeCreateTime = structure(logical(0), tags = list(type = "timestamp")), AvailabilityZone = structure(logical(0), tags = list(type = "string")), NodeStatus = structure(logical(0), tags = list(type = "string")), ParameterGroupStatus = structure(logical(0), tags = list(type = "string"))), tags = list(type = "structure"))), tags = list(type = "list")), PreferredMaintenanceWindow = structure(logical(0), tags = list(type = "string")), NotificationConfiguration = structure(list(TopicArn = structure(logical(0), tags = list(type = "string")), TopicStatus = structure(logical(0), tags = list(type = "string"))), tags = list(type = "structure")), SubnetGroup = structure(logical(0), tags = list(type = "string")), SecurityGroups = structure(list(structure(list(SecurityGroupIdentifier = structure(logical(0), tags = list(type = "string")), Status = structure(logical(0), tags = list(type = "string"))), tags = list(type = "structure"))), tags = list(type = "list")), IamRoleArn = structure(logical(0), tags = list(type = "string")), ParameterGroup = structure(list(ParameterGroupName = structure(logical(0), tags = list(type = "string")), ParameterApplyStatus = structure(logical(0), tags = list(type = "string")), NodeIdsToReboot = structure(list(structure(logical(0), tags = list(type = "string"))), tags = list(type = "list"))), tags = list(type = "structure")), SSEDescription = structure(list(Status = structure(logical(0), tags = list(type = "string"))), tags = list(type = "structure")), ClusterEndpointEncryptionType = structure(logical(0), tags = list(type = "string"))), tags = list(type = "structure"))), tags = list(type = "list"))), tags = list(type = "structure"))
  return(populate(args, shape))
}

.dax$describe_default_parameters_input <- function(...) {
  args <- c(as.list(environment()), list(...))
  shape <- structure(list(MaxResults = structure(logical(0), tags = list(type = "integer")), NextToken = structure(logical(0), tags = list(type = "string"))), tags = list(type = "structure"))
  return(populate(args, shape))
}

.dax$describe_default_parameters_output <- function(...) {
  args <- c(as.list(environment()), list(...))
  shape <- structure(list(NextToken = structure(logical(0), tags = list(type = "string")), Parameters = structure(list(structure(list(ParameterName = structure(logical(0), tags = list(type = "string")), ParameterType = structure(logical(0), tags = list(type = "string")), ParameterValue = structure(logical(0), tags = list(type = "string")), NodeTypeSpecificValues = structure(list(structure(list(NodeType = structure(logical(0), tags = list(type = "string")), Value = structure(logical(0), tags = list(type = "string"))), tags = list(type = "structure"))), tags = list(type = "list")), Description = structure(logical(0), tags = list(type = "string")), Source = structure(logical(0), tags = list(type = "string")), DataType = structure(logical(0), tags = list(type = "string")), AllowedValues = structure(logical(0), tags = list(type = "string")), IsModifiable = structure(logical(0), tags = list(type = "string")), ChangeType = structure(logical(0), tags = list(type = "string"))), tags = list(type = "structure"))), tags = list(type = "list"))), tags = list(type = "structure"))
  return(populate(args, shape))
}

.dax$describe_events_input <- function(...) {
  args <- c(as.list(environment()), list(...))
  shape <- structure(list(SourceName = structure(logical(0), tags = list(type = "string")), SourceType = structure(logical(0), tags = list(type = "string")), StartTime = structure(logical(0), tags = list(type = "timestamp")), EndTime = structure(logical(0), tags = list(type = "timestamp")), Duration = structure(logical(0), tags = list(type = "integer")), MaxResults = structure(logical(0), tags = list(type = "integer")), NextToken = structure(logical(0), tags = list(type = "string"))), tags = list(type = "structure"))
  return(populate(args, shape))
}

.dax$describe_events_output <- function(...) {
  args <- c(as.list(environment()), list(...))
  shape <- structure(list(NextToken = structure(logical(0), tags = list(type = "string")), Events = structure(list(structure(list(SourceName = structure(logical(0), tags = list(type = "string")), SourceType = structure(logical(0), tags = list(type = "string")), Message = structure(logical(0), tags = list(type = "string")), Date = structure(logical(0), tags = list(type = "timestamp"))), tags = list(type = "structure"))), tags = list(type = "list"))), tags = list(type = "structure"))
  return(populate(args, shape))
}

.dax$describe_parameter_groups_input <- function(...) {
  args <- c(as.list(environment()), list(...))
  shape <- structure(list(ParameterGroupNames = structure(list(structure(logical(0), tags = list(type = "string"))), tags = list(type = "list")), MaxResults = structure(logical(0), tags = list(type = "integer")), NextToken = structure(logical(0), tags = list(type = "string"))), tags = list(type = "structure"))
  return(populate(args, shape))
}

.dax$describe_parameter_groups_output <- function(...) {
  args <- c(as.list(environment()), list(...))
  shape <- structure(list(NextToken = structure(logical(0), tags = list(type = "string")), ParameterGroups = structure(list(structure(list(ParameterGroupName = structure(logical(0), tags = list(type = "string")), Description = structure(logical(0), tags = list(type = "string"))), tags = list(type = "structure"))), tags = list(type = "list"))), tags = list(type = "structure"))
  return(populate(args, shape))
}

.dax$describe_parameters_input <- function(...) {
  args <- c(as.list(environment()), list(...))
  shape <- structure(list(ParameterGroupName = structure(logical(0), tags = list(type = "string")), Source = structure(logical(0), tags = list(type = "string")), MaxResults = structure(logical(0), tags = list(type = "integer")), NextToken = structure(logical(0), tags = list(type = "string"))), tags = list(type = "structure"))
  return(populate(args, shape))
}

.dax$describe_parameters_output <- function(...) {
  args <- c(as.list(environment()), list(...))
  shape <- structure(list(NextToken = structure(logical(0), tags = list(type = "string")), Parameters = structure(list(structure(list(ParameterName = structure(logical(0), tags = list(type = "string")), ParameterType = structure(logical(0), tags = list(type = "string")), ParameterValue = structure(logical(0), tags = list(type = "string")), NodeTypeSpecificValues = structure(list(structure(list(NodeType = structure(logical(0), tags = list(type = "string")), Value = structure(logical(0), tags = list(type = "string"))), tags = list(type = "structure"))), tags = list(type = "list")), Description = structure(logical(0), tags = list(type = "string")), Source = structure(logical(0), tags = list(type = "string")), DataType = structure(logical(0), tags = list(type = "string")), AllowedValues = structure(logical(0), tags = list(type = "string")), IsModifiable = structure(logical(0), tags = list(type = "string")), ChangeType = structure(logical(0), tags = list(type = "string"))), tags = list(type = "structure"))), tags = list(type = "list"))), tags = list(type = "structure"))
  return(populate(args, shape))
}

.dax$describe_subnet_groups_input <- function(...) {
  args <- c(as.list(environment()), list(...))
  shape <- structure(list(SubnetGroupNames = structure(list(structure(logical(0), tags = list(type = "string"))), tags = list(type = "list")), MaxResults = structure(logical(0), tags = list(type = "integer")), NextToken = structure(logical(0), tags = list(type = "string"))), tags = list(type = "structure"))
  return(populate(args, shape))
}

.dax$describe_subnet_groups_output <- function(...) {
  args <- c(as.list(environment()), list(...))
  shape <- structure(list(NextToken = structure(logical(0), tags = list(type = "string")), SubnetGroups = structure(list(structure(list(SubnetGroupName = structure(logical(0), tags = list(type = "string")), Description = structure(logical(0), tags = list(type = "string")), VpcId = structure(logical(0), tags = list(type = "string")), Subnets = structure(list(structure(list(SubnetIdentifier = structure(logical(0), tags = list(type = "string")), SubnetAvailabilityZone = structure(logical(0), tags = list(type = "string"))), tags = list(type = "structure"))), tags = list(type = "list"))), tags = list(type = "structure"))), tags = list(type = "list"))), tags = list(type = "structure"))
  return(populate(args, shape))
}

.dax$increase_replication_factor_input <- function(...) {
  args <- c(as.list(environment()), list(...))
  shape <- structure(list(ClusterName = structure(logical(0), tags = list(type = "string")), NewReplicationFactor = structure(logical(0), tags = list(type = "integer")), AvailabilityZones = structure(list(structure(logical(0), tags = list(type = "string"))), tags = list(type = "list"))), tags = list(type = "structure"))
  return(populate(args, shape))
}

.dax$increase_replication_factor_output <- function(...) {
  args <- c(as.list(environment()), list(...))
  shape <- structure(list(Cluster = structure(list(ClusterName = structure(logical(0), tags = list(type = "string")), Description = structure(logical(0), tags = list(type = "string")), ClusterArn = structure(logical(0), tags = list(type = "string")), TotalNodes = structure(logical(0), tags = list(type = "integer")), ActiveNodes = structure(logical(0), tags = list(type = "integer")), NodeType = structure(logical(0), tags = list(type = "string")), Status = structure(logical(0), tags = list(type = "string")), ClusterDiscoveryEndpoint = structure(list(Address = structure(logical(0), tags = list(type = "string")), Port = structure(logical(0), tags = list(type = "integer")), URL = structure(logical(0), tags = list(type = "string"))), tags = list(type = "structure")), NodeIdsToRemove = structure(list(structure(logical(0), tags = list(type = "string"))), tags = list(type = "list")), Nodes = structure(list(structure(list(NodeId = structure(logical(0), tags = list(type = "string")), Endpoint = structure(list(Address = structure(logical(0), tags = list(type = "string")), Port = structure(logical(0), tags = list(type = "integer")), URL = structure(logical(0), tags = list(type = "string"))), tags = list(type = "structure")), NodeCreateTime = structure(logical(0), tags = list(type = "timestamp")), AvailabilityZone = structure(logical(0), tags = list(type = "string")), NodeStatus = structure(logical(0), tags = list(type = "string")), ParameterGroupStatus = structure(logical(0), tags = list(type = "string"))), tags = list(type = "structure"))), tags = list(type = "list")), PreferredMaintenanceWindow = structure(logical(0), tags = list(type = "string")), NotificationConfiguration = structure(list(TopicArn = structure(logical(0), tags = list(type = "string")), TopicStatus = structure(logical(0), tags = list(type = "string"))), tags = list(type = "structure")), SubnetGroup = structure(logical(0), tags = list(type = "string")), SecurityGroups = structure(list(structure(list(SecurityGroupIdentifier = structure(logical(0), tags = list(type = "string")), Status = structure(logical(0), tags = list(type = "string"))), tags = list(type = "structure"))), tags = list(type = "list")), IamRoleArn = structure(logical(0), tags = list(type = "string")), ParameterGroup = structure(list(ParameterGroupName = structure(logical(0), tags = list(type = "string")), ParameterApplyStatus = structure(logical(0), tags = list(type = "string")), NodeIdsToReboot = structure(list(structure(logical(0), tags = list(type = "string"))), tags = list(type = "list"))), tags = list(type = "structure")), SSEDescription = structure(list(Status = structure(logical(0), tags = list(type = "string"))), tags = list(type = "structure")), ClusterEndpointEncryptionType = structure(logical(0), tags = list(type = "string"))), tags = list(type = "structure"))), tags = list(type = "structure"))
  return(populate(args, shape))
}

.dax$list_tags_input <- function(...) {
  args <- c(as.list(environment()), list(...))
  shape <- structure(list(ResourceName = structure(logical(0), tags = list(type = "string")), NextToken = structure(logical(0), tags = list(type = "string"))), tags = list(type = "structure"))
  return(populate(args, shape))
}

.dax$list_tags_output <- function(...) {
  args <- c(as.list(environment()), list(...))
  shape <- structure(list(Tags = structure(list(structure(list(Key = structure(logical(0), tags = list(type = "string")), Value = structure(logical(0), tags = list(type = "string"))), tags = list(type = "structure"))), tags = list(type = "list")), NextToken = structure(logical(0), tags = list(type = "string"))), tags = list(type = "structure"))
  return(populate(args, shape))
}

.dax$reboot_node_input <- function(...) {
  args <- c(as.list(environment()), list(...))
  shape <- structure(list(ClusterName = structure(logical(0), tags = list(type = "string")), NodeId = structure(logical(0), tags = list(type = "string"))), tags = list(type = "structure"))
  return(populate(args, shape))
}

.dax$reboot_node_output <- function(...) {
  args <- c(as.list(environment()), list(...))
  shape <- structure(list(Cluster = structure(list(ClusterName = structure(logical(0), tags = list(type = "string")), Description = structure(logical(0), tags = list(type = "string")), ClusterArn = structure(logical(0), tags = list(type = "string")), TotalNodes = structure(logical(0), tags = list(type = "integer")), ActiveNodes = structure(logical(0), tags = list(type = "integer")), NodeType = structure(logical(0), tags = list(type = "string")), Status = structure(logical(0), tags = list(type = "string")), ClusterDiscoveryEndpoint = structure(list(Address = structure(logical(0), tags = list(type = "string")), Port = structure(logical(0), tags = list(type = "integer")), URL = structure(logical(0), tags = list(type = "string"))), tags = list(type = "structure")), NodeIdsToRemove = structure(list(structure(logical(0), tags = list(type = "string"))), tags = list(type = "list")), Nodes = structure(list(structure(list(NodeId = structure(logical(0), tags = list(type = "string")), Endpoint = structure(list(Address = structure(logical(0), tags = list(type = "string")), Port = structure(logical(0), tags = list(type = "integer")), URL = structure(logical(0), tags = list(type = "string"))), tags = list(type = "structure")), NodeCreateTime = structure(logical(0), tags = list(type = "timestamp")), AvailabilityZone = structure(logical(0), tags = list(type = "string")), NodeStatus = structure(logical(0), tags = list(type = "string")), ParameterGroupStatus = structure(logical(0), tags = list(type = "string"))), tags = list(type = "structure"))), tags = list(type = "list")), PreferredMaintenanceWindow = structure(logical(0), tags = list(type = "string")), NotificationConfiguration = structure(list(TopicArn = structure(logical(0), tags = list(type = "string")), TopicStatus = structure(logical(0), tags = list(type = "string"))), tags = list(type = "structure")), SubnetGroup = structure(logical(0), tags = list(type = "string")), SecurityGroups = structure(list(structure(list(SecurityGroupIdentifier = structure(logical(0), tags = list(type = "string")), Status = structure(logical(0), tags = list(type = "string"))), tags = list(type = "structure"))), tags = list(type = "list")), IamRoleArn = structure(logical(0), tags = list(type = "string")), ParameterGroup = structure(list(ParameterGroupName = structure(logical(0), tags = list(type = "string")), ParameterApplyStatus = structure(logical(0), tags = list(type = "string")), NodeIdsToReboot = structure(list(structure(logical(0), tags = list(type = "string"))), tags = list(type = "list"))), tags = list(type = "structure")), SSEDescription = structure(list(Status = structure(logical(0), tags = list(type = "string"))), tags = list(type = "structure")), ClusterEndpointEncryptionType = structure(logical(0), tags = list(type = "string"))), tags = list(type = "structure"))), tags = list(type = "structure"))
  return(populate(args, shape))
}

.dax$tag_resource_input <- function(...) {
  args <- c(as.list(environment()), list(...))
  shape <- structure(list(ResourceName = structure(logical(0), tags = list(type = "string")), Tags = structure(list(structure(list(Key = structure(logical(0), tags = list(type = "string")), Value = structure(logical(0), tags = list(type = "string"))), tags = list(type = "structure"))), tags = list(type = "list"))), tags = list(type = "structure"))
  return(populate(args, shape))
}

.dax$tag_resource_output <- function(...) {
  args <- c(as.list(environment()), list(...))
  shape <- structure(list(Tags = structure(list(structure(list(Key = structure(logical(0), tags = list(type = "string")), Value = structure(logical(0), tags = list(type = "string"))), tags = list(type = "structure"))), tags = list(type = "list"))), tags = list(type = "structure"))
  return(populate(args, shape))
}

.dax$untag_resource_input <- function(...) {
  args <- c(as.list(environment()), list(...))
  shape <- structure(list(ResourceName = structure(logical(0), tags = list(type = "string")), TagKeys = structure(list(structure(logical(0), tags = list(type = "string"))), tags = list(type = "list"))), tags = list(type = "structure"))
  return(populate(args, shape))
}

.dax$untag_resource_output <- function(...) {
  args <- c(as.list(environment()), list(...))
  shape <- structure(list(Tags = structure(list(structure(list(Key = structure(logical(0), tags = list(type = "string")), Value = structure(logical(0), tags = list(type = "string"))), tags = list(type = "structure"))), tags = list(type = "list"))), tags = list(type = "structure"))
  return(populate(args, shape))
}

.dax$update_cluster_input <- function(...) {
  args <- c(as.list(environment()), list(...))
  shape <- structure(list(ClusterName = structure(logical(0), tags = list(type = "string")), Description = structure(logical(0), tags = list(type = "string")), PreferredMaintenanceWindow = structure(logical(0), tags = list(type = "string")), NotificationTopicArn = structure(logical(0), tags = list(type = "string")), NotificationTopicStatus = structure(logical(0), tags = list(type = "string")), ParameterGroupName = structure(logical(0), tags = list(type = "string")), SecurityGroupIds = structure(list(structure(logical(0), tags = list(type = "string"))), tags = list(type = "list"))), tags = list(type = "structure"))
  return(populate(args, shape))
}

.dax$update_cluster_output <- function(...) {
  args <- c(as.list(environment()), list(...))
  shape <- structure(list(Cluster = structure(list(ClusterName = structure(logical(0), tags = list(type = "string")), Description = structure(logical(0), tags = list(type = "string")), ClusterArn = structure(logical(0), tags = list(type = "string")), TotalNodes = structure(logical(0), tags = list(type = "integer")), ActiveNodes = structure(logical(0), tags = list(type = "integer")), NodeType = structure(logical(0), tags = list(type = "string")), Status = structure(logical(0), tags = list(type = "string")), ClusterDiscoveryEndpoint = structure(list(Address = structure(logical(0), tags = list(type = "string")), Port = structure(logical(0), tags = list(type = "integer")), URL = structure(logical(0), tags = list(type = "string"))), tags = list(type = "structure")), NodeIdsToRemove = structure(list(structure(logical(0), tags = list(type = "string"))), tags = list(type = "list")), Nodes = structure(list(structure(list(NodeId = structure(logical(0), tags = list(type = "string")), Endpoint = structure(list(Address = structure(logical(0), tags = list(type = "string")), Port = structure(logical(0), tags = list(type = "integer")), URL = structure(logical(0), tags = list(type = "string"))), tags = list(type = "structure")), NodeCreateTime = structure(logical(0), tags = list(type = "timestamp")), AvailabilityZone = structure(logical(0), tags = list(type = "string")), NodeStatus = structure(logical(0), tags = list(type = "string")), ParameterGroupStatus = structure(logical(0), tags = list(type = "string"))), tags = list(type = "structure"))), tags = list(type = "list")), PreferredMaintenanceWindow = structure(logical(0), tags = list(type = "string")), NotificationConfiguration = structure(list(TopicArn = structure(logical(0), tags = list(type = "string")), TopicStatus = structure(logical(0), tags = list(type = "string"))), tags = list(type = "structure")), SubnetGroup = structure(logical(0), tags = list(type = "string")), SecurityGroups = structure(list(structure(list(SecurityGroupIdentifier = structure(logical(0), tags = list(type = "string")), Status = structure(logical(0), tags = list(type = "string"))), tags = list(type = "structure"))), tags = list(type = "list")), IamRoleArn = structure(logical(0), tags = list(type = "string")), ParameterGroup = structure(list(ParameterGroupName = structure(logical(0), tags = list(type = "string")), ParameterApplyStatus = structure(logical(0), tags = list(type = "string")), NodeIdsToReboot = structure(list(structure(logical(0), tags = list(type = "string"))), tags = list(type = "list"))), tags = list(type = "structure")), SSEDescription = structure(list(Status = structure(logical(0), tags = list(type = "string"))), tags = list(type = "structure")), ClusterEndpointEncryptionType = structure(logical(0), tags = list(type = "string"))), tags = list(type = "structure"))), tags = list(type = "structure"))
  return(populate(args, shape))
}

.dax$update_parameter_group_input <- function(...) {
  args <- c(as.list(environment()), list(...))
  shape <- structure(list(ParameterGroupName = structure(logical(0), tags = list(type = "string")), ParameterNameValues = structure(list(structure(list(ParameterName = structure(logical(0), tags = list(type = "string")), ParameterValue = structure(logical(0), tags = list(type = "string"))), tags = list(type = "structure"))), tags = list(type = "list"))), tags = list(type = "structure"))
  return(populate(args, shape))
}

.dax$update_parameter_group_output <- function(...) {
  args <- c(as.list(environment()), list(...))
  shape <- structure(list(ParameterGroup = structure(list(ParameterGroupName = structure(logical(0), tags = list(type = "string")), Description = structure(logical(0), tags = list(type = "string"))), tags = list(type = "structure"))), tags = list(type = "structure"))
  return(populate(args, shape))
}

.dax$update_subnet_group_input <- function(...) {
  args <- c(as.list(environment()), list(...))
  shape <- structure(list(SubnetGroupName = structure(logical(0), tags = list(type = "string")), Description = structure(logical(0), tags = list(type = "string")), SubnetIds = structure(list(structure(logical(0), tags = list(type = "string"))), tags = list(type = "list"))), tags = list(type = "structure"))
  return(populate(args, shape))
}

.dax$update_subnet_group_output <- function(...) {
  args <- c(as.list(environment()), list(...))
  shape <- structure(list(SubnetGroup = structure(list(SubnetGroupName = structure(logical(0), tags = list(type = "string")), Description = structure(logical(0), tags = list(type = "string")), VpcId = structure(logical(0), tags = list(type = "string")), Subnets = structure(list(structure(list(SubnetIdentifier = structure(logical(0), tags = list(type = "string")), SubnetAvailabilityZone = structure(logical(0), tags = list(type = "string"))), tags = list(type = "structure"))), tags = list(type = "list"))), tags = list(type = "structure"))), tags = list(type = "structure"))
  return(populate(args, shape))
}

Try the paws.database package in your browser

Any scripts or data that you put into this service are public.

paws.database documentation built on Sept. 12, 2023, 1:21 a.m.