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

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

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
fun NamespaceArgs(awsAccountId: Output<String>? = null, identityStore: Output<String>? = null, namespace: Output<String>? = null, tags: Output<Map<String, String>>? = null, timeouts: Output<NamespaceTimeoutsArgs>? = null)

Functions

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

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