Show / Hide Table of Contents

Class ClusterArgs

Inheritance
System.Object
InputArgs
ResourceArgs
ClusterArgs
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 ClusterArgs : ResourceArgs

Constructors

View Source

ClusterArgs()

Declaration
public ClusterArgs()

Properties

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

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

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

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

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<ClusterServerSideEncryptionArgs> ServerSideEncryption { get; set; }
Property Value
Type Description
Input<ClusterServerSideEncryptionArgs>
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.