pub struct GetBackendEnvironmentRequest {
pub app_id: String,
pub environment_name: String,
}
Expand description
The request structure for the get backend environment request.
Fields§
§app_id: String
The unique id for an Amplify app.
environment_name: String
The name for the backend environment.
Trait Implementations§
Source§impl Clone for GetBackendEnvironmentRequest
impl Clone for GetBackendEnvironmentRequest
Source§fn clone(&self) -> GetBackendEnvironmentRequest
fn clone(&self) -> GetBackendEnvironmentRequest
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for GetBackendEnvironmentRequest
impl Debug for GetBackendEnvironmentRequest
Source§impl Default for GetBackendEnvironmentRequest
impl Default for GetBackendEnvironmentRequest
Source§fn default() -> GetBackendEnvironmentRequest
fn default() -> GetBackendEnvironmentRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for GetBackendEnvironmentRequest
impl PartialEq for GetBackendEnvironmentRequest
Source§fn eq(&self, other: &GetBackendEnvironmentRequest) -> bool
fn eq(&self, other: &GetBackendEnvironmentRequest) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for GetBackendEnvironmentRequest
Auto Trait Implementations§
impl Freeze for GetBackendEnvironmentRequest
impl RefUnwindSafe for GetBackendEnvironmentRequest
impl Send for GetBackendEnvironmentRequest
impl Sync for GetBackendEnvironmentRequest
impl Unpin for GetBackendEnvironmentRequest
impl UnwindSafe for GetBackendEnvironmentRequest
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more