aws.outposts.getOutpost
Provides details about an Outposts Outpost.
Example Usage
using System.Collections.Generic;
using Pulumi;
using Aws = Pulumi.Aws;
return await Deployment.RunAsync(() =>
{
var example = Aws.Outposts.GetOutpost.Invoke(new()
{
Name = "example",
});
});
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v5/go/aws/outposts"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := outposts.GetOutpost(ctx, &outposts.GetOutpostArgs{
Name: pulumi.StringRef("example"),
}, nil)
if err != nil {
return err
}
return nil
})
}
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());
}
}
import pulumi
import pulumi_aws as aws
example = aws.outposts.get_outpost(name="example")
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const example = aws.outposts.getOutpost({
name: "example",
});
variables:
example:
fn::invoke:
Function: aws:outposts:getOutpost
Arguments:
name: example
Using getOutpost
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getOutpost(args: GetOutpostArgs, opts?: InvokeOptions): Promise<GetOutpostResult>
function getOutpostOutput(args: GetOutpostOutputArgs, opts?: InvokeOptions): Output<GetOutpostResult>
def get_outpost(arn: Optional[str] = None,
id: Optional[str] = None,
name: Optional[str] = None,
owner_id: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetOutpostResult
def get_outpost_output(arn: Optional[pulumi.Input[str]] = None,
id: Optional[pulumi.Input[str]] = None,
name: Optional[pulumi.Input[str]] = None,
owner_id: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetOutpostResult]
func GetOutpost(ctx *Context, args *GetOutpostArgs, opts ...InvokeOption) (*GetOutpostResult, error)
func GetOutpostOutput(ctx *Context, args *GetOutpostOutputArgs, opts ...InvokeOption) GetOutpostResultOutput
> Note: This function is named GetOutpost
in the Go SDK.
public static class GetOutpost
{
public static Task<GetOutpostResult> InvokeAsync(GetOutpostArgs args, InvokeOptions? opts = null)
public static Output<GetOutpostResult> Invoke(GetOutpostInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetOutpostResult> getOutpost(GetOutpostArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
fn::invoke:
function: aws:outposts/getOutpost:getOutpost
arguments:
# arguments dictionary
The following arguments are supported:
getOutpost Result
The following output properties are available:
- Arn string
- Availability
Zone string Availability Zone name.
- Availability
Zone stringId Availability Zone identifier.
- Description string
Description.
- Id string
- Name string
- Owner
Id string - Site
Id string Site identifier.
- Arn string
- Availability
Zone string Availability Zone name.
- Availability
Zone stringId Availability Zone identifier.
- Description string
Description.
- Id string
- Name string
- Owner
Id string - Site
Id string Site identifier.
- arn String
- availability
Zone String Availability Zone name.
- availability
Zone StringId Availability Zone identifier.
- description String
Description.
- id String
- name String
- owner
Id String - site
Id String Site identifier.
- arn string
- availability
Zone string Availability Zone name.
- availability
Zone stringId Availability Zone identifier.
- description string
Description.
- id string
- name string
- owner
Id string - site
Id string Site identifier.
- arn str
- availability_
zone str Availability Zone name.
- availability_
zone_ strid Availability Zone identifier.
- description str
Description.
- id str
- name str
- owner_
id str - site_
id str Site identifier.
- arn String
- availability
Zone String Availability Zone name.
- availability
Zone StringId Availability Zone identifier.
- description String
Description.
- id String
- name String
- owner
Id String - site
Id String Site identifier.
Package Details
- Repository
- AWS Classic pulumi/pulumi-aws
- License
- Apache-2.0
- Notes
This Pulumi package is based on the
aws
Terraform Provider.