Show / Hide Table of Contents

Class CfnProjectPropsMixin.SampleProperty

Represents the sample size and sampling type for DataBrew to use for interactive data analysis.

Inheritance
object
CfnProjectPropsMixin.SampleProperty
Implements
CfnProjectPropsMixin.ISampleProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.DataBrew
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnProjectPropsMixin.SampleProperty : CfnProjectPropsMixin.ISampleProperty
Syntax (vb)
Public Class CfnProjectPropsMixin.SampleProperty Implements CfnProjectPropsMixin.ISampleProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-databrew-project-sample.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 sampleProperty = new SampleProperty {
                 Size = 123,
                 Type = "type"
             };

Synopsis

Constructors

SampleProperty()

Represents the sample size and sampling type for DataBrew to use for interactive data analysis.

Properties

Size

The number of rows in the sample.

Type

The way in which DataBrew obtains rows from a dataset.

Constructors

SampleProperty()

Represents the sample size and sampling type for DataBrew to use for interactive data analysis.

public SampleProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-databrew-project-sample.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 sampleProperty = new SampleProperty {
                 Size = 123,
                 Type = "type"
             };

Properties

Size

The number of rows in the sample.

public double? Size { get; set; }
Property Value

double?

Remarks

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

Type

The way in which DataBrew obtains rows from a dataset.

public string? Type { get; set; }
Property Value

string

Remarks

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

Implements

CfnProjectPropsMixin.ISampleProperty
Back to top Generated by DocFX