Show / Hide Table of Contents

Class CfnDatasetPropsMixin.DataCatalogInputDefinitionProperty

Represents how metadata stored in the AWS Glue Data Catalog is defined in a DataBrew dataset.

Inheritance
object
CfnDatasetPropsMixin.DataCatalogInputDefinitionProperty
Implements
CfnDatasetPropsMixin.IDataCatalogInputDefinitionProperty
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.DataBrew.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnDatasetPropsMixin.DataCatalogInputDefinitionProperty : CfnDatasetPropsMixin.IDataCatalogInputDefinitionProperty
Syntax (vb)
Public Class CfnDatasetPropsMixin.DataCatalogInputDefinitionProperty Implements CfnDatasetPropsMixin.IDataCatalogInputDefinitionProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-databrew-dataset-datacataloginputdefinition.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.DataBrew.Mixins;

             var dataCatalogInputDefinitionProperty = new DataCatalogInputDefinitionProperty {
                 CatalogId = "catalogId",
                 DatabaseName = "databaseName",
                 TableName = "tableName",
                 TempDirectory = new S3LocationProperty {
                     Bucket = "bucket",
                     BucketOwner = "bucketOwner",
                     Key = "key"
                 }
             };

Synopsis

Constructors

DataCatalogInputDefinitionProperty()

Represents how metadata stored in the AWS Glue Data Catalog is defined in a DataBrew dataset.

Properties

CatalogId

The unique identifier of the AWS account that holds the Data Catalog that stores the data.

DatabaseName

The name of a database in the Data Catalog.

TableName

The name of a database table in the Data Catalog.

TempDirectory

An Amazon location that AWS Glue Data Catalog can use as a temporary directory.

Constructors

DataCatalogInputDefinitionProperty()

Represents how metadata stored in the AWS Glue Data Catalog is defined in a DataBrew dataset.

public DataCatalogInputDefinitionProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-databrew-dataset-datacataloginputdefinition.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.DataBrew.Mixins;

             var dataCatalogInputDefinitionProperty = new DataCatalogInputDefinitionProperty {
                 CatalogId = "catalogId",
                 DatabaseName = "databaseName",
                 TableName = "tableName",
                 TempDirectory = new S3LocationProperty {
                     Bucket = "bucket",
                     BucketOwner = "bucketOwner",
                     Key = "key"
                 }
             };

Properties

CatalogId

The unique identifier of the AWS account that holds the Data Catalog that stores the data.

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-databrew-dataset-datacataloginputdefinition.html#cfn-databrew-dataset-datacataloginputdefinition-catalogid

DatabaseName

The name of a database in the Data Catalog.

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-databrew-dataset-datacataloginputdefinition.html#cfn-databrew-dataset-datacataloginputdefinition-databasename

TableName

The name of a database table in the Data Catalog.

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

string

Remarks

This table corresponds to a DataBrew dataset.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-databrew-dataset-datacataloginputdefinition.html#cfn-databrew-dataset-datacataloginputdefinition-tablename

TempDirectory

An Amazon location that AWS Glue Data Catalog can use as a temporary directory.

public object? TempDirectory { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-databrew-dataset-datacataloginputdefinition.html#cfn-databrew-dataset-datacataloginputdefinition-tempdirectory

Type union: either IResolvable or CfnDatasetPropsMixin.IS3LocationProperty

Implements

CfnDatasetPropsMixin.IDataCatalogInputDefinitionProperty
Back to top Generated by DocFX