Namespace

class Namespace : KotlinCustomResource

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

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>