Struct cargo_lambda_metadata::cargo::DeployConfig
source · pub struct DeployConfig {
pub memory: Option<Memory>,
pub timeout: Timeout,
pub env: HashMap<String, String>,
pub env_file: Option<PathBuf>,
pub tracing: Tracing,
pub iam_role: Option<String>,
pub layers: Option<Vec<String>>,
}Fields
memory: Option<Memory>timeout: Timeoutenv: HashMap<String, String>env_file: Option<PathBuf>tracing: Tracingiam_role: Option<String>layers: Option<Vec<String>>Trait Implementations
sourceimpl Clone for DeployConfig
impl Clone for DeployConfig
sourcefn clone(&self) -> DeployConfig
fn clone(&self) -> DeployConfig
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for DeployConfig
impl Debug for DeployConfig
sourceimpl Default for DeployConfig
impl Default for DeployConfig
sourcefn default() -> DeployConfig
fn default() -> DeployConfig
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for DeployConfig
impl<'de> Deserialize<'de> for DeployConfig
sourcefn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations
impl RefUnwindSafe for DeployConfig
impl Send for DeployConfig
impl Sync for DeployConfig
impl Unpin for DeployConfig
impl UnwindSafe for DeployConfig
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more