Interface CfnProject.SampleProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnProject.SampleProperty.Jsii$Proxy
Enclosing class:
CfnProject

@Stability(Stable) public static interface CfnProject.SampleProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.databrew.*;
 SampleProperty sampleProperty = SampleProperty.builder()
         .type("type")
         // the properties below are optional
         .size(123)
         .build();