Package com.pulumi.aws.directconnect
Class HostedPrivateVirtualInterfaceAccepter
- java.lang.Object
-
- com.pulumi.resources.Resource
-
- com.pulumi.resources.CustomResource
-
- com.pulumi.aws.directconnect.HostedPrivateVirtualInterfaceAccepter
-
public class HostedPrivateVirtualInterfaceAccepter extends com.pulumi.resources.CustomResource
Provides a resource to manage the accepter's side of a Direct Connect hosted private virtual interface. This resource accepts ownership of a private virtual interface created by another AWS account. ## Example Usage <!--Start PulumiCodeChooser -->package generated_program; import com.pulumi.Context; import com.pulumi.Pulumi; import com.pulumi.core.Output; import com.pulumi.aws.AwsFunctions; import com.pulumi.aws.inputs.GetCallerIdentityArgs; import com.pulumi.aws.ec2.VpnGateway; import com.pulumi.aws.directconnect.HostedPrivateVirtualInterface; import com.pulumi.aws.directconnect.HostedPrivateVirtualInterfaceArgs; import com.pulumi.aws.directconnect.HostedPrivateVirtualInterfaceAccepter; import com.pulumi.aws.directconnect.HostedPrivateVirtualInterfaceAccepterArgs; import com.pulumi.resources.CustomResourceOptions; 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) { final var accepter = AwsFunctions.getCallerIdentity(); // Accepter's side of the VIF. var vpnGw = new VpnGateway("vpnGw"); // Creator's side of the VIF var creator = new HostedPrivateVirtualInterface("creator", HostedPrivateVirtualInterfaceArgs.builder() .connectionId("dxcon-zzzzzzzz") .ownerAccountId(accepter.applyValue(getCallerIdentityResult -> getCallerIdentityResult.accountId())) .name("vif-foo") .vlan(4094) .addressFamily("ipv4") .bgpAsn(65352) .build(), CustomResourceOptions.builder() .dependsOn(vpnGw) .build()); var accepterHostedPrivateVirtualInterfaceAccepter = new HostedPrivateVirtualInterfaceAccepter("accepterHostedPrivateVirtualInterfaceAccepter", HostedPrivateVirtualInterfaceAccepterArgs.builder() .virtualInterfaceId(creator.id()) .vpnGatewayId(vpnGw.id()) .tags(Map.of("Side", "Accepter")) .build()); } }
-
-
Constructor Summary
Constructors Constructor Description HostedPrivateVirtualInterfaceAccepter(java.lang.String name)
HostedPrivateVirtualInterfaceAccepter(java.lang.String name, HostedPrivateVirtualInterfaceAccepterArgs args)
HostedPrivateVirtualInterfaceAccepter(java.lang.String name, HostedPrivateVirtualInterfaceAccepterArgs 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.util.Optional<java.lang.String>>
dxGatewayId()
static HostedPrivateVirtualInterfaceAccepter
get(java.lang.String name, com.pulumi.core.Output<java.lang.String> id, HostedPrivateVirtualInterfaceAccepterState 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.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>
virtualInterfaceId()
com.pulumi.core.Output<java.util.Optional<java.lang.String>>
vpnGatewayId()
-
-
-
Constructor Detail
-
HostedPrivateVirtualInterfaceAccepter
public HostedPrivateVirtualInterfaceAccepter(java.lang.String name)
- Parameters:
name
- The _unique_ name of the resulting resource.
-
HostedPrivateVirtualInterfaceAccepter
public HostedPrivateVirtualInterfaceAccepter(java.lang.String name, HostedPrivateVirtualInterfaceAccepterArgs args)
- Parameters:
name
- The _unique_ name of the resulting resource.args
- The arguments to use to populate this resource's properties.
-
HostedPrivateVirtualInterfaceAccepter
public HostedPrivateVirtualInterfaceAccepter(java.lang.String name, HostedPrivateVirtualInterfaceAccepterArgs 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 virtual interface.
-
dxGatewayId
public com.pulumi.core.Output<java.util.Optional<java.lang.String>> dxGatewayId()
- Returns:
- The ID of the Direct Connect gateway to which to connect the virtual interface.
-
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.
-
virtualInterfaceId
public com.pulumi.core.Output<java.lang.String> virtualInterfaceId()
- Returns:
- The ID of the Direct Connect virtual interface to accept.
-
vpnGatewayId
public com.pulumi.core.Output<java.util.Optional<java.lang.String>> vpnGatewayId()
- Returns:
- The ID of the virtual private gateway to which to connect the virtual interface.
-
get
public static HostedPrivateVirtualInterfaceAccepter get(java.lang.String name, com.pulumi.core.Output<java.lang.String> id, @Nullable HostedPrivateVirtualInterfaceAccepterState 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.
-
-