interface SampleProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.DataBrew.CfnProjectPropsMixin.SampleProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsdatabrew#CfnProjectPropsMixin_SampleProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.databrew.CfnProjectPropsMixin.SampleProperty |
Python | aws_cdk.cfn_property_mixins.aws_databrew.CfnProjectPropsMixin.SampleProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_databrew » 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 { aws_databrew as databrew } from '@aws-cdk/cfn-property-mixins';
const sampleProperty: databrew.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