Package com.pulumi.aws.rds
Class SubnetGroup
- java.lang.Object
-
- com.pulumi.resources.Resource
-
- com.pulumi.resources.CustomResource
-
- com.pulumi.aws.rds.SubnetGroup
-
public class SubnetGroup extends com.pulumi.resources.CustomResource
Provides an RDS DB subnet group resource. ## Example Usage <!--Start PulumiCodeChooser -->package generated_program; import com.pulumi.Context; import com.pulumi.Pulumi; import com.pulumi.core.Output; import com.pulumi.aws.rds.SubnetGroup; import com.pulumi.aws.rds.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 default_ = new SubnetGroup("default", SubnetGroupArgs.builder() .name("main") .subnetIds( frontend.id(), backend.id()) .tags(Map.of("Name", "My DB subnet group")) .build()); } }
-
-
Constructor Summary
Constructors Constructor Description SubnetGroup(java.lang.String name)
SubnetGroup(java.lang.String name, SubnetGroupArgs args)
SubnetGroup(java.lang.String name, SubnetGroupArgs args, com.pulumi.resources.CustomResourceOptions options)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description com.pulumi.core.Output<java.lang.String>
arn()
com.pulumi.core.Output<java.lang.String>
description()
static SubnetGroup
get(java.lang.String name, com.pulumi.core.Output<java.lang.String> id, SubnetGroupState state, com.pulumi.resources.CustomResourceOptions options)
Get an existing Host resource's state with the given name, ID, and optional extra properties used to qualify the lookup.com.pulumi.core.Output<java.lang.String>
name()
com.pulumi.core.Output<java.lang.String>
namePrefix()
com.pulumi.core.Output<java.util.List<java.lang.String>>
subnetIds()
com.pulumi.core.Output<java.util.List<java.lang.String>>
supportedNetworkTypes()
com.pulumi.core.Output<java.util.Optional<java.util.Map<java.lang.String,java.lang.String>>>
tags()
com.pulumi.core.Output<java.util.Map<java.lang.String,java.lang.String>>
tagsAll()
com.pulumi.core.Output<java.lang.String>
vpcId()
-
-
-
Constructor Detail
-
SubnetGroup
public SubnetGroup(java.lang.String name)
- Parameters:
name
- The _unique_ name of the resulting resource.
-
SubnetGroup
public SubnetGroup(java.lang.String name, SubnetGroupArgs args)
- Parameters:
name
- The _unique_ name of the resulting resource.args
- The arguments to use to populate this resource's properties.
-
SubnetGroup
public SubnetGroup(java.lang.String name, SubnetGroupArgs args, @Nullable com.pulumi.resources.CustomResourceOptions options)
- Parameters:
name
- The _unique_ name of the resulting resource.args
- The arguments to use to populate this resource's properties.options
- A bag of options that control this resource's behavior.
-
-
Method Detail
-
arn
public com.pulumi.core.Output<java.lang.String> arn()
- Returns:
- The ARN of the db subnet group.
-
description
public com.pulumi.core.Output<java.lang.String> description()
- Returns:
- The description of the DB subnet group. Defaults to "Managed by Pulumi".
-
name
public com.pulumi.core.Output<java.lang.String> name()
- Returns:
- The name of the DB subnet group. If omitted, the provider will assign a random, unique name.
-
namePrefix
public com.pulumi.core.Output<java.lang.String> namePrefix()
- Returns:
- Creates a unique name beginning with the specified prefix. Conflicts with `name`.
-
subnetIds
public com.pulumi.core.Output<java.util.List<java.lang.String>> subnetIds()
- Returns:
- A list of VPC subnet IDs.
-
supportedNetworkTypes
public com.pulumi.core.Output<java.util.List<java.lang.String>> supportedNetworkTypes()
- Returns:
- The network type of the db subnet group.
-
tags
public com.pulumi.core.Output<java.util.Optional<java.util.Map<java.lang.String,java.lang.String>>> tags()
- Returns:
- 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.
-
tagsAll
public com.pulumi.core.Output<java.util.Map<java.lang.String,java.lang.String>> tagsAll()
- Returns:
- A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.
-
vpcId
public com.pulumi.core.Output<java.lang.String> vpcId()
- Returns:
- Provides the VPC ID of the DB subnet group.
-
get
public static SubnetGroup get(java.lang.String name, com.pulumi.core.Output<java.lang.String> id, @Nullable SubnetGroupState state, @Nullable com.pulumi.resources.CustomResourceOptions options)
Get an existing Host resource's state with the given name, ID, and optional extra properties used to qualify the lookup.- Parameters:
name
- The _unique_ name of the resulting resource.id
- The _unique_ provider ID of the resource to lookup.state
-options
- Optional settings to control the behavior of the CustomResource.
-
-