Show / Hide Table of Contents

Interface ICfnProjectProps

Properties for defining a CfnProject.

Namespace: Amazon.CDK.AWS.DataBrew
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ICfnProjectProps
Syntax (vb)
Public Interface ICfnProjectProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-databrew-project.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.DataBrew;

             var cfnProjectProps = new CfnProjectProps {
                 DatasetName = "datasetName",
                 Name = "name",
                 RecipeName = "recipeName",
                 RoleArn = "roleArn",

                 // the properties below are optional
                 Sample = new SampleProperty {
                     Type = "type",

                     // the properties below are optional
                     Size = 123
                 },
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Synopsis

Properties

DatasetName

The dataset that the project is to act upon.

Name

The unique name of a project.

RecipeName

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

RoleArn

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.

Tags

Metadata tags that have been applied to the project.

Properties

DatasetName

The dataset that the project is to act upon.

string DatasetName { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-databrew-project.html#cfn-databrew-project-datasetname

Name

The unique name of a project.

string Name { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-databrew-project.html#cfn-databrew-project-name

RecipeName

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

string RecipeName { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-databrew-project.html#cfn-databrew-project-recipename

RoleArn

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

string RoleArn { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-databrew-project.html#cfn-databrew-project-rolearn

Sample

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

object? Sample { get; }
Property Value

object

Remarks

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-databrew-project.html#cfn-databrew-project-sample

Type union: either IResolvable or CfnProject.ISampleProperty

Tags

Metadata tags that have been applied to the project.

ICfnTag[]? Tags { get; }
Property Value

ICfnTag[]

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-databrew-project.html#cfn-databrew-project-tags

Back to top Generated by DocFX