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",
},
});
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",
})
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
})
}
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",
},
});
});
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());
}
}
resources:
example:
type: aws:lakeformation:ResourceLfTag
properties:
database:
name: ${exampleAwsGlueCatalogDatabase.name}
lfTag:
key: ${exampleAwsLakeformationLfTag.key}
value: stowe
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 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 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 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 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 String
- The unique name of the resource.
- args 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",
},
});
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"),
},
})
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());
resource_lf_tag_resource = aws.lakeformation.ResourceLfTag("resourceLfTagResource",
catalog_id="string",
database={
"name": "string",
"catalogId": "string",
},
lf_tag={
"key": "string",
"value": "string",
"catalogId": "string",
},
table={
"databaseName": "string",
"catalogId": "string",
"name": "string",
"wildcard": False,
},
table_with_columns={
"databaseName": "string",
"name": "string",
"catalogId": "string",
"columnNames": ["string"],
"columnWildcard": {
"excludedColumnNames": ["string"],
},
},
timeouts={
"create": "string",
"delete": "string",
})
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",
},
});
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
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
The ResourceLfTag resource accepts the following input properties:
- Catalog
Id 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
Resource
Lf Tag Database - Configuration block for a database resource. See Database for more details.
- Lf
Tag ResourceLf Tag Lf Tag Set of LF-tags to attach to the resource. See LF Tag for more details.
Exactly one of the following is required:
- Table
Resource
Lf Tag Table - Configuration block for a table resource. See Table for more details.
- Table
With ResourceColumns Lf Tag Table With Columns Configuration block for a table with columns resource. See Table With Columns for more details.
The following arguments are optional:
- Timeouts
Resource
Lf Tag Timeouts
- Catalog
Id 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
Resource
Lf Tag Database Args - Configuration block for a database resource. See Database for more details.
- Lf
Tag ResourceLf Tag Lf Tag Args Set of LF-tags to attach to the resource. See LF Tag for more details.
Exactly one of the following is required:
- Table
Resource
Lf Tag Table Args - Configuration block for a table resource. See Table for more details.
- Table
With ResourceColumns Lf Tag Table With Columns Args Configuration block for a table with columns resource. See Table With Columns for more details.
The following arguments are optional:
- Timeouts
Resource
Lf Tag Timeouts Args
- catalog
Id 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
Resource
Lf Tag Database - Configuration block for a database resource. See Database for more details.
- lf
Tag ResourceLf Tag Lf Tag Set of LF-tags to attach to the resource. See LF Tag for more details.
Exactly one of the following is required:
- table
Resource
Lf Tag Table - Configuration block for a table resource. See Table for more details.
- table
With ResourceColumns Lf Tag Table With Columns Configuration block for a table with columns resource. See Table With Columns for more details.
The following arguments are optional:
- timeouts
Resource
Lf Tag Timeouts
- catalog
Id 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
Resource
Lf Tag Database - Configuration block for a database resource. See Database for more details.
- lf
Tag ResourceLf Tag Lf Tag Set of LF-tags to attach to the resource. See LF Tag for more details.
Exactly one of the following is required:
- table
Resource
Lf Tag Table - Configuration block for a table resource. See Table for more details.
- table
With ResourceColumns Lf Tag Table With Columns Configuration block for a table with columns resource. See Table With Columns for more details.
The following arguments are optional:
- timeouts
Resource
Lf Tag Timeouts
- 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
Resource
Lf Tag Database Args - Configuration block for a database resource. See Database for more details.
- lf_
tag ResourceLf Tag Lf Tag Args Set of LF-tags to attach to the resource. See LF Tag for more details.
Exactly one of the following is required:
- table
Resource
Lf Tag Table Args - Configuration block for a table resource. See Table for more details.
- table_
with_ Resourcecolumns Lf Tag Table With Columns Args Configuration block for a table with columns resource. See Table With Columns for more details.
The following arguments are optional:
- timeouts
Resource
Lf Tag Timeouts Args
- catalog
Id 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.
- lf
Tag 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.
- table
With Property MapColumns 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)
Resource lookup is not supported in YAML
- 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.
- Catalog
Id 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
Resource
Lf Tag Database - Configuration block for a database resource. See Database for more details.
- Lf
Tag ResourceLf Tag Lf Tag Set of LF-tags to attach to the resource. See LF Tag for more details.
Exactly one of the following is required:
- Table
Resource
Lf Tag Table - Configuration block for a table resource. See Table for more details.
- Table
With ResourceColumns Lf Tag Table With Columns Configuration block for a table with columns resource. See Table With Columns for more details.
The following arguments are optional:
- Timeouts
Resource
Lf Tag Timeouts
- Catalog
Id 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
Resource
Lf Tag Database Args - Configuration block for a database resource. See Database for more details.
- Lf
Tag ResourceLf Tag Lf Tag Args Set of LF-tags to attach to the resource. See LF Tag for more details.
Exactly one of the following is required:
- Table
Resource
Lf Tag Table Args - Configuration block for a table resource. See Table for more details.
- Table
With ResourceColumns Lf Tag Table With Columns Args Configuration block for a table with columns resource. See Table With Columns for more details.
The following arguments are optional:
- Timeouts
Resource
Lf Tag Timeouts Args
- catalog
Id 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
Resource
Lf Tag Database - Configuration block for a database resource. See Database for more details.
- lf
Tag ResourceLf Tag Lf Tag Set of LF-tags to attach to the resource. See LF Tag for more details.
Exactly one of the following is required:
- table
Resource
Lf Tag Table - Configuration block for a table resource. See Table for more details.
- table
With ResourceColumns Lf Tag Table With Columns Configuration block for a table with columns resource. See Table With Columns for more details.
The following arguments are optional:
- timeouts
Resource
Lf Tag Timeouts
- catalog
Id 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
Resource
Lf Tag Database - Configuration block for a database resource. See Database for more details.
- lf
Tag ResourceLf Tag Lf Tag Set of LF-tags to attach to the resource. See LF Tag for more details.
Exactly one of the following is required:
- table
Resource
Lf Tag Table - Configuration block for a table resource. See Table for more details.
- table
With ResourceColumns Lf Tag Table With Columns Configuration block for a table with columns resource. See Table With Columns for more details.
The following arguments are optional:
- timeouts
Resource
Lf Tag Timeouts
- 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
Resource
Lf Tag Database Args - Configuration block for a database resource. See Database for more details.
- lf_
tag ResourceLf Tag Lf Tag Args Set of LF-tags to attach to the resource. See LF Tag for more details.
Exactly one of the following is required:
- table
Resource
Lf Tag Table Args - Configuration block for a table resource. See Table for more details.
- table_
with_ Resourcecolumns Lf Tag Table With Columns Args Configuration block for a table with columns resource. See Table With Columns for more details.
The following arguments are optional:
- timeouts
Resource
Lf Tag Timeouts Args
- catalog
Id 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.
- lf
Tag 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.
- table
With Property MapColumns 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 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.
ResourceLfTagLfTag, ResourceLfTagLfTagArgs
- key str
- Key name for an existing LF-tag.
- value 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.
ResourceLfTagTable, ResourceLfTagTableArgs
- Database
Name string - Name of the database for the table. Unique to a Data Catalog.
- Catalog
Id 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:
- Database
Name string - Name of the database for the table. Unique to a Data Catalog.
- Catalog
Id 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:
- database
Name String - Name of the database for the table. Unique to a Data Catalog.
- catalog
Id 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 string - Name of the database for the table. Unique to a Data Catalog.
- catalog
Id 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 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:
- database
Name String - Name of the database for the table. Unique to a Data Catalog.
- catalog
Id 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
- Database
Name string - Name of the database for the table with columns resource. Unique to the Data Catalog.
- Name string
Name of the table resource.
The following arguments are optional:
- Catalog
Id string - Identifier for the Data Catalog. By default, it is the account ID of the caller.
- Column
Names List<string> - Set of column names for the table.
- Column
Wildcard ResourceLf Tag Table With Columns Column Wildcard - Option to add column wildcard. See Column Wildcard for more details.
- Database
Name string - Name of the database for the table with columns resource. Unique to the Data Catalog.
- Name string
Name of the table resource.
The following arguments are optional:
- Catalog
Id string - Identifier for the Data Catalog. By default, it is the account ID of the caller.
- Column
Names []string - Set of column names for the table.
- Column
Wildcard ResourceLf Tag Table With Columns Column Wildcard - Option to add column wildcard. See Column Wildcard for more details.
- database
Name String - Name of the database for the table with columns resource. Unique to the Data Catalog.
- name String
Name of the table resource.
The following arguments are optional:
- catalog
Id String - Identifier for the Data Catalog. By default, it is the account ID of the caller.
- column
Names List<String> - Set of column names for the table.
- column
Wildcard ResourceLf Tag Table With Columns Column Wildcard - Option to add column wildcard. See Column Wildcard for more details.
- database
Name string - Name of the database for the table with columns resource. Unique to the Data Catalog.
- name string
Name of the table resource.
The following arguments are optional:
- catalog
Id string - Identifier for the Data Catalog. By default, it is the account ID of the caller.
- column
Names string[] - Set of column names for the table.
- column
Wildcard ResourceLf Tag Table With Columns Column Wildcard - Option to add column wildcard. See Column Wildcard for more details.
- database_
name str - Name of the database for the table with columns resource. Unique to the Data Catalog.
- name 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 ResourceLf Tag Table With Columns Column Wildcard - Option to add column wildcard. See Column Wildcard for more details.
- database
Name String - Name of the database for the table with columns resource. Unique to the Data Catalog.
- name String
Name of the table resource.
The following arguments are optional:
- catalog
Id String - Identifier for the Data Catalog. By default, it is the account ID of the caller.
- column
Names List<String> - Set of column names for the table.
- column
Wildcard Property Map - Option to add column wildcard. See Column Wildcard for more details.
ResourceLfTagTableWithColumnsColumnWildcard, ResourceLfTagTableWithColumnsColumnWildcardArgs
- Excluded
Column List<string>Names
- Excluded
Column []stringNames
- excluded
Column List<String>Names
- excluded
Column string[]Names
- excluded_
column_ Sequence[str]names
- excluded
Column List<String>Names
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.