You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::IoTAnalytics::Types::ListDatasetContentsRequest

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing ListDatasetContentsRequest as input to an Aws::Client method, you can use a vanilla Hash:

{
  dataset_name: "DatasetName", # required
  next_token: "NextToken",
  max_results: 1,
  scheduled_on_or_after: Time.now,
  scheduled_before: Time.now,
}

Instance Attribute Summary collapse

Instance Attribute Details

#dataset_nameString

The name of the data set whose contents information you want to list.

Returns:

  • (String)

    The name of the data set whose contents information you want to list.

#max_resultsInteger

The maximum number of results to return in this request.

Returns:

  • (Integer)

    The maximum number of results to return in this request.

#next_tokenString

The token for the next set of results.

Returns:

  • (String)

    The token for the next set of results.

#scheduled_beforeTime

A filter to limit results to those data set contents whose creation is scheduled before the given time. See the field triggers.schedule in the CreateDataset request. (timestamp)

Returns:

  • (Time)

    A filter to limit results to those data set contents whose creation is scheduled before the given time.

#scheduled_on_or_afterTime

A filter to limit results to those data set contents whose creation is scheduled on or after the given time. See the field triggers.schedule in the CreateDataset request. (timestamp)

Returns:

  • (Time)

    A filter to limit results to those data set contents whose creation is scheduled on or after the given time.