Class CfnTagAssociationPropsMixin.TableWithColumnsResourceProperty
A structure for a table with columns object. This object is only used when granting a SELECT permission.
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.LakeFormation.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnTagAssociationPropsMixin.TableWithColumnsResourceProperty : CfnTagAssociationPropsMixin.ITableWithColumnsResourceProperty
Syntax (vb)
Public Class CfnTagAssociationPropsMixin.TableWithColumnsResourceProperty Implements CfnTagAssociationPropsMixin.ITableWithColumnsResourceProperty
Remarks
This object must take a value for at least one of ColumnsNames , ColumnsIndexes , or ColumnsWildcard .
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.LakeFormation.Mixins;
var tableWithColumnsResourceProperty = new TableWithColumnsResourceProperty {
CatalogId = "catalogId",
ColumnNames = new [] { "columnNames" },
DatabaseName = "databaseName",
Name = "name"
};
Synopsis
Constructors
| TableWithColumnsResourceProperty() | A structure for a table with columns object. This object is only used when granting a SELECT permission. |
Properties
| CatalogId | A wildcard object representing every table under a database. |
| ColumnNames | The list of column names for the table. |
| DatabaseName | The name of the database for the table with columns resource. |
| Name | The name of the table resource. |
Constructors
TableWithColumnsResourceProperty()
A structure for a table with columns object. This object is only used when granting a SELECT permission.
public TableWithColumnsResourceProperty()
Remarks
This object must take a value for at least one of ColumnsNames , ColumnsIndexes , or ColumnsWildcard .
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.LakeFormation.Mixins;
var tableWithColumnsResourceProperty = new TableWithColumnsResourceProperty {
CatalogId = "catalogId",
ColumnNames = new [] { "columnNames" },
DatabaseName = "databaseName",
Name = "name"
};
Properties
CatalogId
A wildcard object representing every table under a database.
public string? CatalogId { get; set; }
Property Value
Remarks
At least one of TableResource$Name or TableResource$TableWildcard is required.
ColumnNames
The list of column names for the table.
public string[]? ColumnNames { get; set; }
Property Value
string[]
Remarks
At least one of ColumnNames or ColumnWildcard is required.
DatabaseName
The name of the database for the table with columns resource.
public string? DatabaseName { get; set; }
Property Value
Remarks
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 privileges to a principal.
Name
The name of the table resource.
public string? Name { get; set; }
Property Value
Remarks
A table is a metadata definition that represents your data. You can Grant and Revoke table privileges to a principal.