Cluster
public struct Cluster : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
The number of nodes in the cluster that are active (i.e., capable of serving requests).
Declaration
Swift
public let activeNodes: Int?
-
The Amazon Resource Name (ARN) that uniquely identifies the cluster.
Declaration
Swift
public let clusterArn: String?
-
The configuration endpoint for this DAX cluster, consisting of a DNS name and a port number. Client applications can specify this endpoint, rather than an individual node endpoint, and allow the DAX client software to intelligently route requests and responses to nodes in the DAX cluster.
Declaration
Swift
public let clusterDiscoveryEndpoint: Endpoint?
-
The name of the DAX cluster.
Declaration
Swift
public let clusterName: String?
-
The description of the cluster.
Declaration
Swift
public let 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.
Declaration
Swift
public let iamRoleArn: String?
-
A list of nodes to be removed from the cluster.
Declaration
Swift
public let nodeIdsToRemove: [String]?
-
A list of nodes that are currently in the cluster.
Declaration
Swift
public let nodes: [Node]?
-
The node type for the nodes in the cluster. (All nodes in a DAX cluster are of the same type.)
Declaration
Swift
public let nodeType: String?
-
Describes a notification topic and its status. Notification topics are used for publishing DAX events to subscribers using Amazon Simple Notification Service (SNS).
Declaration
Swift
public let notificationConfiguration: NotificationConfiguration?
-
The parameter group being used by nodes in the cluster.
Declaration
Swift
public let 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.
Declaration
Swift
public let preferredMaintenanceWindow: String?
-
A list of security groups, and the status of each, for the nodes in the cluster.
Declaration
Swift
public let securityGroups: [SecurityGroupMembership]?
-
The description of the server-side encryption status on the specified DAX cluster.
Declaration
Swift
public let sSEDescription: SSEDescription?
-
The current status of the cluster.
Declaration
Swift
public let status: String?
-
The subnet group where the DAX cluster is running.
Declaration
Swift
public let subnetGroup: String?
-
The total number of nodes in the cluster.
Declaration
Swift
public let totalNodes: Int?
-
init(activeNodes:clusterArn:clusterDiscoveryEndpoint:clusterName:description:iamRoleArn:nodeIdsToRemove:nodes:nodeType:notificationConfiguration:parameterGroup:preferredMaintenanceWindow:securityGroups:sSEDescription:status:subnetGroup:totalNodes:)
Undocumented
Declaration
Swift
public init(activeNodes: Int? = nil, clusterArn: String? = nil, clusterDiscoveryEndpoint: Endpoint? = nil, clusterName: String? = nil, description: String? = nil, iamRoleArn: String? = nil, nodeIdsToRemove: [String]? = nil, nodes: [Node]? = nil, nodeType: String? = nil, notificationConfiguration: NotificationConfiguration? = nil, parameterGroup: ParameterGroupStatus? = nil, preferredMaintenanceWindow: String? = nil, securityGroups: [SecurityGroupMembership]? = nil, sSEDescription: SSEDescription? = nil, status: String? = nil, subnetGroup: String? = nil, totalNodes: Int? = nil)