Struct aws_sdk_amplify::operation::delete_backend_environment::DeleteBackendEnvironmentInput
source · #[non_exhaustive]pub struct DeleteBackendEnvironmentInput {
pub app_id: Option<String>,
pub environment_name: Option<String>,
}Expand description
The request structure for the delete backend environment request.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.app_id: Option<String>The unique ID of an Amplify app.
environment_name: Option<String>The name of a backend environment of an Amplify app.
Implementations§
source§impl DeleteBackendEnvironmentInput
impl DeleteBackendEnvironmentInput
sourcepub fn builder() -> DeleteBackendEnvironmentInputBuilder
pub fn builder() -> DeleteBackendEnvironmentInputBuilder
Creates a new builder-style object to manufacture DeleteBackendEnvironmentInput.
Trait Implementations§
source§impl Clone for DeleteBackendEnvironmentInput
impl Clone for DeleteBackendEnvironmentInput
source§fn clone(&self) -> DeleteBackendEnvironmentInput
fn clone(&self) -> DeleteBackendEnvironmentInput
Returns a copy 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 PartialEq for DeleteBackendEnvironmentInput
impl PartialEq for DeleteBackendEnvironmentInput
source§fn eq(&self, other: &DeleteBackendEnvironmentInput) -> bool
fn eq(&self, other: &DeleteBackendEnvironmentInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for DeleteBackendEnvironmentInput
Auto Trait Implementations§
impl RefUnwindSafe for DeleteBackendEnvironmentInput
impl Send for DeleteBackendEnvironmentInput
impl Sync for DeleteBackendEnvironmentInput
impl Unpin for DeleteBackendEnvironmentInput
impl UnwindSafe for DeleteBackendEnvironmentInput
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