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