Struct aws_sdk_amplify::operation::create_backend_environment::CreateBackendEnvironmentInput
source · #[non_exhaustive]pub struct CreateBackendEnvironmentInput {
pub app_id: Option<String>,
pub environment_name: Option<String>,
pub stack_name: Option<String>,
pub deployment_artifacts: Option<String>,
}Expand description
The request structure for the backend environment create 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 for an Amplify app.
environment_name: Option<String>The name for the backend environment.
stack_name: Option<String>The AWS CloudFormation stack name of a backend environment.
deployment_artifacts: Option<String>The name of deployment artifacts.
Implementations§
source§impl CreateBackendEnvironmentInput
impl CreateBackendEnvironmentInput
sourcepub fn environment_name(&self) -> Option<&str>
pub fn environment_name(&self) -> Option<&str>
The name for the backend environment.
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.
source§impl CreateBackendEnvironmentInput
impl CreateBackendEnvironmentInput
sourcepub fn builder() -> CreateBackendEnvironmentInputBuilder
pub fn builder() -> CreateBackendEnvironmentInputBuilder
Creates a new builder-style object to manufacture CreateBackendEnvironmentInput.
Trait Implementations§
source§impl Clone for CreateBackendEnvironmentInput
impl Clone for CreateBackendEnvironmentInput
source§fn clone(&self) -> CreateBackendEnvironmentInput
fn clone(&self) -> CreateBackendEnvironmentInput
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<CreateBackendEnvironmentInput> for CreateBackendEnvironmentInput
impl PartialEq<CreateBackendEnvironmentInput> for CreateBackendEnvironmentInput
source§fn eq(&self, other: &CreateBackendEnvironmentInput) -> bool
fn eq(&self, other: &CreateBackendEnvironmentInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for CreateBackendEnvironmentInput
Auto Trait Implementations§
impl RefUnwindSafe for CreateBackendEnvironmentInput
impl Send for CreateBackendEnvironmentInput
impl Sync for CreateBackendEnvironmentInput
impl Unpin for CreateBackendEnvironmentInput
impl UnwindSafe for CreateBackendEnvironmentInput
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