Class: Aws::AppRegistry::Types::ListApplicationsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppRegistry::Types::ListApplicationsRequest
- Defined in:
- gems/aws-sdk-appregistry/lib/aws-sdk-appregistry/types.rb
Overview
Note:
When making an API call, you may pass ListApplicationsRequest data as a hash:
{
next_token: "NextToken",
max_results: 1,
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#max_results ⇒ Integer
The upper bound of the number of results to return (cannot exceed 25).
-
#next_token ⇒ String
The token to use to get the next page of results after a previous API call.
Instance Attribute Details
#max_results ⇒ Integer
The upper bound of the number of results to return (cannot exceed 25). If this parameter is omitted, it defaults to 25. This value is optional.
858 859 860 861 862 863 |
# File 'gems/aws-sdk-appregistry/lib/aws-sdk-appregistry/types.rb', line 858 class ListApplicationsRequest < Struct.new( :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
The token to use to get the next page of results after a previous API call.
858 859 860 861 862 863 |
# File 'gems/aws-sdk-appregistry/lib/aws-sdk-appregistry/types.rb', line 858 class ListApplicationsRequest < Struct.new( :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |