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:
- Cluster
Name string - Group identifier. DAX converts this name to lowercase
- Iam
Role 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
- Node
Type string - 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 List<string> - List of Availability Zones in which the nodes will be created
- Cluster
Endpoint stringEncryption Type - The type of encryption the
cluster's endpoint should support. Valid values are:
NONE
andTLS
. Default value isNONE
. - Description string
- Description for the cluster
- Maintenance
Window 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
- Notification
Topic 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
- Parameter
Group stringName - Name of the parameter group to associate with this DAX cluster
- Security
Group List<string>Ids - One or more VPC security groups associated with the cluster
- Server
Side ClusterEncryption Server Side Encryption - Encrypt at rest options
- Subnet
Group 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_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.
- Cluster
Name string - Group identifier. DAX converts this name to lowercase
- Iam
Role 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
- Node
Type string - 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 []string - List of Availability Zones in which the nodes will be created
- Cluster
Endpoint stringEncryption Type - The type of encryption the
cluster's endpoint should support. Valid values are:
NONE
andTLS
. Default value isNONE
. - Description string
- Description for the cluster
- Maintenance
Window 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
- Notification
Topic 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
- Parameter
Group stringName - Name of the parameter group to associate with this DAX cluster
- Security
Group []stringIds - One or more VPC security groups associated with the cluster
- Server
Side ClusterEncryption Server Side Encryption Args - Encrypt at rest options
- Subnet
Group 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_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.
- cluster
Name String - Group identifier. DAX converts this name to lowercase
- iam
Role 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
- node
Type String - The compute and memory capacity of the nodes. See Nodes for supported node types
- replication
Factor Integer - 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 List<String> - List of Availability Zones in which the nodes will be created
- cluster
Endpoint StringEncryption Type - The type of encryption the
cluster's endpoint should support. Valid values are:
NONE
andTLS
. Default value isNONE
. - description String
- Description for the cluster
- maintenance
Window 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
- notification
Topic 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
- parameter
Group StringName - Name of the parameter group to associate with this DAX cluster
- security
Group List<String>Ids - One or more VPC security groups associated with the cluster
- server
Side ClusterEncryption Server Side Encryption - Encrypt at rest options
- subnet
Group 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_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.
- cluster
Name string - Group identifier. DAX converts this name to lowercase
- iam
Role 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
- node
Type string - The compute and memory capacity of the nodes. See Nodes for supported node types
- replication
Factor number - 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 string[] - List of Availability Zones in which the nodes will be created
- cluster
Endpoint stringEncryption Type - The type of encryption the
cluster's endpoint should support. Valid values are:
NONE
andTLS
. Default value isNONE
. - description string
- Description for the cluster
- maintenance
Window 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
- notification
Topic 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
- parameter
Group stringName - Name of the parameter group to associate with this DAX cluster
- security
Group string[]Ids - One or more VPC security groups associated with the cluster
- server
Side ClusterEncryption Server Side Encryption - Encrypt at rest options
- subnet
Group 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_tags
configuration 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:
NONE
andTLS
. 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_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.
- cluster
Name String - Group identifier. DAX converts this name to lowercase
- iam
Role 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
- node
Type String - The compute and memory capacity of the nodes. See Nodes for supported node types
- replication
Factor Number - 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 List<String> - List of Availability Zones in which the nodes will be created
- cluster
Endpoint StringEncryption Type - The type of encryption the
cluster's endpoint should support. Valid values are:
NONE
andTLS
. Default value isNONE
. - description String
- Description for the cluster
- maintenance
Window 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
- notification
Topic 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
- parameter
Group StringName - Name of the parameter group to associate with this DAX cluster
- security
Group List<String>Ids - One or more VPC security groups associated with the cluster
- server
Side Property MapEncryption - Encrypt at rest options
- subnet
Group 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_tags
configuration 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
- Cluster
Address string - The DNS name of the DAX cluster without the port appended
- Configuration
Endpoint 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<Cluster
Node> - List of node objects including
id
,address
,port
andavailability_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_tags
configuration block.
- Arn string
- The ARN of the DAX cluster
- Cluster
Address string - The DNS name of the DAX cluster without the port appended
- Configuration
Endpoint 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
[]Cluster
Node - List of node objects including
id
,address
,port
andavailability_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_tags
configuration block.
- arn String
- The ARN of the DAX cluster
- cluster
Address String - The DNS name of the DAX cluster without the port appended
- configuration
Endpoint 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<Cluster
Node> - List of node objects including
id
,address
,port
andavailability_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_tags
configuration block.
- arn string
- The ARN of the DAX cluster
- cluster
Address string - The DNS name of the DAX cluster without the port appended
- configuration
Endpoint 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
Cluster
Node[] - List of node objects including
id
,address
,port
andavailability_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_tags
configuration 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[Cluster
Node] - List of node objects including
id
,address
,port
andavailability_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_tags
configuration block.
- arn String
- The ARN of the DAX cluster
- cluster
Address String - The DNS name of the DAX cluster without the port appended
- configuration
Endpoint 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
,port
andavailability_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_tags
configuration 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) -> Cluster
func 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)
Resource lookup is not supported in YAML
- 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
- Availability
Zones List<string> - List of Availability Zones in which the nodes will be created
- Cluster
Address string - The DNS name of the DAX cluster without the port appended
- Cluster
Endpoint stringEncryption Type - The type of encryption the
cluster's endpoint should support. Valid values are:
NONE
andTLS
. Default value isNONE
. - Cluster
Name string - Group identifier. DAX converts this name to lowercase
- Configuration
Endpoint string - The configuration endpoint for this DAX cluster, consisting of a DNS name and a port number
- Description string
- Description for the cluster
- Iam
Role 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
- Maintenance
Window 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
- Node
Type string - The compute and memory capacity of the nodes. See Nodes for supported node types
- Nodes
List<Cluster
Node> - List of node objects including
id
,address
,port
andavailability_zone
. Referenceable e.g., as${aws_dax_cluster.test.nodes.0.address}
- Notification
Topic 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
- Parameter
Group stringName - 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 List<string>Ids - One or more VPC security groups associated with the cluster
- Server
Side ClusterEncryption Server Side Encryption - Encrypt at rest options
- Subnet
Group 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_tags
configuration 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_tags
configuration block.
- Arn string
- The ARN of the DAX cluster
- Availability
Zones []string - List of Availability Zones in which the nodes will be created
- Cluster
Address string - The DNS name of the DAX cluster without the port appended
- Cluster
Endpoint stringEncryption Type - The type of encryption the
cluster's endpoint should support. Valid values are:
NONE
andTLS
. Default value isNONE
. - Cluster
Name string - Group identifier. DAX converts this name to lowercase
- Configuration
Endpoint string - The configuration endpoint for this DAX cluster, consisting of a DNS name and a port number
- Description string
- Description for the cluster
- Iam
Role 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
- Maintenance
Window 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
- Node
Type string - The compute and memory capacity of the nodes. See Nodes for supported node types
- Nodes
[]Cluster
Node Args - List of node objects including
id
,address
,port
andavailability_zone
. Referenceable e.g., as${aws_dax_cluster.test.nodes.0.address}
- Notification
Topic 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
- Parameter
Group stringName - 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 []stringIds - One or more VPC security groups associated with the cluster
- Server
Side ClusterEncryption Server Side Encryption Args - Encrypt at rest options
- Subnet
Group 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_tags
configuration 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_tags
configuration block.
- arn String
- The ARN of the DAX cluster
- availability
Zones List<String> - List of Availability Zones in which the nodes will be created
- cluster
Address String - The DNS name of the DAX cluster without the port appended
- cluster
Endpoint StringEncryption Type - The type of encryption the
cluster's endpoint should support. Valid values are:
NONE
andTLS
. Default value isNONE
. - cluster
Name String - Group identifier. DAX converts this name to lowercase
- configuration
Endpoint String - The configuration endpoint for this DAX cluster, consisting of a DNS name and a port number
- description String
- Description for the cluster
- iam
Role 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
- maintenance
Window 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
- node
Type String - The compute and memory capacity of the nodes. See Nodes for supported node types
- nodes
List<Cluster
Node> - List of node objects including
id
,address
,port
andavailability_zone
. Referenceable e.g., as${aws_dax_cluster.test.nodes.0.address}
- notification
Topic 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
- parameter
Group StringName - Name of the parameter group to associate with this DAX cluster
- port Integer
- The port used by the configuration endpoint
- replication
Factor Integer - 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 List<String>Ids - One or more VPC security groups associated with the cluster
- server
Side ClusterEncryption Server Side Encryption - Encrypt at rest options
- subnet
Group 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_tags
configuration 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_tags
configuration block.
- arn string
- The ARN of the DAX cluster
- availability
Zones string[] - List of Availability Zones in which the nodes will be created
- cluster
Address string - The DNS name of the DAX cluster without the port appended
- cluster
Endpoint stringEncryption Type - The type of encryption the
cluster's endpoint should support. Valid values are:
NONE
andTLS
. Default value isNONE
. - cluster
Name string - Group identifier. DAX converts this name to lowercase
- configuration
Endpoint string - The configuration endpoint for this DAX cluster, consisting of a DNS name and a port number
- description string
- Description for the cluster
- iam
Role 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
- maintenance
Window 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
- node
Type string - The compute and memory capacity of the nodes. See Nodes for supported node types
- nodes
Cluster
Node[] - List of node objects including
id
,address
,port
andavailability_zone
. Referenceable e.g., as${aws_dax_cluster.test.nodes.0.address}
- notification
Topic 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
- parameter
Group stringName - Name of the parameter group to associate with this DAX cluster
- port number
- The port used by the configuration endpoint
- replication
Factor number - 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 string[]Ids - One or more VPC security groups associated with the cluster
- server
Side ClusterEncryption Server Side Encryption - Encrypt at rest options
- subnet
Group 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_tags
configuration 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_tags
configuration 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:
NONE
andTLS
. 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[Cluster
Node Args] - List of node objects including
id
,address
,port
andavailability_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_tags
configuration 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_tags
configuration block.
- arn String
- The ARN of the DAX cluster
- availability
Zones List<String> - List of Availability Zones in which the nodes will be created
- cluster
Address String - The DNS name of the DAX cluster without the port appended
- cluster
Endpoint StringEncryption Type - The type of encryption the
cluster's endpoint should support. Valid values are:
NONE
andTLS
. Default value isNONE
. - cluster
Name String - Group identifier. DAX converts this name to lowercase
- configuration
Endpoint String - The configuration endpoint for this DAX cluster, consisting of a DNS name and a port number
- description String
- Description for the cluster
- iam
Role 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
- maintenance
Window 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
- node
Type 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
,port
andavailability_zone
. Referenceable e.g., as${aws_dax_cluster.test.nodes.0.address}
- notification
Topic 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
- parameter
Group StringName - Name of the parameter group to associate with this DAX cluster
- port Number
- The port used by the configuration endpoint
- replication
Factor Number - 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 List<String>Ids - One or more VPC security groups associated with the cluster
- server
Side Property MapEncryption - Encrypt at rest options
- subnet
Group 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_tags
configuration 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_tags
configuration block.
Supporting Types
ClusterNode, ClusterNodeArgs
- Address string
- Availability
Zone string - Id string
- Port int
- The port used by the configuration endpoint
- Address string
- Availability
Zone string - Id string
- Port int
- The port used by the configuration endpoint
- address String
- availability
Zone String - id String
- port Integer
- The port used by the configuration endpoint
- address string
- availability
Zone 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
- availability
Zone 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
aws
Terraform Provider.