Show / Hide Table of Contents

Class ClusterState

Inheritance
System.Object
InputArgs
ResourceArgs
ClusterState
Inherited Members
ResourceArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Aws.Dax
Assembly: Pulumi.Aws.dll
Syntax
public sealed class ClusterState : ResourceArgs

Constructors

View Source

ClusterState()

Declaration
public ClusterState()

Properties

View Source

Arn

The ARN of the DAX cluster

Declaration
public Input<string> Arn { get; set; }
Property Value
Type Description
Input<System.String>
View Source

AvailabilityZones

List of Availability Zones in which the nodes will be created

Declaration
public InputList<string> AvailabilityZones { get; set; }
Property Value
Type Description
InputList<System.String>
View Source

ClusterAddress

The DNS name of the DAX cluster without the port appended

Declaration
public Input<string> ClusterAddress { get; set; }
Property Value
Type Description
Input<System.String>
View Source

ClusterName

Group identifier. DAX converts this name to lowercase

Declaration
public Input<string> ClusterName { get; set; }
Property Value
Type Description
Input<System.String>
View Source

ConfigurationEndpoint

The configuration endpoint for this DAX cluster, consisting of a DNS name and a port number

Declaration
public Input<string> ConfigurationEndpoint { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Description

Description for the cluster

Declaration
public Input<string> Description { get; set; }
Property Value
Type Description
Input<System.String>
View Source

IamRoleArn

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
public Input<string> IamRoleArn { get; set; }
Property Value
Type Description
Input<System.String>
View Source

MaintenanceWindow

Specifies the weekly time range for when maintenance on the cluster is performed. The format is ddd:hh24:mi-ddd:hh24:mi (24H Clock UTC). The minimum maintenance window is a 60 minute period. Example: sun:05:00-sun:09:00

Declaration
public Input<string> MaintenanceWindow { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Nodes

List of node objects including id, address, port and availability_zone. Referenceable e.g. as ${aws_dax_cluster.test.nodes.0.address}

Declaration
public InputList<ClusterNodeGetArgs> Nodes { get; set; }
Property Value
Type Description
InputList<ClusterNodeGetArgs>
View Source

NodeType

The compute and memory capacity of the nodes. See Nodes for supported node types

Declaration
public Input<string> NodeType { get; set; }
Property Value
Type Description
Input<System.String>
View Source

NotificationTopicArn

An Amazon Resource Name (ARN) of an SNS topic to send DAX notifications to. Example: arn:aws:sns:us-east-1:012345678999:my_sns_topic

Declaration
public Input<string> NotificationTopicArn { get; set; }
Property Value
Type Description
Input<System.String>
View Source

ParameterGroupName

Name of the parameter group to associate with this DAX cluster

Declaration
public Input<string> ParameterGroupName { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Port

The port used by the configuration endpoint

Declaration
public Input<int> Port { get; set; }
Property Value
Type Description
Input<System.Int32>
View Source

ReplicationFactor

The number of nodes in the DAX cluster. A replication factor of 1 will create a single-node cluster, without any read replicas

Declaration
public Input<int> ReplicationFactor { get; set; }
Property Value
Type Description
Input<System.Int32>
View Source

SecurityGroupIds

One or more VPC security groups associated with the cluster

Declaration
public InputList<string> SecurityGroupIds { get; set; }
Property Value
Type Description
InputList<System.String>
View Source

ServerSideEncryption

Encrypt at rest options

Declaration
public Input<ClusterServerSideEncryptionGetArgs> ServerSideEncryption { get; set; }
Property Value
Type Description
Input<ClusterServerSideEncryptionGetArgs>
View Source

SubnetGroupName

Name of the subnet group to be used for the cluster

Declaration
public Input<string> SubnetGroupName { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Tags

A map of tags to assign to the resource

Declaration
public InputMap<object> Tags { get; set; }
Property Value
Type Description
InputMap<System.Object>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.