Class: Aws::AppRunner::Types::ListServicesRequest

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

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#max_resultsInteger

The maximum number of results to include in each response (result page). It’s used for a paginated request.

If you don’t specify ‘MaxResults`, the request retrieves all available results in a single response.

Returns:

  • (Integer)


1982
1983
1984
1985
1986
1987
# File 'lib/aws-sdk-apprunner/types.rb', line 1982

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

#next_tokenString

A token from a previous result page. Used for a paginated request. The request retrieves the next result page. All other parameter values must be identical to the ones specified in the initial request.

If you don’t specify ‘NextToken`, the request retrieves the first result page.

Returns:

  • (String)


1982
1983
1984
1985
1986
1987
# File 'lib/aws-sdk-apprunner/types.rb', line 1982

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