Package com.pulumi.aws.transfer
Class TransferFunctions
- java.lang.Object
-
- com.pulumi.aws.transfer.TransferFunctions
-
public final class TransferFunctions extends java.lang.Object
-
-
Constructor Summary
Constructors Constructor Description TransferFunctions()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static com.pulumi.core.Output<GetServerResult>
getServer(GetServerArgs args)
Use this data source to get the ARN of an AWS Transfer Server for use in other resources.static com.pulumi.core.Output<GetServerResult>
getServer(GetServerArgs args, com.pulumi.deployment.InvokeOptions options)
Use this data source to get the ARN of an AWS Transfer Server for use in other resources.static java.util.concurrent.CompletableFuture<GetServerResult>
getServerPlain(GetServerPlainArgs args)
Use this data source to get the ARN of an AWS Transfer Server for use in other resources.static java.util.concurrent.CompletableFuture<GetServerResult>
getServerPlain(GetServerPlainArgs args, com.pulumi.deployment.InvokeOptions options)
Use this data source to get the ARN of an AWS Transfer Server for use in other resources.
-
-
-
Method Detail
-
getServer
public static com.pulumi.core.Output<GetServerResult> getServer(GetServerArgs args)
Use this data source to get the ARN of an AWS Transfer Server for use in other resources. ## Example Usage ```java package generated_program; import java.util.*; import java.io.*; import java.nio.*; import com.pulumi.*; public class App { public static void main(String[] args) { Pulumi.run(App::stack); } public static void stack(Context ctx) { final var example = Output.of(TransferFunctions.getServer(GetServerArgs.builder() .serverId("s-1234567") .build())); } } ```
-
getServerPlain
public static java.util.concurrent.CompletableFuture<GetServerResult> getServerPlain(GetServerPlainArgs args)
Use this data source to get the ARN of an AWS Transfer Server for use in other resources. ## Example Usage ```java package generated_program; import java.util.*; import java.io.*; import java.nio.*; import com.pulumi.*; public class App { public static void main(String[] args) { Pulumi.run(App::stack); } public static void stack(Context ctx) { final var example = Output.of(TransferFunctions.getServer(GetServerArgs.builder() .serverId("s-1234567") .build())); } } ```
-
getServer
public static com.pulumi.core.Output<GetServerResult> getServer(GetServerArgs args, com.pulumi.deployment.InvokeOptions options)
Use this data source to get the ARN of an AWS Transfer Server for use in other resources. ## Example Usage ```java package generated_program; import java.util.*; import java.io.*; import java.nio.*; import com.pulumi.*; public class App { public static void main(String[] args) { Pulumi.run(App::stack); } public static void stack(Context ctx) { final var example = Output.of(TransferFunctions.getServer(GetServerArgs.builder() .serverId("s-1234567") .build())); } } ```
-
getServerPlain
public static java.util.concurrent.CompletableFuture<GetServerResult> getServerPlain(GetServerPlainArgs args, com.pulumi.deployment.InvokeOptions options)
Use this data source to get the ARN of an AWS Transfer Server for use in other resources. ## Example Usage ```java package generated_program; import java.util.*; import java.io.*; import java.nio.*; import com.pulumi.*; public class App { public static void main(String[] args) { Pulumi.run(App::stack); } public static void stack(Context ctx) { final var example = Output.of(TransferFunctions.getServer(GetServerArgs.builder() .serverId("s-1234567") .build())); } } ```
-
-