1. Packages
  2. AWS
  3. API Docs
  4. s3tables
  5. TablePolicy
AWS v6.73.0 published on Wednesday, Mar 19, 2025 by Pulumi

aws.s3tables.TablePolicy

Explore with Pulumi AI

aws logo
AWS v6.73.0 published on Wednesday, Mar 19, 2025 by Pulumi

    Resource for managing an Amazon S3 Tables Table Policy.

    Example Usage

    Basic Usage

    Coming soon!
    
    Coming soon!
    
    Coming soon!
    
    Coming soon!
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.aws.iam.IamFunctions;
    import com.pulumi.aws.iam.inputs.GetPolicyDocumentArgs;
    import com.pulumi.aws.s3tables.TablePolicy;
    import com.pulumi.aws.s3tables.TablePolicyArgs;
    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 com.pulumi.aws.s3tables.Table;
    import com.pulumi.aws.s3tables.TableArgs;
    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) {
            final var example = IamFunctions.getPolicyDocument(GetPolicyDocumentArgs.builder()
                .statements()
                .build());
    
            var exampleTablePolicy = new TablePolicy("exampleTablePolicy", TablePolicyArgs.builder()
                .resourcePolicy(example.applyValue(getPolicyDocumentResult -> getPolicyDocumentResult.json()))
                .name(test.name())
                .namespace(test.namespace())
                .tableBucketArn(test.tableBucketArn())
                .build());
    
            var exampleTableBucket = new TableBucket("exampleTableBucket", TableBucketArgs.builder()
                .name("example-bucket")
                .build());
    
            var exampleNamespace = new Namespace("exampleNamespace", NamespaceArgs.builder()
                .namespace("example-namespace")
                .tableBucketArn(exampleTableBucket.arn())
                .build());
    
            var exampleTable = new Table("exampleTable", TableArgs.builder()
                .name("example-table")
                .namespace(exampleNamespace)
                .tableBucketArn(exampleNamespace.tableBucketArn())
                .format("ICEBERG")
                .build());
    
        }
    }
    
    resources:
      exampleTablePolicy:
        type: aws:s3tables:TablePolicy
        name: example
        properties:
          resourcePolicy: ${example.json}
          name: ${test.name}
          namespace: ${test.namespace}
          tableBucketArn: ${test.tableBucketArn}
      exampleTable:
        type: aws:s3tables:Table
        name: example
        properties:
          name: example-table
          namespace: ${exampleNamespace}
          tableBucketArn: ${exampleNamespace.tableBucketArn}
          format: ICEBERG
      exampleNamespace:
        type: aws:s3tables:Namespace
        name: example
        properties:
          namespace:
            - example-namespace
          tableBucketArn: ${exampleTableBucket.arn}
      exampleTableBucket:
        type: aws:s3tables:TableBucket
        name: example
        properties:
          name: example-bucket
    variables:
      example:
        fn::invoke:
          function: aws:iam:getPolicyDocument
          arguments:
            statements:
              - {}
    

    Create TablePolicy Resource

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

    Constructor syntax

    new TablePolicy(name: string, args: TablePolicyArgs, opts?: CustomResourceOptions);
    @overload
    def TablePolicy(resource_name: str,
                    args: TablePolicyArgs,
                    opts: Optional[ResourceOptions] = None)
    
    @overload
    def TablePolicy(resource_name: str,
                    opts: Optional[ResourceOptions] = None,
                    namespace: Optional[str] = None,
                    resource_policy: Optional[str] = None,
                    table_bucket_arn: Optional[str] = None,
                    name: Optional[str] = None)
    func NewTablePolicy(ctx *Context, name string, args TablePolicyArgs, opts ...ResourceOption) (*TablePolicy, error)
    public TablePolicy(string name, TablePolicyArgs args, CustomResourceOptions? opts = null)
    public TablePolicy(String name, TablePolicyArgs args)
    public TablePolicy(String name, TablePolicyArgs args, CustomResourceOptions options)
    
    type: aws:s3tables:TablePolicy
    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 TablePolicyArgs
    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 TablePolicyArgs
    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 TablePolicyArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args TablePolicyArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args TablePolicyArgs
    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 tablePolicyResource = new Aws.S3Tables.TablePolicy("tablePolicyResource", new()
    {
        Namespace = "string",
        ResourcePolicy = "string",
        TableBucketArn = "string",
        Name = "string",
    });
    
    example, err := s3tables.NewTablePolicy(ctx, "tablePolicyResource", &s3tables.TablePolicyArgs{
    	Namespace:      pulumi.String("string"),
    	ResourcePolicy: pulumi.String("string"),
    	TableBucketArn: pulumi.String("string"),
    	Name:           pulumi.String("string"),
    })
    
    var tablePolicyResource = new TablePolicy("tablePolicyResource", TablePolicyArgs.builder()
        .namespace("string")
        .resourcePolicy("string")
        .tableBucketArn("string")
        .name("string")
        .build());
    
    table_policy_resource = aws.s3tables.TablePolicy("tablePolicyResource",
        namespace="string",
        resource_policy="string",
        table_bucket_arn="string",
        name="string")
    
    const tablePolicyResource = new aws.s3tables.TablePolicy("tablePolicyResource", {
        namespace: "string",
        resourcePolicy: "string",
        tableBucketArn: "string",
        name: "string",
    });
    
    type: aws:s3tables:TablePolicy
    properties:
        name: string
        namespace: string
        resourcePolicy: string
        tableBucketArn: string
    

    TablePolicy 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 TablePolicy resource accepts the following input properties:

    Namespace string
    Name of the namespace for this table. 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.
    ResourcePolicy string
    Amazon Web Services resource-based policy document in JSON format.
    TableBucketArn string
    ARN referencing the Table Bucket that contains this Namespace.
    Name string
    Name of the table. 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.
    Namespace string
    Name of the namespace for this table. 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.
    ResourcePolicy string
    Amazon Web Services resource-based policy document in JSON format.
    TableBucketArn string
    ARN referencing the Table Bucket that contains this Namespace.
    Name string
    Name of the table. 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.
    namespace String
    Name of the namespace for this table. 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.
    resourcePolicy String
    Amazon Web Services resource-based policy document in JSON format.
    tableBucketArn String
    ARN referencing the Table Bucket that contains this Namespace.
    name String
    Name of the table. 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.
    namespace string
    Name of the namespace for this table. 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.
    resourcePolicy string
    Amazon Web Services resource-based policy document in JSON format.
    tableBucketArn string
    ARN referencing the Table Bucket that contains this Namespace.
    name string
    Name of the table. 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.
    namespace str
    Name of the namespace for this table. 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.
    resource_policy str
    Amazon Web Services resource-based policy document in JSON format.
    table_bucket_arn str
    ARN referencing the Table Bucket that contains this Namespace.
    name str
    Name of the table. 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.
    namespace String
    Name of the namespace for this table. 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.
    resourcePolicy String
    Amazon Web Services resource-based policy document in JSON format.
    tableBucketArn String
    ARN referencing the Table Bucket that contains this Namespace.
    name String
    Name of the table. 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.

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing TablePolicy Resource

    Get an existing TablePolicy 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?: TablePolicyState, opts?: CustomResourceOptions): TablePolicy
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            name: Optional[str] = None,
            namespace: Optional[str] = None,
            resource_policy: Optional[str] = None,
            table_bucket_arn: Optional[str] = None) -> TablePolicy
    func GetTablePolicy(ctx *Context, name string, id IDInput, state *TablePolicyState, opts ...ResourceOption) (*TablePolicy, error)
    public static TablePolicy Get(string name, Input<string> id, TablePolicyState? state, CustomResourceOptions? opts = null)
    public static TablePolicy get(String name, Output<String> id, TablePolicyState state, CustomResourceOptions options)
    resources:  _:    type: aws:s3tables:TablePolicy    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:
    Name string
    Name of the table. 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.
    Namespace string
    Name of the namespace for this table. 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.
    ResourcePolicy string
    Amazon Web Services resource-based policy document in JSON format.
    TableBucketArn string
    ARN referencing the Table Bucket that contains this Namespace.
    Name string
    Name of the table. 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.
    Namespace string
    Name of the namespace for this table. 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.
    ResourcePolicy string
    Amazon Web Services resource-based policy document in JSON format.
    TableBucketArn string
    ARN referencing the Table Bucket that contains this Namespace.
    name String
    Name of the table. 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.
    namespace String
    Name of the namespace for this table. 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.
    resourcePolicy String
    Amazon Web Services resource-based policy document in JSON format.
    tableBucketArn String
    ARN referencing the Table Bucket that contains this Namespace.
    name string
    Name of the table. 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.
    namespace string
    Name of the namespace for this table. 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.
    resourcePolicy string
    Amazon Web Services resource-based policy document in JSON format.
    tableBucketArn string
    ARN referencing the Table Bucket that contains this Namespace.
    name str
    Name of the table. 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.
    namespace str
    Name of the namespace for this table. 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.
    resource_policy str
    Amazon Web Services resource-based policy document in JSON format.
    table_bucket_arn str
    ARN referencing the Table Bucket that contains this Namespace.
    name String
    Name of the table. 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.
    namespace String
    Name of the namespace for this table. 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.
    resourcePolicy String
    Amazon Web Services resource-based policy document in JSON format.
    tableBucketArn String
    ARN referencing the Table Bucket that contains this Namespace.

    Import

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

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

    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.73.0 published on Wednesday, Mar 19, 2025 by Pulumi