interface SecondaryInputProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.DataBrew.CfnRecipe.SecondaryInputProperty |
Java | software.amazon.awscdk.services.databrew.CfnRecipe.SecondaryInputProperty |
Python | aws_cdk.aws_databrew.CfnRecipe.SecondaryInputProperty |
TypeScript | @aws-cdk/aws-databrew » CfnRecipe » SecondaryInputProperty |
Represents secondary inputs in a UNION transform.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as databrew from '@aws-cdk/aws-databrew';
const secondaryInputProperty: databrew.CfnRecipe.SecondaryInputProperty = {
dataCatalogInputDefinition: {
catalogId: 'catalogId',
databaseName: 'databaseName',
tableName: 'tableName',
tempDirectory: {
bucket: 'bucket',
// the properties below are optional
key: 'key',
},
},
s3InputDefinition: {
bucket: 'bucket',
// the properties below are optional
key: 'key',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| data | IResolvable | Data | The AWS Glue Data Catalog parameters for the data. |
| s3 | IResolvable | S3 | The Amazon S3 location where the data is stored. |
dataCatalogInputDefinition?
Type:
IResolvable | Data
(optional)
The AWS Glue Data Catalog parameters for the data.
s3InputDefinition?
Type:
IResolvable | S3
(optional)
The Amazon S3 location where the data is stored.

.NET
Java
Python
TypeScript