Class: Aws::AppRunner::Types::ListAutoScalingConfigurationsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppRunner::Types::ListAutoScalingConfigurationsRequest
- Defined in:
- gems/aws-sdk-apprunner/lib/aws-sdk-apprunner/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#auto_scaling_configuration_name ⇒ String
The name of the App Runner auto scaling configuration that you want to list.
-
#latest_only ⇒ Boolean
Set to
true
to list only the latest revision for each requested configuration name. -
#max_results ⇒ Integer
The maximum number of results to include in each response (result page).
-
#next_token ⇒ String
A token from a previous result page.
Instance Attribute Details
#auto_scaling_configuration_name ⇒ String
The name of the App Runner auto scaling configuration that you want to list. If specified, App Runner lists revisions that share this name. If not specified, App Runner returns revisions of all active configurations.
1705 1706 1707 1708 1709 1710 1711 1712 |
# File 'gems/aws-sdk-apprunner/lib/aws-sdk-apprunner/types.rb', line 1705 class ListAutoScalingConfigurationsRequest < Struct.new( :auto_scaling_configuration_name, :latest_only, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#latest_only ⇒ Boolean
Set to true
to list only the latest revision for each requested
configuration name.
Set to false
to list all revisions for each requested
configuration name.
Default: true
1705 1706 1707 1708 1709 1710 1711 1712 |
# File 'gems/aws-sdk-apprunner/lib/aws-sdk-apprunner/types.rb', line 1705 class ListAutoScalingConfigurationsRequest < Struct.new( :auto_scaling_configuration_name, :latest_only, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#max_results ⇒ Integer
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.
1705 1706 1707 1708 1709 1710 1711 1712 |
# File 'gems/aws-sdk-apprunner/lib/aws-sdk-apprunner/types.rb', line 1705 class ListAutoScalingConfigurationsRequest < Struct.new( :auto_scaling_configuration_name, :latest_only, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
A token from a previous result page. It's used for a paginated request. The request retrieves the next result page. All other parameter values must be identical to the ones that are specified in the initial request.
If you don't specify NextToken
, the request retrieves the first
result page.
1705 1706 1707 1708 1709 1710 1711 1712 |
# File 'gems/aws-sdk-apprunner/lib/aws-sdk-apprunner/types.rb', line 1705 class ListAutoScalingConfigurationsRequest < Struct.new( :auto_scaling_configuration_name, :latest_only, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |