pub struct RunDeploy {
pub build: RunBuild,
pub region: Option<String>,
pub function_name: Option<String>,
pub iam_role: Option<String>,
pub dry_run: bool,
pub sst: bool,
}Expand description
Deploy to AWS Lambda in release mode.
Fields§
§build: RunBuild§region: Option<String>Specify the region to deploy the lambda function to
function_name: Option<String>use a specificed name for the lambda function, defaults to the package name
iam_role: Option<String>Specify the IAM role that the lambda function should use
dry_run: boolBuild but do not deploy
sst: boolAlso deploy sst infrastructure using a config file
located at infra/sst.config.ts
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> 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<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> IntoRouteFunc<T, T> for Twhere
T: 'static,
impl<T> IntoRouteFunc<T, T> for Twhere
T: 'static,
fn into_route_func(self) -> T
Source§impl<T> PipelineTarget for T
impl<T> PipelineTarget for T
fn xdebug(self) -> Selfwhere
Self: Debug,
fn xdisplay(self) -> Selfwhere
Self: Display,
fn xtap_mut(&mut self, func: impl FnOnce(&mut Self)) -> &mut Self
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>,
its like map but for our pipeline trait