interface CfnProjectProps
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.DataBrew.CfnProjectProps |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsdatabrew#CfnProjectProps |
![]() | software.amazon.awscdk.services.databrew.CfnProjectProps |
![]() | aws_cdk.aws_databrew.CfnProjectProps |
![]() | aws-cdk-lib » aws_databrew » CfnProjectProps |
Properties for defining a CfnProject
.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-databrew-project.html
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
Name | Type | Description |
---|---|---|
dataset | string | The dataset that the project is to act upon. |
name | string | The unique name of a project. |
recipe | string | The name of a recipe that will be developed during a project session. |
role | string | The Amazon Resource Name (ARN) of the role that will be assumed for this project. |
sample? | IResolvable | Sample | The sample size and sampling type to apply to the data. |
tags? | Cfn [] | 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
|
Sample
(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:
Cfn
[]
(optional)
Metadata tags that have been applied to the project.