AWS v6.54.0 published on Friday, Sep 27, 2024 by Pulumi
aws.outposts.getOutpost
Explore with Pulumi AI
Provides details about an Outposts Outpost.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const example = aws.outposts.getOutpost({
name: "example",
});
import pulumi
import pulumi_aws as aws
example = aws.outposts.get_outpost(name="example")
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v6/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
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;
return await Deployment.RunAsync(() =>
{
var example = Aws.Outposts.GetOutpost.Invoke(new()
{
Name = "example",
});
});
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());
}
}
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,
tags: Optional[Mapping[str, 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,
tags: Optional[pulumi.Input[Mapping[str, 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
- The description of the Outpost.
- Id string
- Lifecycle
Status string - The life cycle status.
- Name string
- Site
Arn string - The Amazon Resource Name (ARN) of the site.
- Site
Id string - The ID of the site.
- Supported
Hardware stringType - The hardware type.
- Dictionary<string, string>
- The Outpost tags.
- Owner
Id string
- Arn string
- Availability
Zone string - Availability Zone name.
- Availability
Zone stringId - Availability Zone identifier.
- Description string
- The description of the Outpost.
- Id string
- Lifecycle
Status string - The life cycle status.
- Name string
- Site
Arn string - The Amazon Resource Name (ARN) of the site.
- Site
Id string - The ID of the site.
- Supported
Hardware stringType - The hardware type.
- map[string]string
- The Outpost tags.
- Owner
Id string
- arn String
- availability
Zone String - Availability Zone name.
- availability
Zone StringId - Availability Zone identifier.
- description String
- The description of the Outpost.
- id String
- lifecycle
Status String - The life cycle status.
- name String
- site
Arn String - The Amazon Resource Name (ARN) of the site.
- site
Id String - The ID of the site.
- supported
Hardware StringType - The hardware type.
- Map<String,String>
- The Outpost tags.
- owner
Id String
- arn string
- availability
Zone string - Availability Zone name.
- availability
Zone stringId - Availability Zone identifier.
- description string
- The description of the Outpost.
- id string
- lifecycle
Status string - The life cycle status.
- name string
- site
Arn string - The Amazon Resource Name (ARN) of the site.
- site
Id string - The ID of the site.
- supported
Hardware stringType - The hardware type.
- {[key: string]: string}
- The Outpost tags.
- owner
Id string
- arn str
- availability_
zone str - Availability Zone name.
- availability_
zone_ strid - Availability Zone identifier.
- description str
- The description of the Outpost.
- id str
- lifecycle_
status str - The life cycle status.
- name str
- site_
arn str - The Amazon Resource Name (ARN) of the site.
- site_
id str - The ID of the site.
- supported_
hardware_ strtype - The hardware type.
- Mapping[str, str]
- The Outpost tags.
- owner_
id str
- arn String
- availability
Zone String - Availability Zone name.
- availability
Zone StringId - Availability Zone identifier.
- description String
- The description of the Outpost.
- id String
- lifecycle
Status String - The life cycle status.
- name String
- site
Arn String - The Amazon Resource Name (ARN) of the site.
- site
Id String - The ID of the site.
- supported
Hardware StringType - The hardware type.
- Map<String>
- The Outpost tags.
- owner
Id String
Package Details
- Repository
- AWS Classic pulumi/pulumi-aws
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
aws
Terraform Provider.