Package com.pulumi.aws.opensearch
Class InboundConnectionAccepter
- java.lang.Object
-
- com.pulumi.resources.Resource
-
- com.pulumi.resources.CustomResource
-
- com.pulumi.aws.opensearch.InboundConnectionAccepter
-
public class InboundConnectionAccepter extends com.pulumi.resources.CustomResource
Manages an [AWS Opensearch Inbound Connection Accepter](https://docs.aws.amazon.com/opensearch-service/latest/APIReference/API_AcceptInboundConnection.html). If connecting domains from different AWS accounts, ensure that the accepter is configured to use the AWS account where the _remote_ opensearch domain exists. ## 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.AwsFunctions; import com.pulumi.aws.inputs.GetCallerIdentityArgs; import com.pulumi.aws.inputs.GetRegionArgs; import com.pulumi.aws.opensearch.OutboundConnection; import com.pulumi.aws.opensearch.OutboundConnectionArgs; import com.pulumi.aws.opensearch.inputs.OutboundConnectionLocalDomainInfoArgs; import com.pulumi.aws.opensearch.inputs.OutboundConnectionRemoteDomainInfoArgs; import com.pulumi.aws.opensearch.InboundConnectionAccepter; import com.pulumi.aws.opensearch.InboundConnectionAccepterArgs; 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 current = AwsFunctions.getCallerIdentity(); final var currentGetRegion = AwsFunctions.getRegion(); var foo = new OutboundConnection("foo", OutboundConnectionArgs.builder() .connectionAlias("outbound_connection") .localDomainInfo(OutboundConnectionLocalDomainInfoArgs.builder() .ownerId(current.applyValue(getCallerIdentityResult -> getCallerIdentityResult.accountId())) .region(currentGetRegion.applyValue(getRegionResult -> getRegionResult.name())) .domainName(localDomain.domainName()) .build()) .remoteDomainInfo(OutboundConnectionRemoteDomainInfoArgs.builder() .ownerId(current.applyValue(getCallerIdentityResult -> getCallerIdentityResult.accountId())) .region(currentGetRegion.applyValue(getRegionResult -> getRegionResult.name())) .domainName(remoteDomain.domainName()) .build()) .build()); var fooInboundConnectionAccepter = new InboundConnectionAccepter("fooInboundConnectionAccepter", InboundConnectionAccepterArgs.builder() .connectionId(foo.id()) .build()); } } ``` <!--End PulumiCodeChooser --> ## Import Using `pulumi import`, import AWS Opensearch Inbound Connection Accepters using the Inbound Connection ID. For example: ```sh $ pulumi import aws:opensearch/inboundConnectionAccepter:InboundConnectionAccepter foo connection-id ```
-
-
Constructor Summary
Constructors Constructor Description InboundConnectionAccepter(java.lang.String name)
InboundConnectionAccepter(java.lang.String name, InboundConnectionAccepterArgs args)
InboundConnectionAccepter(java.lang.String name, InboundConnectionAccepterArgs 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>
connectionId()
com.pulumi.core.Output<java.lang.String>
connectionStatus()
static InboundConnectionAccepter
get(java.lang.String name, com.pulumi.core.Output<java.lang.String> id, InboundConnectionAccepterState 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.
-
-
-
Constructor Detail
-
InboundConnectionAccepter
public InboundConnectionAccepter(java.lang.String name)
- Parameters:
name
- The _unique_ name of the resulting resource.
-
InboundConnectionAccepter
public InboundConnectionAccepter(java.lang.String name, InboundConnectionAccepterArgs args)
- Parameters:
name
- The _unique_ name of the resulting resource.args
- The arguments to use to populate this resource's properties.
-
InboundConnectionAccepter
public InboundConnectionAccepter(java.lang.String name, InboundConnectionAccepterArgs 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
-
connectionId
public com.pulumi.core.Output<java.lang.String> connectionId()
- Returns:
- Specifies the ID of the connection to accept.
-
connectionStatus
public com.pulumi.core.Output<java.lang.String> connectionStatus()
- Returns:
- Status of the connection request.
-
get
public static InboundConnectionAccepter get(java.lang.String name, com.pulumi.core.Output<java.lang.String> id, @Nullable InboundConnectionAccepterState 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.
-
-