Class: Aws::Amplify::Types::GetBackendEnvironmentRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Amplify::Types::GetBackendEnvironmentRequest
- Defined in:
- gems/aws-sdk-amplify/lib/aws-sdk-amplify/types.rb
Overview
Note:
When making an API call, you may pass GetBackendEnvironmentRequest data as a hash:
{
app_id: "AppId", # required
environment_name: "EnvironmentName", # required
}
The request structure for the get backend environment request.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#app_id ⇒ String
The unique id for an Amplify app.
-
#environment_name ⇒ String
The name for the backend environment.
Instance Attribute Details
#app_id ⇒ String
The unique id for an Amplify app.
1598 1599 1600 1601 1602 1603 |
# File 'gems/aws-sdk-amplify/lib/aws-sdk-amplify/types.rb', line 1598 class GetBackendEnvironmentRequest < Struct.new( :app_id, :environment_name) SENSITIVE = [] include Aws::Structure end |
#environment_name ⇒ String
The name for the backend environment.
1598 1599 1600 1601 1602 1603 |
# File 'gems/aws-sdk-amplify/lib/aws-sdk-amplify/types.rb', line 1598 class GetBackendEnvironmentRequest < Struct.new( :app_id, :environment_name) SENSITIVE = [] include Aws::Structure end |