Class: Aws::GlueDataBrew::Types::Sample
- Inherits:
-
Struct
- Object
- Struct
- Aws::GlueDataBrew::Types::Sample
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-gluedatabrew/types.rb
Overview
Represents the sample size and sampling type for DataBrew to use for interactive data analysis.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#size ⇒ Integer
The number of rows in the sample.
-
#type ⇒ String
The way in which DataBrew obtains rows from a dataset.
Instance Attribute Details
#size ⇒ Integer
The number of rows in the sample.
3410 3411 3412 3413 3414 3415 |
# File 'lib/aws-sdk-gluedatabrew/types.rb', line 3410 class Sample < Struct.new( :size, :type) SENSITIVE = [] include Aws::Structure end |
#type ⇒ String
The way in which DataBrew obtains rows from a dataset.
3410 3411 3412 3413 3414 3415 |
# File 'lib/aws-sdk-gluedatabrew/types.rb', line 3410 class Sample < Struct.new( :size, :type) SENSITIVE = [] include Aws::Structure end |