getOutpost

Provides details about an Outposts Outpost.

Example Usage

package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.outposts.OutpostsFunctions;
import com.pulumi.aws.outposts.inputs.GetOutpostArgs;
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 example = OutpostsFunctions.getOutpost(GetOutpostArgs.builder()
.name("example")
.build());
}
}

Return

A collection of values returned by getOutpost.

Parameters

argument

A collection of arguments for invoking getOutpost.


suspend fun getOutpost(arn: String? = null, id: String? = null, name: String? = null, ownerId: String? = null, tags: Map<String, String>? = null): GetOutpostResult

Return

A collection of values returned by getOutpost.

Parameters

arn

ARN.

id

Identifier of the Outpost.

name

Name of the Outpost.

ownerId

AWS Account identifier of the Outpost owner.

tags

The Outpost tags.

See also


suspend fun getOutpost(argument: suspend GetOutpostPlainArgsBuilder.() -> Unit): GetOutpostResult

Return

A collection of values returned by getOutpost.

Parameters

argument

Builder for com.pulumi.aws.outposts.kotlin.inputs.GetOutpostPlainArgs.

See also