aws-cdk-lib.aws_databrew.CfnProjectProps

interface CfnProjectProps

LanguageType name
.NETAmazon.CDK.AWS.DataBrew.CfnProjectProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsdatabrew#CfnProjectProps
Javasoftware.amazon.awscdk.services.databrew.CfnProjectProps
Pythonaws_cdk.aws_databrew.CfnProjectProps
TypeScript aws-cdk-lib » aws_databrew » CfnProjectProps

Properties for defining a CfnProject.

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 cfnProjectProps: databrew.CfnProjectProps = {
  datasetName: 'datasetName',
  name: 'name',
  recipeName: 'recipeName',
  roleArn: 'roleArn',

  // the properties below are optional
  sample: {
    type: 'type',

    // the properties below are optional
    size: 123,
  },
  tags: [{
    key: 'key',
    value: 'value',
  }],
};

Properties

NameTypeDescription
datasetNamestringThe dataset that the project is to act upon.
namestringThe unique name of a project.
recipeNamestringThe name of a recipe that will be developed during a project session.
roleArnstringThe Amazon Resource Name (ARN) of the role that will be assumed for this project.
sample?IResolvable | SamplePropertyThe sample size and sampling type to apply to the data.
tags?CfnTag[]Metadata tags that have been applied to the project.

datasetName

Type: string

The dataset that the project is to act upon.


name

Type: string

The unique name of a project.


recipeName

Type: string

The name of a recipe that will be developed during a project session.


roleArn

Type: string

The Amazon Resource Name (ARN) of the role that will be assumed for this project.


sample?

Type: IResolvable | SampleProperty (optional)

The sample size and sampling type to apply to the data.

If this parameter isn't specified, then the sample consists of the first 500 rows from the dataset.


tags?

Type: CfnTag[] (optional)

Metadata tags that have been applied to the project.