Show / Hide Table of Contents

Interface ICfnProjectMixinProps

Properties for CfnProjectPropsMixin.

Namespace: Amazon.CDK.CfnPropertyMixins.AWS.DataBrew
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public interface ICfnProjectMixinProps
Syntax (vb)
Public Interface ICfnProjectMixinProps
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.CfnPropertyMixins.AWS.DataBrew;

             var cfnProjectMixinProps = new CfnProjectMixinProps {
                 DatasetName = "datasetName",
                 Name = "name",
                 RecipeName = "recipeName",
                 RoleArn = "roleArn",
                 Sample = new SampleProperty {
                     Size = 123,
                     Type = "type"
                 },
                 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 CfnProjectPropsMixin.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