Class: Aws::Proton::Types::ListServicesInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::Proton::Types::ListServicesInput
- Defined in:
- gems/aws-sdk-proton/lib/aws-sdk-proton/types.rb
Overview
Note:
When making an API call, you may pass ListServicesInput data as a hash:
{
max_results: 1,
next_token: "NextToken",
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#max_results ⇒ Integer
The maximum number of services to list.
-
#next_token ⇒ String
A token that indicates the location of the next service in the array of services, after the list of services that was previously requested.
Instance Attribute Details
#max_results ⇒ Integer
The maximum number of services to list.
3930 3931 3932 3933 3934 3935 |
# File 'gems/aws-sdk-proton/lib/aws-sdk-proton/types.rb', line 3930 class ListServicesInput < Struct.new( :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
A token that indicates the location of the next service in the array of services, after the list of services that was previously requested.
3930 3931 3932 3933 3934 3935 |
# File 'gems/aws-sdk-proton/lib/aws-sdk-proton/types.rb', line 3930 class ListServicesInput < Struct.new( :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |