AWS v6.54.0 published on Friday, Sep 27, 2024 by Pulumi
aws.appmesh.getMesh
Explore with Pulumi AI
The App Mesh Mesh data source allows details of an App Mesh Mesh to be retrieved by its name and optionally the mesh_owner.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const simple = aws.appmesh.getMesh({
name: "simpleapp",
});
import pulumi
import pulumi_aws as aws
simple = aws.appmesh.get_mesh(name="simpleapp")
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/appmesh"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := appmesh.LookupMesh(ctx, &appmesh.LookupMeshArgs{
Name: "simpleapp",
}, 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 simple = Aws.AppMesh.GetMesh.Invoke(new()
{
Name = "simpleapp",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.appmesh.AppmeshFunctions;
import com.pulumi.aws.appmesh.inputs.GetMeshArgs;
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 simple = AppmeshFunctions.getMesh(GetMeshArgs.builder()
.name("simpleapp")
.build());
}
}
variables:
simple:
fn::invoke:
Function: aws:appmesh:getMesh
Arguments:
name: simpleapp
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const current = aws.getCallerIdentity({});
const simple = current.then(current => aws.appmesh.getMesh({
name: "simpleapp",
meshOwner: current.accountId,
}));
import pulumi
import pulumi_aws as aws
current = aws.get_caller_identity()
simple = aws.appmesh.get_mesh(name="simpleapp",
mesh_owner=current.account_id)
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v6/go/aws"
"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/appmesh"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
current, err := aws.GetCallerIdentity(ctx, nil, nil)
if err != nil {
return err
}
_, err = appmesh.LookupMesh(ctx, &appmesh.LookupMeshArgs{
Name: "simpleapp",
MeshOwner: pulumi.StringRef(current.AccountId),
}, 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 current = Aws.GetCallerIdentity.Invoke();
var simple = Aws.AppMesh.GetMesh.Invoke(new()
{
Name = "simpleapp",
MeshOwner = current.Apply(getCallerIdentityResult => getCallerIdentityResult.AccountId),
});
});
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.appmesh.AppmeshFunctions;
import com.pulumi.aws.appmesh.inputs.GetMeshArgs;
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 simple = AppmeshFunctions.getMesh(GetMeshArgs.builder()
.name("simpleapp")
.meshOwner(current.applyValue(getCallerIdentityResult -> getCallerIdentityResult.accountId()))
.build());
}
}
variables:
current:
fn::invoke:
Function: aws:getCallerIdentity
Arguments: {}
simple:
fn::invoke:
Function: aws:appmesh:getMesh
Arguments:
name: simpleapp
meshOwner: ${current.accountId}
Using getMesh
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 getMesh(args: GetMeshArgs, opts?: InvokeOptions): Promise<GetMeshResult>
function getMeshOutput(args: GetMeshOutputArgs, opts?: InvokeOptions): Output<GetMeshResult>
def get_mesh(mesh_owner: Optional[str] = None,
name: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None,
opts: Optional[InvokeOptions] = None) -> GetMeshResult
def get_mesh_output(mesh_owner: Optional[pulumi.Input[str]] = None,
name: Optional[pulumi.Input[str]] = None,
tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetMeshResult]
func LookupMesh(ctx *Context, args *LookupMeshArgs, opts ...InvokeOption) (*LookupMeshResult, error)
func LookupMeshOutput(ctx *Context, args *LookupMeshOutputArgs, opts ...InvokeOption) LookupMeshResultOutput
> Note: This function is named LookupMesh
in the Go SDK.
public static class GetMesh
{
public static Task<GetMeshResult> InvokeAsync(GetMeshArgs args, InvokeOptions? opts = null)
public static Output<GetMeshResult> Invoke(GetMeshInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetMeshResult> getMesh(GetMeshArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
fn::invoke:
function: aws:appmesh/getMesh:getMesh
arguments:
# arguments dictionary
The following arguments are supported:
- name str
- Name of the service mesh.
- mesh_
owner str - AWS account ID of the service mesh's owner.
- Mapping[str, str]
- Map of tags.
getMesh Result
The following output properties are available:
- Arn string
- ARN of the service mesh.
- Created
Date string - Creation date of the service mesh.
- Id string
- The provider-assigned unique ID for this managed resource.
- Last
Updated stringDate - Last update date of the service mesh.
- Mesh
Owner string - Name string
- Resource
Owner string - Resource owner's AWS account ID.
- Specs
List<Get
Mesh Spec> - Service mesh specification. See the
aws.appmesh.Mesh
resource for details. - Dictionary<string, string>
- Map of tags.
- Arn string
- ARN of the service mesh.
- Created
Date string - Creation date of the service mesh.
- Id string
- The provider-assigned unique ID for this managed resource.
- Last
Updated stringDate - Last update date of the service mesh.
- Mesh
Owner string - Name string
- Resource
Owner string - Resource owner's AWS account ID.
- Specs
[]Get
Mesh Spec - Service mesh specification. See the
aws.appmesh.Mesh
resource for details. - map[string]string
- Map of tags.
- arn String
- ARN of the service mesh.
- created
Date String - Creation date of the service mesh.
- id String
- The provider-assigned unique ID for this managed resource.
- last
Updated StringDate - Last update date of the service mesh.
- mesh
Owner String - name String
- resource
Owner String - Resource owner's AWS account ID.
- specs
List<Get
Mesh Spec> - Service mesh specification. See the
aws.appmesh.Mesh
resource for details. - Map<String,String>
- Map of tags.
- arn string
- ARN of the service mesh.
- created
Date string - Creation date of the service mesh.
- id string
- The provider-assigned unique ID for this managed resource.
- last
Updated stringDate - Last update date of the service mesh.
- mesh
Owner string - name string
- resource
Owner string - Resource owner's AWS account ID.
- specs
Get
Mesh Spec[] - Service mesh specification. See the
aws.appmesh.Mesh
resource for details. - {[key: string]: string}
- Map of tags.
- arn str
- ARN of the service mesh.
- created_
date str - Creation date of the service mesh.
- id str
- The provider-assigned unique ID for this managed resource.
- last_
updated_ strdate - Last update date of the service mesh.
- mesh_
owner str - name str
- resource_
owner str - Resource owner's AWS account ID.
- specs
Sequence[Get
Mesh Spec] - Service mesh specification. See the
aws.appmesh.Mesh
resource for details. - Mapping[str, str]
- Map of tags.
- arn String
- ARN of the service mesh.
- created
Date String - Creation date of the service mesh.
- id String
- The provider-assigned unique ID for this managed resource.
- last
Updated StringDate - Last update date of the service mesh.
- mesh
Owner String - name String
- resource
Owner String - Resource owner's AWS account ID.
- specs List<Property Map>
- Service mesh specification. See the
aws.appmesh.Mesh
resource for details. - Map<String>
- Map of tags.
Supporting Types
GetMeshSpec
GetMeshSpecEgressFilter
- Type string
- Type string
- type String
- type string
- type str
- type String
GetMeshSpecServiceDiscovery
- Ip
Preference string
- Ip
Preference string
- ip
Preference String
- ip
Preference string
- ip_
preference str
- ip
Preference String
Package Details
- Repository
- AWS Classic pulumi/pulumi-aws
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
aws
Terraform Provider.