CfnProjectMixinProps
- class aws_cdk.mixins_preview.aws_databrew.mixins.CfnProjectMixinProps(*, dataset_name=None, name=None, recipe_name=None, role_arn=None, sample=None, tags=None)
Bases:
objectProperties for CfnProjectPropsMixin.
- Parameters:
dataset_name (
Optional[str]) – The dataset that the project is to act upon.name (
Optional[str]) – The unique name of a project.recipe_name (
Optional[str]) – The name of a recipe that will be developed during a project session.role_arn (
Optional[str]) – The Amazon Resource Name (ARN) of the role that will be assumed for this project.sample (
Union[IResolvable,SampleProperty,Dict[str,Any],None]) – 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 (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – Metadata tags that have been applied to the project.
- See:
http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-databrew-project.html
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.mixins_preview.aws_databrew import mixins as databrew_mixins cfn_project_mixin_props = databrew_mixins.CfnProjectMixinProps( dataset_name="datasetName", name="name", recipe_name="recipeName", role_arn="roleArn", sample=databrew_mixins.CfnProjectPropsMixin.SampleProperty( size=123, type="type" ), tags=[CfnTag( key="key", value="value" )] )
Attributes
- dataset_name
The dataset that the project is to act upon.
- name
The unique name of a project.
- recipe_name
The name of a recipe that will be developed during a project session.
- role_arn
The Amazon Resource Name (ARN) of the role that will be assumed for this project.
- sample
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
Metadata tags that have been applied to the project.