interface SampleProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.DataBrew.Mixins.CfnProjectPropsMixin.SampleProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdatabrew/mixins#CfnProjectPropsMixin_SampleProperty |
Java | software.amazon.awscdk.mixins.preview.services.databrew.mixins.CfnProjectPropsMixin.SampleProperty |
Python | aws_cdk.mixins_preview.aws_databrew.mixins.CfnProjectPropsMixin.SampleProperty |
TypeScript | @aws-cdk/mixins-preview » aws_databrew » mixins » CfnProjectPropsMixin » SampleProperty |
Represents the sample size and sampling type for DataBrew to use for interactive data analysis.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as databrew_mixins } from '@aws-cdk/mixins-preview/aws-databrew';
const sampleProperty: databrew_mixins.CfnProjectPropsMixin.SampleProperty = {
size: 123,
type: 'type',
};
Properties
| Name | Type | Description |
|---|---|---|
| size? | number | The number of rows in the sample. |
| type? | string | The way in which DataBrew obtains rows from a dataset. |
size?
Type:
number
(optional)
The number of rows in the sample.
type?
Type:
string
(optional)
The way in which DataBrew obtains rows from a dataset.

.NET
Go
Java
Python
TypeScript