Struct aws_sdk_amplify::types::BackendEnvironment
source · #[non_exhaustive]pub struct BackendEnvironment { /* private fields */ }Expand description
Describes the backend environment for an Amplify app.
Implementations§
source§impl BackendEnvironment
impl BackendEnvironment
sourcepub fn backend_environment_arn(&self) -> Option<&str>
pub fn backend_environment_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) for a backend environment that is part of an Amplify app.
sourcepub fn environment_name(&self) -> Option<&str>
pub fn environment_name(&self) -> Option<&str>
The name for a backend environment that is part of an Amplify app.
sourcepub fn stack_name(&self) -> Option<&str>
pub fn stack_name(&self) -> Option<&str>
The AWS CloudFormation stack name of a backend environment.
sourcepub fn deployment_artifacts(&self) -> Option<&str>
pub fn deployment_artifacts(&self) -> Option<&str>
The name of deployment artifacts.
sourcepub fn create_time(&self) -> Option<&DateTime>
pub fn create_time(&self) -> Option<&DateTime>
The creation date and time for a backend environment that is part of an Amplify app.
sourcepub fn update_time(&self) -> Option<&DateTime>
pub fn update_time(&self) -> Option<&DateTime>
The last updated date and time for a backend environment that is part of an Amplify app.
source§impl BackendEnvironment
impl BackendEnvironment
sourcepub fn builder() -> BackendEnvironmentBuilder
pub fn builder() -> BackendEnvironmentBuilder
Creates a new builder-style object to manufacture BackendEnvironment.
Trait Implementations§
source§impl Clone for BackendEnvironment
impl Clone for BackendEnvironment
source§fn clone(&self) -> BackendEnvironment
fn clone(&self) -> BackendEnvironment
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 Debug for BackendEnvironment
impl Debug for BackendEnvironment
source§impl PartialEq<BackendEnvironment> for BackendEnvironment
impl PartialEq<BackendEnvironment> for BackendEnvironment
source§fn eq(&self, other: &BackendEnvironment) -> bool
fn eq(&self, other: &BackendEnvironment) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for BackendEnvironment
Auto Trait Implementations§
impl RefUnwindSafe for BackendEnvironment
impl Send for BackendEnvironment
impl Sync for BackendEnvironment
impl Unpin for BackendEnvironment
impl UnwindSafe for BackendEnvironment
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