Namespace

class Namespace : KotlinCustomResource

Creates a new Amazon Redshift Serverless Namespace.

Example Usage

package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.redshiftserverless.Namespace;
import com.pulumi.aws.redshiftserverless.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()
.namespaceName("concurrency-scaling")
.build());
}
}

Import

Redshift Serverless Namespaces can be imported using the namespace_name, e.g.,

$ pulumi import aws:redshiftserverless/namespace:Namespace example example

Properties

Link copied to clipboard
val adminUsername: Output<String>

The username of the administrator for the first database created in the namespace.

Link copied to clipboard

The password of the administrator for the first database created in the namespace.

Link copied to clipboard
val arn: Output<String>

Amazon Resource Name (ARN) of the Redshift Serverless Namespace.

Link copied to clipboard
val dbName: Output<String>

The name of the first database created in the namespace.

Link copied to clipboard

The Amazon Resource Name (ARN) of the IAM role to set as a default in the namespace. When specifying default_iam_role_arn, it also must be part of iam_roles.

Link copied to clipboard
val iamRoles: Output<List<String>>

A list of IAM roles to associate with the namespace.

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

The ARN of the Amazon Web Services Key Management Service key used to encrypt your data.

Link copied to clipboard
val logExports: Output<List<String>>?

The types of logs the namespace can export. Available export types are userlog, connectionlog, and useractivitylog.

Link copied to clipboard
val namespaceId: Output<String>

The Redshift Namespace ID.

Link copied to clipboard
val namespaceName: Output<String>

The name of the namespace.

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>>?

A map of tags to assign to the resource. 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
val urn: Output<String>