interface CfnProjectMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.DataBrew.Mixins.CfnProjectMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdatabrew/mixins#CfnProjectMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.databrew.mixins.CfnProjectMixinProps |
Python | aws_cdk.mixins_preview.aws_databrew.mixins.CfnProjectMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_databrew » mixins » CfnProjectMixinProps |
Properties for CfnProjectPropsMixin.
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 { mixins as databrew_mixins } from '@aws-cdk/mixins-preview/aws-databrew';
const cfnProjectMixinProps: databrew_mixins.CfnProjectMixinProps = {
datasetName: 'datasetName',
name: 'name',
recipeName: 'recipeName',
roleArn: 'roleArn',
sample: {
size: 123,
type: 'type',
},
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
(optional)
The dataset that the project is to act upon.
name?
Type:
string
(optional)
The unique name of a project.
recipeName?
Type:
string
(optional)
The name of a recipe that will be developed during a project session.
roleArn?
Type:
string
(optional)
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.

.NET
Go
Java
Python
TypeScript