Class: Aws::LocationService::Types::ListGeofencesRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::LocationService::Types::ListGeofencesRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-locationservice/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#collection_name ⇒ String
The name of the geofence collection storing the list of geofences.
-
#max_results ⇒ Integer
An optional limit for the number of geofences returned in a single call.
-
#next_token ⇒ String
The pagination token specifying which page of results to return in the response.
Instance Attribute Details
#collection_name ⇒ String
The name of the geofence collection storing the list of geofences.
4243 4244 4245 4246 4247 4248 4249 |
# File 'lib/aws-sdk-locationservice/types.rb', line 4243 class ListGeofencesRequest < Struct.new( :collection_name, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#max_results ⇒ Integer
An optional limit for the number of geofences returned in a single call.
Default value: ‘100`
4243 4244 4245 4246 4247 4248 4249 |
# File 'lib/aws-sdk-locationservice/types.rb', line 4243 class ListGeofencesRequest < Struct.new( :collection_name, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
The pagination token specifying which page of results to return in the response. If no token is provided, the default page is the first page.
Default value: ‘null`
4243 4244 4245 4246 4247 4248 4249 |
# File 'lib/aws-sdk-locationservice/types.rb', line 4243 class ListGeofencesRequest < Struct.new( :collection_name, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |