NamespaceArgs

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"});
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

Constructors

Link copied to clipboard
constructor(awsAccountId: Output<String>? = null, identityStore: Output<String>? = null, namespace: Output<String>? = null, tags: Output<Map<String, String>>? = null, timeouts: Output<NamespaceTimeoutsArgs>? = null)

Properties

Link copied to clipboard
val awsAccountId: Output<String>? = null

AWS account ID.

Link copied to clipboard
val identityStore: Output<String>? = null

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

Link copied to clipboard
val namespace: Output<String>? = null

Name of the namespace. The following arguments are optional:

Link copied to clipboard
val tags: Output<Map<String, String>>? = null

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 timeouts: Output<NamespaceTimeoutsArgs>? = null

Functions

Link copied to clipboard
open override fun toJava(): NamespaceArgs