1. Packages
  2. AWS
  3. API Docs
  4. lakeformation
  5. ResourceLfTag
AWS v6.77.0 published on Wednesday, Apr 9, 2025 by Pulumi

aws.lakeformation.ResourceLfTag

Explore with Pulumi AI

Resource for managing an AWS Lake Formation Resource LF Tag.

Example Usage

Basic Usage

import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";

const example = new aws.lakeformation.ResourceLfTag("example", {
    database: {
        name: exampleAwsGlueCatalogDatabase.name,
    },
    lfTag: {
        key: exampleAwsLakeformationLfTag.key,
        value: "stowe",
    },
});
Copy
import pulumi
import pulumi_aws as aws

example = aws.lakeformation.ResourceLfTag("example",
    database={
        "name": example_aws_glue_catalog_database["name"],
    },
    lf_tag={
        "key": example_aws_lakeformation_lf_tag["key"],
        "value": "stowe",
    })
Copy
package main

import (
	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/lakeformation"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := lakeformation.NewResourceLfTag(ctx, "example", &lakeformation.ResourceLfTagArgs{
			Database: &lakeformation.ResourceLfTagDatabaseArgs{
				Name: pulumi.Any(exampleAwsGlueCatalogDatabase.Name),
			},
			LfTag: &lakeformation.ResourceLfTagLfTagArgs{
				Key:   pulumi.Any(exampleAwsLakeformationLfTag.Key),
				Value: pulumi.String("stowe"),
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;

return await Deployment.RunAsync(() => 
{
    var example = new Aws.LakeFormation.ResourceLfTag("example", new()
    {
        Database = new Aws.LakeFormation.Inputs.ResourceLfTagDatabaseArgs
        {
            Name = exampleAwsGlueCatalogDatabase.Name,
        },
        LfTag = new Aws.LakeFormation.Inputs.ResourceLfTagLfTagArgs
        {
            Key = exampleAwsLakeformationLfTag.Key,
            Value = "stowe",
        },
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.lakeformation.ResourceLfTag;
import com.pulumi.aws.lakeformation.ResourceLfTagArgs;
import com.pulumi.aws.lakeformation.inputs.ResourceLfTagDatabaseArgs;
import com.pulumi.aws.lakeformation.inputs.ResourceLfTagLfTagArgs;
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 ResourceLfTag("example", ResourceLfTagArgs.builder()
            .database(ResourceLfTagDatabaseArgs.builder()
                .name(exampleAwsGlueCatalogDatabase.name())
                .build())
            .lfTag(ResourceLfTagLfTagArgs.builder()
                .key(exampleAwsLakeformationLfTag.key())
                .value("stowe")
                .build())
            .build());

    }
}
Copy
resources:
  example:
    type: aws:lakeformation:ResourceLfTag
    properties:
      database:
        name: ${exampleAwsGlueCatalogDatabase.name}
      lfTag:
        key: ${exampleAwsLakeformationLfTag.key}
        value: stowe
Copy

Create ResourceLfTag Resource

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

Constructor syntax

new ResourceLfTag(name: string, args?: ResourceLfTagArgs, opts?: CustomResourceOptions);
@overload
def ResourceLfTag(resource_name: str,
                  args: Optional[ResourceLfTagArgs] = None,
                  opts: Optional[ResourceOptions] = None)

@overload
def ResourceLfTag(resource_name: str,
                  opts: Optional[ResourceOptions] = None,
                  catalog_id: Optional[str] = None,
                  database: Optional[ResourceLfTagDatabaseArgs] = None,
                  lf_tag: Optional[ResourceLfTagLfTagArgs] = None,
                  table: Optional[ResourceLfTagTableArgs] = None,
                  table_with_columns: Optional[ResourceLfTagTableWithColumnsArgs] = None,
                  timeouts: Optional[ResourceLfTagTimeoutsArgs] = None)
func NewResourceLfTag(ctx *Context, name string, args *ResourceLfTagArgs, opts ...ResourceOption) (*ResourceLfTag, error)
public ResourceLfTag(string name, ResourceLfTagArgs? args = null, CustomResourceOptions? opts = null)
public ResourceLfTag(String name, ResourceLfTagArgs args)
public ResourceLfTag(String name, ResourceLfTagArgs args, CustomResourceOptions options)
type: aws:lakeformation:ResourceLfTag
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args ResourceLfTagArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args ResourceLfTagArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args ResourceLfTagArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args ResourceLfTagArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. ResourceLfTagArgs
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 resourceLfTagResource = new Aws.LakeFormation.ResourceLfTag("resourceLfTagResource", new()
{
    CatalogId = "string",
    Database = new Aws.LakeFormation.Inputs.ResourceLfTagDatabaseArgs
    {
        Name = "string",
        CatalogId = "string",
    },
    LfTag = new Aws.LakeFormation.Inputs.ResourceLfTagLfTagArgs
    {
        Key = "string",
        Value = "string",
        CatalogId = "string",
    },
    Table = new Aws.LakeFormation.Inputs.ResourceLfTagTableArgs
    {
        DatabaseName = "string",
        CatalogId = "string",
        Name = "string",
        Wildcard = false,
    },
    TableWithColumns = new Aws.LakeFormation.Inputs.ResourceLfTagTableWithColumnsArgs
    {
        DatabaseName = "string",
        Name = "string",
        CatalogId = "string",
        ColumnNames = new[]
        {
            "string",
        },
        ColumnWildcard = new Aws.LakeFormation.Inputs.ResourceLfTagTableWithColumnsColumnWildcardArgs
        {
            ExcludedColumnNames = new[]
            {
                "string",
            },
        },
    },
    Timeouts = new Aws.LakeFormation.Inputs.ResourceLfTagTimeoutsArgs
    {
        Create = "string",
        Delete = "string",
    },
});
Copy
example, err := lakeformation.NewResourceLfTag(ctx, "resourceLfTagResource", &lakeformation.ResourceLfTagArgs{
	CatalogId: pulumi.String("string"),
	Database: &lakeformation.ResourceLfTagDatabaseArgs{
		Name:      pulumi.String("string"),
		CatalogId: pulumi.String("string"),
	},
	LfTag: &lakeformation.ResourceLfTagLfTagArgs{
		Key:       pulumi.String("string"),
		Value:     pulumi.String("string"),
		CatalogId: pulumi.String("string"),
	},
	Table: &lakeformation.ResourceLfTagTableArgs{
		DatabaseName: pulumi.String("string"),
		CatalogId:    pulumi.String("string"),
		Name:         pulumi.String("string"),
		Wildcard:     pulumi.Bool(false),
	},
	TableWithColumns: &lakeformation.ResourceLfTagTableWithColumnsArgs{
		DatabaseName: pulumi.String("string"),
		Name:         pulumi.String("string"),
		CatalogId:    pulumi.String("string"),
		ColumnNames: pulumi.StringArray{
			pulumi.String("string"),
		},
		ColumnWildcard: &lakeformation.ResourceLfTagTableWithColumnsColumnWildcardArgs{
			ExcludedColumnNames: pulumi.StringArray{
				pulumi.String("string"),
			},
		},
	},
	Timeouts: &lakeformation.ResourceLfTagTimeoutsArgs{
		Create: pulumi.String("string"),
		Delete: pulumi.String("string"),
	},
})
Copy
var resourceLfTagResource = new ResourceLfTag("resourceLfTagResource", ResourceLfTagArgs.builder()
    .catalogId("string")
    .database(ResourceLfTagDatabaseArgs.builder()
        .name("string")
        .catalogId("string")
        .build())
    .lfTag(ResourceLfTagLfTagArgs.builder()
        .key("string")
        .value("string")
        .catalogId("string")
        .build())
    .table(ResourceLfTagTableArgs.builder()
        .databaseName("string")
        .catalogId("string")
        .name("string")
        .wildcard(false)
        .build())
    .tableWithColumns(ResourceLfTagTableWithColumnsArgs.builder()
        .databaseName("string")
        .name("string")
        .catalogId("string")
        .columnNames("string")
        .columnWildcard(ResourceLfTagTableWithColumnsColumnWildcardArgs.builder()
            .excludedColumnNames("string")
            .build())
        .build())
    .timeouts(ResourceLfTagTimeoutsArgs.builder()
        .create("string")
        .delete("string")
        .build())
    .build());
Copy
resource_lf_tag_resource = aws.lakeformation.ResourceLfTag("resourceLfTagResource",
    catalog_id="string",
    database={
        "name": "string",
        "catalog_id": "string",
    },
    lf_tag={
        "key": "string",
        "value": "string",
        "catalog_id": "string",
    },
    table={
        "database_name": "string",
        "catalog_id": "string",
        "name": "string",
        "wildcard": False,
    },
    table_with_columns={
        "database_name": "string",
        "name": "string",
        "catalog_id": "string",
        "column_names": ["string"],
        "column_wildcard": {
            "excluded_column_names": ["string"],
        },
    },
    timeouts={
        "create": "string",
        "delete": "string",
    })
Copy
const resourceLfTagResource = new aws.lakeformation.ResourceLfTag("resourceLfTagResource", {
    catalogId: "string",
    database: {
        name: "string",
        catalogId: "string",
    },
    lfTag: {
        key: "string",
        value: "string",
        catalogId: "string",
    },
    table: {
        databaseName: "string",
        catalogId: "string",
        name: "string",
        wildcard: false,
    },
    tableWithColumns: {
        databaseName: "string",
        name: "string",
        catalogId: "string",
        columnNames: ["string"],
        columnWildcard: {
            excludedColumnNames: ["string"],
        },
    },
    timeouts: {
        create: "string",
        "delete": "string",
    },
});
Copy
type: aws:lakeformation:ResourceLfTag
properties:
    catalogId: string
    database:
        catalogId: string
        name: string
    lfTag:
        catalogId: string
        key: string
        value: string
    table:
        catalogId: string
        databaseName: string
        name: string
        wildcard: false
    tableWithColumns:
        catalogId: string
        columnNames:
            - string
        columnWildcard:
            excludedColumnNames:
                - string
        databaseName: string
        name: string
    timeouts:
        create: string
        delete: string
Copy

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

CatalogId string
Identifier for the Data Catalog. By default, the account ID. The Data Catalog is the persistent metadata store. It contains database definitions, table definitions, and other control information to manage your Lake Formation environment.
Database ResourceLfTagDatabase
Configuration block for a database resource. See Database for more details.
LfTag ResourceLfTagLfTag

Set of LF-tags to attach to the resource. See LF Tag for more details.

Exactly one of the following is required:

Table ResourceLfTagTable
Configuration block for a table resource. See Table for more details.
TableWithColumns ResourceLfTagTableWithColumns

Configuration block for a table with columns resource. See Table With Columns for more details.

The following arguments are optional:

Timeouts ResourceLfTagTimeouts
CatalogId string
Identifier for the Data Catalog. By default, the account ID. The Data Catalog is the persistent metadata store. It contains database definitions, table definitions, and other control information to manage your Lake Formation environment.
Database ResourceLfTagDatabaseArgs
Configuration block for a database resource. See Database for more details.
LfTag ResourceLfTagLfTagArgs

Set of LF-tags to attach to the resource. See LF Tag for more details.

Exactly one of the following is required:

Table ResourceLfTagTableArgs
Configuration block for a table resource. See Table for more details.
TableWithColumns ResourceLfTagTableWithColumnsArgs

Configuration block for a table with columns resource. See Table With Columns for more details.

The following arguments are optional:

Timeouts ResourceLfTagTimeoutsArgs
catalogId String
Identifier for the Data Catalog. By default, the account ID. The Data Catalog is the persistent metadata store. It contains database definitions, table definitions, and other control information to manage your Lake Formation environment.
database ResourceLfTagDatabase
Configuration block for a database resource. See Database for more details.
lfTag ResourceLfTagLfTag

Set of LF-tags to attach to the resource. See LF Tag for more details.

Exactly one of the following is required:

table ResourceLfTagTable
Configuration block for a table resource. See Table for more details.
tableWithColumns ResourceLfTagTableWithColumns

Configuration block for a table with columns resource. See Table With Columns for more details.

The following arguments are optional:

timeouts ResourceLfTagTimeouts
catalogId string
Identifier for the Data Catalog. By default, the account ID. The Data Catalog is the persistent metadata store. It contains database definitions, table definitions, and other control information to manage your Lake Formation environment.
database ResourceLfTagDatabase
Configuration block for a database resource. See Database for more details.
lfTag ResourceLfTagLfTag

Set of LF-tags to attach to the resource. See LF Tag for more details.

Exactly one of the following is required:

table ResourceLfTagTable
Configuration block for a table resource. See Table for more details.
tableWithColumns ResourceLfTagTableWithColumns

Configuration block for a table with columns resource. See Table With Columns for more details.

The following arguments are optional:

timeouts ResourceLfTagTimeouts
catalog_id str
Identifier for the Data Catalog. By default, the account ID. The Data Catalog is the persistent metadata store. It contains database definitions, table definitions, and other control information to manage your Lake Formation environment.
database ResourceLfTagDatabaseArgs
Configuration block for a database resource. See Database for more details.
lf_tag ResourceLfTagLfTagArgs

Set of LF-tags to attach to the resource. See LF Tag for more details.

Exactly one of the following is required:

table ResourceLfTagTableArgs
Configuration block for a table resource. See Table for more details.
table_with_columns ResourceLfTagTableWithColumnsArgs

Configuration block for a table with columns resource. See Table With Columns for more details.

The following arguments are optional:

timeouts ResourceLfTagTimeoutsArgs
catalogId String
Identifier for the Data Catalog. By default, the account ID. The Data Catalog is the persistent metadata store. It contains database definitions, table definitions, and other control information to manage your Lake Formation environment.
database Property Map
Configuration block for a database resource. See Database for more details.
lfTag Property Map

Set of LF-tags to attach to the resource. See LF Tag for more details.

Exactly one of the following is required:

table Property Map
Configuration block for a table resource. See Table for more details.
tableWithColumns Property Map

Configuration block for a table with columns resource. See Table With Columns for more details.

The following arguments are optional:

timeouts Property Map

Outputs

All input properties are implicitly available as output properties. Additionally, the ResourceLfTag 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 ResourceLfTag Resource

Get an existing ResourceLfTag 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?: ResourceLfTagState, opts?: CustomResourceOptions): ResourceLfTag
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        catalog_id: Optional[str] = None,
        database: Optional[ResourceLfTagDatabaseArgs] = None,
        lf_tag: Optional[ResourceLfTagLfTagArgs] = None,
        table: Optional[ResourceLfTagTableArgs] = None,
        table_with_columns: Optional[ResourceLfTagTableWithColumnsArgs] = None,
        timeouts: Optional[ResourceLfTagTimeoutsArgs] = None) -> ResourceLfTag
func GetResourceLfTag(ctx *Context, name string, id IDInput, state *ResourceLfTagState, opts ...ResourceOption) (*ResourceLfTag, error)
public static ResourceLfTag Get(string name, Input<string> id, ResourceLfTagState? state, CustomResourceOptions? opts = null)
public static ResourceLfTag get(String name, Output<String> id, ResourceLfTagState state, CustomResourceOptions options)
resources:  _:    type: aws:lakeformation:ResourceLfTag    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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:
CatalogId string
Identifier for the Data Catalog. By default, the account ID. The Data Catalog is the persistent metadata store. It contains database definitions, table definitions, and other control information to manage your Lake Formation environment.
Database ResourceLfTagDatabase
Configuration block for a database resource. See Database for more details.
LfTag ResourceLfTagLfTag

Set of LF-tags to attach to the resource. See LF Tag for more details.

Exactly one of the following is required:

Table ResourceLfTagTable
Configuration block for a table resource. See Table for more details.
TableWithColumns ResourceLfTagTableWithColumns

Configuration block for a table with columns resource. See Table With Columns for more details.

The following arguments are optional:

Timeouts ResourceLfTagTimeouts
CatalogId string
Identifier for the Data Catalog. By default, the account ID. The Data Catalog is the persistent metadata store. It contains database definitions, table definitions, and other control information to manage your Lake Formation environment.
Database ResourceLfTagDatabaseArgs
Configuration block for a database resource. See Database for more details.
LfTag ResourceLfTagLfTagArgs

Set of LF-tags to attach to the resource. See LF Tag for more details.

Exactly one of the following is required:

Table ResourceLfTagTableArgs
Configuration block for a table resource. See Table for more details.
TableWithColumns ResourceLfTagTableWithColumnsArgs

Configuration block for a table with columns resource. See Table With Columns for more details.

The following arguments are optional:

Timeouts ResourceLfTagTimeoutsArgs
catalogId String
Identifier for the Data Catalog. By default, the account ID. The Data Catalog is the persistent metadata store. It contains database definitions, table definitions, and other control information to manage your Lake Formation environment.
database ResourceLfTagDatabase
Configuration block for a database resource. See Database for more details.
lfTag ResourceLfTagLfTag

Set of LF-tags to attach to the resource. See LF Tag for more details.

Exactly one of the following is required:

table ResourceLfTagTable
Configuration block for a table resource. See Table for more details.
tableWithColumns ResourceLfTagTableWithColumns

Configuration block for a table with columns resource. See Table With Columns for more details.

The following arguments are optional:

timeouts ResourceLfTagTimeouts
catalogId string
Identifier for the Data Catalog. By default, the account ID. The Data Catalog is the persistent metadata store. It contains database definitions, table definitions, and other control information to manage your Lake Formation environment.
database ResourceLfTagDatabase
Configuration block for a database resource. See Database for more details.
lfTag ResourceLfTagLfTag

Set of LF-tags to attach to the resource. See LF Tag for more details.

Exactly one of the following is required:

table ResourceLfTagTable
Configuration block for a table resource. See Table for more details.
tableWithColumns ResourceLfTagTableWithColumns

Configuration block for a table with columns resource. See Table With Columns for more details.

The following arguments are optional:

timeouts ResourceLfTagTimeouts
catalog_id str
Identifier for the Data Catalog. By default, the account ID. The Data Catalog is the persistent metadata store. It contains database definitions, table definitions, and other control information to manage your Lake Formation environment.
database ResourceLfTagDatabaseArgs
Configuration block for a database resource. See Database for more details.
lf_tag ResourceLfTagLfTagArgs

Set of LF-tags to attach to the resource. See LF Tag for more details.

Exactly one of the following is required:

table ResourceLfTagTableArgs
Configuration block for a table resource. See Table for more details.
table_with_columns ResourceLfTagTableWithColumnsArgs

Configuration block for a table with columns resource. See Table With Columns for more details.

The following arguments are optional:

timeouts ResourceLfTagTimeoutsArgs
catalogId String
Identifier for the Data Catalog. By default, the account ID. The Data Catalog is the persistent metadata store. It contains database definitions, table definitions, and other control information to manage your Lake Formation environment.
database Property Map
Configuration block for a database resource. See Database for more details.
lfTag Property Map

Set of LF-tags to attach to the resource. See LF Tag for more details.

Exactly one of the following is required:

table Property Map
Configuration block for a table resource. See Table for more details.
tableWithColumns Property Map

Configuration block for a table with columns resource. See Table With Columns for more details.

The following arguments are optional:

timeouts Property Map

Supporting Types

ResourceLfTagDatabase
, ResourceLfTagDatabaseArgs

Name This property is required. string

Name of the database resource. Unique to the Data Catalog.

The following argument is optional:

CatalogId string
Identifier for the Data Catalog. By default, it is the account ID of the caller.
Name This property is required. string

Name of the database resource. Unique to the Data Catalog.

The following argument is optional:

CatalogId string
Identifier for the Data Catalog. By default, it is the account ID of the caller.
name This property is required. String

Name of the database resource. Unique to the Data Catalog.

The following argument is optional:

catalogId String
Identifier for the Data Catalog. By default, it is the account ID of the caller.
name This property is required. string

Name of the database resource. Unique to the Data Catalog.

The following argument is optional:

catalogId string
Identifier for the Data Catalog. By default, it is the account ID of the caller.
name This property is required. str

Name of the database resource. Unique to the Data Catalog.

The following argument is optional:

catalog_id str
Identifier for the Data Catalog. By default, it is the account ID of the caller.
name This property is required. String

Name of the database resource. Unique to the Data Catalog.

The following argument is optional:

catalogId String
Identifier for the Data Catalog. By default, it is the account ID of the caller.

ResourceLfTagLfTag
, ResourceLfTagLfTagArgs

Key This property is required. string
Key name for an existing LF-tag.
Value This property is required. string

Value from the possible values for the LF-tag.

The following argument is optional:

CatalogId string
Identifier for the Data Catalog. By default, it is the account ID of the caller.
Key This property is required. string
Key name for an existing LF-tag.
Value This property is required. string

Value from the possible values for the LF-tag.

The following argument is optional:

CatalogId string
Identifier for the Data Catalog. By default, it is the account ID of the caller.
key This property is required. String
Key name for an existing LF-tag.
value This property is required. String

Value from the possible values for the LF-tag.

The following argument is optional:

catalogId String
Identifier for the Data Catalog. By default, it is the account ID of the caller.
key This property is required. string
Key name for an existing LF-tag.
value This property is required. string

Value from the possible values for the LF-tag.

The following argument is optional:

catalogId string
Identifier for the Data Catalog. By default, it is the account ID of the caller.
key This property is required. str
Key name for an existing LF-tag.
value This property is required. str

Value from the possible values for the LF-tag.

The following argument is optional:

catalog_id str
Identifier for the Data Catalog. By default, it is the account ID of the caller.
key This property is required. String
Key name for an existing LF-tag.
value This property is required. String

Value from the possible values for the LF-tag.

The following argument is optional:

catalogId String
Identifier for the Data Catalog. By default, it is the account ID of the caller.

ResourceLfTagTable
, ResourceLfTagTableArgs

DatabaseName This property is required. string
Name of the database for the table. Unique to a Data Catalog.
CatalogId string
Identifier for the Data Catalog. By default, it is the account ID of the caller.
Name string
Name of the table.
Wildcard bool

Whether to use a wildcard representing every table under a database. Defaults to false.

The following arguments are optional:

DatabaseName This property is required. string
Name of the database for the table. Unique to a Data Catalog.
CatalogId string
Identifier for the Data Catalog. By default, it is the account ID of the caller.
Name string
Name of the table.
Wildcard bool

Whether to use a wildcard representing every table under a database. Defaults to false.

The following arguments are optional:

databaseName This property is required. String
Name of the database for the table. Unique to a Data Catalog.
catalogId String
Identifier for the Data Catalog. By default, it is the account ID of the caller.
name String
Name of the table.
wildcard Boolean

Whether to use a wildcard representing every table under a database. Defaults to false.

The following arguments are optional:

databaseName This property is required. string
Name of the database for the table. Unique to a Data Catalog.
catalogId string
Identifier for the Data Catalog. By default, it is the account ID of the caller.
name string
Name of the table.
wildcard boolean

Whether to use a wildcard representing every table under a database. Defaults to false.

The following arguments are optional:

database_name This property is required. str
Name of the database for the table. Unique to a Data Catalog.
catalog_id str
Identifier for the Data Catalog. By default, it is the account ID of the caller.
name str
Name of the table.
wildcard bool

Whether to use a wildcard representing every table under a database. Defaults to false.

The following arguments are optional:

databaseName This property is required. String
Name of the database for the table. Unique to a Data Catalog.
catalogId String
Identifier for the Data Catalog. By default, it is the account ID of the caller.
name String
Name of the table.
wildcard Boolean

Whether to use a wildcard representing every table under a database. Defaults to false.

The following arguments are optional:

ResourceLfTagTableWithColumns
, ResourceLfTagTableWithColumnsArgs

DatabaseName This property is required. string
Name of the database for the table with columns resource. Unique to the Data Catalog.
Name This property is required. string

Name of the table resource.

The following arguments are optional:

CatalogId string
Identifier for the Data Catalog. By default, it is the account ID of the caller.
ColumnNames List<string>
Set of column names for the table.
ColumnWildcard ResourceLfTagTableWithColumnsColumnWildcard
Option to add column wildcard. See Column Wildcard for more details.
DatabaseName This property is required. string
Name of the database for the table with columns resource. Unique to the Data Catalog.
Name This property is required. string

Name of the table resource.

The following arguments are optional:

CatalogId string
Identifier for the Data Catalog. By default, it is the account ID of the caller.
ColumnNames []string
Set of column names for the table.
ColumnWildcard ResourceLfTagTableWithColumnsColumnWildcard
Option to add column wildcard. See Column Wildcard for more details.
databaseName This property is required. String
Name of the database for the table with columns resource. Unique to the Data Catalog.
name This property is required. String

Name of the table resource.

The following arguments are optional:

catalogId String
Identifier for the Data Catalog. By default, it is the account ID of the caller.
columnNames List<String>
Set of column names for the table.
columnWildcard ResourceLfTagTableWithColumnsColumnWildcard
Option to add column wildcard. See Column Wildcard for more details.
databaseName This property is required. string
Name of the database for the table with columns resource. Unique to the Data Catalog.
name This property is required. string

Name of the table resource.

The following arguments are optional:

catalogId string
Identifier for the Data Catalog. By default, it is the account ID of the caller.
columnNames string[]
Set of column names for the table.
columnWildcard ResourceLfTagTableWithColumnsColumnWildcard
Option to add column wildcard. See Column Wildcard for more details.
database_name This property is required. str
Name of the database for the table with columns resource. Unique to the Data Catalog.
name This property is required. str

Name of the table resource.

The following arguments are optional:

catalog_id str
Identifier for the Data Catalog. By default, it is the account ID of the caller.
column_names Sequence[str]
Set of column names for the table.
column_wildcard ResourceLfTagTableWithColumnsColumnWildcard
Option to add column wildcard. See Column Wildcard for more details.
databaseName This property is required. String
Name of the database for the table with columns resource. Unique to the Data Catalog.
name This property is required. String

Name of the table resource.

The following arguments are optional:

catalogId String
Identifier for the Data Catalog. By default, it is the account ID of the caller.
columnNames List<String>
Set of column names for the table.
columnWildcard Property Map
Option to add column wildcard. See Column Wildcard for more details.

ResourceLfTagTableWithColumnsColumnWildcard
, ResourceLfTagTableWithColumnsColumnWildcardArgs

ExcludedColumnNames List<string>
excludedColumnNames List<String>
excluded_column_names Sequence[str]
excludedColumnNames List<String>

ResourceLfTagTimeouts
, ResourceLfTagTimeoutsArgs

Create string
A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
Delete string
A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
Create string
A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
Delete string
A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
create String
A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
delete String
A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
create string
A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
delete string
A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
create str
A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
delete str
A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
create String
A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
delete String
A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.

Import

You cannot import this resource.

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.