Class: Aws::TimestreamWrite::Types::ListDatabasesRequest

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

Overview

Note:

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

{
  next_token: "String",
  max_results: 1,
}

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#max_resultsInteger

The total number of items to return in the output. If the total number of items available is more than the value specified, a NextToken is provided in the output. To resume pagination, provide the NextToken value as argument of a subsequent API invocation.

Returns:

  • (Integer)


439
440
441
442
443
444
# File 'lib/aws-sdk-timestreamwrite/types.rb', line 439

class ListDatabasesRequest < Struct.new(
  :next_token,
  :max_results)
  SENSITIVE = []
  include Aws::Structure
end

#next_tokenString

The pagination token. To resume pagination, provide the NextToken value as argument of a subsequent API invocation.

Returns:

  • (String)


439
440
441
442
443
444
# File 'lib/aws-sdk-timestreamwrite/types.rb', line 439

class ListDatabasesRequest < Struct.new(
  :next_token,
  :max_results)
  SENSITIVE = []
  include Aws::Structure
end