Try AWS Native preview for resources not in the classic version.
aws.servicediscovery.getHttpNamespace
Explore with Pulumi AI
Try AWS Native preview for resources not in the classic version.
Example Usage
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;
return await Deployment.RunAsync(() =>
{
var example = Aws.ServiceDiscovery.GetHttpNamespace.Invoke(new()
{
Name = "development",
});
});
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/servicediscovery"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := servicediscovery.LookupHttpNamespace(ctx, &servicediscovery.LookupHttpNamespaceArgs{
Name: "development",
}, 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.servicediscovery.ServicediscoveryFunctions;
import com.pulumi.aws.servicediscovery.inputs.GetHttpNamespaceArgs;
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 = ServicediscoveryFunctions.getHttpNamespace(GetHttpNamespaceArgs.builder()
.name("development")
.build());
}
}
import pulumi
import pulumi_aws as aws
example = aws.servicediscovery.get_http_namespace(name="development")
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const example = aws.servicediscovery.getHttpNamespace({
name: "development",
});
variables:
example:
fn::invoke:
Function: aws:servicediscovery:getHttpNamespace
Arguments:
name: development
Using getHttpNamespace
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 getHttpNamespace(args: GetHttpNamespaceArgs, opts?: InvokeOptions): Promise<GetHttpNamespaceResult>
function getHttpNamespaceOutput(args: GetHttpNamespaceOutputArgs, opts?: InvokeOptions): Output<GetHttpNamespaceResult>
def get_http_namespace(name: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None,
opts: Optional[InvokeOptions] = None) -> GetHttpNamespaceResult
def get_http_namespace_output(name: Optional[pulumi.Input[str]] = None,
tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetHttpNamespaceResult]
func LookupHttpNamespace(ctx *Context, args *LookupHttpNamespaceArgs, opts ...InvokeOption) (*LookupHttpNamespaceResult, error)
func LookupHttpNamespaceOutput(ctx *Context, args *LookupHttpNamespaceOutputArgs, opts ...InvokeOption) LookupHttpNamespaceResultOutput
> Note: This function is named LookupHttpNamespace
in the Go SDK.
public static class GetHttpNamespace
{
public static Task<GetHttpNamespaceResult> InvokeAsync(GetHttpNamespaceArgs args, InvokeOptions? opts = null)
public static Output<GetHttpNamespaceResult> Invoke(GetHttpNamespaceInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetHttpNamespaceResult> getHttpNamespace(GetHttpNamespaceArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
fn::invoke:
function: aws:servicediscovery/getHttpNamespace:getHttpNamespace
arguments:
# arguments dictionary
The following arguments are supported:
- Name string
Name of the http namespace.
- Dictionary<string, string>
Map of tags for the resource.
- Name string
Name of the http namespace.
- map[string]string
Map of tags for the resource.
- name String
Name of the http namespace.
- Map<String,String>
Map of tags for the resource.
- name string
Name of the http namespace.
- {[key: string]: string}
Map of tags for the resource.
- name str
Name of the http namespace.
- Mapping[str, str]
Map of tags for the resource.
- name String
Name of the http namespace.
- Map<String>
Map of tags for the resource.
getHttpNamespace Result
The following output properties are available:
- Arn string
ARN that Amazon Route 53 assigns to the namespace when you create it.
- Description string
Description that you specify for the namespace when you create it.
- Http
Name string Name of an HTTP namespace.
- Id string
The provider-assigned unique ID for this managed resource.
- Name string
- Dictionary<string, string>
Map of tags for the resource.
- Arn string
ARN that Amazon Route 53 assigns to the namespace when you create it.
- Description string
Description that you specify for the namespace when you create it.
- Http
Name string Name of an HTTP namespace.
- Id string
The provider-assigned unique ID for this managed resource.
- Name string
- map[string]string
Map of tags for the resource.
- arn String
ARN that Amazon Route 53 assigns to the namespace when you create it.
- description String
Description that you specify for the namespace when you create it.
- http
Name String Name of an HTTP namespace.
- id String
The provider-assigned unique ID for this managed resource.
- name String
- Map<String,String>
Map of tags for the resource.
- arn string
ARN that Amazon Route 53 assigns to the namespace when you create it.
- description string
Description that you specify for the namespace when you create it.
- http
Name string Name of an HTTP namespace.
- id string
The provider-assigned unique ID for this managed resource.
- name string
- {[key: string]: string}
Map of tags for the resource.
- arn str
ARN that Amazon Route 53 assigns to the namespace when you create it.
- description str
Description that you specify for the namespace when you create it.
- http_
name str Name of an HTTP namespace.
- id str
The provider-assigned unique ID for this managed resource.
- name str
- Mapping[str, str]
Map of tags for the resource.
- arn String
ARN that Amazon Route 53 assigns to the namespace when you create it.
- description String
Description that you specify for the namespace when you create it.
- http
Name String Name of an HTTP namespace.
- id String
The provider-assigned unique ID for this managed resource.
- name String
- Map<String>
Map of tags for the resource.
Package Details
- Repository
- AWS Classic pulumi/pulumi-aws
- License
- Apache-2.0
- Notes
This Pulumi package is based on the
aws
Terraform Provider.
Try AWS Native preview for resources not in the classic version.