1. Packages
  2. AWS
  3. API Docs
  4. s3tables
  5. Namespace
AWS v6.72.0 published on Tuesday, Mar 11, 2025 by Pulumi

aws.s3tables.Namespace

Explore with Pulumi AI

aws logo
AWS v6.72.0 published on Tuesday, Mar 11, 2025 by Pulumi

    Resource for managing an Amazon S3 Tables Namespace.

    Example Usage

    Basic Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as aws from "@pulumi/aws";
    
    const exampleTableBucket = new aws.s3tables.TableBucket("example", {name: "example-bucket"});
    const example = new aws.s3tables.Namespace("example", {
        namespace: "example-namespace",
        tableBucketArn: exampleTableBucket.arn,
    });
    
    import pulumi
    import pulumi_aws as aws
    
    example_table_bucket = aws.s3tables.TableBucket("example", name="example-bucket")
    example = aws.s3tables.Namespace("example",
        namespace="example-namespace",
        table_bucket_arn=example_table_bucket.arn)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/s3tables"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		exampleTableBucket, err := s3tables.NewTableBucket(ctx, "example", &s3tables.TableBucketArgs{
    			Name: pulumi.String("example-bucket"),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = s3tables.NewNamespace(ctx, "example", &s3tables.NamespaceArgs{
    			Namespace:      pulumi.String("example-namespace"),
    			TableBucketArn: exampleTableBucket.Arn,
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Aws = Pulumi.Aws;
    
    return await Deployment.RunAsync(() => 
    {
        var exampleTableBucket = new Aws.S3Tables.TableBucket("example", new()
        {
            Name = "example-bucket",
        });
    
        var example = new Aws.S3Tables.Namespace("example", new()
        {
            NameSpace = "example-namespace",
            TableBucketArn = exampleTableBucket.Arn,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.aws.s3tables.TableBucket;
    import com.pulumi.aws.s3tables.TableBucketArgs;
    import com.pulumi.aws.s3tables.Namespace;
    import com.pulumi.aws.s3tables.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 exampleTableBucket = new TableBucket("exampleTableBucket", TableBucketArgs.builder()
                .name("example-bucket")
                .build());
    
            var example = new Namespace("example", NamespaceArgs.builder()
                .namespace("example-namespace")
                .tableBucketArn(exampleTableBucket.arn())
                .build());
    
        }
    }
    
    resources:
      example:
        type: aws:s3tables:Namespace
        properties:
          namespace: example-namespace
          tableBucketArn: ${exampleTableBucket.arn}
      exampleTableBucket:
        type: aws:s3tables:TableBucket
        name: example
        properties:
          name: example-bucket
    

    Create Namespace Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new Namespace(name: string, args: NamespaceArgs, opts?: CustomResourceOptions);
    @overload
    def Namespace(resource_name: str,
                  args: NamespaceArgs,
                  opts: Optional[ResourceOptions] = None)
    
    @overload
    def Namespace(resource_name: str,
                  opts: Optional[ResourceOptions] = None,
                  namespace: Optional[str] = None,
                  table_bucket_arn: Optional[str] = None)
    func NewNamespace(ctx *Context, name string, args NamespaceArgs, opts ...ResourceOption) (*Namespace, error)
    public Namespace(string name, NamespaceArgs args, CustomResourceOptions? opts = null)
    public Namespace(String name, NamespaceArgs args)
    public Namespace(String name, NamespaceArgs args, CustomResourceOptions options)
    
    type: aws:s3tables:Namespace
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args NamespaceArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args NamespaceArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args NamespaceArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args NamespaceArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args NamespaceArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var examplenamespaceResourceResourceFromS3tablesnamespace = new Aws.S3Tables.Namespace("examplenamespaceResourceResourceFromS3tablesnamespace", new()
    {
        NameSpace = "string",
        TableBucketArn = "string",
    });
    
    example, err := s3tables.NewNamespace(ctx, "examplenamespaceResourceResourceFromS3tablesnamespace", &s3tables.NamespaceArgs{
    	Namespace:      pulumi.String("string"),
    	TableBucketArn: pulumi.String("string"),
    })
    
    var examplenamespaceResourceResourceFromS3tablesnamespace = new Namespace("examplenamespaceResourceResourceFromS3tablesnamespace", NamespaceArgs.builder()
        .namespace("string")
        .tableBucketArn("string")
        .build());
    
    examplenamespace_resource_resource_from_s3tablesnamespace = aws.s3tables.Namespace("examplenamespaceResourceResourceFromS3tablesnamespace",
        namespace="string",
        table_bucket_arn="string")
    
    const examplenamespaceResourceResourceFromS3tablesnamespace = new aws.s3tables.Namespace("examplenamespaceResourceResourceFromS3tablesnamespace", {
        namespace: "string",
        tableBucketArn: "string",
    });
    
    type: aws:s3tables:Namespace
    properties:
        namespace: string
        tableBucketArn: string
    

    Namespace Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The Namespace resource accepts the following input properties:

    NameSpace string
    Name of the namespace. Must be between 1 and 255 characters in length. Can consist of lowercase letters, numbers, and underscores, and must begin and end with a lowercase letter or number.
    TableBucketArn string
    ARN referencing the Table Bucket that contains this Namespace.
    Namespace string
    Name of the namespace. Must be between 1 and 255 characters in length. Can consist of lowercase letters, numbers, and underscores, and must begin and end with a lowercase letter or number.
    TableBucketArn string
    ARN referencing the Table Bucket that contains this Namespace.
    namespace String
    Name of the namespace. Must be between 1 and 255 characters in length. Can consist of lowercase letters, numbers, and underscores, and must begin and end with a lowercase letter or number.
    tableBucketArn String
    ARN referencing the Table Bucket that contains this Namespace.
    namespace string
    Name of the namespace. Must be between 1 and 255 characters in length. Can consist of lowercase letters, numbers, and underscores, and must begin and end with a lowercase letter or number.
    tableBucketArn string
    ARN referencing the Table Bucket that contains this Namespace.
    namespace str
    Name of the namespace. Must be between 1 and 255 characters in length. Can consist of lowercase letters, numbers, and underscores, and must begin and end with a lowercase letter or number.
    table_bucket_arn str
    ARN referencing the Table Bucket that contains this Namespace.
    namespace String
    Name of the namespace. Must be between 1 and 255 characters in length. Can consist of lowercase letters, numbers, and underscores, and must begin and end with a lowercase letter or number.
    tableBucketArn String
    ARN referencing the Table Bucket that contains this Namespace.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the Namespace resource produces the following output properties:

    CreatedAt string
    Date and time when the namespace was created.
    CreatedBy string
    Account ID of the account that created the namespace.
    Id string
    The provider-assigned unique ID for this managed resource.
    OwnerAccountId string
    Account ID of the account that owns the namespace.
    CreatedAt string
    Date and time when the namespace was created.
    CreatedBy string
    Account ID of the account that created the namespace.
    Id string
    The provider-assigned unique ID for this managed resource.
    OwnerAccountId string
    Account ID of the account that owns the namespace.
    createdAt String
    Date and time when the namespace was created.
    createdBy String
    Account ID of the account that created the namespace.
    id String
    The provider-assigned unique ID for this managed resource.
    ownerAccountId String
    Account ID of the account that owns the namespace.
    createdAt string
    Date and time when the namespace was created.
    createdBy string
    Account ID of the account that created the namespace.
    id string
    The provider-assigned unique ID for this managed resource.
    ownerAccountId string
    Account ID of the account that owns the namespace.
    created_at str
    Date and time when the namespace was created.
    created_by str
    Account ID of the account that created the namespace.
    id str
    The provider-assigned unique ID for this managed resource.
    owner_account_id str
    Account ID of the account that owns the namespace.
    createdAt String
    Date and time when the namespace was created.
    createdBy String
    Account ID of the account that created the namespace.
    id String
    The provider-assigned unique ID for this managed resource.
    ownerAccountId String
    Account ID of the account that owns the namespace.

    Look up Existing Namespace Resource

    Get an existing Namespace resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: NamespaceState, opts?: CustomResourceOptions): Namespace
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            created_at: Optional[str] = None,
            created_by: Optional[str] = None,
            namespace: Optional[str] = None,
            owner_account_id: Optional[str] = None,
            table_bucket_arn: Optional[str] = None) -> Namespace
    func GetNamespace(ctx *Context, name string, id IDInput, state *NamespaceState, opts ...ResourceOption) (*Namespace, error)
    public static Namespace Get(string name, Input<string> id, NamespaceState? state, CustomResourceOptions? opts = null)
    public static Namespace get(String name, Output<String> id, NamespaceState state, CustomResourceOptions options)
    resources:  _:    type: aws:s3tables:Namespace    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    CreatedAt string
    Date and time when the namespace was created.
    CreatedBy string
    Account ID of the account that created the namespace.
    NameSpace string
    Name of the namespace. Must be between 1 and 255 characters in length. Can consist of lowercase letters, numbers, and underscores, and must begin and end with a lowercase letter or number.
    OwnerAccountId string
    Account ID of the account that owns the namespace.
    TableBucketArn string
    ARN referencing the Table Bucket that contains this Namespace.
    CreatedAt string
    Date and time when the namespace was created.
    CreatedBy string
    Account ID of the account that created the namespace.
    Namespace string
    Name of the namespace. Must be between 1 and 255 characters in length. Can consist of lowercase letters, numbers, and underscores, and must begin and end with a lowercase letter or number.
    OwnerAccountId string
    Account ID of the account that owns the namespace.
    TableBucketArn string
    ARN referencing the Table Bucket that contains this Namespace.
    createdAt String
    Date and time when the namespace was created.
    createdBy String
    Account ID of the account that created the namespace.
    namespace String
    Name of the namespace. Must be between 1 and 255 characters in length. Can consist of lowercase letters, numbers, and underscores, and must begin and end with a lowercase letter or number.
    ownerAccountId String
    Account ID of the account that owns the namespace.
    tableBucketArn String
    ARN referencing the Table Bucket that contains this Namespace.
    createdAt string
    Date and time when the namespace was created.
    createdBy string
    Account ID of the account that created the namespace.
    namespace string
    Name of the namespace. Must be between 1 and 255 characters in length. Can consist of lowercase letters, numbers, and underscores, and must begin and end with a lowercase letter or number.
    ownerAccountId string
    Account ID of the account that owns the namespace.
    tableBucketArn string
    ARN referencing the Table Bucket that contains this Namespace.
    created_at str
    Date and time when the namespace was created.
    created_by str
    Account ID of the account that created the namespace.
    namespace str
    Name of the namespace. Must be between 1 and 255 characters in length. Can consist of lowercase letters, numbers, and underscores, and must begin and end with a lowercase letter or number.
    owner_account_id str
    Account ID of the account that owns the namespace.
    table_bucket_arn str
    ARN referencing the Table Bucket that contains this Namespace.
    createdAt String
    Date and time when the namespace was created.
    createdBy String
    Account ID of the account that created the namespace.
    namespace String
    Name of the namespace. Must be between 1 and 255 characters in length. Can consist of lowercase letters, numbers, and underscores, and must begin and end with a lowercase letter or number.
    ownerAccountId String
    Account ID of the account that owns the namespace.
    tableBucketArn String
    ARN referencing the Table Bucket that contains this Namespace.

    Import

    Using pulumi import, import S3 Tables Namespace using the table_bucket_arn and the value of namespace, separated by a semicolon (;). For example:

    $ pulumi import aws:s3tables/namespace:Namespace example 'arn:aws:s3tables:us-west-2:123456789012:bucket/example-bucket;example-namespace'
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    AWS Classic pulumi/pulumi-aws
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the aws Terraform Provider.
    aws logo
    AWS v6.72.0 published on Tuesday, Mar 11, 2025 by Pulumi