types

package
v1.19.4 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Mar 29, 2024 License: Apache-2.0 Imports: 4 Imported by: 7

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type ChangeType

type ChangeType string
const (
	ChangeTypeImmediate      ChangeType = "IMMEDIATE"
	ChangeTypeRequiresReboot ChangeType = "REQUIRES_REBOOT"
)

Enum values for ChangeType

func (ChangeType) Values added in v0.29.0

func (ChangeType) Values() []ChangeType

Values returns all known values for ChangeType. Note that this can be expanded in the future, and so it is only as up to date as the client. The ordering of this slice is not guaranteed to be stable across updates.

type Cluster

type Cluster struct {

	// The number of nodes in the cluster that are active (i.e., capable of serving
	// requests).
	ActiveNodes *int32

	// The Amazon Resource Name (ARN) that uniquely identifies the cluster.
	ClusterArn *string

	// 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.
	ClusterDiscoveryEndpoint *Endpoint

	// The type of encryption supported by the cluster's endpoint. Values are:
	//   - NONE for no encryption TLS for Transport Layer Security
	ClusterEndpointEncryptionType ClusterEndpointEncryptionType

	// The name of the DAX cluster.
	ClusterName *string

	// The description of the cluster.
	Description *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.
	IamRoleArn *string

	// A list of nodes to be removed from the cluster.
	NodeIdsToRemove []string

	// The node type for the nodes in the cluster. (All nodes in a DAX cluster are of
	// the same type.)
	NodeType *string

	// A list of nodes that are currently in the cluster.
	Nodes []Node

	// Describes a notification topic and its status. Notification topics are used for
	// publishing DAX events to subscribers using Amazon Simple Notification Service
	// (SNS).
	NotificationConfiguration *NotificationConfiguration

	// The parameter group being used by nodes in the cluster.
	ParameterGroup *ParameterGroupStatus

	// 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.
	PreferredMaintenanceWindow *string

	// The description of the server-side encryption status on the specified DAX
	// cluster.
	SSEDescription *SSEDescription

	// A list of security groups, and the status of each, for the nodes in the cluster.
	SecurityGroups []SecurityGroupMembership

	// The current status of the cluster.
	Status *string

	// The subnet group where the DAX cluster is running.
	SubnetGroup *string

	// The total number of nodes in the cluster.
	TotalNodes *int32
	// contains filtered or unexported fields
}

Contains all of the attributes of a specific DAX cluster.

type ClusterAlreadyExistsFault

type ClusterAlreadyExistsFault struct {
	Message *string

	ErrorCodeOverride *string
	// contains filtered or unexported fields
}

You already have a DAX cluster with the given identifier.

func (*ClusterAlreadyExistsFault) Error

func (e *ClusterAlreadyExistsFault) Error() string

func (*ClusterAlreadyExistsFault) ErrorCode

func (e *ClusterAlreadyExistsFault) ErrorCode() string

func (*ClusterAlreadyExistsFault) ErrorFault

func (*ClusterAlreadyExistsFault) ErrorMessage

func (e *ClusterAlreadyExistsFault) ErrorMessage() string

type ClusterEndpointEncryptionType added in v1.3.0

type ClusterEndpointEncryptionType string
const (
	ClusterEndpointEncryptionTypeNone ClusterEndpointEncryptionType = "NONE"
	ClusterEndpointEncryptionTypeTls  ClusterEndpointEncryptionType = "TLS"
)

Enum values for ClusterEndpointEncryptionType

func (ClusterEndpointEncryptionType) Values added in v1.3.0

Values returns all known values for ClusterEndpointEncryptionType. Note that this can be expanded in the future, and so it is only as up to date as the client. The ordering of this slice is not guaranteed to be stable across updates.

type ClusterNotFoundFault

type ClusterNotFoundFault struct {
	Message *string

	ErrorCodeOverride *string
	// contains filtered or unexported fields
}

The requested cluster ID does not refer to an existing DAX cluster.

func (*ClusterNotFoundFault) Error

