Class: Aws::Amplify::Types::ListBackendEnvironmentsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Amplify::Types::ListBackendEnvironmentsRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-amplify/types.rb
Overview
The request structure for the list backend environments request.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#app_id ⇒ String
The unique ID for an Amplify app.
-
#environment_name ⇒ String
The name of the backend environment.
-
#max_results ⇒ Integer
The maximum number of records to list in a single response.
-
#next_token ⇒ String
A pagination token.
Instance Attribute Details
#app_id ⇒ String
The unique ID for an Amplify app.
2041 2042 2043 2044 2045 2046 2047 2048 |
# File 'lib/aws-sdk-amplify/types.rb', line 2041 class ListBackendEnvironmentsRequest < Struct.new( :app_id, :environment_name, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#environment_name ⇒ String
The name of the backend environment
2041 2042 2043 2044 2045 2046 2047 2048 |
# File 'lib/aws-sdk-amplify/types.rb', line 2041 class ListBackendEnvironmentsRequest < Struct.new( :app_id, :environment_name, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#max_results ⇒ Integer
The maximum number of records to list in a single response.
2041 2042 2043 2044 2045 2046 2047 2048 |
# File 'lib/aws-sdk-amplify/types.rb', line 2041 class ListBackendEnvironmentsRequest < Struct.new( :app_id, :environment_name, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
A pagination token. Set to null to start listing backend environments from the start. If a non-null pagination token is returned in a result, pass its value in here to list more backend environments.
2041 2042 2043 2044 2045 2046 2047 2048 |
# File 'lib/aws-sdk-amplify/types.rb', line 2041 class ListBackendEnvironmentsRequest < Struct.new( :app_id, :environment_name, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |