Show / Hide Table of Contents

Class CfnTagAssociationPropsMixin.TableWithColumnsResourceProperty

A structure for a table with columns object. This object is only used when granting a SELECT permission.

Inheritance
object
CfnTagAssociationPropsMixin.TableWithColumnsResourceProperty
Implements
CfnTagAssociationPropsMixin.ITableWithColumnsResourceProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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 .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lakeformation-tagassociation-tablewithcolumnsresource.html

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 .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lakeformation-tagassociation-tablewithcolumnsresource.html

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

string

Remarks

At least one of TableResource$Name or TableResource$TableWildcard is required.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lakeformation-tagassociation-tablewithcolumnsresource.html#cfn-lakeformation-tagassociation-tablewithcolumnsresource-catalogid

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.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lakeformation-tagassociation-tablewithcolumnsresource.html#cfn-lakeformation-tagassociation-tablewithcolumnsresource-columnnames

DatabaseName

The name of the database for the table with columns resource.

public string? DatabaseName { get; set; }
Property Value

string

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.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lakeformation-tagassociation-tablewithcolumnsresource.html#cfn-lakeformation-tagassociation-tablewithcolumnsresource-databasename

Name

The name of the table resource.

public string? Name { get; set; }
Property Value

string

Remarks

A table is a metadata definition that represents your data. You can Grant and Revoke table privileges to a principal.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lakeformation-tagassociation-tablewithcolumnsresource.html#cfn-lakeformation-tagassociation-tablewithcolumnsresource-name

Implements

CfnTagAssociationPropsMixin.ITableWithColumnsResourceProperty
Back to top Generated by DocFX