aws-cdk-lib.aws_databrew.CfnRecipe.InputProperty

interface InputProperty

LanguageType name
.NETAmazon.CDK.AWS.DataBrew.CfnRecipe.InputProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsdatabrew#CfnRecipe_InputProperty
Javasoftware.amazon.awscdk.services.databrew.CfnRecipe.InputProperty
Pythonaws_cdk.aws_databrew.CfnRecipe.InputProperty
TypeScript aws-cdk-lib » 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 { aws_databrew as databrew } from 'aws-cdk-lib';
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

NameTypeDescription
dataCatalogInputDefinition?IResolvable | DataCatalogInputDefinitionPropertyCfnRecipe.InputProperty.DataCatalogInputDefinition.
s3InputDefinition?IResolvable | S3LocationPropertyCfnRecipe.InputProperty.S3InputDefinition.

dataCatalogInputDefinition?

Type: IResolvable | DataCatalogInputDefinitionProperty (optional)

CfnRecipe.InputProperty.DataCatalogInputDefinition.


s3InputDefinition?

Type: IResolvable | S3LocationProperty (optional)

CfnRecipe.InputProperty.S3InputDefinition.