SubnetGroup

class SubnetGroup : KotlinCustomResource

Provides a DAX Subnet Group resource.

Example Usage

package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.dax.SubnetGroup;
import com.pulumi.aws.dax.SubnetGroupArgs;
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 example = new SubnetGroup("example", SubnetGroupArgs.builder()
.subnetIds(
aws_subnet.example1().id(),
aws_subnet.example2().id())
.build());
}
}

Import

DAX Subnet Group can be imported using the name, e.g.,

$ pulumi import aws:dax/subnetGroup:SubnetGroup example my_dax_sg

Properties

Link copied to clipboard
val description: Output<String>?

A description of the subnet group.

Link copied to clipboard
val id: Output<String>
Link copied to clipboard
val name: Output<String>

The name of the subnet group.

Link copied to clipboard
val pulumiChildResources: Set<KotlinResource>
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val subnetIds: Output<List<String>>

A list of VPC subnet IDs for the subnet group.

Link copied to clipboard
val urn: Output<String>
Link copied to clipboard
val vpcId: Output<String>

VPC ID of the subnet group.