Class CfnProjectPropsMixin.SampleProperty
Represents the sample size and sampling type for DataBrew to use for interactive data analysis.
Implements
Inherited Members
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
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
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
Remarks
Type
The way in which DataBrew obtains rows from a dataset.
public string? Type { get; set; }