Show / Hide Table of Contents

Namespace Pulumi.Aws.Dax

Classes

Cluster

Provides a DAX Cluster resource.

Example Usage

using Pulumi;
using Aws = Pulumi.Aws;

class MyStack : Stack
{
public MyStack()
{
    var bar = new Aws.Dax.Cluster("bar", new Aws.Dax.ClusterArgs
    {
        ClusterName = "cluster-example",
        IamRoleArn = data.Aws_iam_role.Example.Arn,
        NodeType = "dax.r4.large",
        ReplicationFactor = 1,
    });
}

}

ClusterArgs

ClusterState

ParameterGroup

Provides a DAX Parameter Group resource.

Example Usage

using Pulumi;
using Aws = Pulumi.Aws;

class MyStack : Stack
{
public MyStack()
{
    var example = new Aws.Dax.ParameterGroup("example", new Aws.Dax.ParameterGroupArgs
    {
        Parameters = 
        {
            new Aws.Dax.Inputs.ParameterGroupParameterArgs
            {
                Name = "query-ttl-millis",
                Value = "100000",
            },
            new Aws.Dax.Inputs.ParameterGroupParameterArgs
            {
                Name = "record-ttl-millis",
                Value = "100000",
            },
        },
    });
}

}

ParameterGroupArgs

ParameterGroupState

SubnetGroup

Provides a DAX Subnet Group resource.

Example Usage

using Pulumi;
using Aws = Pulumi.Aws;

class MyStack : Stack
{
public MyStack()
{
    var example = new Aws.Dax.SubnetGroup("example", new Aws.Dax.SubnetGroupArgs
    {
        SubnetIds = 
        {
            aws_subnet.Example1.Id,
            aws_subnet.Example2.Id,
        },
    });
}

}

SubnetGroupArgs

SubnetGroupState

Back to top Copyright 2016-2020, Pulumi Corporation.