Namespace

class Namespace : KotlinCustomResource

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"});
import pulumi
import pulumi_aws as aws
example = aws.quicksight.Namespace("example", namespace="example")
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",
});
});
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
})
}
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());
}
}
resources:
example:
type: aws:quicksight:Namespace
properties:
namespace: example

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,example

Properties

Link copied to clipboard
val arn: Output<String>

ARN of the Namespace.

Link copied to clipboard
val awsAccountId: Output<String>

AWS account ID.

Link copied to clipboard
val capacityRegion: Output<String>

Namespace AWS Region.

Link copied to clipboard
val creationStatus: Output<String>

Creation status of the namespace.

Link copied to clipboard
val id: Output<String>
Link copied to clipboard
val identityStore: Output<String>

User identity directory type. Defaults to QUICKSIGHT, the only current valid value.

Link copied to clipboard
val namespace: Output<String>

Name of the namespace. The following arguments are optional:

Link copied to clipboard
val pulumiChildResources: Set<KotlinResource>
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val tags: Output<Map<String, String>>?

Key-value map of resource tags. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

Link copied to clipboard
val tagsAll: Output<Map<String, String>>

A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Link copied to clipboard
Link copied to clipboard
val urn: Output<String>