Class: Aws::Glue::Types::StreamingDataPreviewOptions

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-glue/types.rb

Overview

Note:

When making an API call, you may pass StreamingDataPreviewOptions data as a hash:

{
  polling_time: 1,
  record_polling_limit: 1,
}

Specifies options related to data preview for viewing a sample of your data.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#polling_timeInteger

The polling time in milliseconds.

Returns:

  • (Integer)


22829
22830
22831
22832
22833
22834
# File 'lib/aws-sdk-glue/types.rb', line 22829

class StreamingDataPreviewOptions < Struct.new(
  :polling_time,
  :record_polling_limit)
  SENSITIVE = []
  include Aws::Structure
end

#record_polling_limitInteger

The limit to the number of records polled.

Returns:

  • (Integer)


22829
22830
22831
22832
22833
22834
# File 'lib/aws-sdk-glue/types.rb', line 22829

class StreamingDataPreviewOptions < Struct.new(
  :polling_time,
  :record_polling_limit)
  SENSITIVE = []
  include Aws::Structure
end