published on Tuesday, May 26, 2026 by Pulumi
published on Tuesday, May 26, 2026 by Pulumi
Manages an AWS Glue Catalog.
Example Usage
Basic Usage
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const example = new aws.glue.Catalog("example", {
name: "example",
description: "Example Glue Catalog",
});
import pulumi
import pulumi_aws as aws
example = aws.glue.Catalog("example",
name="example",
description="Example Glue Catalog")
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v7/go/aws/glue"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := glue.NewCatalog(ctx, "example", &glue.CatalogArgs{
Name: pulumi.String("example"),
Description: pulumi.String("Example Glue Catalog"),
})
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.Glue.Catalog("example", new()
{
Name = "example",
Description = "Example Glue Catalog",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.glue.Catalog;
import com.pulumi.aws.glue.CatalogArgs;
import java.util.ArrayList;
import java.util.Arrays;
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 Catalog("example", CatalogArgs.builder()
.name("example")
.description("Example Glue Catalog")
.build());
}
}
resources:
example:
type: aws:glue:Catalog
properties:
name: example
description: Example Glue Catalog
pulumi {
required_providers {
aws = {
source = "pulumi/aws"
}
}
}
resource "aws_glue_catalog" "example" {
name = "example"
description = "Example Glue Catalog"
}
With Parameters
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const example = new aws.glue.Catalog("example", {
name: "example",
description: "Example Glue Catalog",
parameters: {
key1: "value1",
key2: "value2",
},
});
import pulumi
import pulumi_aws as aws
example = aws.glue.Catalog("example",
name="example",
description="Example Glue Catalog",
parameters={
"key1": "value1",
"key2": "value2",
})
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v7/go/aws/glue"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := glue.NewCatalog(ctx, "example", &glue.CatalogArgs{
Name: pulumi.String("example"),
Description: pulumi.String("Example Glue Catalog"),
Parameters: pulumi.StringMap{
"key1": pulumi.String("value1"),
"key2": pulumi.String("value2"),
},
})
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.Glue.Catalog("example", new()
{
Name = "example",
Description = "Example Glue Catalog",
Parameters =
{
{ "key1", "value1" },
{ "key2", "value2" },
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.glue.Catalog;
import com.pulumi.aws.glue.CatalogArgs;
import java.util.ArrayList;
import java.util.Arrays;
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 Catalog("example", CatalogArgs.builder()
.name("example")
.description("Example Glue Catalog")
.parameters(Map.ofEntries(
Map.entry("key1", "value1"),
Map.entry("key2", "value2")
))
.build());
}
}
resources:
example:
type: aws:glue:Catalog
properties:
name: example
description: Example Glue Catalog
parameters:
key1: value1
key2: value2
pulumi {
required_providers {
aws = {
source = "pulumi/aws"
}
}
}
resource "aws_glue_catalog" "example" {
name = "example"
description = "Example Glue Catalog"
parameters = {
"key1" = "value1"
"key2" = "value2"
}
}
With Catalog Properties
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const example = new aws.glue.Catalog("example", {
name: "example",
description: "Example Glue Catalog with data lake access",
catalogProperties: {
customProperties: {
property1: "value1",
},
dataLakeAccessProperties: {
dataLakeAccess: true,
catalogType: "aws:glue:datacatalog",
},
},
});
import pulumi
import pulumi_aws as aws
example = aws.glue.Catalog("example",
name="example",
description="Example Glue Catalog with data lake access",
catalog_properties={
"custom_properties": {
"property1": "value1",
},
"data_lake_access_properties": {
"data_lake_access": True,
"catalog_type": "aws:glue:datacatalog",
},
})
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v7/go/aws/glue"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := glue.NewCatalog(ctx, "example", &glue.CatalogArgs{
Name: pulumi.String("example"),
Description: pulumi.String("Example Glue Catalog with data lake access"),
CatalogProperties: &glue.CatalogCatalogPropertiesArgs{
CustomProperties: pulumi.StringMap{
"property1": pulumi.String("value1"),
},
DataLakeAccessProperties: &glue.CatalogCatalogPropertiesDataLakeAccessPropertiesArgs{
DataLakeAccess: pulumi.Bool(true),
CatalogType: pulumi.String("aws:glue:datacatalog"),
},
},
})
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.Glue.Catalog("example", new()
{
Name = "example",
Description = "Example Glue Catalog with data lake access",
CatalogProperties = new Aws.Glue.Inputs.CatalogCatalogPropertiesArgs
{
CustomProperties =
{
{ "property1", "value1" },
},
DataLakeAccessProperties = new Aws.Glue.Inputs.CatalogCatalogPropertiesDataLakeAccessPropertiesArgs
{
DataLakeAccess = true,
CatalogType = "aws:glue:datacatalog",
},
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.glue.Catalog;
import com.pulumi.aws.glue.CatalogArgs;
import com.pulumi.aws.glue.inputs.CatalogCatalogPropertiesArgs;
import com.pulumi.aws.glue.inputs.CatalogCatalogPropertiesDataLakeAccessPropertiesArgs;
import java.util.ArrayList;
import java.util.Arrays;
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 Catalog("example", CatalogArgs.builder()
.name("example")
.description("Example Glue Catalog with data lake access")
.catalogProperties(CatalogCatalogPropertiesArgs.builder()
.customProperties(Map.of("property1", "value1"))
.dataLakeAccessProperties(CatalogCatalogPropertiesDataLakeAccessPropertiesArgs.builder()
.dataLakeAccess(true)
.catalogType("aws:glue:datacatalog")
.build())
.build())
.build());
}
}
resources:
example:
type: aws:glue:Catalog
properties:
name: example
description: Example Glue Catalog with data lake access
catalogProperties:
customProperties:
property1: value1
dataLakeAccessProperties:
dataLakeAccess: true
catalogType: aws:glue:datacatalog
pulumi {
required_providers {
aws = {
source = "pulumi/aws"
}
}
}
resource "aws_glue_catalog" "example" {
name = "example"
description = "Example Glue Catalog with data lake access"
catalog_properties = {
custom_properties = {
"property1" = "value1"
}
data_lake_access_properties = {
data_lake_access = true
catalog_type = "aws:glue:datacatalog"
}
}
}
With Federated Catalog
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const example = new aws.glue.Catalog("example", {
name: "example",
federatedCatalog: {
connectionName: exampleAwsGlueConnection.name,
identifier: "arn:aws:glue:us-east-1:123456789012:catalog",
},
});
import pulumi
import pulumi_aws as aws
example = aws.glue.Catalog("example",
name="example",
federated_catalog={
"connection_name": example_aws_glue_connection["name"],
"identifier": "arn:aws:glue:us-east-1:123456789012:catalog",
})
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v7/go/aws/glue"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := glue.NewCatalog(ctx, "example", &glue.CatalogArgs{
Name: pulumi.String("example"),
FederatedCatalog: &glue.CatalogFederatedCatalogArgs{
ConnectionName: pulumi.Any(exampleAwsGlueConnection.Name),
Identifier: pulumi.String("arn:aws:glue:us-east-1:123456789012:catalog"),
},
})
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.Glue.Catalog("example", new()
{
Name = "example",
FederatedCatalog = new Aws.Glue.Inputs.CatalogFederatedCatalogArgs
{
ConnectionName = exampleAwsGlueConnection.Name,
Identifier = "arn:aws:glue:us-east-1:123456789012:catalog",
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.glue.Catalog;
import com.pulumi.aws.glue.CatalogArgs;
import com.pulumi.aws.glue.inputs.CatalogFederatedCatalogArgs;
import java.util.ArrayList;
import java.util.Arrays;
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 Catalog("example", CatalogArgs.builder()
.name("example")
.federatedCatalog(CatalogFederatedCatalogArgs.builder()
.connectionName(exampleAwsGlueConnection.name())
.identifier("arn:aws:glue:us-east-1:123456789012:catalog")
.build())
.build());
}
}
resources:
example:
type: aws:glue:Catalog
properties:
name: example
federatedCatalog:
connectionName: ${exampleAwsGlueConnection.name}
identifier: arn:aws:glue:us-east-1:123456789012:catalog
pulumi {
required_providers {
aws = {
source = "pulumi/aws"
}
}
}
resource "aws_glue_catalog" "example" {
name = "example"
federated_catalog = {
connection_name = exampleAwsGlueConnection.name
identifier = "arn:aws:glue:us-east-1:123456789012:catalog"
}
}
With Default Permissions
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const example = new aws.glue.Catalog("example", {
name: "example",
description: "Example Glue Catalog",
createDatabaseDefaultPermissions: [{
permissions: ["ALL"],
principal: {
dataLakePrincipalIdentifier: "IAM_ALLOWED_PRINCIPALS",
},
}],
createTableDefaultPermissions: [{
permissions: ["ALL"],
principal: {
dataLakePrincipalIdentifier: "IAM_ALLOWED_PRINCIPALS",
},
}],
});
import pulumi
import pulumi_aws as aws
example = aws.glue.Catalog("example",
name="example",
description="Example Glue Catalog",
create_database_default_permissions=[{
"permissions": ["ALL"],
"principal": {
"data_lake_principal_identifier": "IAM_ALLOWED_PRINCIPALS",
},
}],
create_table_default_permissions=[{
"permissions": ["ALL"],
"principal": {
"data_lake_principal_identifier": "IAM_ALLOWED_PRINCIPALS",
},
}])
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v7/go/aws/glue"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := glue.NewCatalog(ctx, "example", &glue.CatalogArgs{
Name: pulumi.String("example"),
Description: pulumi.String("Example Glue Catalog"),
CreateDatabaseDefaultPermissions: glue.CatalogCreateDatabaseDefaultPermissionArray{
&glue.CatalogCreateDatabaseDefaultPermissionArgs{
Permissions: pulumi.StringArray{
pulumi.String("ALL"),
},
Principal: &glue.CatalogCreateDatabaseDefaultPermissionPrincipalArgs{
DataLakePrincipalIdentifier: pulumi.String("IAM_ALLOWED_PRINCIPALS"),
},
},
},
CreateTableDefaultPermissions: glue.CatalogCreateTableDefaultPermissionArray{
&glue.CatalogCreateTableDefaultPermissionArgs{
Permissions: pulumi.StringArray{
pulumi.String("ALL"),
},
Principal: &glue.CatalogCreateTableDefaultPermissionPrincipalArgs{
DataLakePrincipalIdentifier: pulumi.String("IAM_ALLOWED_PRINCIPALS"),
},
},
},
})
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.Glue.Catalog("example", new()
{
Name = "example",
Description = "Example Glue Catalog",
CreateDatabaseDefaultPermissions = new[]
{
new Aws.Glue.Inputs.CatalogCreateDatabaseDefaultPermissionArgs
{
Permissions = new[]
{
"ALL",
},
Principal = new Aws.Glue.Inputs.CatalogCreateDatabaseDefaultPermissionPrincipalArgs
{
DataLakePrincipalIdentifier = "IAM_ALLOWED_PRINCIPALS",
},
},
},
CreateTableDefaultPermissions = new[]
{
new Aws.Glue.Inputs.CatalogCreateTableDefaultPermissionArgs
{
Permissions = new[]
{
"ALL",
},
Principal = new Aws.Glue.Inputs.CatalogCreateTableDefaultPermissionPrincipalArgs
{
DataLakePrincipalIdentifier = "IAM_ALLOWED_PRINCIPALS",
},
},
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.glue.Catalog;
import com.pulumi.aws.glue.CatalogArgs;
import com.pulumi.aws.glue.inputs.CatalogCreateDatabaseDefaultPermissionArgs;
import com.pulumi.aws.glue.inputs.CatalogCreateDatabaseDefaultPermissionPrincipalArgs;
import com.pulumi.aws.glue.inputs.CatalogCreateTableDefaultPermissionArgs;
import com.pulumi.aws.glue.inputs.CatalogCreateTableDefaultPermissionPrincipalArgs;
import java.util.ArrayList;
import java.util.Arrays;
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 Catalog("example", CatalogArgs.builder()
.name("example")
.description("Example Glue Catalog")
.createDatabaseDefaultPermissions(CatalogCreateDatabaseDefaultPermissionArgs.builder()
.permissions("ALL")
.principal(CatalogCreateDatabaseDefaultPermissionPrincipalArgs.builder()
.dataLakePrincipalIdentifier("IAM_ALLOWED_PRINCIPALS")
.build())
.build())
.createTableDefaultPermissions(CatalogCreateTableDefaultPermissionArgs.builder()
.permissions("ALL")
.principal(CatalogCreateTableDefaultPermissionPrincipalArgs.builder()
.dataLakePrincipalIdentifier("IAM_ALLOWED_PRINCIPALS")
.build())
.build())
.build());
}
}
resources:
example:
type: aws:glue:Catalog
properties:
name: example
description: Example Glue Catalog
createDatabaseDefaultPermissions:
- permissions:
- ALL
principal:
dataLakePrincipalIdentifier: IAM_ALLOWED_PRINCIPALS
createTableDefaultPermissions:
- permissions:
- ALL
principal:
dataLakePrincipalIdentifier: IAM_ALLOWED_PRINCIPALS
pulumi {
required_providers {
aws = {
source = "pulumi/aws"
}
}
}
resource "aws_glue_catalog" "example" {
name = "example"
description = "Example Glue Catalog"
create_database_default_permissions {
permissions = ["ALL"]
principal = {
data_lake_principal_identifier = "IAM_ALLOWED_PRINCIPALS"
}
}
create_table_default_permissions {
permissions = ["ALL"]
principal = {
data_lake_principal_identifier = "IAM_ALLOWED_PRINCIPALS"
}
}
}
Create Catalog Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Catalog(name: string, args?: CatalogArgs, opts?: CustomResourceOptions);@overload
def Catalog(resource_name: str,
args: Optional[CatalogArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def Catalog(resource_name: str,
opts: Optional[ResourceOptions] = None,
allow_full_table_external_data_access: Optional[str] = None,
catalog_properties: Optional[CatalogCatalogPropertiesArgs] = None,
create_database_default_permissions: Optional[Sequence[CatalogCreateDatabaseDefaultPermissionArgs]] = None,
create_table_default_permissions: Optional[Sequence[CatalogCreateTableDefaultPermissionArgs]] = None,
description: Optional[str] = None,
federated_catalog: Optional[CatalogFederatedCatalogArgs] = None,
name: Optional[str] = None,
overwrite_child_resource_permissions_with_default: Optional[str] = None,
parameters: Optional[Mapping[str, str]] = None,
region: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None,
target_redshift_catalog: Optional[CatalogTargetRedshiftCatalogArgs] = None,
timeouts: Optional[CatalogTimeoutsArgs] = None)func NewCatalog(ctx *Context, name string, args *CatalogArgs, opts ...ResourceOption) (*Catalog, error)public Catalog(string name, CatalogArgs? args = null, CustomResourceOptions? opts = null)
public Catalog(String name, CatalogArgs args)
public Catalog(String name, CatalogArgs args, CustomResourceOptions options)
type: aws:glue:Catalog
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "aws_glue_catalog" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args CatalogArgs
- 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 CatalogArgs
- 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 CatalogArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args CatalogArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args CatalogArgs
- 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 catalogResource = new Aws.Glue.Catalog("catalogResource", new()
{
AllowFullTableExternalDataAccess = "string",
CatalogProperties = new Aws.Glue.Inputs.CatalogCatalogPropertiesArgs
{
CustomProperties =
{
{ "string", "string" },
},
DataLakeAccessProperties = new Aws.Glue.Inputs.CatalogCatalogPropertiesDataLakeAccessPropertiesArgs
{
CatalogType = "string",
DataLakeAccess = false,
DataTransferRole = "string",
KmsKey = "string",
ManagedWorkgroupName = "string",
ManagedWorkgroupStatus = "string",
RedshiftDatabaseName = "string",
StatusMessage = "string",
},
IcebergOptimizationProperties = new Aws.Glue.Inputs.CatalogCatalogPropertiesIcebergOptimizationPropertiesArgs
{
Compaction =
{
{ "string", "string" },
},
OrphanFileDeletion =
{
{ "string", "string" },
},
Retention =
{
{ "string", "string" },
},
RoleArn = "string",
},
},
CreateDatabaseDefaultPermissions = new[]
{
new Aws.Glue.Inputs.CatalogCreateDatabaseDefaultPermissionArgs
{
Permissions = new[]
{
"string",
},
Principal = new Aws.Glue.Inputs.CatalogCreateDatabaseDefaultPermissionPrincipalArgs
{
DataLakePrincipalIdentifier = "string",
},
},
},
CreateTableDefaultPermissions = new[]
{
new Aws.Glue.Inputs.CatalogCreateTableDefaultPermissionArgs
{
Permissions = new[]
{
"string",
},
Principal = new Aws.Glue.Inputs.CatalogCreateTableDefaultPermissionPrincipalArgs
{
DataLakePrincipalIdentifier = "string",
},
},
},
Description = "string",
FederatedCatalog = new Aws.Glue.Inputs.CatalogFederatedCatalogArgs
{
ConnectionName = "string",
ConnectionType = "string",
Identifier = "string",
},
Name = "string",
OverwriteChildResourcePermissionsWithDefault = "string",
Parameters =
{
{ "string", "string" },
},
Region = "string",
Tags =
{
{ "string", "string" },
},
TargetRedshiftCatalog = new Aws.Glue.Inputs.CatalogTargetRedshiftCatalogArgs
{
CatalogArn = "string",
},
Timeouts = new Aws.Glue.Inputs.CatalogTimeoutsArgs
{
Create = "string",
Delete = "string",
Update = "string",
},
});
example, err := glue.NewCatalog(ctx, "catalogResource", &glue.CatalogArgs{
AllowFullTableExternalDataAccess: pulumi.String("string"),
CatalogProperties: &glue.CatalogCatalogPropertiesArgs{
CustomProperties: pulumi.StringMap{
"string": pulumi.String("string"),
},
DataLakeAccessProperties: &glue.CatalogCatalogPropertiesDataLakeAccessPropertiesArgs{
CatalogType: pulumi.String("string"),
DataLakeAccess: pulumi.Bool(false),
DataTransferRole: pulumi.String("string"),
KmsKey: pulumi.String("string"),
ManagedWorkgroupName: pulumi.String("string"),
ManagedWorkgroupStatus: pulumi.String("string"),
RedshiftDatabaseName: pulumi.String("string"),
StatusMessage: pulumi.String("string"),
},
IcebergOptimizationProperties: &glue.CatalogCatalogPropertiesIcebergOptimizationPropertiesArgs{
Compaction: pulumi.StringMap{
"string": pulumi.String("string"),
},
OrphanFileDeletion: pulumi.StringMap{
"string": pulumi.String("string"),
},
Retention: pulumi.StringMap{
"string": pulumi.String("string"),
},
RoleArn: pulumi.String("string"),
},
},
CreateDatabaseDefaultPermissions: glue.CatalogCreateDatabaseDefaultPermissionArray{
&glue.CatalogCreateDatabaseDefaultPermissionArgs{
Permissions: pulumi.StringArray{
pulumi.String("string"),
},
Principal: &glue.CatalogCreateDatabaseDefaultPermissionPrincipalArgs{
DataLakePrincipalIdentifier: pulumi.String("string"),
},
},
},
CreateTableDefaultPermissions: glue.CatalogCreateTableDefaultPermissionArray{
&glue.CatalogCreateTableDefaultPermissionArgs{
Permissions: pulumi.StringArray{
pulumi.String("string"),
},
Principal: &glue.CatalogCreateTableDefaultPermissionPrincipalArgs{
DataLakePrincipalIdentifier: pulumi.String("string"),
},
},
},
Description: pulumi.String("string"),
FederatedCatalog: &glue.CatalogFederatedCatalogArgs{
ConnectionName: pulumi.String("string"),
ConnectionType: pulumi.String("string"),
Identifier: pulumi.String("string"),
},
Name: pulumi.String("string"),
OverwriteChildResourcePermissionsWithDefault: pulumi.String("string"),
Parameters: pulumi.StringMap{
"string": pulumi.String("string"),
},
Region: pulumi.String("string"),
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
TargetRedshiftCatalog: &glue.CatalogTargetRedshiftCatalogArgs{
CatalogArn: pulumi.String("string"),
},
Timeouts: &glue.CatalogTimeoutsArgs{
Create: pulumi.String("string"),
Delete: pulumi.String("string"),
Update: pulumi.String("string"),
},
})
resource "aws_glue_catalog" "catalogResource" {
allow_full_table_external_data_access = "string"
catalog_properties = {
custom_properties = {
"string" = "string"
}
data_lake_access_properties = {
catalog_type = "string"
data_lake_access = false
data_transfer_role = "string"
kms_key = "string"
managed_workgroup_name = "string"
managed_workgroup_status = "string"
redshift_database_name = "string"
status_message = "string"
}
iceberg_optimization_properties = {
compaction = {
"string" = "string"
}
orphan_file_deletion = {
"string" = "string"
}
retention = {
"string" = "string"
}
role_arn = "string"
}
}
create_database_default_permissions {
permissions = ["string"]
principal = {
data_lake_principal_identifier = "string"
}
}
create_table_default_permissions {
permissions = ["string"]
principal = {
data_lake_principal_identifier = "string"
}
}
description = "string"
federated_catalog = {
connection_name = "string"
connection_type = "string"
identifier = "string"
}
name = "string"
overwrite_child_resource_permissions_with_default = "string"
parameters = {
"string" = "string"
}
region = "string"
tags = {
"string" = "string"
}
target_redshift_catalog = {
catalog_arn = "string"
}
timeouts = {
create = "string"
delete = "string"
update = "string"
}
}
var catalogResource = new Catalog("catalogResource", CatalogArgs.builder()
.allowFullTableExternalDataAccess("string")
.catalogProperties(CatalogCatalogPropertiesArgs.builder()
.customProperties(Map.of("string", "string"))
.dataLakeAccessProperties(CatalogCatalogPropertiesDataLakeAccessPropertiesArgs.builder()
.catalogType("string")
.dataLakeAccess(false)
.dataTransferRole("string")
.kmsKey("string")
.managedWorkgroupName("string")
.managedWorkgroupStatus("string")
.redshiftDatabaseName("string")
.statusMessage("string")
.build())
.icebergOptimizationProperties(CatalogCatalogPropertiesIcebergOptimizationPropertiesArgs.builder()
.compaction(Map.of("string", "string"))
.orphanFileDeletion(Map.of("string", "string"))
.retention(Map.of("string", "string"))
.roleArn("string")
.build())
.build())
.createDatabaseDefaultPermissions(CatalogCreateDatabaseDefaultPermissionArgs.builder()
.permissions("string")
.principal(CatalogCreateDatabaseDefaultPermissionPrincipalArgs.builder()
.dataLakePrincipalIdentifier("string")
.build())
.build())
.createTableDefaultPermissions(CatalogCreateTableDefaultPermissionArgs.builder()
.permissions("string")
.principal(CatalogCreateTableDefaultPermissionPrincipalArgs.builder()
.dataLakePrincipalIdentifier("string")
.build())
.build())
.description("string")
.federatedCatalog(CatalogFederatedCatalogArgs.builder()
.connectionName("string")
.connectionType("string")
.identifier("string")
.build())
.name("string")
.overwriteChildResourcePermissionsWithDefault("string")
.parameters(Map.of("string", "string"))
.region("string")
.tags(Map.of("string", "string"))
.targetRedshiftCatalog(CatalogTargetRedshiftCatalogArgs.builder()
.catalogArn("string")
.build())
.timeouts(CatalogTimeoutsArgs.builder()
.create("string")
.delete("string")
.update("string")
.build())
.build());
catalog_resource = aws.glue.Catalog("catalogResource",
allow_full_table_external_data_access="string",
catalog_properties={
"custom_properties": {
"string": "string",
},
"data_lake_access_properties": {
"catalog_type": "string",
"data_lake_access": False,
"data_transfer_role": "string",
"kms_key": "string",
"managed_workgroup_name": "string",
"managed_workgroup_status": "string",
"redshift_database_name": "string",
"status_message": "string",
},
"iceberg_optimization_properties": {
"compaction": {
"string": "string",
},
"orphan_file_deletion": {
"string": "string",
},
"retention": {
"string": "string",
},
"role_arn": "string",
},
},
create_database_default_permissions=[{
"permissions": ["string"],
"principal": {
"data_lake_principal_identifier": "string",
},
}],
create_table_default_permissions=[{
"permissions": ["string"],
"principal": {
"data_lake_principal_identifier": "string",
},
}],
description="string",
federated_catalog={
"connection_name": "string",
"connection_type": "string",
"identifier": "string",
},
name="string",
overwrite_child_resource_permissions_with_default="string",
parameters={
"string": "string",
},
region="string",
tags={
"string": "string",
},
target_redshift_catalog={
"catalog_arn": "string",
},
timeouts={
"create": "string",
"delete": "string",
"update": "string",
})
const catalogResource = new aws.glue.Catalog("catalogResource", {
allowFullTableExternalDataAccess: "string",
catalogProperties: {
customProperties: {
string: "string",
},
dataLakeAccessProperties: {
catalogType: "string",
dataLakeAccess: false,
dataTransferRole: "string",
kmsKey: "string",
managedWorkgroupName: "string",
managedWorkgroupStatus: "string",
redshiftDatabaseName: "string",
statusMessage: "string",
},
icebergOptimizationProperties: {
compaction: {
string: "string",
},
orphanFileDeletion: {
string: "string",
},
retention: {
string: "string",
},
roleArn: "string",
},
},
createDatabaseDefaultPermissions: [{
permissions: ["string"],
principal: {
dataLakePrincipalIdentifier: "string",
},
}],
createTableDefaultPermissions: [{
permissions: ["string"],
principal: {
dataLakePrincipalIdentifier: "string",
},
}],
description: "string",
federatedCatalog: {
connectionName: "string",
connectionType: "string",
identifier: "string",
},
name: "string",
overwriteChildResourcePermissionsWithDefault: "string",
parameters: {
string: "string",
},
region: "string",
tags: {
string: "string",
},
targetRedshiftCatalog: {
catalogArn: "string",
},
timeouts: {
create: "string",
"delete": "string",
update: "string",
},
});
type: aws:glue:Catalog
properties:
allowFullTableExternalDataAccess: string
catalogProperties:
customProperties:
string: string
dataLakeAccessProperties:
catalogType: string
dataLakeAccess: false
dataTransferRole: string
kmsKey: string
managedWorkgroupName: string
managedWorkgroupStatus: string
redshiftDatabaseName: string
statusMessage: string
icebergOptimizationProperties:
compaction:
string: string
orphanFileDeletion:
string: string
retention:
string: string
roleArn: string
createDatabaseDefaultPermissions:
- permissions:
- string
principal:
dataLakePrincipalIdentifier: string
createTableDefaultPermissions:
- permissions:
- string
principal:
dataLakePrincipalIdentifier: string
description: string
federatedCatalog:
connectionName: string
connectionType: string
identifier: string
name: string
overwriteChildResourcePermissionsWithDefault: string
parameters:
string: string
region: string
tags:
string: string
targetRedshiftCatalog:
catalogArn: string
timeouts:
create: string
delete: string
update: string
Catalog 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 Catalog resource accepts the following input properties:
- Allow
Full stringTable External Data Access - Whether third-party engines can access data in Amazon S3 locations that are registered with Lake Formation. Valid values are
TrueandFalse. - Catalog
Properties CatalogCatalog Properties - Configuration block of properties for the catalog. See
catalogPropertiesbelow. - Create
Database List<CatalogDefault Permissions Create Database Default Permission> - List of default permissions on databases for principals. See
createDatabaseDefaultPermissionsbelow. - Create
Table List<CatalogDefault Permissions Create Table Default Permission> - List of default permissions on tables for principals. See
createTableDefaultPermissionsbelow. - Description string
- Description of the catalog.
- Federated
Catalog CatalogFederated Catalog - Configuration block for a federated catalog. See
federatedCatalogbelow. - Name string
- Name of the catalog.
- Overwrite
Child stringResource Permissions With Default - Whether to overwrite existing Lake Formation permissions on child resources with the default permissions. Valid values are
AcceptandDeny. - Parameters Dictionary<string, string>
- Map of key-value pairs that define parameters and properties of the catalog.
- Region string
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- Dictionary<string, string>
- Key-value map of resource tags. If configured with a provider
defaultTagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level. - Target
Redshift CatalogCatalog Target Redshift Catalog - Configuration block for a target Redshift catalog. See
targetRedshiftCatalogbelow. - Timeouts
Catalog
Timeouts
- Allow
Full stringTable External Data Access - Whether third-party engines can access data in Amazon S3 locations that are registered with Lake Formation. Valid values are
TrueandFalse. - Catalog
Properties CatalogCatalog Properties Args - Configuration block of properties for the catalog. See
catalogPropertiesbelow. - Create
Database []CatalogDefault Permissions Create Database Default Permission Args - List of default permissions on databases for principals. See
createDatabaseDefaultPermissionsbelow. - Create
Table []CatalogDefault Permissions Create Table Default Permission Args - List of default permissions on tables for principals. See
createTableDefaultPermissionsbelow. - Description string
- Description of the catalog.
- Federated
Catalog CatalogFederated Catalog Args - Configuration block for a federated catalog. See
federatedCatalogbelow. - Name string
- Name of the catalog.
- Overwrite
Child stringResource Permissions With Default - Whether to overwrite existing Lake Formation permissions on child resources with the default permissions. Valid values are
AcceptandDeny. - Parameters map[string]string
- Map of key-value pairs that define parameters and properties of the catalog.
- Region string
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- map[string]string
- Key-value map of resource tags. If configured with a provider
defaultTagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level. - Target
Redshift CatalogCatalog Target Redshift Catalog Args - Configuration block for a target Redshift catalog. See
targetRedshiftCatalogbelow. - Timeouts
Catalog
Timeouts Args
- allow_
full_ stringtable_ external_ data_ access - Whether third-party engines can access data in Amazon S3 locations that are registered with Lake Formation. Valid values are
TrueandFalse. - catalog_
properties object - Configuration block of properties for the catalog. See
catalogPropertiesbelow. - create_
database_ list(object)default_ permissions - List of default permissions on databases for principals. See
createDatabaseDefaultPermissionsbelow. - create_
table_ list(object)default_ permissions - List of default permissions on tables for principals. See
createTableDefaultPermissionsbelow. - description string
- Description of the catalog.
- federated_
catalog object - Configuration block for a federated catalog. See
federatedCatalogbelow. - name string
- Name of the catalog.
- overwrite_
child_ stringresource_ permissions_ with_ default - Whether to overwrite existing Lake Formation permissions on child resources with the default permissions. Valid values are
AcceptandDeny. - parameters map(string)
- Map of key-value pairs that define parameters and properties of the catalog.
- region string
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- map(string)
- Key-value map of resource tags. If configured with a provider
defaultTagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level. - target_
redshift_ objectcatalog - Configuration block for a target Redshift catalog. See
targetRedshiftCatalogbelow. - timeouts object
- allow
Full StringTable External Data Access - Whether third-party engines can access data in Amazon S3 locations that are registered with Lake Formation. Valid values are
TrueandFalse. - catalog
Properties CatalogCatalog Properties - Configuration block of properties for the catalog. See
catalogPropertiesbelow. - create
Database List<CatalogDefault Permissions Create Database Default Permission> - List of default permissions on databases for principals. See
createDatabaseDefaultPermissionsbelow. - create
Table List<CatalogDefault Permissions Create Table Default Permission> - List of default permissions on tables for principals. See
createTableDefaultPermissionsbelow. - description String
- Description of the catalog.
- federated
Catalog CatalogFederated Catalog - Configuration block for a federated catalog. See
federatedCatalogbelow. - name String
- Name of the catalog.
- overwrite
Child StringResource Permissions With Default - Whether to overwrite existing Lake Formation permissions on child resources with the default permissions. Valid values are
AcceptandDeny. - parameters Map<String,String>
- Map of key-value pairs that define parameters and properties of the catalog.
- region String
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- Map<String,String>
- Key-value map of resource tags. If configured with a provider
defaultTagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level. - target
Redshift CatalogCatalog Target Redshift Catalog - Configuration block for a target Redshift catalog. See
targetRedshiftCatalogbelow. - timeouts
Catalog
Timeouts
- allow
Full stringTable External Data Access - Whether third-party engines can access data in Amazon S3 locations that are registered with Lake Formation. Valid values are
TrueandFalse. - catalog
Properties CatalogCatalog Properties - Configuration block of properties for the catalog. See
catalogPropertiesbelow. - create
Database CatalogDefault Permissions Create Database Default Permission[] - List of default permissions on databases for principals. See
createDatabaseDefaultPermissionsbelow. - create
Table CatalogDefault Permissions Create Table Default Permission[] - List of default permissions on tables for principals. See
createTableDefaultPermissionsbelow. - description string
- Description of the catalog.
- federated
Catalog CatalogFederated Catalog - Configuration block for a federated catalog. See
federatedCatalogbelow. - name string
- Name of the catalog.
- overwrite
Child stringResource Permissions With Default - Whether to overwrite existing Lake Formation permissions on child resources with the default permissions. Valid values are
AcceptandDeny. - parameters {[key: string]: string}
- Map of key-value pairs that define parameters and properties of the catalog.
- region string
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- {[key: string]: string}
- Key-value map of resource tags. If configured with a provider
defaultTagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level. - target
Redshift CatalogCatalog Target Redshift Catalog - Configuration block for a target Redshift catalog. See
targetRedshiftCatalogbelow. - timeouts
Catalog
Timeouts
- allow_
full_ strtable_ external_ data_ access - Whether third-party engines can access data in Amazon S3 locations that are registered with Lake Formation. Valid values are
TrueandFalse. - catalog_
properties CatalogCatalog Properties Args - Configuration block of properties for the catalog. See
catalogPropertiesbelow. - create_
database_ Sequence[Catalogdefault_ permissions Create Database Default Permission Args] - List of default permissions on databases for principals. See
createDatabaseDefaultPermissionsbelow. - create_
table_ Sequence[Catalogdefault_ permissions Create Table Default Permission Args] - List of default permissions on tables for principals. See
createTableDefaultPermissionsbelow. - description str
- Description of the catalog.
- federated_
catalog CatalogFederated Catalog Args - Configuration block for a federated catalog. See
federatedCatalogbelow. - name str
- Name of the catalog.
- overwrite_
child_ strresource_ permissions_ with_ default - Whether to overwrite existing Lake Formation permissions on child resources with the default permissions. Valid values are
AcceptandDeny. - parameters Mapping[str, str]
- Map of key-value pairs that define parameters and properties of the catalog.
- region str
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- Mapping[str, str]
- Key-value map of resource tags. If configured with a provider
defaultTagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level. - target_
redshift_ Catalogcatalog Target Redshift Catalog Args - Configuration block for a target Redshift catalog. See
targetRedshiftCatalogbelow. - timeouts
Catalog
Timeouts Args
- allow
Full StringTable External Data Access - Whether third-party engines can access data in Amazon S3 locations that are registered with Lake Formation. Valid values are
TrueandFalse. - catalog
Properties Property Map - Configuration block of properties for the catalog. See
catalogPropertiesbelow. - create
Database List<Property Map>Default Permissions - List of default permissions on databases for principals. See
createDatabaseDefaultPermissionsbelow. - create
Table List<Property Map>Default Permissions - List of default permissions on tables for principals. See
createTableDefaultPermissionsbelow. - description String
- Description of the catalog.
- federated
Catalog Property Map - Configuration block for a federated catalog. See
federatedCatalogbelow. - name String
- Name of the catalog.
- overwrite
Child StringResource Permissions With Default - Whether to overwrite existing Lake Formation permissions on child resources with the default permissions. Valid values are
AcceptandDeny. - parameters Map<String>
- Map of key-value pairs that define parameters and properties of the catalog.
- region String
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- Map<String>
- Key-value map of resource tags. If configured with a provider
defaultTagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level. - target
Redshift Property MapCatalog - Configuration block for a target Redshift catalog. See
targetRedshiftCatalogbelow. - timeouts Property Map
Outputs
All input properties are implicitly available as output properties. Additionally, the Catalog resource produces the following output properties:
- Arn string
- ARN of the Glue Catalog.
- Catalog
Id string - ID of the parent catalog.
- Create
Time string - Time at which the catalog was created.
- Id string
- The provider-assigned unique ID for this managed resource.
- Dictionary<string, string>
- Map of tags assigned to the resource, including those inherited from the provider
defaultTagsconfiguration block. - Update
Time string - Time at which the catalog was last updated.
- Arn string
- ARN of the Glue Catalog.
- Catalog
Id string - ID of the parent catalog.
- Create
Time string - Time at which the catalog was created.
- Id string
- The provider-assigned unique ID for this managed resource.
- map[string]string
- Map of tags assigned to the resource, including those inherited from the provider
defaultTagsconfiguration block. - Update
Time string - Time at which the catalog was last updated.
- arn string
- ARN of the Glue Catalog.
- catalog_
id string - ID of the parent catalog.
- create_
time string - Time at which the catalog was created.
- id string
- The provider-assigned unique ID for this managed resource.
- map(string)
- Map of tags assigned to the resource, including those inherited from the provider
defaultTagsconfiguration block. - update_
time string - Time at which the catalog was last updated.
- arn String
- ARN of the Glue Catalog.
- catalog
Id String - ID of the parent catalog.
- create
Time String - Time at which the catalog was created.
- id String
- The provider-assigned unique ID for this managed resource.
- Map<String,String>
- Map of tags assigned to the resource, including those inherited from the provider
defaultTagsconfiguration block. - update
Time String - Time at which the catalog was last updated.
- arn string
- ARN of the Glue Catalog.
- catalog
Id string - ID of the parent catalog.
- create
Time string - Time at which the catalog was created.
- id string
- The provider-assigned unique ID for this managed resource.
- {[key: string]: string}
- Map of tags assigned to the resource, including those inherited from the provider
defaultTagsconfiguration block. - update
Time string - Time at which the catalog was last updated.
- arn str
- ARN of the Glue Catalog.
- catalog_
id str - ID of the parent catalog.
- create_
time str - Time at which the catalog was created.
- id str
- The provider-assigned unique ID for this managed resource.
- Mapping[str, str]
- Map of tags assigned to the resource, including those inherited from the provider
defaultTagsconfiguration block. - update_
time str - Time at which the catalog was last updated.
- arn String
- ARN of the Glue Catalog.
- catalog
Id String - ID of the parent catalog.
- create
Time String - Time at which the catalog was created.
- id String
- The provider-assigned unique ID for this managed resource.
- Map<String>
- Map of tags assigned to the resource, including those inherited from the provider
defaultTagsconfiguration block. - update
Time String - Time at which the catalog was last updated.
Look up Existing Catalog Resource
Get an existing Catalog 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?: CatalogState, opts?: CustomResourceOptions): Catalog@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
allow_full_table_external_data_access: Optional[str] = None,
arn: Optional[str] = None,
catalog_id: Optional[str] = None,
catalog_properties: Optional[CatalogCatalogPropertiesArgs] = None,
create_database_default_permissions: Optional[Sequence[CatalogCreateDatabaseDefaultPermissionArgs]] = None,
create_table_default_permissions: Optional[Sequence[CatalogCreateTableDefaultPermissionArgs]] = None,
create_time: Optional[str] = None,
description: Optional[str] = None,
federated_catalog: Optional[CatalogFederatedCatalogArgs] = None,
name: Optional[str] = None,
overwrite_child_resource_permissions_with_default: Optional[str] = None,
parameters: Optional[Mapping[str, str]] = None,
region: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None,
tags_all: Optional[Mapping[str, str]] = None,
target_redshift_catalog: Optional[CatalogTargetRedshiftCatalogArgs] = None,
timeouts: Optional[CatalogTimeoutsArgs] = None,
update_time: Optional[str] = None) -> Catalogfunc GetCatalog(ctx *Context, name string, id IDInput, state *CatalogState, opts ...ResourceOption) (*Catalog, error)public static Catalog Get(string name, Input<string> id, CatalogState? state, CustomResourceOptions? opts = null)public static Catalog get(String name, Output<String> id, CatalogState state, CustomResourceOptions options)resources: _: type: aws:glue:Catalog get: id: ${id}import {
to = aws_glue_catalog.example
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.
- Allow
Full stringTable External Data Access - Whether third-party engines can access data in Amazon S3 locations that are registered with Lake Formation. Valid values are
TrueandFalse. - Arn string
- ARN of the Glue Catalog.
- Catalog
Id string - ID of the parent catalog.
- Catalog
Properties CatalogCatalog Properties - Configuration block of properties for the catalog. See
catalogPropertiesbelow. - Create
Database List<CatalogDefault Permissions Create Database Default Permission> - List of default permissions on databases for principals. See
createDatabaseDefaultPermissionsbelow. - Create
Table List<CatalogDefault Permissions Create Table Default Permission> - List of default permissions on tables for principals. See
createTableDefaultPermissionsbelow. - Create
Time string - Time at which the catalog was created.
- Description string
- Description of the catalog.
- Federated
Catalog CatalogFederated Catalog - Configuration block for a federated catalog. See
federatedCatalogbelow. - Name string
- Name of the catalog.
- Overwrite
Child stringResource Permissions With Default - Whether to overwrite existing Lake Formation permissions on child resources with the default permissions. Valid values are
AcceptandDeny. - Parameters Dictionary<string, string>
- Map of key-value pairs that define parameters and properties of the catalog.
- Region string
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- Dictionary<string, string>
- Key-value map of resource tags. If configured with a provider
defaultTagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level. - Dictionary<string, string>
- Map of tags assigned to the resource, including those inherited from the provider
defaultTagsconfiguration block. - Target
Redshift CatalogCatalog Target Redshift Catalog - Configuration block for a target Redshift catalog. See
targetRedshiftCatalogbelow. - Timeouts
Catalog
Timeouts - Update
Time string - Time at which the catalog was last updated.
- Allow
Full stringTable External Data Access - Whether third-party engines can access data in Amazon S3 locations that are registered with Lake Formation. Valid values are
TrueandFalse. - Arn string
- ARN of the Glue Catalog.
- Catalog
Id string - ID of the parent catalog.
- Catalog
Properties CatalogCatalog Properties Args - Configuration block of properties for the catalog. See
catalogPropertiesbelow. - Create
Database []CatalogDefault Permissions Create Database Default Permission Args - List of default permissions on databases for principals. See
createDatabaseDefaultPermissionsbelow. - Create
Table []CatalogDefault Permissions Create Table Default Permission Args - List of default permissions on tables for principals. See
createTableDefaultPermissionsbelow. - Create
Time string - Time at which the catalog was created.
- Description string
- Description of the catalog.
- Federated
Catalog CatalogFederated Catalog Args - Configuration block for a federated catalog. See
federatedCatalogbelow. - Name string
- Name of the catalog.
- Overwrite
Child stringResource Permissions With Default - Whether to overwrite existing Lake Formation permissions on child resources with the default permissions. Valid values are
AcceptandDeny. - Parameters map[string]string
- Map of key-value pairs that define parameters and properties of the catalog.
- Region string
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- map[string]string
- Key-value map of resource tags. If configured with a provider
defaultTagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level. - map[string]string
- Map of tags assigned to the resource, including those inherited from the provider
defaultTagsconfiguration block. - Target
Redshift CatalogCatalog Target Redshift Catalog Args - Configuration block for a target Redshift catalog. See
targetRedshiftCatalogbelow. - Timeouts
Catalog
Timeouts Args - Update
Time string - Time at which the catalog was last updated.
- allow_
full_ stringtable_ external_ data_ access - Whether third-party engines can access data in Amazon S3 locations that are registered with Lake Formation. Valid values are
TrueandFalse. - arn string
- ARN of the Glue Catalog.
- catalog_
id string - ID of the parent catalog.
- catalog_
properties object - Configuration block of properties for the catalog. See
catalogPropertiesbelow. - create_
database_ list(object)default_ permissions - List of default permissions on databases for principals. See
createDatabaseDefaultPermissionsbelow. - create_
table_ list(object)default_ permissions - List of default permissions on tables for principals. See
createTableDefaultPermissionsbelow. - create_
time string - Time at which the catalog was created.
- description string
- Description of the catalog.
- federated_
catalog object - Configuration block for a federated catalog. See
federatedCatalogbelow. - name string
- Name of the catalog.
- overwrite_
child_ stringresource_ permissions_ with_ default - Whether to overwrite existing Lake Formation permissions on child resources with the default permissions. Valid values are
AcceptandDeny. - parameters map(string)
- Map of key-value pairs that define parameters and properties of the catalog.
- region string
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- map(string)
- Key-value map of resource tags. If configured with a provider
defaultTagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level. - map(string)
- Map of tags assigned to the resource, including those inherited from the provider
defaultTagsconfiguration block. - target_
redshift_ objectcatalog - Configuration block for a target Redshift catalog. See
targetRedshiftCatalogbelow. - timeouts object
- update_
time string - Time at which the catalog was last updated.
- allow
Full StringTable External Data Access - Whether third-party engines can access data in Amazon S3 locations that are registered with Lake Formation. Valid values are
TrueandFalse. - arn String
- ARN of the Glue Catalog.
- catalog
Id String - ID of the parent catalog.
- catalog
Properties CatalogCatalog Properties - Configuration block of properties for the catalog. See
catalogPropertiesbelow. - create
Database List<CatalogDefault Permissions Create Database Default Permission> - List of default permissions on databases for principals. See
createDatabaseDefaultPermissionsbelow. - create
Table List<CatalogDefault Permissions Create Table Default Permission> - List of default permissions on tables for principals. See
createTableDefaultPermissionsbelow. - create
Time String - Time at which the catalog was created.
- description String
- Description of the catalog.
- federated
Catalog CatalogFederated Catalog - Configuration block for a federated catalog. See
federatedCatalogbelow. - name String
- Name of the catalog.
- overwrite
Child StringResource Permissions With Default - Whether to overwrite existing Lake Formation permissions on child resources with the default permissions. Valid values are
AcceptandDeny. - parameters Map<String,String>
- Map of key-value pairs that define parameters and properties of the catalog.
- region String
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- Map<String,String>
- Key-value map of resource tags. If configured with a provider
defaultTagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level. - Map<String,String>
- Map of tags assigned to the resource, including those inherited from the provider
defaultTagsconfiguration block. - target
Redshift CatalogCatalog Target Redshift Catalog - Configuration block for a target Redshift catalog. See
targetRedshiftCatalogbelow. - timeouts
Catalog
Timeouts - update
Time String - Time at which the catalog was last updated.
- allow
Full stringTable External Data Access - Whether third-party engines can access data in Amazon S3 locations that are registered with Lake Formation. Valid values are
TrueandFalse. - arn string
- ARN of the Glue Catalog.
- catalog
Id string - ID of the parent catalog.
- catalog
Properties CatalogCatalog Properties - Configuration block of properties for the catalog. See
catalogPropertiesbelow. - create
Database CatalogDefault Permissions Create Database Default Permission[] - List of default permissions on databases for principals. See
createDatabaseDefaultPermissionsbelow. - create
Table CatalogDefault Permissions Create Table Default Permission[] - List of default permissions on tables for principals. See
createTableDefaultPermissionsbelow. - create
Time string - Time at which the catalog was created.
- description string
- Description of the catalog.
- federated
Catalog CatalogFederated Catalog - Configuration block for a federated catalog. See
federatedCatalogbelow. - name string
- Name of the catalog.
- overwrite
Child stringResource Permissions With Default - Whether to overwrite existing Lake Formation permissions on child resources with the default permissions. Valid values are
AcceptandDeny. - parameters {[key: string]: string}
- Map of key-value pairs that define parameters and properties of the catalog.
- region string
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- {[key: string]: string}
- Key-value map of resource tags. If configured with a provider
defaultTagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level. - {[key: string]: string}
- Map of tags assigned to the resource, including those inherited from the provider
defaultTagsconfiguration block. - target
Redshift CatalogCatalog Target Redshift Catalog - Configuration block for a target Redshift catalog. See
targetRedshiftCatalogbelow. - timeouts
Catalog
Timeouts - update
Time string - Time at which the catalog was last updated.
- allow_
full_ strtable_ external_ data_ access - Whether third-party engines can access data in Amazon S3 locations that are registered with Lake Formation. Valid values are
TrueandFalse. - arn str
- ARN of the Glue Catalog.
- catalog_
id str - ID of the parent catalog.
- catalog_
properties CatalogCatalog Properties Args - Configuration block of properties for the catalog. See
catalogPropertiesbelow. - create_
database_ Sequence[Catalogdefault_ permissions Create Database Default Permission Args] - List of default permissions on databases for principals. See
createDatabaseDefaultPermissionsbelow. - create_
table_ Sequence[Catalogdefault_ permissions Create Table Default Permission Args] - List of default permissions on tables for principals. See
createTableDefaultPermissionsbelow. - create_
time str - Time at which the catalog was created.
- description str
- Description of the catalog.
- federated_
catalog CatalogFederated Catalog Args - Configuration block for a federated catalog. See
federatedCatalogbelow. - name str
- Name of the catalog.
- overwrite_
child_ strresource_ permissions_ with_ default - Whether to overwrite existing Lake Formation permissions on child resources with the default permissions. Valid values are
AcceptandDeny. - parameters Mapping[str, str]
- Map of key-value pairs that define parameters and properties of the catalog.
- region str
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- Mapping[str, str]
- Key-value map of resource tags. If configured with a provider
defaultTagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level. - Mapping[str, str]
- Map of tags assigned to the resource, including those inherited from the provider
defaultTagsconfiguration block. - target_
redshift_ Catalogcatalog Target Redshift Catalog Args - Configuration block for a target Redshift catalog. See
targetRedshiftCatalogbelow. - timeouts
Catalog
Timeouts Args - update_
time str - Time at which the catalog was last updated.
- allow
Full StringTable External Data Access - Whether third-party engines can access data in Amazon S3 locations that are registered with Lake Formation. Valid values are
TrueandFalse. - arn String
- ARN of the Glue Catalog.
- catalog
Id String - ID of the parent catalog.
- catalog
Properties Property Map - Configuration block of properties for the catalog. See
catalogPropertiesbelow. - create
Database List<Property Map>Default Permissions - List of default permissions on databases for principals. See
createDatabaseDefaultPermissionsbelow. - create
Table List<Property Map>Default Permissions - List of default permissions on tables for principals. See
createTableDefaultPermissionsbelow. - create
Time String - Time at which the catalog was created.
- description String
- Description of the catalog.
- federated
Catalog Property Map - Configuration block for a federated catalog. See
federatedCatalogbelow. - name String
- Name of the catalog.
- overwrite
Child StringResource Permissions With Default - Whether to overwrite existing Lake Formation permissions on child resources with the default permissions. Valid values are
AcceptandDeny. - parameters Map<String>
- Map of key-value pairs that define parameters and properties of the catalog.
- region String
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- Map<String>
- Key-value map of resource tags. If configured with a provider
defaultTagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level. - Map<String>
- Map of tags assigned to the resource, including those inherited from the provider
defaultTagsconfiguration block. - target
Redshift Property MapCatalog - Configuration block for a target Redshift catalog. See
targetRedshiftCatalogbelow. - timeouts Property Map
- update
Time String - Time at which the catalog was last updated.
Supporting Types
CatalogCatalogProperties, CatalogCatalogPropertiesArgs
- Custom
Properties Dictionary<string, string> - Map of custom key-value pairs for the catalog properties.
- Data
Lake CatalogAccess Properties Catalog Properties Data Lake Access Properties - Configuration block for data lake access properties. See
dataLakeAccessPropertiesbelow. - Iceberg
Optimization CatalogProperties Catalog Properties Iceberg Optimization Properties - Configuration block for Iceberg optimization properties. See
icebergOptimizationPropertiesbelow.
- Custom
Properties map[string]string - Map of custom key-value pairs for the catalog properties.
- Data
Lake CatalogAccess Properties Catalog Properties Data Lake Access Properties - Configuration block for data lake access properties. See
dataLakeAccessPropertiesbelow. - Iceberg
Optimization CatalogProperties Catalog Properties Iceberg Optimization Properties - Configuration block for Iceberg optimization properties. See
icebergOptimizationPropertiesbelow.
- custom_
properties map(string) - Map of custom key-value pairs for the catalog properties.
- data_
lake_ objectaccess_ properties - Configuration block for data lake access properties. See
dataLakeAccessPropertiesbelow. - iceberg_
optimization_ objectproperties - Configuration block for Iceberg optimization properties. See
icebergOptimizationPropertiesbelow.
- custom
Properties Map<String,String> - Map of custom key-value pairs for the catalog properties.
- data
Lake CatalogAccess Properties Catalog Properties Data Lake Access Properties - Configuration block for data lake access properties. See
dataLakeAccessPropertiesbelow. - iceberg
Optimization CatalogProperties Catalog Properties Iceberg Optimization Properties - Configuration block for Iceberg optimization properties. See
icebergOptimizationPropertiesbelow.
- custom
Properties {[key: string]: string} - Map of custom key-value pairs for the catalog properties.
- data
Lake CatalogAccess Properties Catalog Properties Data Lake Access Properties - Configuration block for data lake access properties. See
dataLakeAccessPropertiesbelow. - iceberg
Optimization CatalogProperties Catalog Properties Iceberg Optimization Properties - Configuration block for Iceberg optimization properties. See
icebergOptimizationPropertiesbelow.
- custom_
properties Mapping[str, str] - Map of custom key-value pairs for the catalog properties.
- data_
lake_ Catalogaccess_ properties Catalog Properties Data Lake Access Properties - Configuration block for data lake access properties. See
dataLakeAccessPropertiesbelow. - iceberg_
optimization_ Catalogproperties Catalog Properties Iceberg Optimization Properties - Configuration block for Iceberg optimization properties. See
icebergOptimizationPropertiesbelow.
- custom
Properties Map<String> - Map of custom key-value pairs for the catalog properties.
- data
Lake Property MapAccess Properties - Configuration block for data lake access properties. See
dataLakeAccessPropertiesbelow. - iceberg
Optimization Property MapProperties - Configuration block for Iceberg optimization properties. See
icebergOptimizationPropertiesbelow.
CatalogCatalogPropertiesDataLakeAccessProperties, CatalogCatalogPropertiesDataLakeAccessPropertiesArgs
- Catalog
Type string - Type of the catalog.
- Data
Lake boolAccess - Whether data lake access is enabled.
- Data
Transfer stringRole - ARN of the IAM role used for data transfer.
- Kms
Key string - ARN of the KMS key used for encryption.
- Managed
Workgroup stringName - Managed workgroup name.
- Managed
Workgroup stringStatus - Managed workgroup status.
- Redshift
Database stringName - Redshift database name.
- Status
Message string - Status message.
- Catalog
Type string - Type of the catalog.
- Data
Lake boolAccess - Whether data lake access is enabled.
- Data
Transfer stringRole - ARN of the IAM role used for data transfer.
- Kms
Key string - ARN of the KMS key used for encryption.
- Managed
Workgroup stringName - Managed workgroup name.
- Managed
Workgroup stringStatus - Managed workgroup status.
- Redshift
Database stringName - Redshift database name.
- Status
Message string - Status message.
- catalog_
type string - Type of the catalog.
- data_
lake_ boolaccess - Whether data lake access is enabled.
- data_
transfer_ stringrole - ARN of the IAM role used for data transfer.
- kms_
key string - ARN of the KMS key used for encryption.
- managed_
workgroup_ stringname - Managed workgroup name.
- managed_
workgroup_ stringstatus - Managed workgroup status.
- redshift_
database_ stringname - Redshift database name.
- status_
message string - Status message.
- catalog
Type String - Type of the catalog.
- data
Lake BooleanAccess - Whether data lake access is enabled.
- data
Transfer StringRole - ARN of the IAM role used for data transfer.
- kms
Key String - ARN of the KMS key used for encryption.
- managed
Workgroup StringName - Managed workgroup name.
- managed
Workgroup StringStatus - Managed workgroup status.
- redshift
Database StringName - Redshift database name.
- status
Message String - Status message.
- catalog
Type string - Type of the catalog.
- data
Lake booleanAccess - Whether data lake access is enabled.
- data
Transfer stringRole - ARN of the IAM role used for data transfer.
- kms
Key string - ARN of the KMS key used for encryption.
- managed
Workgroup stringName - Managed workgroup name.
- managed
Workgroup stringStatus - Managed workgroup status.
- redshift
Database stringName - Redshift database name.
- status
Message string - Status message.
- catalog_
type str - Type of the catalog.
- data_
lake_ boolaccess - Whether data lake access is enabled.
- data_
transfer_ strrole - ARN of the IAM role used for data transfer.
- kms_
key str - ARN of the KMS key used for encryption.
- managed_
workgroup_ strname - Managed workgroup name.
- managed_
workgroup_ strstatus - Managed workgroup status.
- redshift_
database_ strname - Redshift database name.
- status_
message str - Status message.
- catalog
Type String - Type of the catalog.
- data
Lake BooleanAccess - Whether data lake access is enabled.
- data
Transfer StringRole - ARN of the IAM role used for data transfer.
- kms
Key String - ARN of the KMS key used for encryption.
- managed
Workgroup StringName - Managed workgroup name.
- managed
Workgroup StringStatus - Managed workgroup status.
- redshift
Database StringName - Redshift database name.
- status
Message String - Status message.
CatalogCatalogPropertiesIcebergOptimizationProperties, CatalogCatalogPropertiesIcebergOptimizationPropertiesArgs
- Compaction Dictionary<string, string>
- Map of key-value pairs for compaction settings.
- Orphan
File Dictionary<string, string>Deletion - Map of key-value pairs for orphan file deletion settings.
- Retention Dictionary<string, string>
- Map of key-value pairs for retention settings.
- Role
Arn string - ARN of the IAM role for Iceberg optimization.
- Compaction map[string]string
- Map of key-value pairs for compaction settings.
- Orphan
File map[string]stringDeletion - Map of key-value pairs for orphan file deletion settings.
- Retention map[string]string
- Map of key-value pairs for retention settings.
- Role
Arn string - ARN of the IAM role for Iceberg optimization.
- compaction map(string)
- Map of key-value pairs for compaction settings.
- orphan_
file_ map(string)deletion - Map of key-value pairs for orphan file deletion settings.
- retention map(string)
- Map of key-value pairs for retention settings.
- role_
arn string - ARN of the IAM role for Iceberg optimization.
- compaction Map<String,String>
- Map of key-value pairs for compaction settings.
- orphan
File Map<String,String>Deletion - Map of key-value pairs for orphan file deletion settings.
- retention Map<String,String>
- Map of key-value pairs for retention settings.
- role
Arn String - ARN of the IAM role for Iceberg optimization.
- compaction {[key: string]: string}
- Map of key-value pairs for compaction settings.
- orphan
File {[key: string]: string}Deletion - Map of key-value pairs for orphan file deletion settings.
- retention {[key: string]: string}
- Map of key-value pairs for retention settings.
- role
Arn string - ARN of the IAM role for Iceberg optimization.
- compaction Mapping[str, str]
- Map of key-value pairs for compaction settings.
- orphan_
file_ Mapping[str, str]deletion - Map of key-value pairs for orphan file deletion settings.
- retention Mapping[str, str]
- Map of key-value pairs for retention settings.
- role_
arn str - ARN of the IAM role for Iceberg optimization.
- compaction Map<String>
- Map of key-value pairs for compaction settings.
- orphan
File Map<String>Deletion - Map of key-value pairs for orphan file deletion settings.
- retention Map<String>
- Map of key-value pairs for retention settings.
- role
Arn String - ARN of the IAM role for Iceberg optimization.
CatalogCreateDatabaseDefaultPermission, CatalogCreateDatabaseDefaultPermissionArgs
- Permissions List<string>
- Permissions that are granted to the principal. Valid values include
ALL,SELECT,ALTER,DROP,DELETE,INSERT,CREATE_DATABASE,CREATE_TABLE,DATA_LOCATION_ACCESS. - Principal
Catalog
Create Database Default Permission Principal - Principal who is granted permissions. See
principalbelow.
- Permissions []string
- Permissions that are granted to the principal. Valid values include
ALL,SELECT,ALTER,DROP,DELETE,INSERT,CREATE_DATABASE,CREATE_TABLE,DATA_LOCATION_ACCESS. - Principal
Catalog
Create Database Default Permission Principal - Principal who is granted permissions. See
principalbelow.
- permissions list(string)
- Permissions that are granted to the principal. Valid values include
ALL,SELECT,ALTER,DROP,DELETE,INSERT,CREATE_DATABASE,CREATE_TABLE,DATA_LOCATION_ACCESS. - principal object
- Principal who is granted permissions. See
principalbelow.
- permissions List<String>
- Permissions that are granted to the principal. Valid values include
ALL,SELECT,ALTER,DROP,DELETE,INSERT,CREATE_DATABASE,CREATE_TABLE,DATA_LOCATION_ACCESS. - principal
Catalog
Create Database Default Permission Principal - Principal who is granted permissions. See
principalbelow.
- permissions string[]
- Permissions that are granted to the principal. Valid values include
ALL,SELECT,ALTER,DROP,DELETE,INSERT,CREATE_DATABASE,CREATE_TABLE,DATA_LOCATION_ACCESS. - principal
Catalog
Create Database Default Permission Principal - Principal who is granted permissions. See
principalbelow.
- permissions Sequence[str]
- Permissions that are granted to the principal. Valid values include
ALL,SELECT,ALTER,DROP,DELETE,INSERT,CREATE_DATABASE,CREATE_TABLE,DATA_LOCATION_ACCESS. - principal
Catalog
Create Database Default Permission Principal - Principal who is granted permissions. See
principalbelow.
- permissions List<String>
- Permissions that are granted to the principal. Valid values include
ALL,SELECT,ALTER,DROP,DELETE,INSERT,CREATE_DATABASE,CREATE_TABLE,DATA_LOCATION_ACCESS. - principal Property Map
- Principal who is granted permissions. See
principalbelow.
CatalogCreateDatabaseDefaultPermissionPrincipal, CatalogCreateDatabaseDefaultPermissionPrincipalArgs
- Data
Lake stringPrincipal Identifier - Identifier for the Lake Formation principal.
- Data
Lake stringPrincipal Identifier - Identifier for the Lake Formation principal.
- data_
lake_ stringprincipal_ identifier - Identifier for the Lake Formation principal.
- data
Lake StringPrincipal Identifier - Identifier for the Lake Formation principal.
- data
Lake stringPrincipal Identifier - Identifier for the Lake Formation principal.
- data_
lake_ strprincipal_ identifier - Identifier for the Lake Formation principal.
- data
Lake StringPrincipal Identifier - Identifier for the Lake Formation principal.
CatalogCreateTableDefaultPermission, CatalogCreateTableDefaultPermissionArgs
- Permissions List<string>
- Permissions that are granted to the principal. Valid values include
ALL,SELECT,ALTER,DROP,DELETE,INSERT,CREATE_DATABASE,CREATE_TABLE,DATA_LOCATION_ACCESS. - Principal
Catalog
Create Table Default Permission Principal - Principal who is granted permissions. See
principalbelow.
- Permissions []string
- Permissions that are granted to the principal. Valid values include
ALL,SELECT,ALTER,DROP,DELETE,INSERT,CREATE_DATABASE,CREATE_TABLE,DATA_LOCATION_ACCESS. - Principal
Catalog
Create Table Default Permission Principal - Principal who is granted permissions. See
principalbelow.
- permissions list(string)
- Permissions that are granted to the principal. Valid values include
ALL,SELECT,ALTER,DROP,DELETE,INSERT,CREATE_DATABASE,CREATE_TABLE,DATA_LOCATION_ACCESS. - principal object
- Principal who is granted permissions. See
principalbelow.
- permissions List<String>
- Permissions that are granted to the principal. Valid values include
ALL,SELECT,ALTER,DROP,DELETE,INSERT,CREATE_DATABASE,CREATE_TABLE,DATA_LOCATION_ACCESS. - principal
Catalog
Create Table Default Permission Principal - Principal who is granted permissions. See
principalbelow.
- permissions string[]
- Permissions that are granted to the principal. Valid values include
ALL,SELECT,ALTER,DROP,DELETE,INSERT,CREATE_DATABASE,CREATE_TABLE,DATA_LOCATION_ACCESS. - principal
Catalog
Create Table Default Permission Principal - Principal who is granted permissions. See
principalbelow.
- permissions Sequence[str]
- Permissions that are granted to the principal. Valid values include
ALL,SELECT,ALTER,DROP,DELETE,INSERT,CREATE_DATABASE,CREATE_TABLE,DATA_LOCATION_ACCESS. - principal
Catalog
Create Table Default Permission Principal - Principal who is granted permissions. See
principalbelow.
- permissions List<String>
- Permissions that are granted to the principal. Valid values include
ALL,SELECT,ALTER,DROP,DELETE,INSERT,CREATE_DATABASE,CREATE_TABLE,DATA_LOCATION_ACCESS. - principal Property Map
- Principal who is granted permissions. See
principalbelow.
CatalogCreateTableDefaultPermissionPrincipal, CatalogCreateTableDefaultPermissionPrincipalArgs
- Data
Lake stringPrincipal Identifier - Identifier for the Lake Formation principal.
- Data
Lake stringPrincipal Identifier - Identifier for the Lake Formation principal.
- data_
lake_ stringprincipal_ identifier - Identifier for the Lake Formation principal.
- data
Lake StringPrincipal Identifier - Identifier for the Lake Formation principal.
- data
Lake stringPrincipal Identifier - Identifier for the Lake Formation principal.
- data_
lake_ strprincipal_ identifier - Identifier for the Lake Formation principal.
- data
Lake StringPrincipal Identifier - Identifier for the Lake Formation principal.
CatalogFederatedCatalog, CatalogFederatedCatalogArgs
- Connection
Name string - Name of the connection to the external metastore.
- Connection
Type string - Type of connection used to access the federated catalog.
- Identifier string
- Unique identifier for the federated catalog.
- Connection
Name string - Name of the connection to the external metastore.
- Connection
Type string - Type of connection used to access the federated catalog.
- Identifier string
- Unique identifier for the federated catalog.
- connection_
name string - Name of the connection to the external metastore.
- connection_
type string - Type of connection used to access the federated catalog.
- identifier string
- Unique identifier for the federated catalog.
- connection
Name String - Name of the connection to the external metastore.
- connection
Type String - Type of connection used to access the federated catalog.
- identifier String
- Unique identifier for the federated catalog.
- connection
Name string - Name of the connection to the external metastore.
- connection
Type string - Type of connection used to access the federated catalog.
- identifier string
- Unique identifier for the federated catalog.
- connection_
name str - Name of the connection to the external metastore.
- connection_
type str - Type of connection used to access the federated catalog.
- identifier str
- Unique identifier for the federated catalog.
- connection
Name String - Name of the connection to the external metastore.
- connection
Type String - Type of connection used to access the federated catalog.
- identifier String
- Unique identifier for the federated catalog.
CatalogTargetRedshiftCatalog, CatalogTargetRedshiftCatalogArgs
- Catalog
Arn string - ARN of the target Redshift catalog.
- Catalog
Arn string - ARN of the target Redshift catalog.
- catalog_
arn string - ARN of the target Redshift catalog.
- catalog
Arn String - ARN of the target Redshift catalog.
- catalog
Arn string - ARN of the target Redshift catalog.
- catalog_
arn str - ARN of the target Redshift catalog.
- catalog
Arn String - ARN of the target Redshift catalog.
CatalogTimeouts, CatalogTimeoutsArgs
- 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.
- Update 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).
- 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.
- Update 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).
- 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.
- update 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).
- 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.
- update 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).
- 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.
- update 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).
- 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.
- update 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).
- 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.
- update 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).
Import
Identity Schema
Required
name(String) Name of the Glue Catalog.
Optional
accountId(String) AWS Account where this resource is managed.region(String) Region where this resource is managed.
Using pulumi import, import Glue Catalog using the catalog name. For example:
$ pulumi import aws:glue/catalog:Catalog example example
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
awsTerraform Provider.
published on Tuesday, May 26, 2026 by Pulumi