aws.lakeformation.OptIn
Explore with Pulumi AI
Resource for managing an AWS Lake Formation Opt In.
Example Usage
Basic Usage
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const example = new aws.lakeformation.OptIn("example", {});
import pulumi
import pulumi_aws as aws
example = aws.lakeformation.OptIn("example")
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.NewOptIn(ctx, "example", nil)
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.OptIn("example");
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.lakeformation.OptIn;
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 OptIn("example");
}
}
resources:
example:
type: aws:lakeformation:OptIn
Create OptIn Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new OptIn(name: string, args?: OptInArgs, opts?: CustomResourceOptions);
@overload
def OptIn(resource_name: str,
args: Optional[OptInArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def OptIn(resource_name: str,
opts: Optional[ResourceOptions] = None,
conditions: Optional[Sequence[OptInConditionArgs]] = None,
principals: Optional[Sequence[OptInPrincipalArgs]] = None,
resource_datas: Optional[Sequence[OptInResourceDataArgs]] = None)
func NewOptIn(ctx *Context, name string, args *OptInArgs, opts ...ResourceOption) (*OptIn, error)
public OptIn(string name, OptInArgs? args = null, CustomResourceOptions? opts = null)
type: aws:lakeformation:OptIn
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 OptInArgs
- 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 OptInArgs
- 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 OptInArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args OptInArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args OptInArgs
- 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 optInResource = new Aws.LakeFormation.OptIn("optInResource", new()
{
Conditions = new[]
{
new Aws.LakeFormation.Inputs.OptInConditionArgs
{
Expression = "string",
},
},
Principals = new[]
{
new Aws.LakeFormation.Inputs.OptInPrincipalArgs
{
DataLakePrincipalIdentifier = "string",
},
},
ResourceDatas = new[]
{
new Aws.LakeFormation.Inputs.OptInResourceDataArgs
{
Catalogs = new[]
{
new Aws.LakeFormation.Inputs.OptInResourceDataCatalogArgs
{
Id = "string",
},
},
DataCellsFilters = new[]
{
new Aws.LakeFormation.Inputs.OptInResourceDataDataCellsFilterArgs
{
DatabaseName = "string",
Name = "string",
TableCatalogId = "string",
TableName = "string",
},
},
DataLocations = new[]
{
new Aws.LakeFormation.Inputs.OptInResourceDataDataLocationArgs
{
ResourceArn = "string",
CatalogId = "string",
},
},
Database = new Aws.LakeFormation.Inputs.OptInResourceDataDatabaseArgs
{
Name = "string",
CatalogId = "string",
},
LfTag = new Aws.LakeFormation.Inputs.OptInResourceDataLfTagArgs
{
Key = "string",
Value = "string",
CatalogId = "string",
},
LfTagExpressions = new[]
{
new Aws.LakeFormation.Inputs.OptInResourceDataLfTagExpressionArgs
{
Name = "string",
CatalogId = "string",
},
},
LfTagPolicies = new[]
{
new Aws.LakeFormation.Inputs.OptInResourceDataLfTagPolicyArgs
{
ResourceType = "string",
CatalogId = "string",
ExpressionName = "string",
Expressions = new[]
{
"string",
},
},
},
Table = new Aws.LakeFormation.Inputs.OptInResourceDataTableArgs
{
DatabaseName = "string",
CatalogId = "string",
Name = "string",
Wildcard = false,
},
TableWithColumns = new Aws.LakeFormation.Inputs.OptInResourceDataTableWithColumnsArgs
{
DatabaseName = "string",
Name = "string",
CatalogId = "string",
ColumnNames = new[]
{
"string",
},
ColumnWildcard = new Aws.LakeFormation.Inputs.OptInResourceDataTableWithColumnsColumnWildcardArgs
{
ExcludedColumnNames = new[]
{
"string",
},
},
},
},
},
});
example, err := lakeformation.NewOptIn(ctx, "optInResource", &lakeformation.OptInArgs{
Conditions: lakeformation.OptInConditionArray{
&lakeformation.OptInConditionArgs{
Expression: pulumi.String("string"),
},
},
Principals: lakeformation.OptInPrincipalArray{
&lakeformation.OptInPrincipalArgs{
DataLakePrincipalIdentifier: pulumi.String("string"),
},
},
ResourceDatas: lakeformation.OptInResourceDataArray{
&lakeformation.OptInResourceDataArgs{
Catalogs: lakeformation.OptInResourceDataCatalogArray{
&lakeformation.OptInResourceDataCatalogArgs{
Id: pulumi.String("string"),
},
},
DataCellsFilters: lakeformation.OptInResourceDataDataCellsFilterArray{
&lakeformation.OptInResourceDataDataCellsFilterArgs{
DatabaseName: pulumi.String("string"),
Name: pulumi.String("string"),
TableCatalogId: pulumi.String("string"),
TableName: pulumi.String("string"),
},
},
DataLocations: lakeformation.OptInResourceDataDataLocationArray{
&lakeformation.OptInResourceDataDataLocationArgs{
ResourceArn: pulumi.String("string"),
CatalogId: pulumi.String("string"),
},
},
Database: &lakeformation.OptInResourceDataDatabaseArgs{
Name: pulumi.String("string"),
CatalogId: pulumi.String("string"),
},
LfTag: &lakeformation.OptInResourceDataLfTagArgs{
Key: pulumi.String("string"),
Value: pulumi.String("string"),
CatalogId: pulumi.String("string"),
},
LfTagExpressions: lakeformation.OptInResourceDataLfTagExpressionArray{
&lakeformation.OptInResourceDataLfTagExpressionArgs{
Name: pulumi.String("string"),
CatalogId: pulumi.String("string"),
},
},
LfTagPolicies: lakeformation.OptInResourceDataLfTagPolicyArray{
&lakeformation.OptInResourceDataLfTagPolicyArgs{
ResourceType: pulumi.String("string"),
CatalogId: pulumi.String("string"),
ExpressionName: pulumi.String("string"),
Expressions: pulumi.StringArray{
pulumi.String("string"),
},
},
},
Table: &lakeformation.OptInResourceDataTableArgs{
DatabaseName: pulumi.String("string"),
CatalogId: pulumi.String("string"),
Name: pulumi.String("string"),
Wildcard: pulumi.Bool(false),
},
TableWithColumns: &lakeformation.OptInResourceDataTableWithColumnsArgs{
DatabaseName: pulumi.String("string"),
Name: pulumi.String("string"),
CatalogId: pulumi.String("string"),
ColumnNames: pulumi.StringArray{
pulumi.String("string"),
},
ColumnWildcard: &lakeformation.OptInResourceDataTableWithColumnsColumnWildcardArgs{
ExcludedColumnNames: pulumi.StringArray{
pulumi.String("string"),
},
},
},
},
},
})
var optInResource = new OptIn("optInResource", OptInArgs.builder()
.conditions(OptInConditionArgs.builder()
.expression("string")
.build())
.principals(OptInPrincipalArgs.builder()
.dataLakePrincipalIdentifier("string")
.build())
.resourceDatas(OptInResourceDataArgs.builder()
.catalogs(OptInResourceDataCatalogArgs.builder()
.id("string")
.build())
.dataCellsFilters(OptInResourceDataDataCellsFilterArgs.builder()
.databaseName("string")
.name("string")
.tableCatalogId("string")
.tableName("string")
.build())
.dataLocations(OptInResourceDataDataLocationArgs.builder()
.resourceArn("string")
.catalogId("string")
.build())
.database(OptInResourceDataDatabaseArgs.builder()
.name("string")
.catalogId("string")
.build())
.lfTag(OptInResourceDataLfTagArgs.builder()
.key("string")
.value("string")
.catalogId("string")
.build())
.lfTagExpressions(OptInResourceDataLfTagExpressionArgs.builder()
.name("string")
.catalogId("string")
.build())
.lfTagPolicies(OptInResourceDataLfTagPolicyArgs.builder()
.resourceType("string")
.catalogId("string")
.expressionName("string")
.expressions("string")
.build())
.table(OptInResourceDataTableArgs.builder()
.databaseName("string")
.catalogId("string")
.name("string")
.wildcard(false)
.build())
.tableWithColumns(OptInResourceDataTableWithColumnsArgs.builder()
.databaseName("string")
.name("string")
.catalogId("string")
.columnNames("string")
.columnWildcard(OptInResourceDataTableWithColumnsColumnWildcardArgs.builder()
.excludedColumnNames("string")
.build())
.build())
.build())
.build());
opt_in_resource = aws.lakeformation.OptIn("optInResource",
conditions=[{
"expression": "string",
}],
principals=[{
"data_lake_principal_identifier": "string",
}],
resource_datas=[{
"catalogs": [{
"id": "string",
}],
"data_cells_filters": [{
"database_name": "string",
"name": "string",
"table_catalog_id": "string",
"table_name": "string",
}],
"data_locations": [{
"resource_arn": "string",
"catalog_id": "string",
}],
"database": {
"name": "string",
"catalog_id": "string",
},
"lf_tag": {
"key": "string",
"value": "string",
"catalog_id": "string",
},
"lf_tag_expressions": [{
"name": "string",
"catalog_id": "string",
}],
"lf_tag_policies": [{
"resource_type": "string",
"catalog_id": "string",
"expression_name": "string",
"expressions": ["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"],
},
},
}])
const optInResource = new aws.lakeformation.OptIn("optInResource", {
conditions: [{
expression: "string",
}],
principals: [{
dataLakePrincipalIdentifier: "string",
}],
resourceDatas: [{
catalogs: [{
id: "string",
}],
dataCellsFilters: [{
databaseName: "string",
name: "string",
tableCatalogId: "string",
tableName: "string",
}],
dataLocations: [{
resourceArn: "string",
catalogId: "string",
}],
database: {
name: "string",
catalogId: "string",
},
lfTag: {
key: "string",
value: "string",
catalogId: "string",
},
lfTagExpressions: [{
name: "string",
catalogId: "string",
}],
lfTagPolicies: [{
resourceType: "string",
catalogId: "string",
expressionName: "string",
expressions: ["string"],
}],
table: {
databaseName: "string",
catalogId: "string",
name: "string",
wildcard: false,
},
tableWithColumns: {
databaseName: "string",
name: "string",
catalogId: "string",
columnNames: ["string"],
columnWildcard: {
excludedColumnNames: ["string"],
},
},
}],
});
type: aws:lakeformation:OptIn
properties:
conditions:
- expression: string
principals:
- dataLakePrincipalIdentifier: string
resourceDatas:
- catalogs:
- id: string
dataCellsFilters:
- databaseName: string
name: string
tableCatalogId: string
tableName: string
dataLocations:
- catalogId: string
resourceArn: string
database:
catalogId: string
name: string
lfTag:
catalogId: string
key: string
value: string
lfTagExpressions:
- catalogId: string
name: string
lfTagPolicies:
- catalogId: string
expressionName: string
expressions:
- string
resourceType: string
table:
catalogId: string
databaseName: string
name: string
wildcard: false
tableWithColumns:
catalogId: string
columnNames:
- string
columnWildcard:
excludedColumnNames:
- string
databaseName: string
name: string
OptIn 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 OptIn resource accepts the following input properties:
- Conditions
List<Opt
In Condition> - Lake Formation condition, which applies to permissions and opt-ins that contain an expression.
- Principals
List<Opt
In Principal> - Lake Formation principal. Supported principals are IAM users or IAM roles. See Principal for more details.
- Resource
Datas List<OptIn Resource Data> - Structure for the resource. See Resource for more details.
- Conditions
[]Opt
In Condition Args - Lake Formation condition, which applies to permissions and opt-ins that contain an expression.
- Principals
[]Opt
In Principal Args - Lake Formation principal. Supported principals are IAM users or IAM roles. See Principal for more details.
- Resource
Datas []OptIn Resource Data Args - Structure for the resource. See Resource for more details.
- conditions
List<Opt
In Condition> - Lake Formation condition, which applies to permissions and opt-ins that contain an expression.
- principals
List<Opt
In Principal> - Lake Formation principal. Supported principals are IAM users or IAM roles. See Principal for more details.
- resource
Datas List<OptIn Resource Data> - Structure for the resource. See Resource for more details.
- conditions
Opt
In Condition[] - Lake Formation condition, which applies to permissions and opt-ins that contain an expression.
- principals
Opt
In Principal[] - Lake Formation principal. Supported principals are IAM users or IAM roles. See Principal for more details.
- resource
Datas OptIn Resource Data[] - Structure for the resource. See Resource for more details.
- conditions
Sequence[Opt
In Condition Args] - Lake Formation condition, which applies to permissions and opt-ins that contain an expression.
- principals
Sequence[Opt
In Principal Args] - Lake Formation principal. Supported principals are IAM users or IAM roles. See Principal for more details.
- resource_
datas Sequence[OptIn Resource Data Args] - Structure for the resource. See Resource for more details.
- conditions List<Property Map>
- Lake Formation condition, which applies to permissions and opt-ins that contain an expression.
- principals List<Property Map>
- Lake Formation principal. Supported principals are IAM users or IAM roles. See Principal for more details.
- resource
Datas List<Property Map> - Structure for the resource. See Resource for more details.
Outputs
All input properties are implicitly available as output properties. Additionally, the OptIn resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Last
Modified string - Last modified date and time of the record.
- Last
Updated stringBy
- Id string
- The provider-assigned unique ID for this managed resource.
- Last
Modified string - Last modified date and time of the record.
- Last
Updated stringBy
- id String
- The provider-assigned unique ID for this managed resource.
- last
Modified String - Last modified date and time of the record.
- last
Updated StringBy
- id string
- The provider-assigned unique ID for this managed resource.
- last
Modified string - Last modified date and time of the record.
- last
Updated stringBy
- id str
- The provider-assigned unique ID for this managed resource.
- last_
modified str - Last modified date and time of the record.
- last_
updated_ strby
- id String
- The provider-assigned unique ID for this managed resource.
- last
Modified String - Last modified date and time of the record.
- last
Updated StringBy
Look up Existing OptIn Resource
Get an existing OptIn 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?: OptInState, opts?: CustomResourceOptions): OptIn
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
conditions: Optional[Sequence[OptInConditionArgs]] = None,
last_modified: Optional[str] = None,
last_updated_by: Optional[str] = None,
principals: Optional[Sequence[OptInPrincipalArgs]] = None,
resource_datas: Optional[Sequence[OptInResourceDataArgs]] = None) -> OptIn
func GetOptIn(ctx *Context, name string, id IDInput, state *OptInState, opts ...ResourceOption) (*OptIn, error)
public static OptIn Get(string name, Input<string> id, OptInState? state, CustomResourceOptions? opts = null)
public static OptIn get(String name, Output<String> id, OptInState state, CustomResourceOptions options)
resources: _: type: aws:lakeformation:OptIn 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.
- Conditions
List<Opt
In Condition> - Lake Formation condition, which applies to permissions and opt-ins that contain an expression.
- Last
Modified string - Last modified date and time of the record.
- Last
Updated stringBy - Principals
List<Opt
In Principal> - Lake Formation principal. Supported principals are IAM users or IAM roles. See Principal for more details.
- Resource
Datas List<OptIn Resource Data> - Structure for the resource. See Resource for more details.
- Conditions
[]Opt
In Condition Args - Lake Formation condition, which applies to permissions and opt-ins that contain an expression.
- Last
Modified string - Last modified date and time of the record.
- Last
Updated stringBy - Principals
[]Opt
In Principal Args - Lake Formation principal. Supported principals are IAM users or IAM roles. See Principal for more details.
- Resource
Datas []OptIn Resource Data Args - Structure for the resource. See Resource for more details.
- conditions
List<Opt
In Condition> - Lake Formation condition, which applies to permissions and opt-ins that contain an expression.
- last
Modified String - Last modified date and time of the record.
- last
Updated StringBy - principals
List<Opt
In Principal> - Lake Formation principal. Supported principals are IAM users or IAM roles. See Principal for more details.
- resource
Datas List<OptIn Resource Data> - Structure for the resource. See Resource for more details.
- conditions
Opt
In Condition[] - Lake Formation condition, which applies to permissions and opt-ins that contain an expression.
- last
Modified string - Last modified date and time of the record.
- last
Updated stringBy - principals
Opt
In Principal[] - Lake Formation principal. Supported principals are IAM users or IAM roles. See Principal for more details.
- resource
Datas OptIn Resource Data[] - Structure for the resource. See Resource for more details.
- conditions
Sequence[Opt
In Condition Args] - Lake Formation condition, which applies to permissions and opt-ins that contain an expression.
- last_
modified str - Last modified date and time of the record.
- last_
updated_ strby - principals
Sequence[Opt
In Principal Args] - Lake Formation principal. Supported principals are IAM users or IAM roles. See Principal for more details.
- resource_
datas Sequence[OptIn Resource Data Args] - Structure for the resource. See Resource for more details.
- conditions List<Property Map>
- Lake Formation condition, which applies to permissions and opt-ins that contain an expression.
- last
Modified String - Last modified date and time of the record.
- last
Updated StringBy - principals List<Property Map>
- Lake Formation principal. Supported principals are IAM users or IAM roles. See Principal for more details.
- resource
Datas List<Property Map> - Structure for the resource. See Resource for more details.
Supporting Types
OptInCondition, OptInConditionArgs
- Expression string
- List of LF-tag conditions or a saved expression that apply to the resource's LF-Tag policy.
- Expression string
- List of LF-tag conditions or a saved expression that apply to the resource's LF-Tag policy.
- expression String
- List of LF-tag conditions or a saved expression that apply to the resource's LF-Tag policy.
- expression string
- List of LF-tag conditions or a saved expression that apply to the resource's LF-Tag policy.
- expression str
- List of LF-tag conditions or a saved expression that apply to the resource's LF-Tag policy.
- expression String
- List of LF-tag conditions or a saved expression that apply to the resource's LF-Tag policy.
OptInPrincipal, OptInPrincipalArgs
- Data
Lake stringPrincipal Identifier
- Data
Lake stringPrincipal Identifier
- data
Lake StringPrincipal Identifier
- data
Lake stringPrincipal Identifier
- data
Lake StringPrincipal Identifier
OptInResourceData, OptInResourceDataArgs
- Catalogs
List<Opt
In Resource Data Catalog> - 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. See Catalog for more details.
- Data
Cells List<OptFilters In Resource Data Data Cells Filter> - Data cell filter. See Data Cells Filter for more details.
- Data
Locations List<OptIn Resource Data Data Location> - Location of an Amazon S3 path where permissions are granted or revoked. See Data Location for more details.
- Database
Opt
In Resource Data Database - Database for the resource. Unique to the Data Catalog. A database is a set of associated table definitions organized into a logical group. You can Grant and Revoke database permissions to a principal. See Database for more details.
- Lf
Tag OptIn Resource Data Lf Tag - LF-tag key and values attached to a resource.
- Lf
Tag List<OptExpressions In Resource Data Lf Tag Expression> - Logical expression composed of one or more LF-Tag key:value pairs. See LF-Tag Expression for more details.
- Lf
Tag List<OptPolicies In Resource Data Lf Tag Policy> - List of LF-Tag conditions or saved LF-Tag expressions that define a resource's LF-Tag policy. See LF-Tag Policy for more details.
- Table
Opt
In Resource Data Table - Table for the resource. A table is a metadata definition that represents your data. You can Grant and Revoke table privileges to a principal. See Table for more details.
- Table
With OptColumns In Resource Data Table With Columns - Table with columns for the resource. A principal with permissions to this resource can select metadata from the columns of a table in the Data Catalog and the underlying data in Amazon S3. See Table With Columns for more details.
- Catalogs
[]Opt
In Resource Data Catalog - 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. See Catalog for more details.
- Data
Cells []OptFilters In Resource Data Data Cells Filter - Data cell filter. See Data Cells Filter for more details.
- Data
Locations []OptIn Resource Data Data Location - Location of an Amazon S3 path where permissions are granted or revoked. See Data Location for more details.
- Database
Opt
In Resource Data Database - Database for the resource. Unique to the Data Catalog. A database is a set of associated table definitions organized into a logical group. You can Grant and Revoke database permissions to a principal. See Database for more details.
- Lf
Tag OptIn Resource Data Lf Tag - LF-tag key and values attached to a resource.
- Lf
Tag []OptExpressions In Resource Data Lf Tag Expression - Logical expression composed of one or more LF-Tag key:value pairs. See LF-Tag Expression for more details.
- Lf
Tag []OptPolicies In Resource Data Lf Tag Policy - List of LF-Tag conditions or saved LF-Tag expressions that define a resource's LF-Tag policy. See LF-Tag Policy for more details.
- Table
Opt
In Resource Data Table - Table for the resource. A table is a metadata definition that represents your data. You can Grant and Revoke table privileges to a principal. See Table for more details.
- Table
With OptColumns In Resource Data Table With Columns - Table with columns for the resource. A principal with permissions to this resource can select metadata from the columns of a table in the Data Catalog and the underlying data in Amazon S3. See Table With Columns for more details.
- catalogs
List<Opt
In Resource Data Catalog> - 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. See Catalog for more details.
- data
Cells List<OptFilters In Resource Data Data Cells Filter> - Data cell filter. See Data Cells Filter for more details.
- data
Locations List<OptIn Resource Data Data Location> - Location of an Amazon S3 path where permissions are granted or revoked. See Data Location for more details.
- database
Opt
In Resource Data Database - Database for the resource. Unique to the Data Catalog. A database is a set of associated table definitions organized into a logical group. You can Grant and Revoke database permissions to a principal. See Database for more details.
- lf
Tag OptIn Resource Data Lf Tag - LF-tag key and values attached to a resource.
- lf
Tag List<OptExpressions In Resource Data Lf Tag Expression> - Logical expression composed of one or more LF-Tag key:value pairs. See LF-Tag Expression for more details.
- lf
Tag List<OptPolicies In Resource Data Lf Tag Policy> - List of LF-Tag conditions or saved LF-Tag expressions that define a resource's LF-Tag policy. See LF-Tag Policy for more details.
- table
Opt
In Resource Data Table - Table for the resource. A table is a metadata definition that represents your data. You can Grant and Revoke table privileges to a principal. See Table for more details.
- table
With OptColumns In Resource Data Table With Columns - Table with columns for the resource. A principal with permissions to this resource can select metadata from the columns of a table in the Data Catalog and the underlying data in Amazon S3. See Table With Columns for more details.
- catalogs
Opt
In Resource Data Catalog[] - 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. See Catalog for more details.
- data
Cells OptFilters In Resource Data Data Cells Filter[] - Data cell filter. See Data Cells Filter for more details.
- data
Locations OptIn Resource Data Data Location[] - Location of an Amazon S3 path where permissions are granted or revoked. See Data Location for more details.
- database
Opt
In Resource Data Database - Database for the resource. Unique to the Data Catalog. A database is a set of associated table definitions organized into a logical group. You can Grant and Revoke database permissions to a principal. See Database for more details.
- lf
Tag OptIn Resource Data Lf Tag - LF-tag key and values attached to a resource.
- lf
Tag OptExpressions In Resource Data Lf Tag Expression[] - Logical expression composed of one or more LF-Tag key:value pairs. See LF-Tag Expression for more details.
- lf
Tag OptPolicies In Resource Data Lf Tag Policy[] - List of LF-Tag conditions or saved LF-Tag expressions that define a resource's LF-Tag policy. See LF-Tag Policy for more details.
- table
Opt
In Resource Data Table - Table for the resource. A table is a metadata definition that represents your data. You can Grant and Revoke table privileges to a principal. See Table for more details.
- table
With OptColumns In Resource Data Table With Columns - Table with columns for the resource. A principal with permissions to this resource can select metadata from the columns of a table in the Data Catalog and the underlying data in Amazon S3. See Table With Columns for more details.
- catalogs
Sequence[Opt
In Resource Data Catalog] - 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. See Catalog for more details.
- data_
cells_ Sequence[Optfilters In Resource Data Data Cells Filter] - Data cell filter. See Data Cells Filter for more details.
- data_
locations Sequence[OptIn Resource Data Data Location] - Location of an Amazon S3 path where permissions are granted or revoked. See Data Location for more details.
- database
Opt
In Resource Data Database - Database for the resource. Unique to the Data Catalog. A database is a set of associated table definitions organized into a logical group. You can Grant and Revoke database permissions to a principal. See Database for more details.
- lf_
tag OptIn Resource Data Lf Tag - LF-tag key and values attached to a resource.
- lf_
tag_ Sequence[Optexpressions In Resource Data Lf Tag Expression] - Logical expression composed of one or more LF-Tag key:value pairs. See LF-Tag Expression for more details.
- lf_
tag_ Sequence[Optpolicies In Resource Data Lf Tag Policy] - List of LF-Tag conditions or saved LF-Tag expressions that define a resource's LF-Tag policy. See LF-Tag Policy for more details.
- table
Opt
In Resource Data Table - Table for the resource. A table is a metadata definition that represents your data. You can Grant and Revoke table privileges to a principal. See Table for more details.
- table_
with_ Optcolumns In Resource Data Table With Columns - Table with columns for the resource. A principal with permissions to this resource can select metadata from the columns of a table in the Data Catalog and the underlying data in Amazon S3. See Table With Columns for more details.
- catalogs List<Property Map>
- 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. See Catalog for more details.
- data
Cells List<Property Map>Filters - Data cell filter. See Data Cells Filter for more details.
- data
Locations List<Property Map> - Location of an Amazon S3 path where permissions are granted or revoked. See Data Location for more details.
- database Property Map
- Database for the resource. Unique to the Data Catalog. A database is a set of associated table definitions organized into a logical group. You can Grant and Revoke database permissions to a principal. See Database for more details.
- lf
Tag Property Map - LF-tag key and values attached to a resource.
- lf
Tag List<Property Map>Expressions - Logical expression composed of one or more LF-Tag key:value pairs. See LF-Tag Expression for more details.
- lf
Tag List<Property Map>Policies - List of LF-Tag conditions or saved LF-Tag expressions that define a resource's LF-Tag policy. See LF-Tag Policy for more details.
- table Property Map
- Table for the resource. A table is a metadata definition that represents your data. You can Grant and Revoke table privileges to a principal. See Table for more details.
- table
With Property MapColumns - Table with columns for the resource. A principal with permissions to this resource can select metadata from the columns of a table in the Data Catalog and the underlying data in Amazon S3. See Table With Columns for more details.
OptInResourceDataCatalog, OptInResourceDataCatalogArgs
- Id string
- Identifier for the catalog resource.
- Id string
- Identifier for the catalog resource.
- id String
- Identifier for the catalog resource.
- id string
- Identifier for the catalog resource.
- id str
- Identifier for the catalog resource.
- id String
- Identifier for the catalog resource.
OptInResourceDataDataCellsFilter, OptInResourceDataDataCellsFilterArgs
- Database
Name string - The name of the database for the table. Unique to a Data Catalog. A database is a set of associated table definitions organized into a logical group. You can Grant and Revoke database privileges to a principal.
- Name string
- Name of the table.
- Table
Catalog stringId - ID of the catalog to which the table belongs.
- Table
Name string - Name of the table.
- Database
Name string - The name of the database for the table. Unique to a Data Catalog. A database is a set of associated table definitions organized into a logical group. You can Grant and Revoke database privileges to a principal.
- Name string
- Name of the table.
- Table
Catalog stringId - ID of the catalog to which the table belongs.
- Table
Name string - Name of the table.
- database
Name String - The name of the database for the table. Unique to a Data Catalog. A database is a set of associated table definitions organized into a logical group. You can Grant and Revoke database privileges to a principal.
- name String
- Name of the table.
- table
Catalog StringId - ID of the catalog to which the table belongs.
- table
Name String - Name of the table.
- database
Name string - The name of the database for the table. Unique to a Data Catalog. A database is a set of associated table definitions organized into a logical group. You can Grant and Revoke database privileges to a principal.
- name string
- Name of the table.
- table
Catalog stringId - ID of the catalog to which the table belongs.
- table
Name string - Name of the table.
- database_
name str - The name of the database for the table. Unique to a Data Catalog. A database is a set of associated table definitions organized into a logical group. You can Grant and Revoke database privileges to a principal.
- name str
- Name of the table.
- table_
catalog_ strid - ID of the catalog to which the table belongs.
- table_
name str - Name of the table.
- database
Name String - The name of the database for the table. Unique to a Data Catalog. A database is a set of associated table definitions organized into a logical group. You can Grant and Revoke database privileges to a principal.
- name String
- Name of the table.
- table
Catalog StringId - ID of the catalog to which the table belongs.
- table
Name String - Name of the table.
OptInResourceDataDataLocation, OptInResourceDataDataLocationArgs
- Resource
Arn string - ARN that uniquely identifies the data location resource.
- Catalog
Id string - Identifier for the Data Catalog. By default, it is the account ID of the caller.
- Resource
Arn string - ARN that uniquely identifies the data location resource.
- Catalog
Id string - Identifier for the Data Catalog. By default, it is the account ID of the caller.
- resource
Arn String - ARN that uniquely identifies the data location resource.
- catalog
Id String - Identifier for the Data Catalog. By default, it is the account ID of the caller.
- resource
Arn string - ARN that uniquely identifies the data location resource.
- catalog
Id string - Identifier for the Data Catalog. By default, it is the account ID of the caller.
- resource_
arn str - ARN that uniquely identifies the data location resource.
- catalog_
id str - Identifier for the Data Catalog. By default, it is the account ID of the caller.
- resource
Arn String - ARN that uniquely identifies the data location resource.
- catalog
Id String - Identifier for the Data Catalog. By default, it is the account ID of the caller.
OptInResourceDataDatabase, OptInResourceDataDatabaseArgs
- name str
- Name of the table.
- catalog_
id str - Identifier for the Data Catalog. By default, it is the account ID of the caller.
OptInResourceDataLfTag, OptInResourceDataLfTagArgs
- key str
- value str
- catalog_
id str - Identifier for the Data Catalog. By default, it is the account ID of the caller.
OptInResourceDataLfTagExpression, OptInResourceDataLfTagExpressionArgs
- name str
- Name of the table.
- catalog_
id str - Identifier for the Data Catalog. By default, it is the account ID of the caller.
OptInResourceDataLfTagPolicy, OptInResourceDataLfTagPolicyArgs
- Resource
Type string - Resource type for which the LF-tag policy applies.
- Catalog
Id string - Identifier for the Data Catalog. By default, it is the account ID of the caller.
- Expression
Name string - If provided, permissions are granted to the Data Catalog resources whose assigned LF-Tags match the expression body of the saved expression under the provided ExpressionName .
- Expressions List<string>
- List of LF-tag conditions or a saved expression that apply to the resource's LF-Tag policy.
- Resource
Type string - Resource type for which the LF-tag policy applies.
- Catalog
Id string - Identifier for the Data Catalog. By default, it is the account ID of the caller.
- Expression
Name string - If provided, permissions are granted to the Data Catalog resources whose assigned LF-Tags match the expression body of the saved expression under the provided ExpressionName .
- Expressions []string
- List of LF-tag conditions or a saved expression that apply to the resource's LF-Tag policy.
- resource
Type String - Resource type for which the LF-tag policy applies.
- catalog
Id String - Identifier for the Data Catalog. By default, it is the account ID of the caller.
- expression
Name String - If provided, permissions are granted to the Data Catalog resources whose assigned LF-Tags match the expression body of the saved expression under the provided ExpressionName .
- expressions List<String>
- List of LF-tag conditions or a saved expression that apply to the resource's LF-Tag policy.
- resource
Type string - Resource type for which the LF-tag policy applies.
- catalog
Id string - Identifier for the Data Catalog. By default, it is the account ID of the caller.
- expression
Name string - If provided, permissions are granted to the Data Catalog resources whose assigned LF-Tags match the expression body of the saved expression under the provided ExpressionName .
- expressions string[]
- List of LF-tag conditions or a saved expression that apply to the resource's LF-Tag policy.
- resource_
type str - Resource type for which the LF-tag policy applies.
- catalog_
id str - Identifier for the Data Catalog. By default, it is the account ID of the caller.
- expression_
name str - If provided, permissions are granted to the Data Catalog resources whose assigned LF-Tags match the expression body of the saved expression under the provided ExpressionName .
- expressions Sequence[str]
- List of LF-tag conditions or a saved expression that apply to the resource's LF-Tag policy.
- resource
Type String - Resource type for which the LF-tag policy applies.
- catalog
Id String - Identifier for the Data Catalog. By default, it is the account ID of the caller.
- expression
Name String - If provided, permissions are granted to the Data Catalog resources whose assigned LF-Tags match the expression body of the saved expression under the provided ExpressionName .
- expressions List<String>
- List of LF-tag conditions or a saved expression that apply to the resource's LF-Tag policy.
OptInResourceDataTable, OptInResourceDataTableArgs
- Database
Name string - The name of the database for the table. Unique to a Data Catalog. A database is a set of associated table definitions organized into a logical group. You can Grant and Revoke database privileges to a principal.
- 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
- Database
Name string - The name of the database for the table. Unique to a Data Catalog. A database is a set of associated table definitions organized into a logical group. You can Grant and Revoke database privileges to a principal.
- 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
- database
Name String - The name of the database for the table. Unique to a Data Catalog. A database is a set of associated table definitions organized into a logical group. You can Grant and Revoke database privileges to a principal.
- 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
- database
Name string - The name of the database for the table. Unique to a Data Catalog. A database is a set of associated table definitions organized into a logical group. You can Grant and Revoke database privileges to a principal.
- 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
- database_
name str - The name of the database for the table. Unique to a Data Catalog. A database is a set of associated table definitions organized into a logical group. You can Grant and Revoke database privileges to a principal.
- 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
- database
Name String - The name of the database for the table. Unique to a Data Catalog. A database is a set of associated table definitions organized into a logical group. You can Grant and Revoke database privileges to a principal.
- 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
OptInResourceDataTableWithColumns, OptInResourceDataTableWithColumnsArgs
- Database
Name string - The name of the database for the table. Unique to a Data Catalog. A database is a set of associated table definitions organized into a logical group. You can Grant and Revoke database privileges to a principal.
- Name string
- Name of the table.
- Catalog
Id string - Identifier for the Data Catalog. By default, it is the account ID of the caller.
- Column
Names List<string> - List of column names for the table. At least one of ColumnNames or ColumnWildcard is required.
- Column
Wildcard OptIn Resource Data Table With Columns Column Wildcard - Wildcard specified by a ColumnWildcard object. At least one of ColumnNames or ColumnWildcard is required.
- Database
Name string - The name of the database for the table. Unique to a Data Catalog. A database is a set of associated table definitions organized into a logical group. You can Grant and Revoke database privileges to a principal.
- Name string
- Name of the table.
- Catalog
Id string - Identifier for the Data Catalog. By default, it is the account ID of the caller.
- Column
Names []string - List of column names for the table. At least one of ColumnNames or ColumnWildcard is required.
- Column
Wildcard OptIn Resource Data Table With Columns Column Wildcard - Wildcard specified by a ColumnWildcard object. At least one of ColumnNames or ColumnWildcard is required.
- database
Name String - The name of the database for the table. Unique to a Data Catalog. A database is a set of associated table definitions organized into a logical group. You can Grant and Revoke database privileges to a principal.
- name String
- Name of the table.
- catalog
Id String - Identifier for the Data Catalog. By default, it is the account ID of the caller.
- column
Names List<String> - List of column names for the table. At least one of ColumnNames or ColumnWildcard is required.
- column
Wildcard OptIn Resource Data Table With Columns Column Wildcard - Wildcard specified by a ColumnWildcard object. At least one of ColumnNames or ColumnWildcard is required.
- database
Name string - The name of the database for the table. Unique to a Data Catalog. A database is a set of associated table definitions organized into a logical group. You can Grant and Revoke database privileges to a principal.
- name string
- Name of the table.
- catalog
Id string - Identifier for the Data Catalog. By default, it is the account ID of the caller.
- column
Names string[] - List of column names for the table. At least one of ColumnNames or ColumnWildcard is required.
- column
Wildcard OptIn Resource Data Table With Columns Column Wildcard - Wildcard specified by a ColumnWildcard object. At least one of ColumnNames or ColumnWildcard is required.
- database_
name str - The name of the database for the table. Unique to a Data Catalog. A database is a set of associated table definitions organized into a logical group. You can Grant and Revoke database privileges to a principal.
- name str
- Name of the table.
- catalog_
id str - Identifier for the Data Catalog. By default, it is the account ID of the caller.
- column_
names Sequence[str] - List of column names for the table. At least one of ColumnNames or ColumnWildcard is required.
- column_
wildcard OptIn Resource Data Table With Columns Column Wildcard - Wildcard specified by a ColumnWildcard object. At least one of ColumnNames or ColumnWildcard is required.
- database
Name String - The name of the database for the table. Unique to a Data Catalog. A database is a set of associated table definitions organized into a logical group. You can Grant and Revoke database privileges to a principal.
- name String
- Name of the table.
- catalog
Id String - Identifier for the Data Catalog. By default, it is the account ID of the caller.
- column
Names List<String> - List of column names for the table. At least one of ColumnNames or ColumnWildcard is required.
- column
Wildcard Property Map - Wildcard specified by a ColumnWildcard object. At least one of ColumnNames or ColumnWildcard is required.
OptInResourceDataTableWithColumnsColumnWildcard, OptInResourceDataTableWithColumnsColumnWildcardArgs
- 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
Import
Using pulumi import
, import Lake Formation Opt In using the example_id_arg
. For example:
$ pulumi import aws:lakeformation/optIn:OptIn example opt_in-id-12345678
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.