Namespace Args
    data class NamespaceArgs(val awsAccountId: Output<String>? = null, val identityStore: Output<String>? = null, val namespace: Output<String>? = null, val tags: Output<Map<String, String>>? = null, val timeouts: Output<NamespaceTimeoutsArgs>? = null) : ConvertibleToJava<NamespaceArgs> 
Resource for managing an AWS QuickSight Namespace.
Example Usage
Basic Usage
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const example = new aws.quicksight.Namespace("example", {namespace: "example"});Content copied to clipboard
import pulumi
import pulumi_aws as aws
example = aws.quicksight.Namespace("example", namespace="example")Content copied to clipboard
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;
return await Deployment.RunAsync(() =>
{
    var example = new Aws.Quicksight.Namespace("example", new()
    {
        NameSpace = "example",
    });
});Content copied to clipboard
package main
import (
	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/quicksight"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := quicksight.NewNamespace(ctx, "example", &quicksight.NamespaceArgs{
			Namespace: pulumi.String("example"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}Content copied to clipboard
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.quicksight.Namespace;
import com.pulumi.aws.quicksight.NamespaceArgs;
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) {
        var example = new Namespace("example", NamespaceArgs.builder()
            .namespace("example")
            .build());
    }
}Content copied to clipboard
resources:
  example:
    type: aws:quicksight:Namespace
    properties:
      namespace: exampleContent copied to clipboard
Import
Using pulumi import, import QuickSight Namespace using the AWS account ID and namespace separated by commas (,). For example:
$ pulumi import aws:quicksight/namespace:Namespace example 123456789012,exampleContent copied to clipboard
Constructors
Link copied to clipboard
                fun NamespaceArgs(awsAccountId: Output<String>? = null, identityStore: Output<String>? = null, namespace: Output<String>? = null, tags: Output<Map<String, String>>? = null, timeouts: Output<NamespaceTimeoutsArgs>? = null)