Class CfnMLTransformPropsMixin.GlueTablesProperty
The database and table in the AWS Glue Data Catalog that is used for input or output data.
Implements
Inherited Members
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.Glue
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnMLTransformPropsMixin.GlueTablesProperty : CfnMLTransformPropsMixin.IGlueTablesProperty
Syntax (vb)
Public Class CfnMLTransformPropsMixin.GlueTablesProperty Implements CfnMLTransformPropsMixin.IGlueTablesProperty
Remarks
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.CfnPropertyMixins.AWS.Glue;
var glueTablesProperty = new GlueTablesProperty {
CatalogId = "catalogId",
ConnectionName = "connectionName",
DatabaseName = "databaseName",
TableName = "tableName"
};
Synopsis
Constructors
| GlueTablesProperty() | The database and table in the AWS Glue Data Catalog that is used for input or output data. |
Properties
| CatalogId | A unique identifier for the AWS Glue Data Catalog . |
| ConnectionName | The name of the connection to the AWS Glue Data Catalog . |
| DatabaseName | A database name in the AWS Glue Data Catalog . |
| TableName | A table name in the AWS Glue Data Catalog . |
Constructors
GlueTablesProperty()
The database and table in the AWS Glue Data Catalog that is used for input or output data.
public GlueTablesProperty()
Remarks
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.CfnPropertyMixins.AWS.Glue;
var glueTablesProperty = new GlueTablesProperty {
CatalogId = "catalogId",
ConnectionName = "connectionName",
DatabaseName = "databaseName",
TableName = "tableName"
};
Properties
CatalogId
A unique identifier for the AWS Glue Data Catalog .
public string? CatalogId { get; set; }
Property Value
Remarks
ConnectionName
The name of the connection to the AWS Glue Data Catalog .
public string? ConnectionName { get; set; }
Property Value
Remarks
DatabaseName
A database name in the AWS Glue Data Catalog .
public string? DatabaseName { get; set; }
Property Value
Remarks
TableName
A table name in the AWS Glue Data Catalog .
public string? TableName { get; set; }