Class: Aws::AppRunner::Types::ListServicesForAutoScalingConfigurationRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppRunner::Types::ListServicesForAutoScalingConfigurationRequest
- Defined in:
- gems/aws-sdk-apprunner/lib/aws-sdk-apprunner/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#auto_scaling_configuration_arn ⇒ String
The Amazon Resource Name (ARN) of the App Runner auto scaling configuration that you want to list the services for.
-
#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_arn ⇒ String
The Amazon Resource Name (ARN) of the App Runner auto scaling configuration that you want to list the services for.
The ARN can be a full auto scaling configuration ARN, or a partial
ARN ending with either .../name
or .../name/revision
. If a
revision isn't specified, the latest active revision is used.
1935 1936 1937 1938 1939 1940 1941 |
# File 'gems/aws-sdk-apprunner/lib/aws-sdk-apprunner/types.rb', line 1935 class ListServicesForAutoScalingConfigurationRequest < Struct.new( :auto_scaling_configuration_arn, :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.
1935 1936 1937 1938 1939 1940 1941 |
# File 'gems/aws-sdk-apprunner/lib/aws-sdk-apprunner/types.rb', line 1935 class ListServicesForAutoScalingConfigurationRequest < Struct.new( :auto_scaling_configuration_arn, :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 specified in the initial request.
If you don't specify NextToken
, the request retrieves the first
result page.
1935 1936 1937 1938 1939 1940 1941 |
# File 'gems/aws-sdk-apprunner/lib/aws-sdk-apprunner/types.rb', line 1935 class ListServicesForAutoScalingConfigurationRequest < Struct.new( :auto_scaling_configuration_arn, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |