Class: Aws::GlueDataBrew::Types::Sample

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-gluedatabrew/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

Instance Attribute Details

#sizeInteger

The number of rows in the sample.

Returns:

  • (Integer)


3410
3411
3412
3413
3414
3415
# File 'gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb', line 3410

class Sample < Struct.new(
  :size,
  :type)
  SENSITIVE = []
  include Aws::Structure
end

#typeString

The way in which DataBrew obtains rows from a dataset.

Returns:

  • (String)


3410
3411
3412
3413
3414
3415
# File 'gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb', line 3410

class Sample < Struct.new(
  :size,
  :type)
  SENSITIVE = []
  include Aws::Structure
end