func (e *ClusterNotFoundFault) Error() string

func (*ClusterNotFoundFault) ErrorCode

func (e *ClusterNotFoundFault) ErrorCode() string

func (*ClusterNotFoundFault) ErrorFault

func (e *ClusterNotFoundFault) ErrorFault() smithy.ErrorFault

func (*ClusterNotFoundFault) ErrorMessage

func (e *ClusterNotFoundFault) ErrorMessage() string

type ClusterQuotaForCustomerExceededFault

type ClusterQuotaForCustomerExceededFault struct {
	Message *string

	ErrorCodeOverride *string
	// contains filtered or unexported fields
}

You have attempted to exceed the maximum number of DAX clusters for your AWS account.

func (*ClusterQuotaForCustomerExceededFault) Error

func (*ClusterQuotaForCustomerExceededFault) ErrorCode

func (*ClusterQuotaForCustomerExceededFault) ErrorFault

func (*ClusterQuotaForCustomerExceededFault) ErrorMessage

func (e *ClusterQuotaForCustomerExceededFault) ErrorMessage() string

type Endpoint

type Endpoint struct {

	// The DNS hostname of the endpoint.
	Address *string

	// The port number that applications should use to connect to the endpoint.
	Port int32

	// 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.
	URL *string
	// contains filtered or unexported fields
}

Represents the information required for client programs to connect to the endpoint for a DAX cluster.

type Event

type Event struct {

	// The date and time when the event occurred.
	Date *time.Time

	// A user-defined message associated with the event.
	Message *string

	// The source of the event. For example, if the event occurred at the node level,
	// the source would be the node ID.
	SourceName *string

	// Specifies the origin of this event - a cluster, a parameter group, a node ID,
	// etc.
	SourceType SourceType
	// contains filtered or unexported fields
}

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 InsufficientClusterCapacityFault

type InsufficientClusterCapacityFault struct {
	Message *string

	ErrorCodeOverride *string
	// contains filtered or unexported fields
}

There are not enough system resources to create the cluster you requested (or to resize an already-existing cluster).

func (*InsufficientClusterCapacityFault) Error

func (*InsufficientClusterCapacityFault) ErrorCode

func (*InsufficientClusterCapacityFault) ErrorFault

func (*InsufficientClusterCapacityFault) ErrorMessage

func (e *InsufficientClusterCapacityFault) ErrorMessage() string

type InvalidARNFault

type InvalidARNFault struct {
	Message *string

	ErrorCodeOverride *string
	// contains filtered or unexported fields
}

The Amazon Resource Name (ARN) supplied in the request is not valid.

func (*InvalidARNFault) Error

func (e *InvalidARNFault) Error() string

func (*InvalidARNFault) ErrorCode

func (e *InvalidARNFault) ErrorCode() string

func (*InvalidARNFault) ErrorFault

func (e *InvalidARNFault) ErrorFault() smithy.ErrorFault

func (*InvalidARNFault) ErrorMessage

func (e *InvalidARNFault) ErrorMessage() string

type InvalidClusterStateFault

type InvalidClusterStateFault struct {
	Message *string

	ErrorCodeOverride *string
	// contains filtered or unexported fields
}

The requested DAX cluster is not in the available state.

func (*InvalidClusterStateFault) Error

func (e *InvalidClusterStateFault) Error() string

func (*InvalidClusterStateFault) ErrorCode

func (e *InvalidClusterStateFault) ErrorCode() string

func (*InvalidClusterStateFault) ErrorFault

func (e *InvalidClusterStateFault) ErrorFault() smithy.ErrorFault

func (*InvalidClusterStateFault) ErrorMessage

func (e *InvalidClusterStateFault) ErrorMessage() string

type InvalidParameterCombinationException

type InvalidParameterCombinationException struct {
	Message *string

	ErrorCodeOverride *string
	// contains filtered or unexported fields
}

Two or more incompatible parameters were specified.

func (*InvalidParameterCombinationException) Error

