Class: Aws::Amplify::Types::ListBackendEnvironmentsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Amplify::Types::ListBackendEnvironmentsRequest
- Defined in:
- gems/aws-sdk-amplify/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.
2022 2023 2024 2025 2026 2027 2028 2029 |
# File 'gems/aws-sdk-amplify/lib/aws-sdk-amplify/types.rb', line 2022 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
2022 2023 2024 2025 2026 2027 2028 2029 |
# File 'gems/aws-sdk-amplify/lib/aws-sdk-amplify/types.rb', line 2022 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.
2022 2023 2024 2025 2026 2027 2028 2029 |
# File 'gems/aws-sdk-amplify/lib/aws-sdk-amplify/types.rb', line 2022 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.
2022 2023 2024 2025 2026 2027 2028 2029 |
# File 'gems/aws-sdk-amplify/lib/aws-sdk-amplify/types.rb', line 2022 class ListBackendEnvironmentsRequest < Struct.new( :app_id, :environment_name, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |