pub struct RunDeploy {
pub build: RunBuild,
pub region: Option<String>,
pub iam_role: Option<String>,
pub dry_run: bool,
pub stage: Option<String>,
}Expand description
Deploy to AWS Lambda in release mode.
Fields§
§build: RunBuild§region: Option<String>Specify the region to deploy the lambda function to
iam_role: Option<String>use a specificed name for the lambda function, defaults to the package name. This must match sst.aws.Function(..,{name: THIS_FIELD }) Specify the IAM role that the lambda function should use
dry_run: boolBuild but do not deploy
stage: Option<String>Optionally specify the stage name used to match the lambda function name with
the sst configuration. By default this is dev for debug builds and prod for release builds.
Implementations§
Trait Implementations§
Source§impl Args for RunDeploy
impl Args for RunDeploy
Source§fn augment_args<'b>(__clap_app: Command) -> Command
fn augment_args<'b>(__clap_app: Command) -> Command
Source§fn augment_args_for_update<'b>(__clap_app: Command) -> Command
fn augment_args_for_update<'b>(__clap_app: Command) -> Command
Append to
Command so it can instantiate self via
FromArgMatches::update_from_arg_matches_mut Read moreSource§impl CommandFactory for RunDeploy
impl CommandFactory for RunDeploy
Source§impl FromArgMatches for RunDeploy
impl FromArgMatches for RunDeploy
Source§fn from_arg_matches(__clap_arg_matches: &ArgMatches) -> Result<Self, Error>
fn from_arg_matches(__clap_arg_matches: &ArgMatches) -> Result<Self, Error>
Source§fn from_arg_matches_mut(
__clap_arg_matches: &mut ArgMatches,
) -> Result<Self, Error>
fn from_arg_matches_mut( __clap_arg_matches: &mut ArgMatches, ) -> Result<Self, Error>
Source§fn update_from_arg_matches(
&mut self,
__clap_arg_matches: &ArgMatches,
) -> Result<(), Error>
fn update_from_arg_matches( &mut self, __clap_arg_matches: &ArgMatches, ) -> Result<(), Error>
Assign values from
ArgMatches to self.Source§fn update_from_arg_matches_mut(
&mut self,
__clap_arg_matches: &mut ArgMatches,
) -> Result<(), Error>
fn update_from_arg_matches_mut( &mut self, __clap_arg_matches: &mut ArgMatches, ) -> Result<(), Error>
Assign values from
ArgMatches to self.Source§impl Parser for RunDeploy
impl Parser for RunDeploy
Source§fn parse_from<I, T>(itr: I) -> Self
fn parse_from<I, T>(itr: I) -> Self
Parse from iterator, exit on error.
Source§fn try_parse_from<I, T>(itr: I) -> Result<Self, Error>
fn try_parse_from<I, T>(itr: I) -> Result<Self, Error>
Parse from iterator, return Err on error.
Source§fn update_from<I, T>(&mut self, itr: I)
fn update_from<I, T>(&mut self, itr: I)
Auto Trait Implementations§
impl Freeze for RunDeploy
impl RefUnwindSafe for RunDeploy
impl Send for RunDeploy
impl Sync for RunDeploy
impl Unpin for RunDeploy
impl UnwindSafe for RunDeploy
Blanket Implementations§
Source§impl<T> ArchivePointee for T
impl<T> ArchivePointee for T
Source§type ArchivedMetadata = ()
type ArchivedMetadata = ()
The archived version of the pointer metadata for this type.
Source§fn pointer_metadata(
_: &<T as ArchivePointee>::ArchivedMetadata,
) -> <T as Pointee>::Metadata
fn pointer_metadata( _: &<T as ArchivePointee>::ArchivedMetadata, ) -> <T as Pointee>::Metadata
Converts some archived metadata to the pointer metadata for itself.
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
Source§impl<F, W, T, D> Deserialize<With<T, W>, D> for F
impl<F, W, T, D> Deserialize<With<T, W>, D> for F
Source§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
Source§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Converts
Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>, which can then be
downcast into Box<dyn ConcreteType> where ConcreteType implements Trait.Source§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Converts
Rc<Trait> (where Trait: Downcast) to Rc<Any>, which can then be further
downcast into Rc<ConcreteType> where ConcreteType implements Trait.Source§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Converts
&Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &Any’s vtable from &Trait’s.Source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Converts
&mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &mut Any’s vtable from &mut Trait’s.Source§impl<T> DowncastSend for T
impl<T> DowncastSend for T
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§impl<T, V> IntoMaybeSignal<T, IntoIntoMaybeSignalMarker> for Vwhere
V: Into<T>,
impl<T, V> IntoMaybeSignal<T, IntoIntoMaybeSignalMarker> for Vwhere
V: Into<T>,
fn into_maybe_signal(self) -> MaybeSignal<T>
Source§impl<T> PipelineTarget for T
impl<T> PipelineTarget for T
Source§fn xmap<O>(self, func: impl FnOnce(Self) -> O) -> O
fn xmap<O>(self, func: impl FnOnce(Self) -> O) -> O
Similar to
Iterator::map but for any type, not just iterators.Source§fn xtap(self, func: impl FnOnce(&mut Self)) -> Self
fn xtap(self, func: impl FnOnce(&mut Self)) -> Self
Similar to
Iterator::inspect but for any type, not just iterators.Source§fn xtap_mut(&mut self, func: impl FnOnce(&mut Self)) -> &mut Self
fn xtap_mut(&mut self, func: impl FnOnce(&mut Self)) -> &mut Self
Similar to
Iterator::inspect but for any type, not just iterators, and mutable.Source§fn xpipe<P, O>(self, pipeline: P) -> Owhere
P: Pipeline<Self, O>,
fn xpipe<P, O>(self, pipeline: P) -> Owhere
P: Pipeline<Self, O>,
Similar to
Iterator::map but for any type, not just iterators,
using a custom Pipeline trait which behaves similarly to a FnOnce trait,
but available on stable rust.