func (*InvalidParameterCombinationException) ErrorCode

func (*InvalidParameterCombinationException) ErrorFault

func (*InvalidParameterCombinationException) ErrorMessage

func (e *InvalidParameterCombinationException) ErrorMessage() string

type InvalidParameterGroupStateFault

type InvalidParameterGroupStateFault struct {
	Message *string

	ErrorCodeOverride *string
	// contains filtered or unexported fields
}

One or more parameters in a parameter group are in an invalid state.

func (*InvalidParameterGroupStateFault) Error

func (*InvalidParameterGroupStateFault) ErrorCode

func (e *InvalidParameterGroupStateFault) ErrorCode() string

func (*InvalidParameterGroupStateFault) ErrorFault

func (*InvalidParameterGroupStateFault) ErrorMessage

func (e *InvalidParameterGroupStateFault) ErrorMessage() string

type InvalidParameterValueException

type InvalidParameterValueException struct {
	Message *string

	ErrorCodeOverride *string
	// contains filtered or unexported fields
}

The value for a parameter is invalid.

func (*InvalidParameterValueException) Error

func (*InvalidParameterValueException) ErrorCode

func (e *InvalidParameterValueException) ErrorCode() string

func (*InvalidParameterValueException) ErrorFault

func (*InvalidParameterValueException) ErrorMessage

func (e *InvalidParameterValueException) ErrorMessage() string

type InvalidSubnet

type InvalidSubnet struct {
	Message *string

	ErrorCodeOverride *string
	// contains filtered or unexported fields
}

An invalid subnet identifier was specified.

func (*InvalidSubnet) Error

func (e *InvalidSubnet) Error() string

func (*InvalidSubnet) ErrorCode

func (e *InvalidSubnet) ErrorCode() string

func (*InvalidSubnet) ErrorFault

func (e *InvalidSubnet) ErrorFault() smithy.ErrorFault

func (*InvalidSubnet) ErrorMessage

func (e *InvalidSubnet) ErrorMessage() string

type InvalidVPCNetworkStateFault

type InvalidVPCNetworkStateFault struct {
	Message *string

	ErrorCodeOverride *string
	// contains filtered or unexported fields
}

The VPC network is in an invalid state.

func (*InvalidVPCNetworkStateFault) Error

func (*InvalidVPCNetworkStateFault) ErrorCode

func (e *InvalidVPCNetworkStateFault) ErrorCode() string

func (*InvalidVPCNetworkStateFault) ErrorFault

func (*InvalidVPCNetworkStateFault) ErrorMessage

func (e *InvalidVPCNetworkStateFault) ErrorMessage() string

type IsModifiable

type IsModifiable string
const (
	IsModifiableTrue        IsModifiable = "TRUE"
	IsModifiableFalse       IsModifiable = "FALSE"
	IsModifiableConditional IsModifiable = "CONDITIONAL"
)

Enum values for IsModifiable

func (IsModifiable) Values added in v0.29.0

func (IsModifiable) Values() []IsModifiable

Values returns all known values for IsModifiable. Note that this can be expanded in the future, and so it is only as up to date as the client. The ordering of this slice is not guaranteed to be stable across updates.

type Node

type Node struct {

	// The Availability Zone (AZ) in which the node has been deployed.
	AvailabilityZone *string

	// 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.
	Endpoint *Endpoint

	// The date and time (in UNIX epoch format) when the node was launched.
	NodeCreateTime *time.Time

	// A system-generated identifier for the node.
	NodeId *string

	// The current status of the node. For example: available .
	NodeStatus *string

	// The status of the parameter group associated with this node. For example,
	// in-sync .
	ParameterGroupStatus *string
	// contains filtered or unexported fields
}

Represents an individual node within a DAX cluster.

type NodeNotFoundFault

type NodeNotFoundFault struct {
	Message *string

	ErrorCodeOverride *string
	// contains filtered or unexported fields
}

None of the nodes in the cluster have the given node ID.

func (*NodeNotFoundFault) Error

