interface InputProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.DataBrew.CfnRecipe.InputProperty |
Java | software.amazon.awscdk.services.databrew.CfnRecipe.InputProperty |
Python | aws_cdk.aws_databrew.CfnRecipe.InputProperty |
TypeScript | @aws-cdk/aws-databrew » CfnRecipe » InputProperty |
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 inputProperty: databrew.CfnRecipe.InputProperty = {
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 | CfnRecipe.InputProperty.DataCatalogInputDefinition . |
s3 | IResolvable | S3 | CfnRecipe.InputProperty.S3InputDefinition . |
dataCatalogInputDefinition?
Type:
IResolvable
|
Data
(optional)
CfnRecipe.InputProperty.DataCatalogInputDefinition
.
s3InputDefinition?
Type:
IResolvable
|
S3
(optional)
CfnRecipe.InputProperty.S3InputDefinition
.