Class: Aws::Amplify::Types::ListBackendEnvironmentsResult
- Inherits:
-
Struct
- Object
- Struct
- Aws::Amplify::Types::ListBackendEnvironmentsResult
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-amplify/types.rb
Overview
The result structure for the list backend environments result.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#backend_environments ⇒ Array<Types::BackendEnvironment>
The list of backend environments for an Amplify app.
-
#next_token ⇒ String
A pagination token.
Instance Attribute Details
#backend_environments ⇒ Array<Types::BackendEnvironment>
The list of backend environments for an Amplify app.
2063 2064 2065 2066 2067 2068 |
# File 'lib/aws-sdk-amplify/types.rb', line 2063 class ListBackendEnvironmentsResult < Struct.new( :backend_environments, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
A pagination token. If a non-null pagination token is returned in a result, pass its value in another request to retrieve more entries.
2063 2064 2065 2066 2067 2068 |
# File 'lib/aws-sdk-amplify/types.rb', line 2063 class ListBackendEnvironmentsResult < Struct.new( :backend_environments, :next_token) SENSITIVE = [] include Aws::Structure end |