aws.dax.Cluster
Explore with Pulumi AI
Provides a DAX Cluster resource.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const bar = new aws.dax.Cluster("bar", {
    clusterName: "cluster-example",
    iamRoleArn: example.arn,
    nodeType: "dax.r4.large",
    replicationFactor: 1,
});
import pulumi
import pulumi_aws as aws
bar = aws.dax.Cluster("bar",
    cluster_name="cluster-example",
    iam_role_arn=example["arn"],
    node_type="dax.r4.large",
    replication_factor=1)
package main
import (
	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/dax"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := dax.NewCluster(ctx, "bar", &dax.ClusterArgs{
			ClusterName:       pulumi.String("cluster-example"),
			IamRoleArn:        pulumi.Any(example.Arn),
			NodeType:          pulumi.String("dax.r4.large"),
			ReplicationFactor: pulumi.Int(1),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;
return await Deployment.RunAsync(() => 
{
    var bar = new Aws.Dax.Cluster("bar", new()
    {
        ClusterName = "cluster-example",
        IamRoleArn = example.Arn,
        NodeType = "dax.r4.large",
        ReplicationFactor = 1,
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.dax.Cluster;
import com.pulumi.aws.dax.ClusterArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }
    public static void stack(Context ctx) {
        var bar = new Cluster("bar", ClusterArgs.builder()
            .clusterName("cluster-example")
            .iamRoleArn(example.arn())
            .nodeType("dax.r4.large")
            .replicationFactor(1)
            .build());
    }
}
resources:
  bar:
    type: aws:dax:Cluster
    properties:
      clusterName: cluster-example
      iamRoleArn: ${example.arn}
      nodeType: dax.r4.large
      replicationFactor: 1
Create Cluster Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Cluster(name: string, args: ClusterArgs, opts?: CustomResourceOptions);@overload
def Cluster(resource_name: str,
            args: ClusterArgs,
            opts: Optional[ResourceOptions] = None)
@overload
def Cluster(resource_name: str,
            opts: Optional[ResourceOptions] = None,
            replication_factor: Optional[int] = None,
            node_type: Optional[str] = None,
            cluster_name: Optional[str] = None,
            iam_role_arn: Optional[str] = None,
            description: Optional[str] = None,
            maintenance_window: Optional[str] = None,
            cluster_endpoint_encryption_type: Optional[str] = None,
            notification_topic_arn: Optional[str] = None,
            security_group_ids: Optional[Sequence[str]] = None,
            availability_zones: Optional[Sequence[str]] = None,
            parameter_group_name: Optional[str] = None,
            server_side_encryption: Optional[ClusterServerSideEncryptionArgs] = None,
            subnet_group_name: Optional[str] = None,
            tags: Optional[Mapping[str, str]] = None)func NewCluster(ctx *Context, name string, args ClusterArgs, opts ...ResourceOption) (*Cluster, error)public Cluster(string name, ClusterArgs args, CustomResourceOptions? opts = null)
public Cluster(String name, ClusterArgs args)
public Cluster(String name, ClusterArgs args, CustomResourceOptions options)
type: aws:dax:Cluster
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args ClusterArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args ClusterArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args ClusterArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ClusterArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ClusterArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var awsClusterResource = new Aws.Dax.Cluster("awsClusterResource", new()
{
    ReplicationFactor = 0,
    NodeType = "string",
    ClusterName = "string",
    IamRoleArn = "string",
    Description = "string",
    MaintenanceWindow = "string",
    ClusterEndpointEncryptionType = "string",
    NotificationTopicArn = "string",
    SecurityGroupIds = new[]
    {
        "string",
    },
    AvailabilityZones = new[]
    {
        "string",
    },
    ParameterGroupName = "string",
    ServerSideEncryption = new Aws.Dax.Inputs.ClusterServerSideEncryptionArgs
    {
        Enabled = false,
    },
    SubnetGroupName = "string",
    Tags = 
    {
        { "string", "string" },
    },
});
example, err := dax.NewCluster(ctx, "awsClusterResource", &dax.ClusterArgs{
	ReplicationFactor:             pulumi.Int(0),
	NodeType:                      pulumi.String("string"),
	ClusterName:                   pulumi.String("string"),
	IamRoleArn:                    pulumi.String("string"),
	Description:                   pulumi.String("string"),
	MaintenanceWindow:             pulumi.String("string"),
	ClusterEndpointEncryptionType: pulumi.String("string"),
	NotificationTopicArn:          pulumi.String("string"),
	SecurityGroupIds: pulumi.StringArray{
		pulumi.String("string"),
	},
	AvailabilityZones: pulumi.StringArray{
		pulumi.String("string"),
	},
	ParameterGroupName: pulumi.String("string"),
	ServerSideEncryption: &dax.ClusterServerSideEncryptionArgs{
		Enabled: pulumi.Bool(false),
	},
	SubnetGroupName: pulumi.String("string"),
	Tags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
})
var awsClusterResource = new Cluster("awsClusterResource", ClusterArgs.builder()
    .replicationFactor(0)
    .nodeType("string")
    .clusterName("string")
    .iamRoleArn("string")
    .description("string")
    .maintenanceWindow("string")
    .clusterEndpointEncryptionType("string")
    .notificationTopicArn("string")
    .securityGroupIds("string")
    .availabilityZones("string")
    .parameterGroupName("string")
    .serverSideEncryption(ClusterServerSideEncryptionArgs.builder()
        .enabled(false)
        .build())
    .subnetGroupName("string")
    .tags(Map.of("string", "string"))
    .build());
aws_cluster_resource = aws.dax.Cluster("awsClusterResource",
    replication_factor=0,
    node_type="string",
    cluster_name="string",
    iam_role_arn="string",
    description="string",
    maintenance_window="string",
    cluster_endpoint_encryption_type="string",
    notification_topic_arn="string",
    security_group_ids=["string"],
    availability_zones=["string"],
    parameter_group_name="string",
    server_side_encryption={
        "enabled": False,
    },
    subnet_group_name="string",
    tags={
        "string": "string",
    })
const awsClusterResource = new aws.dax.Cluster("awsClusterResource", {
    replicationFactor: 0,
    nodeType: "string",
    clusterName: "string",
    iamRoleArn: "string",
    description: "string",
    maintenanceWindow: "string",
    clusterEndpointEncryptionType: "string",
    notificationTopicArn: "string",
    securityGroupIds: ["string"],
    availabilityZones: ["string"],
    parameterGroupName: "string",
    serverSideEncryption: {
        enabled: false,
    },
    subnetGroupName: "string",
    tags: {
        string: "string",
    },
});
type: aws:dax:Cluster
properties:
    availabilityZones:
        - string
    clusterEndpointEncryptionType: string
    clusterName: string
    description: string
    iamRoleArn: string
    maintenanceWindow: string
    nodeType: string
    notificationTopicArn: string
    parameterGroupName: string
    replicationFactor: 0
    securityGroupIds:
        - string
    serverSideEncryption:
        enabled: false
    subnetGroupName: string
    tags:
        string: string
Cluster Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The Cluster resource accepts the following input properties:
- ClusterName string
- Group identifier. DAX converts this name to lowercase
- IamRole stringArn 
- 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
- NodeType string
- The compute and memory capacity of the nodes. See Nodes for supported node types
- ReplicationFactor int
- The number of nodes in the DAX cluster. A replication factor of 1 will create a single-node cluster, without any read replicas
- AvailabilityZones List<string>
- List of Availability Zones in which the nodes will be created
- ClusterEndpoint stringEncryption Type 
- The type of encryption the
cluster's endpoint should support. Valid values are: NONEandTLS. Default value isNONE.
- Description string
- Description for the cluster
- MaintenanceWindow string
- 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
- NotificationTopic stringArn 
- 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
- ParameterGroup stringName 
- Name of the parameter group to associate with this DAX cluster
- SecurityGroup List<string>Ids 
- One or more VPC security groups associated with the cluster
- ServerSide ClusterEncryption Server Side Encryption 
- Encrypt at rest options
- SubnetGroup stringName 
- Name of the subnet group to be used for the cluster
- Dictionary<string, string>
- A map of tags to assign to the resource. .If configured with a provider default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
- ClusterName string
- Group identifier. DAX converts this name to lowercase
- IamRole stringArn 
- 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
- NodeType string
- The compute and memory capacity of the nodes. See Nodes for supported node types
- ReplicationFactor int
- The number of nodes in the DAX cluster. A replication factor of 1 will create a single-node cluster, without any read replicas
- AvailabilityZones []string
- List of Availability Zones in which the nodes will be created
- ClusterEndpoint stringEncryption Type 
- The type of encryption the
cluster's endpoint should support. Valid values are: NONEandTLS. Default value isNONE.
- Description string
- Description for the cluster
- MaintenanceWindow string
- 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
- NotificationTopic stringArn 
- 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
- ParameterGroup stringName 
- Name of the parameter group to associate with this DAX cluster
- SecurityGroup []stringIds 
- One or more VPC security groups associated with the cluster
- ServerSide ClusterEncryption Server Side Encryption Args 
- Encrypt at rest options
- SubnetGroup stringName 
- Name of the subnet group to be used for the cluster
- map[string]string
- A map of tags to assign to the resource. .If configured with a provider default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
- clusterName String
- Group identifier. DAX converts this name to lowercase
- iamRole StringArn 
- 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
- nodeType String
- The compute and memory capacity of the nodes. See Nodes for supported node types
- replicationFactor Integer
- The number of nodes in the DAX cluster. A replication factor of 1 will create a single-node cluster, without any read replicas
- availabilityZones List<String>
- List of Availability Zones in which the nodes will be created
- clusterEndpoint StringEncryption Type 
- The type of encryption the
cluster's endpoint should support. Valid values are: NONEandTLS. Default value isNONE.
- description String
- Description for the cluster
- maintenanceWindow String
- 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
- notificationTopic StringArn 
- 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
- parameterGroup StringName 
- Name of the parameter group to associate with this DAX cluster
- securityGroup List<String>Ids 
- One or more VPC security groups associated with the cluster
- serverSide ClusterEncryption Server Side Encryption 
- Encrypt at rest options
- subnetGroup StringName 
- Name of the subnet group to be used for the cluster
- Map<String,String>
- A map of tags to assign to the resource. .If configured with a provider default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
- clusterName string
- Group identifier. DAX converts this name to lowercase
- iamRole stringArn 
- 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
- nodeType string
- The compute and memory capacity of the nodes. See Nodes for supported node types
- replicationFactor number
- The number of nodes in the DAX cluster. A replication factor of 1 will create a single-node cluster, without any read replicas
- availabilityZones string[]
- List of Availability Zones in which the nodes will be created
- clusterEndpoint stringEncryption Type 
- The type of encryption the
cluster's endpoint should support. Valid values are: NONEandTLS. Default value isNONE.
- description string
- Description for the cluster
- maintenanceWindow string
- 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
- notificationTopic stringArn 
- 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
- parameterGroup stringName 
- Name of the parameter group to associate with this DAX cluster
- securityGroup string[]Ids 
- One or more VPC security groups associated with the cluster
- serverSide ClusterEncryption Server Side Encryption 
- Encrypt at rest options
- subnetGroup stringName 
- Name of the subnet group to be used for the cluster
- {[key: string]: string}
- A map of tags to assign to the resource. .If configured with a provider default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
- cluster_name str
- Group identifier. DAX converts this name to lowercase
- iam_role_ strarn 
- 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
- node_type str
- The compute and memory capacity of the nodes. See Nodes for supported node types
- replication_factor int
- The number of nodes in the DAX cluster. A replication factor of 1 will create a single-node cluster, without any read replicas
- availability_zones Sequence[str]
- List of Availability Zones in which the nodes will be created
- cluster_endpoint_ strencryption_ type 
- The type of encryption the
cluster's endpoint should support. Valid values are: NONEandTLS. Default value isNONE.
- description str
- Description for the cluster
- maintenance_window str
- 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
- notification_topic_ strarn 
- 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
- parameter_group_ strname 
- Name of the parameter group to associate with this DAX cluster
- security_group_ Sequence[str]ids 
- One or more VPC security groups associated with the cluster
- server_side_ Clusterencryption Server Side Encryption Args 
- Encrypt at rest options
- subnet_group_ strname 
- Name of the subnet group to be used for the cluster
- Mapping[str, str]
- A map of tags to assign to the resource. .If configured with a provider default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
- clusterName String
- Group identifier. DAX converts this name to lowercase
- iamRole StringArn 
- 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
- nodeType String
- The compute and memory capacity of the nodes. See Nodes for supported node types
- replicationFactor Number
- The number of nodes in the DAX cluster. A replication factor of 1 will create a single-node cluster, without any read replicas
- availabilityZones List<String>
- List of Availability Zones in which the nodes will be created
- clusterEndpoint StringEncryption Type 
- The type of encryption the
cluster's endpoint should support. Valid values are: NONEandTLS. Default value isNONE.
- description String
- Description for the cluster
- maintenanceWindow String
- 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
- notificationTopic StringArn 
- 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
- parameterGroup StringName 
- Name of the parameter group to associate with this DAX cluster
- securityGroup List<String>Ids 
- One or more VPC security groups associated with the cluster
- serverSide Property MapEncryption 
- Encrypt at rest options
- subnetGroup StringName 
- Name of the subnet group to be used for the cluster
- Map<String>
- A map of tags to assign to the resource. .If configured with a provider default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
Outputs
All input properties are implicitly available as output properties. Additionally, the Cluster resource produces the following output properties:
- Arn string
- The ARN of the DAX cluster
- ClusterAddress string
- The DNS name of the DAX cluster without the port appended
- ConfigurationEndpoint string
- The configuration endpoint for this DAX cluster, consisting of a DNS name and a port number
- Id string
- The provider-assigned unique ID for this managed resource.
- Nodes
List<ClusterNode> 
- List of node objects including id,address,portandavailability_zone. Referenceable e.g., as${aws_dax_cluster.test.nodes.0.address}
- Port int
- The port used by the configuration endpoint
- Dictionary<string, string>
- A map of tags assigned to the resource, including those inherited from the provider default_tagsconfiguration block.
- Arn string
- The ARN of the DAX cluster
- ClusterAddress string
- The DNS name of the DAX cluster without the port appended
- ConfigurationEndpoint string
- The configuration endpoint for this DAX cluster, consisting of a DNS name and a port number
- Id string
- The provider-assigned unique ID for this managed resource.
- Nodes
[]ClusterNode 
- List of node objects including id,address,portandavailability_zone. Referenceable e.g., as${aws_dax_cluster.test.nodes.0.address}
- Port int
- The port used by the configuration endpoint
- map[string]string
- A map of tags assigned to the resource, including those inherited from the provider default_tagsconfiguration block.
- arn String
- The ARN of the DAX cluster
- clusterAddress String
- The DNS name of the DAX cluster without the port appended
- configurationEndpoint String
- The configuration endpoint for this DAX cluster, consisting of a DNS name and a port number
- id String
- The provider-assigned unique ID for this managed resource.
- nodes
List<ClusterNode> 
- List of node objects including id,address,portandavailability_zone. Referenceable e.g., as${aws_dax_cluster.test.nodes.0.address}
- port Integer
- The port used by the configuration endpoint
- Map<String,String>
- A map of tags assigned to the resource, including those inherited from the provider default_tagsconfiguration block.
- arn string
- The ARN of the DAX cluster
- clusterAddress string
- The DNS name of the DAX cluster without the port appended
- configurationEndpoint string
- The configuration endpoint for this DAX cluster, consisting of a DNS name and a port number
- id string
- The provider-assigned unique ID for this managed resource.
- nodes
ClusterNode[] 
- List of node objects including id,address,portandavailability_zone. Referenceable e.g., as${aws_dax_cluster.test.nodes.0.address}
- port number
- The port used by the configuration endpoint
- {[key: string]: string}
- A map of tags assigned to the resource, including those inherited from the provider default_tagsconfiguration block.
- arn str
- The ARN of the DAX cluster
- cluster_address str
- The DNS name of the DAX cluster without the port appended
- configuration_endpoint str
- The configuration endpoint for this DAX cluster, consisting of a DNS name and a port number
- id str
- The provider-assigned unique ID for this managed resource.
- nodes
Sequence[ClusterNode] 
- List of node objects including id,address,portandavailability_zone. Referenceable e.g., as${aws_dax_cluster.test.nodes.0.address}
- port int
- The port used by the configuration endpoint
- Mapping[str, str]
- A map of tags assigned to the resource, including those inherited from the provider default_tagsconfiguration block.
- arn String
- The ARN of the DAX cluster
- clusterAddress String
- The DNS name of the DAX cluster without the port appended
- configurationEndpoint String
- The configuration endpoint for this DAX cluster, consisting of a DNS name and a port number
- id String
- The provider-assigned unique ID for this managed resource.
- nodes List<Property Map>
- List of node objects including id,address,portandavailability_zone. Referenceable e.g., as${aws_dax_cluster.test.nodes.0.address}
- port Number
- The port used by the configuration endpoint
- Map<String>
- A map of tags assigned to the resource, including those inherited from the provider default_tagsconfiguration block.
Look up Existing Cluster Resource
Get an existing Cluster resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: ClusterState, opts?: CustomResourceOptions): Cluster@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        arn: Optional[str] = None,
        availability_zones: Optional[Sequence[str]] = None,
        cluster_address: Optional[str] = None,
        cluster_endpoint_encryption_type: Optional[str] = None,
        cluster_name: Optional[str] = None,
        configuration_endpoint: Optional[str] = None,
        description: Optional[str] = None,
        iam_role_arn: Optional[str] = None,
        maintenance_window: Optional[str] = None,
        node_type: Optional[str] = None,
        nodes: Optional[Sequence[ClusterNodeArgs]] = None,
        notification_topic_arn: Optional[str] = None,
        parameter_group_name: Optional[str] = None,
        port: Optional[int] = None,
        replication_factor: Optional[int] = None,
        security_group_ids: Optional[Sequence[str]] = None,
        server_side_encryption: Optional[ClusterServerSideEncryptionArgs] = None,
        subnet_group_name: Optional[str] = None,
        tags: Optional[Mapping[str, str]] = None,
        tags_all: Optional[Mapping[str, str]] = None) -> Clusterfunc GetCluster(ctx *Context, name string, id IDInput, state *ClusterState, opts ...ResourceOption) (*Cluster, error)public static Cluster Get(string name, Input<string> id, ClusterState? state, CustomResourceOptions? opts = null)public static Cluster get(String name, Output<String> id, ClusterState state, CustomResourceOptions options)resources:  _:    type: aws:dax:Cluster    get:      id: ${id}- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Arn string
- The ARN of the DAX cluster
- AvailabilityZones List<string>
- List of Availability Zones in which the nodes will be created
- ClusterAddress string
- The DNS name of the DAX cluster without the port appended
- ClusterEndpoint stringEncryption Type 
- The type of encryption the
cluster's endpoint should support. Valid values are: NONEandTLS. Default value isNONE.
- ClusterName string
- Group identifier. DAX converts this name to lowercase
- ConfigurationEndpoint string
- The configuration endpoint for this DAX cluster, consisting of a DNS name and a port number
- Description string
- Description for the cluster
- IamRole stringArn 
- 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
- MaintenanceWindow string
- 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
- NodeType string
- The compute and memory capacity of the nodes. See Nodes for supported node types
- Nodes
List<ClusterNode> 
- List of node objects including id,address,portandavailability_zone. Referenceable e.g., as${aws_dax_cluster.test.nodes.0.address}
- NotificationTopic stringArn 
- 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
- ParameterGroup stringName 
- Name of the parameter group to associate with this DAX cluster
- Port int
- The port used by the configuration endpoint
- ReplicationFactor int
- The number of nodes in the DAX cluster. A replication factor of 1 will create a single-node cluster, without any read replicas
- SecurityGroup List<string>Ids 
- One or more VPC security groups associated with the cluster
- ServerSide ClusterEncryption Server Side Encryption 
- Encrypt at rest options
- SubnetGroup stringName 
- Name of the subnet group to be used for the cluster
- Dictionary<string, string>
- A map of tags to assign to the resource. .If configured with a provider default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
- Dictionary<string, string>
- A map of tags assigned to the resource, including those inherited from the provider default_tagsconfiguration block.
- Arn string
- The ARN of the DAX cluster
- AvailabilityZones []string
- List of Availability Zones in which the nodes will be created
- ClusterAddress string
- The DNS name of the DAX cluster without the port appended
- ClusterEndpoint stringEncryption Type 
- The type of encryption the
cluster's endpoint should support. Valid values are: NONEandTLS. Default value isNONE.
- ClusterName string
- Group identifier. DAX converts this name to lowercase
- ConfigurationEndpoint string
- The configuration endpoint for this DAX cluster, consisting of a DNS name and a port number
- Description string
- Description for the cluster
- IamRole stringArn 
- 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
- MaintenanceWindow string
- 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
- NodeType string
- The compute and memory capacity of the nodes. See Nodes for supported node types
- Nodes
[]ClusterNode Args 
- List of node objects including id,address,portandavailability_zone. Referenceable e.g., as${aws_dax_cluster.test.nodes.0.address}
- NotificationTopic stringArn 
- 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
- ParameterGroup stringName 
- Name of the parameter group to associate with this DAX cluster
- Port int
- The port used by the configuration endpoint
- ReplicationFactor int
- The number of nodes in the DAX cluster. A replication factor of 1 will create a single-node cluster, without any read replicas
- SecurityGroup []stringIds 
- One or more VPC security groups associated with the cluster
- ServerSide ClusterEncryption Server Side Encryption Args 
- Encrypt at rest options
- SubnetGroup stringName 
- Name of the subnet group to be used for the cluster
- map[string]string
- A map of tags to assign to the resource. .If configured with a provider default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
- map[string]string
- A map of tags assigned to the resource, including those inherited from the provider default_tagsconfiguration block.
- arn String
- The ARN of the DAX cluster
- availabilityZones List<String>
- List of Availability Zones in which the nodes will be created
- clusterAddress String
- The DNS name of the DAX cluster without the port appended
- clusterEndpoint StringEncryption Type 
- The type of encryption the
cluster's endpoint should support. Valid values are: NONEandTLS. Default value isNONE.
- clusterName String
- Group identifier. DAX converts this name to lowercase
- configurationEndpoint String
- The configuration endpoint for this DAX cluster, consisting of a DNS name and a port number
- description String
- Description for the cluster
- iamRole StringArn 
- 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
- maintenanceWindow String
- 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
- nodeType String
- The compute and memory capacity of the nodes. See Nodes for supported node types
- nodes
List<ClusterNode> 
- List of node objects including id,address,portandavailability_zone. Referenceable e.g., as${aws_dax_cluster.test.nodes.0.address}
- notificationTopic StringArn 
- 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
- parameterGroup StringName 
- Name of the parameter group to associate with this DAX cluster
- port Integer
- The port used by the configuration endpoint
- replicationFactor Integer
- The number of nodes in the DAX cluster. A replication factor of 1 will create a single-node cluster, without any read replicas
- securityGroup List<String>Ids 
- One or more VPC security groups associated with the cluster
- serverSide ClusterEncryption Server Side Encryption 
- Encrypt at rest options
- subnetGroup StringName 
- Name of the subnet group to be used for the cluster
- Map<String,String>
- A map of tags to assign to the resource. .If configured with a provider default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
- Map<String,String>
- A map of tags assigned to the resource, including those inherited from the provider default_tagsconfiguration block.
- arn string
- The ARN of the DAX cluster
- availabilityZones string[]
- List of Availability Zones in which the nodes will be created
- clusterAddress string
- The DNS name of the DAX cluster without the port appended
- clusterEndpoint stringEncryption Type 
- The type of encryption the
cluster's endpoint should support. Valid values are: NONEandTLS. Default value isNONE.
- clusterName string
- Group identifier. DAX converts this name to lowercase
- configurationEndpoint string
- The configuration endpoint for this DAX cluster, consisting of a DNS name and a port number
- description string
- Description for the cluster
- iamRole stringArn 
- 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
- maintenanceWindow string
- 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
- nodeType string
- The compute and memory capacity of the nodes. See Nodes for supported node types
- nodes
ClusterNode[] 
- List of node objects including id,address,portandavailability_zone. Referenceable e.g., as${aws_dax_cluster.test.nodes.0.address}
- notificationTopic stringArn 
- 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
- parameterGroup stringName 
- Name of the parameter group to associate with this DAX cluster
- port number
- The port used by the configuration endpoint
- replicationFactor number
- The number of nodes in the DAX cluster. A replication factor of 1 will create a single-node cluster, without any read replicas
- securityGroup string[]Ids 
- One or more VPC security groups associated with the cluster
- serverSide ClusterEncryption Server Side Encryption 
- Encrypt at rest options
- subnetGroup stringName 
- Name of the subnet group to be used for the cluster
- {[key: string]: string}
- A map of tags to assign to the resource. .If configured with a provider default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
- {[key: string]: string}
- A map of tags assigned to the resource, including those inherited from the provider default_tagsconfiguration block.
- arn str
- The ARN of the DAX cluster
- availability_zones Sequence[str]
- List of Availability Zones in which the nodes will be created
- cluster_address str
- The DNS name of the DAX cluster without the port appended
- cluster_endpoint_ strencryption_ type 
- The type of encryption the
cluster's endpoint should support. Valid values are: NONEandTLS. Default value isNONE.
- cluster_name str
- Group identifier. DAX converts this name to lowercase
- configuration_endpoint str
- The configuration endpoint for this DAX cluster, consisting of a DNS name and a port number
- description str
- Description for the cluster
- iam_role_ strarn 
- 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
- maintenance_window str
- 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
- node_type str
- The compute and memory capacity of the nodes. See Nodes for supported node types
- nodes
Sequence[ClusterNode Args] 
- List of node objects including id,address,portandavailability_zone. Referenceable e.g., as${aws_dax_cluster.test.nodes.0.address}
- notification_topic_ strarn 
- 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
- parameter_group_ strname 
- Name of the parameter group to associate with this DAX cluster
- port int
- The port used by the configuration endpoint
- replication_factor int
- The number of nodes in the DAX cluster. A replication factor of 1 will create a single-node cluster, without any read replicas
- security_group_ Sequence[str]ids 
- One or more VPC security groups associated with the cluster
- server_side_ Clusterencryption Server Side Encryption Args 
- Encrypt at rest options
- subnet_group_ strname 
- Name of the subnet group to be used for the cluster
- Mapping[str, str]
- A map of tags to assign to the resource. .If configured with a provider default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
- Mapping[str, str]
- A map of tags assigned to the resource, including those inherited from the provider default_tagsconfiguration block.
- arn String
- The ARN of the DAX cluster
- availabilityZones List<String>
- List of Availability Zones in which the nodes will be created
- clusterAddress String
- The DNS name of the DAX cluster without the port appended
- clusterEndpoint StringEncryption Type 
- The type of encryption the
cluster's endpoint should support. Valid values are: NONEandTLS. Default value isNONE.
- clusterName String
- Group identifier. DAX converts this name to lowercase
- configurationEndpoint String
- The configuration endpoint for this DAX cluster, consisting of a DNS name and a port number
- description String
- Description for the cluster
- iamRole StringArn 
- 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
- maintenanceWindow String
- 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
- nodeType String
- The compute and memory capacity of the nodes. See Nodes for supported node types
- nodes List<Property Map>
- List of node objects including id,address,portandavailability_zone. Referenceable e.g., as${aws_dax_cluster.test.nodes.0.address}
- notificationTopic StringArn 
- 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
- parameterGroup StringName 
- Name of the parameter group to associate with this DAX cluster
- port Number
- The port used by the configuration endpoint
- replicationFactor Number
- The number of nodes in the DAX cluster. A replication factor of 1 will create a single-node cluster, without any read replicas
- securityGroup List<String>Ids 
- One or more VPC security groups associated with the cluster
- serverSide Property MapEncryption 
- Encrypt at rest options
- subnetGroup StringName 
- Name of the subnet group to be used for the cluster
- Map<String>
- A map of tags to assign to the resource. .If configured with a provider default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
- Map<String>
- A map of tags assigned to the resource, including those inherited from the provider default_tagsconfiguration block.
Supporting Types
ClusterNode, ClusterNodeArgs    
- Address string
- AvailabilityZone string
- Id string
- Port int
- The port used by the configuration endpoint
- Address string
- AvailabilityZone string
- Id string
- Port int
- The port used by the configuration endpoint
- address String
- availabilityZone String
- id String
- port Integer
- The port used by the configuration endpoint
- address string
- availabilityZone string
- id string
- port number
- The port used by the configuration endpoint
- address str
- availability_zone str
- id str
- port int
- The port used by the configuration endpoint
- address String
- availabilityZone String
- id String
- port Number
- The port used by the configuration endpoint
ClusterServerSideEncryption, ClusterServerSideEncryptionArgs        
- Enabled bool
- Whether to enable encryption at rest. Defaults to false.
- Enabled bool
- Whether to enable encryption at rest. Defaults to false.
- enabled Boolean
- Whether to enable encryption at rest. Defaults to false.
- enabled boolean
- Whether to enable encryption at rest. Defaults to false.
- enabled bool
- Whether to enable encryption at rest. Defaults to false.
- enabled Boolean
- Whether to enable encryption at rest. Defaults to false.
Import
Using pulumi import, import DAX Clusters using the cluster_name. For example:
$ pulumi import aws:dax/cluster:Cluster my_cluster my_cluster
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- AWS Classic pulumi/pulumi-aws
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the awsTerraform Provider.