Class: Aws::AppRunner::Types::ListServicesResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppRunner::Types::ListServicesResponse
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-apprunner/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#next_token ⇒ String
The token that you can pass in a subsequent request to get the next result page.
-
#service_summary_list ⇒ Array<Types::ServiceSummary>
A list of service summary information records.
Instance Attribute Details
#next_token ⇒ String
The token that you can pass in a subsequent request to get the next result page. It’s returned in a paginated request.
2002 2003 2004 2005 2006 2007 |
# File 'lib/aws-sdk-apprunner/types.rb', line 2002 class ListServicesResponse < Struct.new( :service_summary_list, :next_token) SENSITIVE = [] include Aws::Structure end |
#service_summary_list ⇒ Array<Types::ServiceSummary>
A list of service summary information records. In a paginated request, the request returns up to ‘MaxResults` records for each call.
2002 2003 2004 2005 2006 2007 |
# File 'lib/aws-sdk-apprunner/types.rb', line 2002 class ListServicesResponse < Struct.new( :service_summary_list, :next_token) SENSITIVE = [] include Aws::Structure end |