func (e *NodeNotFoundFault) Error() string

func (*NodeNotFoundFault) ErrorCode

func (e *NodeNotFoundFault) ErrorCode() string

func (*NodeNotFoundFault) ErrorFault

func (e *NodeNotFoundFault) ErrorFault() smithy.ErrorFault

func (*NodeNotFoundFault) ErrorMessage

func (e *NodeNotFoundFault) ErrorMessage() string

type NodeQuotaForClusterExceededFault

type NodeQuotaForClusterExceededFault struct {
	Message *string

	ErrorCodeOverride *string
	// contains filtered or unexported fields
}

You have attempted to exceed the maximum number of nodes for a DAX cluster.

func (*NodeQuotaForClusterExceededFault) Error

func (*NodeQuotaForClusterExceededFault) ErrorCode

func (*NodeQuotaForClusterExceededFault) ErrorFault

func (*NodeQuotaForClusterExceededFault) ErrorMessage

func (e *NodeQuotaForClusterExceededFault) ErrorMessage() string

type NodeQuotaForCustomerExceededFault

type NodeQuotaForCustomerExceededFault struct {
	Message *string

	ErrorCodeOverride *string
	// contains filtered or unexported fields
}

You have attempted to exceed the maximum number of nodes for your AWS account.

func (*NodeQuotaForCustomerExceededFault) Error

func (*NodeQuotaForCustomerExceededFault) ErrorCode

func (*NodeQuotaForCustomerExceededFault) ErrorFault

func (*NodeQuotaForCustomerExceededFault) ErrorMessage

func (e *NodeQuotaForCustomerExceededFault) ErrorMessage() string

type NodeTypeSpecificValue

type NodeTypeSpecificValue struct {

	// A node type to which the parameter value applies.
	NodeType *string

	// The parameter value for this node type.
	Value *string
	// contains filtered or unexported fields
}

Represents a parameter value that is applicable to a particular node type.

type NotificationConfiguration

type NotificationConfiguration struct {

	// The Amazon Resource Name (ARN) that identifies the topic.
	TopicArn *string

	// 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.
	TopicStatus *string
	// contains filtered or unexported fields
}

Describes a notification topic and its status. Notification topics are used for publishing DAX events to subscribers using Amazon Simple Notification Service (SNS).

type Parameter

type Parameter struct {

	// A range of values within which the parameter can be set.
	AllowedValues *string

	// 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.
	ChangeType ChangeType

	// The data type of the parameter. For example, integer :
	DataType *string

	// A description of the parameter
	Description *string

	// Whether the customer is allowed to modify the parameter.
	IsModifiable IsModifiable

	// A list of node types, and specific parameter values for each node.
	NodeTypeSpecificValues []NodeTypeSpecificValue

	// The name of the parameter.
	ParameterName *string

	// Determines whether the parameter can be applied to any nodes, or only nodes of
	// a particular type.
	ParameterType ParameterType

	// The value for the parameter.
	ParameterValue *string

	// How the parameter is defined. For example, system denotes a system-defined
	// parameter.
	Source *string
	// contains filtered or unexported fields
}

Describes an individual setting that controls some aspect of DAX behavior.

type ParameterGroup

type ParameterGroup struct {

	// A description of the parameter group.
	Description *string

	// The name of the parameter group.
	ParameterGroupName *string
	// contains filtered or unexported fields
}

A named set of parameters that are applied to all of the nodes in a DAX cluster.

type ParameterGroupAlreadyExistsFault

type ParameterGroupAlreadyExistsFault struct {
	Message *string

	ErrorCodeOverride *string
	// contains filtered or unexported fields
}

The specified parameter group already exists.

func (*ParameterGroupAlreadyExistsFault) Error

func (*ParameterGroupAlreadyExistsFault) ErrorCode

func (*ParameterGroupAlreadyExistsFault) ErrorFault

func (*ParameterGroupAlreadyExistsFault) ErrorMessage

func (e *ParameterGroupAlreadyExistsFault) ErrorMessage() string

type ParameterGroupNotFoundFault

type ParameterGroupNotFoundFault struct {
	Message *string

	ErrorCodeOverride *string
	// contains filtered or unexported fields
}

The specified parameter group does not exist.

func (*ParameterGroupNotFoundFault) Error

func (*ParameterGroupNotFoundFault) ErrorCode

func (e *ParameterGroupNotFoundFault) ErrorCode() string

func (*ParameterGroupNotFoundFault) ErrorFault

func (*ParameterGroupNotFoundFault) ErrorMessage

func (e *ParameterGroupNotFoundFault) ErrorMessage() string

type ParameterGroupQuotaExceededFault

type ParameterGroupQuotaExceededFault struct {
	Message *string

	ErrorCodeOverride *string
	// contains filtered or unexported fields
}

You have attempted to exceed the maximum number of parameter groups.

func (*ParameterGroupQuotaExceededFault) Error

func (*ParameterGroupQuotaExceededFault) ErrorCode

func (*ParameterGroupQuotaExceededFault) ErrorFault

func (*ParameterGroupQuotaExceededFault) ErrorMessage

func (e *ParameterGroupQuotaExceededFault) ErrorMessage() string

type ParameterGroupStatus

type ParameterGroupStatus struct {

	// The node IDs of one or more nodes to be rebooted.
	NodeIdsToReboot []string

	// The status of parameter updates.
	ParameterApplyStatus *string

	// The name of the parameter group.
	ParameterGroupName *string
	// contains filtered or unexported fields
}

The status of a parameter group.

type ParameterNameValue

type ParameterNameValue struct {

	// The name of the parameter.
	ParameterName *string

	// The value of the parameter.
	ParameterValue *string
	// contains filtered or unexported fields
}

An individual DAX parameter.

type ParameterType

type ParameterType string
const (
	ParameterTypeDefault          ParameterType = "DEFAULT"
	ParameterTypeNodeTypeSpecific ParameterType = "NODE_TYPE_SPECIFIC"
)

Enum values for ParameterType

func (ParameterType) Values added in v0.29.0

func (ParameterType) Values() []ParameterType

Values returns all known values for ParameterType. Note that this can be expanded in the future, and so it is only as up to date as the client. The ordering of this slice is not guaranteed to be stable across updates.

type SSEDescription

type SSEDescription struct {

	// 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.
	Status SSEStatus
	// contains filtered or unexported fields
}

The description of the server-side encryption status on the specified DAX cluster.

type SSESpecification

type SSESpecification struct {

	// Indicates whether server-side encryption is enabled (true) or disabled (false)
	// on the cluster.
	//
	// This member is required.
	Enabled *bool
	// contains filtered or unexported fields
}

Represents the settings used to enable server-side encryption.

type SSEStatus

type SSEStatus string
const (
	SSEStatusEnabling  SSEStatus = "ENABLING"
	SSEStatusEnabled   SSEStatus = "ENABLED"
	SSEStatusDisabling SSEStatus = "DISABLING"
	SSEStatusDisabled  SSEStatus = "DISABLED"
)

Enum values for SSEStatus

func (SSEStatus) Values added in v0.29.0

func (SSEStatus) Values() []SSEStatus

Values returns all known values for SSEStatus. Note that this can be expanded in the future, and so it is only as up to date as the client. The ordering of this slice is not guaranteed to be stable across updates.

type SecurityGroupMembership

type SecurityGroupMembership struct {

	// The unique ID for this security group.
	SecurityGroupIdentifier *string

	// The status of this security group.
	Status *string
	// contains filtered or unexported fields
}

An individual VPC security group and its status.

type ServiceLinkedRoleNotFoundFault

type ServiceLinkedRoleNotFoundFault struct {
	Message *string

	ErrorCodeOverride *string
	// contains filtered or unexported fields
}

The specified service linked role (SLR) was not found.

func (*ServiceLinkedRoleNotFoundFault) Error

func (*ServiceLinkedRoleNotFoundFault) ErrorCode

func (e *ServiceLinkedRoleNotFoundFault) ErrorCode() string

func (*ServiceLinkedRoleNotFoundFault) ErrorFault

func (*ServiceLinkedRoleNotFoundFault) ErrorMessage

func (e *ServiceLinkedRoleNotFoundFault) ErrorMessage() string

type ServiceQuotaExceededException added in v1.3.0

type ServiceQuotaExceededException struct {
	Message *string

	ErrorCodeOverride *string
	// contains filtered or unexported fields
}

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.

func (*ServiceQuotaExceededException) Error added in v1.3.0

func (*ServiceQuotaExceededException) ErrorCode added in v1.3.0

func (e *ServiceQuotaExceededException) ErrorCode() string

func (*ServiceQuotaExceededException) ErrorFault added in v1.3.0

func (*ServiceQuotaExceededException) ErrorMessage added in v1.3.0

func (e *ServiceQuotaExceededException) ErrorMessage() string

type SourceType

type SourceType string
const (
	SourceTypeCluster        SourceType = "CLUSTER"
	SourceTypeParameterGroup SourceType = "PARAMETER_GROUP"
	SourceTypeSubnetGroup    SourceType = "SUBNET_GROUP"
)

Enum values for SourceType

func (SourceType) Values added in v0.29.0

func (SourceType) Values() []SourceType

Values returns all known values for SourceType. Note that this can be expanded in the future, and so it is only as up to date as the client. The ordering of this slice is not guaranteed to be stable across updates.

type Subnet

type Subnet struct {

	// The Availability Zone (AZ) for the subnet.
	SubnetAvailabilityZone *string

	// The system-assigned identifier for the subnet.
	SubnetIdentifier *string
	// contains filtered or unexported fields
}

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 SubnetGroup

type SubnetGroup struct {

	// The description of the subnet group.
	Description *string

	// The name of the subnet group.
	SubnetGroupName *string

	// A list of subnets associated with the subnet group.
	Subnets []Subnet

	// The Amazon Virtual Private Cloud identifier (VPC ID) of the subnet group.
	VpcId *string
	// contains filtered or unexported fields
}

Represents the output of one of the following actions:

  • CreateSubnetGroup
  • ModifySubnetGroup

type SubnetGroupAlreadyExistsFault

type SubnetGroupAlreadyExistsFault struct {
	Message *string

	ErrorCodeOverride *string
	// contains filtered or unexported fields
}

The specified subnet group already exists.

func (*SubnetGroupAlreadyExistsFault) Error

func (*SubnetGroupAlreadyExistsFault) ErrorCode

func (e *SubnetGroupAlreadyExistsFault) ErrorCode() string

func (*SubnetGroupAlreadyExistsFault) ErrorFault

func (*SubnetGroupAlreadyExistsFault) ErrorMessage

func (e *SubnetGroupAlreadyExistsFault) ErrorMessage() string

type SubnetGroupInUseFault

type SubnetGroupInUseFault struct {
	Message *string

	ErrorCodeOverride *string
	// contains filtered or unexported fields
}

The specified subnet group is currently in use.

func (*SubnetGroupInUseFault) Error

func (e *SubnetGroupInUseFault) Error() string

func (*SubnetGroupInUseFault) ErrorCode

func (e *SubnetGroupInUseFault) ErrorCode() string

func (*SubnetGroupInUseFault) ErrorFault

func (e *SubnetGroupInUseFault) ErrorFault() smithy.ErrorFault

func (*SubnetGroupInUseFault) ErrorMessage

func (e *SubnetGroupInUseFault) ErrorMessage() string

type SubnetGroupNotFoundFault

type SubnetGroupNotFoundFault struct {
	Message *string

	ErrorCodeOverride *string
	// contains filtered or unexported fields
}

The requested subnet group name does not refer to an existing subnet group.

func (*SubnetGroupNotFoundFault) Error

