Package com.pulumi.aws.vpclattice
Class ServiceNetworkVpcAssociation
- java.lang.Object
-
- com.pulumi.resources.Resource
-
- com.pulumi.resources.CustomResource
-
- com.pulumi.aws.vpclattice.ServiceNetworkVpcAssociation
-
public class ServiceNetworkVpcAssociation extends com.pulumi.resources.CustomResource
Resource for managing an AWS VPC Lattice Service Network VPC Association. ## Example Usage ### Basic Usage <!--Start PulumiCodeChooser --> ```java package generated_program; import com.pulumi.Context; import com.pulumi.Pulumi; import com.pulumi.core.Output; import com.pulumi.aws.vpclattice.ServiceNetworkVpcAssociation; import com.pulumi.aws.vpclattice.ServiceNetworkVpcAssociationArgs; 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 ServiceNetworkVpcAssociation("example", ServiceNetworkVpcAssociationArgs.builder() .vpcIdentifier(exampleAwsVpc.id()) .serviceNetworkIdentifier(exampleAwsVpclatticeServiceNetwork.id()) .securityGroupIds(exampleAwsSecurityGroup.id()) .build()); } } ``` <!--End PulumiCodeChooser --> ## Import Using `pulumi import`, import VPC Lattice Service Network VPC Association using the `id`. For example: ```sh $ pulumi import aws:vpclattice/serviceNetworkVpcAssociation:ServiceNetworkVpcAssociation example snsa-05e2474658a88f6ba ```
-
-
Constructor Summary
Constructors Constructor Description ServiceNetworkVpcAssociation(java.lang.String name)
ServiceNetworkVpcAssociation(java.lang.String name, ServiceNetworkVpcAssociationArgs args)
ServiceNetworkVpcAssociation(java.lang.String name, ServiceNetworkVpcAssociationArgs 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>
createdBy()
static ServiceNetworkVpcAssociation
get(java.lang.String name, com.pulumi.core.Output<java.lang.String> id, ServiceNetworkVpcAssociationState 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.util.Optional<java.util.List<java.lang.String>>>
securityGroupIds()
com.pulumi.core.Output<java.lang.String>
serviceNetworkIdentifier()
com.pulumi.core.Output<java.lang.String>
status()
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>
vpcIdentifier()
-
-
-
Constructor Detail
-
ServiceNetworkVpcAssociation
public ServiceNetworkVpcAssociation(java.lang.String name)
- Parameters:
name
- The _unique_ name of the resulting resource.
-
ServiceNetworkVpcAssociation
public ServiceNetworkVpcAssociation(java.lang.String name, ServiceNetworkVpcAssociationArgs args)
- Parameters:
name
- The _unique_ name of the resulting resource.args
- The arguments to use to populate this resource's properties.
-
ServiceNetworkVpcAssociation
public ServiceNetworkVpcAssociation(java.lang.String name, ServiceNetworkVpcAssociationArgs 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 Association.
-
createdBy
public com.pulumi.core.Output<java.lang.String> createdBy()
- Returns:
- The account that created the association.
-
securityGroupIds
public com.pulumi.core.Output<java.util.Optional<java.util.List<java.lang.String>>> securityGroupIds()
- Returns:
- The IDs of the security groups.
-
serviceNetworkIdentifier
public com.pulumi.core.Output<java.lang.String> serviceNetworkIdentifier()
- Returns:
- The ID or Amazon Resource Identifier (ARN) of the service network. You must use the ARN if the resources specified in the operation are in different accounts. The following arguments are optional:
-
status
public com.pulumi.core.Output<java.lang.String> status()
- Returns:
- The operations status. Valid Values are CREATE_IN_PROGRESS | ACTIVE | DELETE_IN_PROGRESS | CREATE_FAILED | DELETE_FAILED
-
tags
public com.pulumi.core.Output<java.util.Optional<java.util.Map<java.lang.String,java.lang.String>>> tags()
- Returns:
- Key-value mapping of resource tags. 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:
- Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.
-
vpcIdentifier
public com.pulumi.core.Output<java.lang.String> vpcIdentifier()
- Returns:
- The ID of the VPC.
-
get
public static ServiceNetworkVpcAssociation get(java.lang.String name, com.pulumi.core.Output<java.lang.String> id, @Nullable ServiceNetworkVpcAssociationState 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.
-
-