Class: Aws::Neptunedata::Types::ListLoaderJobsInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::Neptunedata::Types::ListLoaderJobsInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-neptunedata/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#include_queued_loads ⇒ Boolean
An optional parameter that can be used to exclude the load IDs of queued load requests when requesting a list of load IDs by setting the parameter to ‘FALSE`.
-
#limit ⇒ Integer
The number of load IDs to list.
Instance Attribute Details
#include_queued_loads ⇒ Boolean
An optional parameter that can be used to exclude the load IDs of queued load requests when requesting a list of load IDs by setting the parameter to ‘FALSE`. The default value is `TRUE`.
1935 1936 1937 1938 1939 1940 |
# File 'lib/aws-sdk-neptunedata/types.rb', line 1935 class ListLoaderJobsInput < Struct.new( :limit, :include_queued_loads) SENSITIVE = [] include Aws::Structure end |
#limit ⇒ Integer
The number of load IDs to list. Must be a positive integer greater than zero and not more than ‘100` (which is the default).
1935 1936 1937 1938 1939 1940 |
# File 'lib/aws-sdk-neptunedata/types.rb', line 1935 class ListLoaderJobsInput < Struct.new( :limit, :include_queued_loads) SENSITIVE = [] include Aws::Structure end |