func (e *SubnetGroupNotFoundFault) Error() string

func (*SubnetGroupNotFoundFault) ErrorCode

func (e *SubnetGroupNotFoundFault) ErrorCode() string

func (*SubnetGroupNotFoundFault) ErrorFault

func (e *SubnetGroupNotFoundFault) ErrorFault() smithy.ErrorFault

func (*SubnetGroupNotFoundFault) ErrorMessage

func (e *SubnetGroupNotFoundFault) ErrorMessage() string

type SubnetGroupQuotaExceededFault

type SubnetGroupQuotaExceededFault struct {
	Message *string

	ErrorCodeOverride *string
	// contains filtered or unexported fields
}

The request cannot be processed because it would exceed the allowed number of subnets in a subnet group.

func (*SubnetGroupQuotaExceededFault) Error

func (*SubnetGroupQuotaExceededFault) ErrorCode

func (e *SubnetGroupQuotaExceededFault) ErrorCode() string

func (*SubnetGroupQuotaExceededFault) ErrorFault

func (*SubnetGroupQuotaExceededFault) ErrorMessage

func (e *SubnetGroupQuotaExceededFault) ErrorMessage() string

type SubnetInUse

type SubnetInUse struct {
	Message *string

	ErrorCodeOverride *string
	// contains filtered or unexported fields
}

The requested subnet is being used by another subnet group.

func (*SubnetInUse) Error

func (e *SubnetInUse) Error() string

func (*SubnetInUse) ErrorCode

func (e *SubnetInUse) ErrorCode() string

func (*SubnetInUse) ErrorFault

func (e *SubnetInUse) ErrorFault() smithy.ErrorFault

func (*SubnetInUse) ErrorMessage

func (e *SubnetInUse) ErrorMessage() string

type SubnetQuotaExceededFault

type SubnetQuotaExceededFault struct {
	Message *string

	ErrorCodeOverride *string
	// contains filtered or unexported fields
}

The request cannot be processed because it would exceed the allowed number of subnets in a subnet group.

func (*SubnetQuotaExceededFault) Error

func (e *SubnetQuotaExceededFault) Error() string

func (*SubnetQuotaExceededFault) ErrorCode

func (e *SubnetQuotaExceededFault) ErrorCode() string

func (*SubnetQuotaExceededFault) ErrorFault

func (e *SubnetQuotaExceededFault) ErrorFault() smithy.ErrorFault

func (*SubnetQuotaExceededFault) ErrorMessage

func (e *SubnetQuotaExceededFault) ErrorMessage() string

type Tag

type Tag struct {

	// 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.
	Key *string

	// The value of the tag. Tag values are case-sensitive and can be null.
	Value *string
	// contains filtered or unexported fields
}

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.

type TagNotFoundFault

type TagNotFoundFault struct {
	Message *string

	ErrorCodeOverride *string
	// contains filtered or unexported fields
}

The tag does not exist.

func (*TagNotFoundFault) Error

func (e *TagNotFoundFault) Error() string

func (*TagNotFoundFault) ErrorCode

func (e *TagNotFoundFault) ErrorCode() string

func (*TagNotFoundFault) ErrorFault

func (e *TagNotFoundFault) ErrorFault() smithy.ErrorFault

func (*TagNotFoundFault) ErrorMessage

func (e *TagNotFoundFault) ErrorMessage() string

type TagQuotaPerResourceExceeded

type TagQuotaPerResourceExceeded struct {
	Message *string

	ErrorCodeOverride *string
	// contains filtered or unexported fields
}

You have exceeded the maximum number of tags for this DAX cluster.

func (*TagQuotaPerResourceExceeded) Error

func (*TagQuotaPerResourceExceeded) ErrorCode

func (e *TagQuotaPerResourceExceeded) ErrorCode() string

func (*TagQuotaPerResourceExceeded) ErrorFault

func (*TagQuotaPerResourceExceeded) ErrorMessage

func (e *TagQuotaPerResourceExceeded) ErrorMessage() string

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL